diff options
author | Al Viro <viro@ZenIV.linux.org.uk> | 2013-03-12 02:59:49 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-14 11:32:06 -0700 |
commit | 542e9d5675e96e3affcac837b358b6dadebbbc37 (patch) | |
tree | 6ad745c03b9dcedc8cf5b29c0acd93f4a38bf958 | |
parent | 6e753e515f9ee87879a0630ba71366580dd0195f (diff) | |
download | linux-stable-542e9d5675e96e3affcac837b358b6dadebbbc37.tar.gz linux-stable-542e9d5675e96e3affcac837b358b6dadebbbc37.tar.bz2 linux-stable-542e9d5675e96e3affcac837b358b6dadebbbc37.zip |
vfs: fix pipe counter breakage
commit a930d8790552658140d7d0d2e316af4f0d76a512 upstream.
If you open a pipe for neither read nor write, the pipe code will not
add any usage counters to the pipe, causing the 'struct pipe_inode_info"
to be potentially released early.
That doesn't normally matter, since you cannot actually use the pipe,
but the pipe release code - particularly fasync handling - still expects
the actual pipe infrastructure to all be there. And rather than adding
NULL pointer checks, let's just disallow this case, the same way we
already do for the named pipe ("fifo") case.
This is ancient going back to pre-2.4 days, and until trinity, nobody
naver noticed.
Reported-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/pipe.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/pipe.c b/fs/pipe.c index 0499a96287ad..342aa86ab60f 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -859,6 +859,9 @@ pipe_rdwr_open(struct inode *inode, struct file *filp) { int ret = -ENOENT; + if (!(filp->f_mode & (FMODE_READ|FMODE_WRITE))) + return -EINVAL; + mutex_lock(&inode->i_mutex); if (inode->i_pipe) { |