diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2014-01-22 13:36:57 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-13 16:47:59 -0500 |
commit | d840f9899a6bc8bd88b3c87cd067ddf39a6ada45 (patch) | |
tree | 4ef436e091d32ac9f01fe9c8fd87c02246cfd5c6 /fs | |
parent | 329f4557c93a1aa769896155deefa363f01283e5 (diff) |
fuse: fix pipe_buf_operations
commit 28a625cbc2a14f17b83e47ef907b2658576a32aa upstream.
Having this struct in module memory could Oops when if the module is
unloaded while the buffer still persists in a pipe.
Since sock_pipe_buf_ops is essentially the same as fuse_dev_pipe_buf_steal
merge them into nosteal_pipe_buf_ops (this is the same as
default_pipe_buf_ops except stealing the page from the buffer is not
allowed).
Reported-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fuse/dev.c | 22 | ||||
-rw-r--r-- | fs/splice.c | 18 |
2 files changed, 23 insertions, 17 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 1d55f9465400..23bf1a52a5da 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c | |||
@@ -1296,22 +1296,6 @@ static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov, | |||
1296 | return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs)); | 1296 | return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs)); |
1297 | } | 1297 | } |
1298 | 1298 | ||
1299 | static int fuse_dev_pipe_buf_steal(struct pipe_inode_info *pipe, | ||
1300 | struct pipe_buffer *buf) | ||
1301 | { | ||
1302 | return 1; | ||
1303 | } | ||
1304 | |||
1305 | static const struct pipe_buf_operations fuse_dev_pipe_buf_ops = { | ||
1306 | .can_merge = 0, | ||
1307 | .map = generic_pipe_buf_map, | ||
1308 | .unmap = generic_pipe_buf_unmap, | ||
1309 | .confirm = generic_pipe_buf_confirm, | ||
1310 | .release = generic_pipe_buf_release, | ||
1311 | .steal = fuse_dev_pipe_buf_steal, | ||
1312 | .get = generic_pipe_buf_get, | ||
1313 | }; | ||
1314 | |||
1315 | static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos, | 1299 | static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos, |
1316 | struct pipe_inode_info *pipe, | 1300 | struct pipe_inode_info *pipe, |
1317 | size_t len, unsigned int flags) | 1301 | size_t len, unsigned int flags) |
@@ -1358,7 +1342,11 @@ static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos, | |||
1358 | buf->page = bufs[page_nr].page; | 1342 | buf->page = bufs[page_nr].page; |
1359 | buf->offset = bufs[page_nr].offset; | 1343 | buf->offset = bufs[page_nr].offset; |
1360 | buf->len = bufs[page_nr].len; | 1344 | buf->len = bufs[page_nr].len; |
1361 | buf->ops = &fuse_dev_pipe_buf_ops; | 1345 | /* |
1346 | * Need to be careful about this. Having buf->ops in module | ||
1347 | * code can Oops if the buffer persists after module unload. | ||
1348 | */ | ||
1349 | buf->ops = &nosteal_pipe_buf_ops; | ||
1362 | 1350 | ||
1363 | pipe->nrbufs++; | 1351 | pipe->nrbufs++; |
1364 | page_nr++; | 1352 | page_nr++; |
diff --git a/fs/splice.c b/fs/splice.c index d37431dd60a1..4b5a5fac3383 100644 --- a/fs/splice.c +++ b/fs/splice.c | |||
@@ -555,6 +555,24 @@ static const struct pipe_buf_operations default_pipe_buf_ops = { | |||
555 | .get = generic_pipe_buf_get, | 555 | .get = generic_pipe_buf_get, |
556 | }; | 556 | }; |
557 | 557 | ||
558 | static int generic_pipe_buf_nosteal(struct pipe_inode_info *pipe, | ||
559 | struct pipe_buffer *buf) | ||
560 | { | ||
561 | return 1; | ||
562 | } | ||
563 | |||
564 | /* Pipe buffer operations for a socket and similar. */ | ||
565 | const struct pipe_buf_operations nosteal_pipe_buf_ops = { | ||
566 | .can_merge = 0, | ||
567 | .map = generic_pipe_buf_map, | ||
568 | .unmap = generic_pipe_buf_unmap, | ||
569 | .confirm = generic_pipe_buf_confirm, | ||
570 | .release = generic_pipe_buf_release, | ||
571 | .steal = generic_pipe_buf_nosteal, | ||
572 | .get = generic_pipe_buf_get, | ||
573 | }; | ||
574 | EXPORT_SYMBOL(nosteal_pipe_buf_ops); | ||
575 | |||
558 | static ssize_t kernel_readv(struct file *file, const struct iovec *vec, | 576 | static ssize_t kernel_readv(struct file *file, const struct iovec *vec, |
559 | unsigned long vlen, loff_t offset) | 577 | unsigned long vlen, loff_t offset) |
560 | { | 578 | { |