]> asedeno.scripts.mit.edu Git - linux.git/commit
pipe: fix poll/select race introduced by the pipe rework
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Dec 2019 18:41:17 +0000 (10:41 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 7 Dec 2019 18:41:17 +0000 (10:41 -0800)
commitad910e36da4ca3a1bd436989f632d062dda0c921
tree602909bcdadd7b61ea2dbca372db6ec3a81bc3b8
parenteea2d5da29e396b6cc1fb35e36bcbf5f57731015
pipe: fix poll/select race introduced by the pipe rework

The kernel wait queues have a basic rule to them: you add yourself to
the wait-queue first, and then you check the things that you're going to
wait on.  That avoids the races with the event you're waiting for.

The same goes for poll/select logic: the "poll_wait()" goes first, and
then you check the things you're polling for.

Of course, if you use locking, the ordering doesn't matter since the
lock will serialize with anything that changes the state you're looking
at. That's not the case here, though.

So move the poll_wait() first in pipe_poll(), before you start looking
at the pipe state.

Fixes: 8cefc107ca54 ("pipe: Use head and tail pointers for the ring, not cursor and length")
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/pipe.c