linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: John Fastabend <john.fastabend@gmail.com>
To: Jakub Kicinski <jakub.kicinski@netronome.com>,
	John Fastabend <john.fastabend@gmail.com>
Cc: Hillf Danton <hdanton@sina.com>,
	syzbot <syzbot+dcdc9deefaec44785f32@syzkaller.appspotmail.com>,
	aviadye@mellanox.com, borisp@mellanox.com, daniel@iogearbox.net,
	davejwatson@fb.com, davem@davemloft.net,
	linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
	oss-drivers@netronome.com, syzkaller-bugs@googlegroups.com,
	willemb@google.com
Subject: Re: general protection fault in tls_write_space
Date: Tue, 13 Aug 2019 12:30:17 -0700	[thread overview]
Message-ID: <5d530fc91c07a_74d72b1d12a065b810@john-XPS-13-9370.notmuch> (raw)
In-Reply-To: <20190813115948.5f57b272@cakuba.netronome.com>

Jakub Kicinski wrote:
> On Tue, 13 Aug 2019 11:30:00 -0700, John Fastabend wrote:
> > Jakub Kicinski wrote:
> > > On Tue, 13 Aug 2019 10:17:06 -0700, John Fastabend wrote:  
> > > > > Followup of commit 95fa145479fb
> > > > > ("bpf: sockmap/tls, close can race with map free")
> > > > > 
> > > > > --- a/net/tls/tls_main.c
> > > > > +++ b/net/tls/tls_main.c
> > > > > @@ -308,6 +308,9 @@ static void tls_sk_proto_close(struct so
> > > > >  	if (free_ctx)
> > > > >  		icsk->icsk_ulp_data = NULL;
> > > > >  	sk->sk_prot = ctx->sk_proto;
> > > > > +	/* tls will go; restore sock callback before enabling bh */
> > > > > +	if (sk->sk_write_space == tls_write_space)
> > > > > +		sk->sk_write_space = ctx->sk_write_space;
> > > > >  	write_unlock_bh(&sk->sk_callback_lock);
> > > > >  	release_sock(sk);
> > > > >  	if (ctx->tx_conf == TLS_SW)    
> > > > 
> > > > Hi Hillf,
> > > > 
> > > > We need this patch (although slightly updated for bpf tree) do
> > > > you want to send it? Otherwise I can. We should only set this if
> > > > TX path was enabled otherwise we null it. Checking against
> > > > tls_write_space seems best to me as well.
> > > > 
> > > > Against bpf this patch should fix it.
> > > > 
> > > > diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c
> > > > index ce6ef56a65ef..43252a801c3f 100644
> > > > --- a/net/tls/tls_main.c
> > > > +++ b/net/tls/tls_main.c
> > > > @@ -308,7 +308,8 @@ static void tls_sk_proto_close(struct sock *sk, long timeout)
> > > >         if (free_ctx)
> > > >                 icsk->icsk_ulp_data = NULL;
> > > >         sk->sk_prot = ctx->sk_proto;
> > > > -       sk->sk_write_space = ctx->sk_write_space;
> > > > +       if (sk->sk_write_space == tls_write_space)
> > > > +               sk->sk_write_space = ctx->sk_write_space;
> > > >         write_unlock_bh(&sk->sk_callback_lock);
> > > >         release_sock(sk);
> > > >         if (ctx->tx_conf == TLS_SW)  
> > > 
> > > This is already in net since Friday:  
> > 
> > Don't we need to guard that with an
> > 
> >   if (sk->sk_write_space == tls_write_space)
> > 
> > or something similar? Where is ctx->sk_write_space set in the rx only
> > case? In do_tls_setsockop_conf() we have this block
> > 
> > 	if (tx) {
> > 		ctx->sk_write_space = sk->sk_write_space;
> > 		sk->sk_write_space = tls_write_space;
> > 	} else {
> > 		sk->sk_socket->ops = &tls_sw_proto_ops;
> > 	}
> > 
> > which makes me think ctx->sk_write_space may not be set correctly in
> > all cases.
> 
> Ah damn, you're right I remember looking at that but then I went down
> the rabbit hole of trying to repro and forgot :/
> 
> Do you want to send an incremental change?

Sure I'll send something out this afternoon.


      reply	other threads:[~2019-08-13 19:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-09 12:53 general protection fault in tls_write_space syzbot
2019-08-10  8:23 ` syzbot
     [not found] ` <20190810135900.2820-1-hdanton@sina.com>
2019-08-13 17:17   ` John Fastabend
2019-08-13 17:27     ` Jakub Kicinski
2019-08-13 18:30       ` John Fastabend
2019-08-13 18:59         ` Jakub Kicinski
2019-08-13 19:30           ` John Fastabend [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5d530fc91c07a_74d72b1d12a065b810@john-XPS-13-9370.notmuch \
    --to=john.fastabend@gmail.com \
    --cc=aviadye@mellanox.com \
    --cc=borisp@mellanox.com \
    --cc=daniel@iogearbox.net \
    --cc=davejwatson@fb.com \
    --cc=davem@davemloft.net \
    --cc=hdanton@sina.com \
    --cc=jakub.kicinski@netronome.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=oss-drivers@netronome.com \
    --cc=syzbot+dcdc9deefaec44785f32@syzkaller.appspotmail.com \
    --cc=syzkaller-bugs@googlegroups.com \
    --cc=willemb@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).