linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] pipe: Fixes
@ 2019-12-05 17:21 David Howells
  2019-12-05 17:21 ` [PATCH 1/2] pipe: Remove assertion from pipe_poll() David Howells
  2019-12-05 17:21 ` [PATCH 2/2] pipe: Fix missing mask update after pipe_wait() David Howells
  0 siblings, 2 replies; 5+ messages in thread
From: David Howells @ 2019-12-05 17:21 UTC (permalink / raw)
  To: torvalds, ebiggers; +Cc: dhowells, viro, linux-fsdevel, linux-kernel


Hi Linus, Eric,

Here are a couple of patches to fix bugs syzbot found in the pipe changes:

 (1) An assertion check will sometimes trip when polling a pipe because the
     ring size and indices used are approximate and may be being changed
     simultaneously.

     An equivalent approximate calculation was done previously, but without
     the assertion check, so I've just dropped the check.  To make it
     accurate, the pipe mutex would need to be taken or the spin lock could
     be used - but usage of the spinlock would need to be rolled out into
     splice, iov_iter and other places for that.

 (2) The index mask and the max_usage values need to be regenerated after
     dropping the locks to wait in pipe_write() as F_SETPIPE_SZ could have
     been called during the wait.

David
---
David Howells (2):
      pipe: Remove assertion from pipe_poll()
      pipe: Fix missing mask update after pipe_wait()


 fs/pipe.c |    3 +++
 1 file changed, 3 insertions(+)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-12-05 17:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-05 17:21 [PATCH 0/2] pipe: Fixes David Howells
2019-12-05 17:21 ` [PATCH 1/2] pipe: Remove assertion from pipe_poll() David Howells
2019-12-05 17:42   ` Linus Torvalds
2019-12-05 17:21 ` [PATCH 2/2] pipe: Fix missing mask update after pipe_wait() David Howells
2019-12-05 17:40   ` Linus Torvalds

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).