8000 splice: don't merge into linked buffers · torvalds/linux@1bdc347 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Dismiss alert

Commit 1bdc347

Browse files
thejhgregkh
authored andcommitted
splice: don't merge into linked buffers
commit a0ce2f0 upstream. Before this patch, it was possible for two pipes to affect each other after data had been transferred between them with tee(): ============ $ cat tee_test.c int main(void) { int pipe_a[2]; if (pipe(pipe_a)) err(1, "pipe"); int pipe_b[2]; if (pipe(pipe_b)) err(1, "pipe"); if (write(pipe_a[1], "abcd", 4) != 4) err(1, "write"); if (tee(pipe_a[0], pipe_b[1], 2, 0) != 2) err(1, "tee"); if (write(pipe_b[1], "xx", 2) != 2) err(1, "write"); char buf[5]; if (read(pipe_a[0], buf, 4) != 4) err(1, "read"); buf[4] = 0; printf("got back: '%s'\n", buf); } $ gcc -o tee_test tee_test.c $ ./tee_test got back: 'abxx' $ ============ As suggested by Al Viro, fix it by creating a separate type for non-mergeable pipe buffers, then changing the types of buffers in splice_pipe_to_pipe() and link_pipe(). Cc: <stable@vger.kernel.org> Fixes: 7c77f0b ("splice: implement pipe to pipe splicing") Fixes: 7052449 ("[PATCH] splice: add support for sys_tee()") Suggested-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Jann Horn <jannh@google.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent a8dddf8 commit 1bdc347

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

fs/pipe.c

+14
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,14 @@ static const struct pipe_buf_operations anon_pipe_buf_ops = {
239239
.get = generic_pipe_buf_get,
240240
};
241241

242+
static const struct pipe_buf_operations anon_pipe_buf_nomerge_ops = {
243+
.can_merge = 0,
244+
.confirm = generic_pipe_buf_confirm,
245+
.release = anon_pipe_buf_release,
246+
.steal = anon_pipe_buf_steal,
247+
.get = generic_pipe_buf_get,
248+
};
249+
242250
static const struct pipe_buf_operations packet_pipe_buf_ops = {
243251
.can_merge = 0,
244252
.confirm = generic_pipe_buf_confirm,
@@ -247,6 +255,12 @@ static const struct pipe_buf_operations packet_pipe_buf_ops = {
247255
.get = generic_pipe_buf_get,
248256
};
249257

258+
void pipe_buf_mark_unmergeable(struct pipe_buffer *buf)
259+
{
260+
if (buf->ops == &anon_pipe_buf_ops)
261+
buf->ops = &anon_pipe_buf_nomerge_ops;
262+
}
263+
250264
static ssize_t
251265
pipe_read(struct kiocb *iocb, struct iov_iter *to)
252266
{

fs/splice.c

+4
Original file line numberDiff line numberDiff line change
@@ -1580,6 +1580,8 @@ static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
15801580
*/
15811581
obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
15821582

1583+
pipe_buf_mark_unmergeable(obuf);
1584+
15831585
obuf->len = len;
15841586
opipe->nrbufs++;
15851587
ibuf->offset += obuf->len;
@@ -1654,6 +1656,8 @@ static int link_pipe(struct pipe_inode_info *ipipe,
16541656
*/
16551657
obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
16561658

1659+
pipe_buf_mark_unmergeable(obuf);
1660+
16571661
if (obuf->len > len)
16581662
obuf->len = len;
16591663

include/linux/pipe_fs_i.h

+1
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ void generic_pipe_buf_get(struct pipe_inode_info *, struct pipe_buffer *);
183183
int generic_pipe_buf_confirm(struct pipe_inode_info *, struct pipe_buffer *);
184184
int generic_pipe_buf_steal(struct pipe_inode_info *, struct pipe_buffer *);
185185
void generic_pipe_buf_release(struct pipe_inode_info *, struct pipe_buffer *);
186+
void pipe_buf_mark_unmergeable(struct pipe_buffer *buf);
186187

187188
extern const struct pipe_buf_operations nosteal_pipe_buf_ops;
188189

0 commit comments

Comments
 (0)
0