mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: Davide Libenzi <davidel@xmailserver.org>
Cc: netdev@vger.kernel.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	fbl@redhat.com, nhorman@redhat.com, davem@redhat.com,
	htejun@gmail.com, jarkao2@gmail.com, oleg@redhat.com,
	eric.dumazet@gmail.com
Subject: Re: [PATCHv3 1/2] net: adding memory barrier to the poll and receive callbacks
Date: Wed, 1 Jul 2009 09:30:01 +0200	[thread overview]
Message-ID: <20090701073001.GA4769@jolsa.lab.eng.brq.redhat.com> (raw)
In-Reply-To: <alpine.DEB.1.10.0907010002010.8492@makko.or.mcafeemobile.com>

On Wed, Jul 01, 2009 at 12:04:56AM -0700, Davide Libenzi wrote:
> On Wed, 1 Jul 2009, Jiri Olsa wrote:
> 
> > On Tue, Jun 30, 2009 at 12:13:40PM -0700, Davide Libenzi wrote:
> > > On Tue, 30 Jun 2009, Jiri Olsa wrote:
> > > 
> > > > Adding memory barrier after the poll_wait function, paired with
> > > > receive callbacks. Adding fuctions sock_poll_wait and sock_has_sleeper
> > > > to wrap the memory barrier.
> > > > 
> > > > Without the memory barrier, following race can happen.
> > > > The race fires, when following code paths meet, and the tp->rcv_nxt 
> > > > and __add_wait_queue updates stay in CPU caches.
> > > > 
> > > > 
> > > > CPU1                         CPU2
> > > > 
> > > > sys_select                   receive packet
> > > >   ...                        ...
> > > >   __add_wait_queue           update tp->rcv_nxt
> > > >   ...                        ...
> > > >   tp->rcv_nxt check          sock_def_readable
> > > >   ...                        {
> > > >   schedule                      ...
> > > >                                 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
> > > >                                         wake_up_interruptible(sk->sk_sleep)
> > > >                                 ...
> > > >                              }
> > > > 
> > > > If there was no cache the code would work ok, since the wait_queue and
> > > > rcv_nxt are opposit to each other.
> > > > 
> > > > Meaning that once tp->rcv_nxt is updated by CPU2, the CPU1 either already
> > > > passed the tp->rcv_nxt check and sleeps, or will get the new value for
> > > > tp->rcv_nxt and will return with new data mask.
> > > > In both cases the process (CPU1) is being added to the wait queue, so the
> > > > waitqueue_active (CPU2) call cannot miss and will wake up CPU1.
> > > > 
> > > > The bad case is when the __add_wait_queue changes done by CPU1 stay in its
> > > > cache, and so does the tp->rcv_nxt update on CPU2 side.  The CPU1 will then
> > > > endup calling schedule and sleep forever if there are no more data on the
> > > > socket.
> > > 
> > > > +static inline int sk_has_sleeper(struct sock *sk)
> > > > +{
> > > > +	/*
> > > > +	 * We need to be sure we are in sync with the
> > > > +	 * add_wait_queue modifications to the wait queue.
> > > > +	 *
> > > > +	 * This memory barrier is paired in the sock_poll_wait.
> > > > +	 */
> > > > +	smp_mb();
> > > > +	return sk->sk_sleep && waitqueue_active(sk->sk_sleep);
> > > > +}
> > > 
> > > Jiri, since this is a pretty tricky condition, would you mind to have a 
> > > reduced version of the patch comment added to the source code?
> > > Patch comments are not really useful when you're trying to make sense of 
> > > some code ;)
> > > 
> > 
> > well, to be honest I thought it was already reduced :) however I have
> > no problem to make it shorter.. any suggestions? 
> > 
> > "This memory barrier protects the add_wait_queue modifications.
> > It is paired in the sock_poll_wait."
> > 
> > or do you want only the 
> > 
> > "This memory barrier is paired in the sock_poll_wait."
> 
> Heh, no, not that comment :)
> You detailed very clearly why the MB machinery is needed in your email 
> body, but the comment in the source code is pretty vague.
> So when I was talking about comment reduction, I meant using a reduced 
> version of the comment in the email body, into the proper place in the 
> source code.
> 

uf, good :) 
I'll see what I can do, I'll resend

jirka

> 
> - Davide
> 
> 

  reply	other threads:[~2009-07-01  7:30 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-30 12:52 [PATCHv3 0/2] net: fix race in the receive/select Jiri Olsa
2009-06-30 12:54 ` [PATCHv3 1/2] net: adding memory barrier to the poll and receive callbacks Jiri Olsa
2009-06-30 19:13   ` Davide Libenzi
2009-07-01  6:57     ` Jiri Olsa
2009-07-01  7:04       ` Davide Libenzi
2009-07-01  7:30         ` Jiri Olsa [this message]
2009-07-01  8:09           ` Jiri Olsa
2009-07-01 15:14             ` Davide Libenzi
2009-06-30 12:55 ` [PATCHv3 2/2] memory barrier: adding smp_mb__after_lock Jiri Olsa

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=20090701073001.GA4769@jolsa.lab.eng.brq.redhat.com \
    --to=jolsa@redhat.com \
    --cc=davem@redhat.com \
    --cc=davidel@xmailserver.org \
    --cc=eric.dumazet@gmail.com \
    --cc=fbl@redhat.com \
    --cc=htejun@gmail.com \
    --cc=jarkao2@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nhorman@redhat.com \
    --cc=oleg@redhat.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

all inboxes | Powered by JetHome®