xref: /openbmc/linux/fs/splice.c (revision 6da2ec56)
15274f052SJens Axboe /*
25274f052SJens Axboe  * "splice": joining two ropes together by interweaving their strands.
35274f052SJens Axboe  *
45274f052SJens Axboe  * This is the "extended pipe" functionality, where a pipe is used as
55274f052SJens Axboe  * an arbitrary in-memory buffer. Think of a pipe as a small kernel
65274f052SJens Axboe  * buffer that you can use to transfer data from one end to the other.
75274f052SJens Axboe  *
85274f052SJens Axboe  * The traditional unix read/write is extended with a "splice()" operation
95274f052SJens Axboe  * that transfers data buffers to or from a pipe buffer.
105274f052SJens Axboe  *
115274f052SJens Axboe  * Named by Larry McVoy, original implementation from Linus, extended by
12c2058e06SJens Axboe  * Jens to support splicing to files, network, direct splicing, etc and
13c2058e06SJens Axboe  * fixing lots of bugs.
145274f052SJens Axboe  *
150fe23479SJens Axboe  * Copyright (C) 2005-2006 Jens Axboe <axboe@kernel.dk>
16c2058e06SJens Axboe  * Copyright (C) 2005-2006 Linus Torvalds <torvalds@osdl.org>
17c2058e06SJens Axboe  * Copyright (C) 2006 Ingo Molnar <mingo@elte.hu>
185274f052SJens Axboe  *
195274f052SJens Axboe  */
20be297968SChristoph Hellwig #include <linux/bvec.h>
215274f052SJens Axboe #include <linux/fs.h>
225274f052SJens Axboe #include <linux/file.h>
235274f052SJens Axboe #include <linux/pagemap.h>
24d6b29d7cSJens Axboe #include <linux/splice.h>
2508e552c6SKAMEZAWA Hiroyuki #include <linux/memcontrol.h>
265274f052SJens Axboe #include <linux/mm_inline.h>
275abc97aaSJens Axboe #include <linux/swap.h>
284f6f0bd2SJens Axboe #include <linux/writeback.h>
29630d9c47SPaul Gortmaker #include <linux/export.h>
304f6f0bd2SJens Axboe #include <linux/syscalls.h>
31912d35f8SJens Axboe #include <linux/uio.h>
3229ce2058SJames Morris #include <linux/security.h>
335a0e3ad6STejun Heo #include <linux/gfp.h>
3435f9c09fSEric Dumazet #include <linux/socket.h>
3576b021d0SAl Viro #include <linux/compat.h>
36174cd4b1SIngo Molnar #include <linux/sched/signal.h>
37174cd4b1SIngo Molnar 
3806ae43f3SAl Viro #include "internal.h"
395274f052SJens Axboe 
4083f9135bSJens Axboe /*
4183f9135bSJens Axboe  * Attempt to steal a page from a pipe buffer. This should perhaps go into
4283f9135bSJens Axboe  * a vm helper function, it's already simplified quite a bit by the
4383f9135bSJens Axboe  * addition of remove_mapping(). If success is returned, the caller may
4483f9135bSJens Axboe  * attempt to reuse this page for another destination.
4583f9135bSJens Axboe  */
4676ad4d11SJens Axboe static int page_cache_pipe_buf_steal(struct pipe_inode_info *pipe,
475abc97aaSJens Axboe 				     struct pipe_buffer *buf)
485abc97aaSJens Axboe {
495abc97aaSJens Axboe 	struct page *page = buf->page;
509e94cd4fSJens Axboe 	struct address_space *mapping;
515abc97aaSJens Axboe 
529e0267c2SJens Axboe 	lock_page(page);
539e0267c2SJens Axboe 
549e94cd4fSJens Axboe 	mapping = page_mapping(page);
559e94cd4fSJens Axboe 	if (mapping) {
565abc97aaSJens Axboe 		WARN_ON(!PageUptodate(page));
575abc97aaSJens Axboe 
58ad8d6f0aSJens Axboe 		/*
599e94cd4fSJens Axboe 		 * At least for ext2 with nobh option, we need to wait on
609e94cd4fSJens Axboe 		 * writeback completing on this page, since we'll remove it
619e94cd4fSJens Axboe 		 * from the pagecache.  Otherwise truncate wont wait on the
629e94cd4fSJens Axboe 		 * page, allowing the disk blocks to be reused by someone else
639e94cd4fSJens Axboe 		 * before we actually wrote our data to them. fs corruption
649e94cd4fSJens Axboe 		 * ensues.
65ad8d6f0aSJens Axboe 		 */
66ad8d6f0aSJens Axboe 		wait_on_page_writeback(page);
67ad8d6f0aSJens Axboe 
68266cf658SDavid Howells 		if (page_has_private(page) &&
69266cf658SDavid Howells 		    !try_to_release_page(page, GFP_KERNEL))
70ca39d651SJens Axboe 			goto out_unlock;
714f6f0bd2SJens Axboe 
729e94cd4fSJens Axboe 		/*
739e94cd4fSJens Axboe 		 * If we succeeded in removing the mapping, set LRU flag
749e94cd4fSJens Axboe 		 * and return good.
759e94cd4fSJens Axboe 		 */
769e94cd4fSJens Axboe 		if (remove_mapping(mapping, page)) {
771432873aSJens Axboe 			buf->flags |= PIPE_BUF_FLAG_LRU;
785abc97aaSJens Axboe 			return 0;
795abc97aaSJens Axboe 		}
809e94cd4fSJens Axboe 	}
819e94cd4fSJens Axboe 
829e94cd4fSJens Axboe 	/*
839e94cd4fSJens Axboe 	 * Raced with truncate or failed to remove page from current
849e94cd4fSJens Axboe 	 * address space, unlock and return failure.
859e94cd4fSJens Axboe 	 */
86ca39d651SJens Axboe out_unlock:
879e94cd4fSJens Axboe 	unlock_page(page);
889e94cd4fSJens Axboe 	return 1;
899e94cd4fSJens Axboe }
905abc97aaSJens Axboe 
9176ad4d11SJens Axboe static void page_cache_pipe_buf_release(struct pipe_inode_info *pipe,
925274f052SJens Axboe 					struct pipe_buffer *buf)
935274f052SJens Axboe {
9409cbfeafSKirill A. Shutemov 	put_page(buf->page);
951432873aSJens Axboe 	buf->flags &= ~PIPE_BUF_FLAG_LRU;
965274f052SJens Axboe }
975274f052SJens Axboe 
980845718dSJens Axboe /*
990845718dSJens Axboe  * Check whether the contents of buf is OK to access. Since the content
1000845718dSJens Axboe  * is a page cache page, IO may be in flight.
1010845718dSJens Axboe  */
102cac36bb0SJens Axboe static int page_cache_pipe_buf_confirm(struct pipe_inode_info *pipe,
1035274f052SJens Axboe 				       struct pipe_buffer *buf)
1045274f052SJens Axboe {
1055274f052SJens Axboe 	struct page *page = buf->page;
10649d0b21bSJens Axboe 	int err;
1075274f052SJens Axboe 
1085274f052SJens Axboe 	if (!PageUptodate(page)) {
10949d0b21bSJens Axboe 		lock_page(page);
1105274f052SJens Axboe 
11149d0b21bSJens Axboe 		/*
11249d0b21bSJens Axboe 		 * Page got truncated/unhashed. This will cause a 0-byte
11373d62d83SIngo Molnar 		 * splice, if this is the first page.
11449d0b21bSJens Axboe 		 */
1155274f052SJens Axboe 		if (!page->mapping) {
11649d0b21bSJens Axboe 			err = -ENODATA;
11749d0b21bSJens Axboe 			goto error;
1185274f052SJens Axboe 		}
1195274f052SJens Axboe 
12049d0b21bSJens Axboe 		/*
12173d62d83SIngo Molnar 		 * Uh oh, read-error from disk.
12249d0b21bSJens Axboe 		 */
12349d0b21bSJens Axboe 		if (!PageUptodate(page)) {
12449d0b21bSJens Axboe 			err = -EIO;
12549d0b21bSJens Axboe 			goto error;
12649d0b21bSJens Axboe 		}
12749d0b21bSJens Axboe 
12849d0b21bSJens Axboe 		/*
129f84d7519SJens Axboe 		 * Page is ok afterall, we are done.
13049d0b21bSJens Axboe 		 */
13149d0b21bSJens Axboe 		unlock_page(page);
13249d0b21bSJens Axboe 	}
13349d0b21bSJens Axboe 
134f84d7519SJens Axboe 	return 0;
13549d0b21bSJens Axboe error:
13649d0b21bSJens Axboe 	unlock_page(page);
137f84d7519SJens Axboe 	return err;
13870524490SJens Axboe }
13970524490SJens Axboe 
140708e3508SHugh Dickins const struct pipe_buf_operations page_cache_pipe_buf_ops = {
1415274f052SJens Axboe 	.can_merge = 0,
142cac36bb0SJens Axboe 	.confirm = page_cache_pipe_buf_confirm,
1435274f052SJens Axboe 	.release = page_cache_pipe_buf_release,
1445abc97aaSJens Axboe 	.steal = page_cache_pipe_buf_steal,
145f84d7519SJens Axboe 	.get = generic_pipe_buf_get,
1465274f052SJens Axboe };
1475274f052SJens Axboe 
148912d35f8SJens Axboe static int user_page_pipe_buf_steal(struct pipe_inode_info *pipe,
149912d35f8SJens Axboe 				    struct pipe_buffer *buf)
150912d35f8SJens Axboe {
1517afa6fd0SJens Axboe 	if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
152912d35f8SJens Axboe 		return 1;
1537afa6fd0SJens Axboe 
1541432873aSJens Axboe 	buf->flags |= PIPE_BUF_FLAG_LRU;
155330ab716SJens Axboe 	return generic_pipe_buf_steal(pipe, buf);
156912d35f8SJens Axboe }
157912d35f8SJens Axboe 
158d4c3cca9SEric Dumazet static const struct pipe_buf_operations user_page_pipe_buf_ops = {
159912d35f8SJens Axboe 	.can_merge = 0,
160cac36bb0SJens Axboe 	.confirm = generic_pipe_buf_confirm,
161912d35f8SJens Axboe 	.release = page_cache_pipe_buf_release,
162912d35f8SJens Axboe 	.steal = user_page_pipe_buf_steal,
163f84d7519SJens Axboe 	.get = generic_pipe_buf_get,
164912d35f8SJens Axboe };
165912d35f8SJens Axboe 
166825cdcb1SNamhyung Kim static void wakeup_pipe_readers(struct pipe_inode_info *pipe)
167825cdcb1SNamhyung Kim {
168825cdcb1SNamhyung Kim 	smp_mb();
169825cdcb1SNamhyung Kim 	if (waitqueue_active(&pipe->wait))
170825cdcb1SNamhyung Kim 		wake_up_interruptible(&pipe->wait);
171825cdcb1SNamhyung Kim 	kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
172825cdcb1SNamhyung Kim }
173825cdcb1SNamhyung Kim 
174932cc6d4SJens Axboe /**
175932cc6d4SJens Axboe  * splice_to_pipe - fill passed data into a pipe
176932cc6d4SJens Axboe  * @pipe:	pipe to fill
177932cc6d4SJens Axboe  * @spd:	data to fill
178932cc6d4SJens Axboe  *
179932cc6d4SJens Axboe  * Description:
18079685b8dSRandy Dunlap  *    @spd contains a map of pages and len/offset tuples, along with
181932cc6d4SJens Axboe  *    the struct pipe_buf_operations associated with these pages. This
182932cc6d4SJens Axboe  *    function will link that data to the pipe.
183932cc6d4SJens Axboe  *
18483f9135bSJens Axboe  */
185d6b29d7cSJens Axboe ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
186912d35f8SJens Axboe 		       struct splice_pipe_desc *spd)
1875274f052SJens Axboe {
18800de00bdSJens Axboe 	unsigned int spd_pages = spd->nr_pages;
1898924feffSAl Viro 	int ret = 0, page_nr = 0;
1905274f052SJens Axboe 
191d6785d91SRabin Vincent 	if (!spd_pages)
192d6785d91SRabin Vincent 		return 0;
193d6785d91SRabin Vincent 
1948924feffSAl Viro 	if (unlikely(!pipe->readers)) {
1955274f052SJens Axboe 		send_sig(SIGPIPE, current, 0);
1965274f052SJens Axboe 		ret = -EPIPE;
1978924feffSAl Viro 		goto out;
1985274f052SJens Axboe 	}
1995274f052SJens Axboe 
2008924feffSAl Viro 	while (pipe->nrbufs < pipe->buffers) {
20135f3d14dSJens Axboe 		int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
2023a326a2cSIngo Molnar 		struct pipe_buffer *buf = pipe->bufs + newbuf;
2035274f052SJens Axboe 
204912d35f8SJens Axboe 		buf->page = spd->pages[page_nr];
205912d35f8SJens Axboe 		buf->offset = spd->partial[page_nr].offset;
206912d35f8SJens Axboe 		buf->len = spd->partial[page_nr].len;
207497f9625SJens Axboe 		buf->private = spd->partial[page_nr].private;
208912d35f8SJens Axboe 		buf->ops = spd->ops;
2095a81e6a1SMiklos Szeredi 		buf->flags = 0;
2107afa6fd0SJens Axboe 
2116f767b04SJens Axboe 		pipe->nrbufs++;
212912d35f8SJens Axboe 		page_nr++;
213912d35f8SJens Axboe 		ret += buf->len;
214912d35f8SJens Axboe 
215912d35f8SJens Axboe 		if (!--spd->nr_pages)
2165274f052SJens Axboe 			break;
2175274f052SJens Axboe 	}
2185274f052SJens Axboe 
21929e35094SLinus Torvalds 	if (!ret)
22029e35094SLinus Torvalds 		ret = -EAGAIN;
22129e35094SLinus Torvalds 
2228924feffSAl Viro out:
22300de00bdSJens Axboe 	while (page_nr < spd_pages)
224bbdfc2f7SJens Axboe 		spd->spd_release(spd, page_nr++);
2255274f052SJens Axboe 
2265274f052SJens Axboe 	return ret;
2275274f052SJens Axboe }
2282b514574SHannes Frederic Sowa EXPORT_SYMBOL_GPL(splice_to_pipe);
2295274f052SJens Axboe 
23079fddc4eSAl Viro ssize_t add_to_pipe(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
23179fddc4eSAl Viro {
23279fddc4eSAl Viro 	int ret;
23379fddc4eSAl Viro 
23479fddc4eSAl Viro 	if (unlikely(!pipe->readers)) {
23579fddc4eSAl Viro 		send_sig(SIGPIPE, current, 0);
23679fddc4eSAl Viro 		ret = -EPIPE;
23779fddc4eSAl Viro 	} else if (pipe->nrbufs == pipe->buffers) {
23879fddc4eSAl Viro 		ret = -EAGAIN;
23979fddc4eSAl Viro 	} else {
24079fddc4eSAl Viro 		int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
24179fddc4eSAl Viro 		pipe->bufs[newbuf] = *buf;
24279fddc4eSAl Viro 		pipe->nrbufs++;
24379fddc4eSAl Viro 		return buf->len;
24479fddc4eSAl Viro 	}
245a779638cSMiklos Szeredi 	pipe_buf_release(pipe, buf);
24679fddc4eSAl Viro 	return ret;
24779fddc4eSAl Viro }
24879fddc4eSAl Viro EXPORT_SYMBOL(add_to_pipe);
24979fddc4eSAl Viro 
25035f3d14dSJens Axboe /*
25135f3d14dSJens Axboe  * Check if we need to grow the arrays holding pages and partial page
25235f3d14dSJens Axboe  * descriptions.
25335f3d14dSJens Axboe  */
254047fe360SEric Dumazet int splice_grow_spd(const struct pipe_inode_info *pipe, struct splice_pipe_desc *spd)
25535f3d14dSJens Axboe {
2566aa7de05SMark Rutland 	unsigned int buffers = READ_ONCE(pipe->buffers);
257047fe360SEric Dumazet 
258047fe360SEric Dumazet 	spd->nr_pages_max = buffers;
259047fe360SEric Dumazet 	if (buffers <= PIPE_DEF_BUFFERS)
26035f3d14dSJens Axboe 		return 0;
26135f3d14dSJens Axboe 
2626da2ec56SKees Cook 	spd->pages = kmalloc_array(buffers, sizeof(struct page *), GFP_KERNEL);
2636da2ec56SKees Cook 	spd->partial = kmalloc_array(buffers, sizeof(struct partial_page),
2646da2ec56SKees Cook 				     GFP_KERNEL);
26535f3d14dSJens Axboe 
26635f3d14dSJens Axboe 	if (spd->pages && spd->partial)
26735f3d14dSJens Axboe 		return 0;
26835f3d14dSJens Axboe 
26935f3d14dSJens Axboe 	kfree(spd->pages);
27035f3d14dSJens Axboe 	kfree(spd->partial);
27135f3d14dSJens Axboe 	return -ENOMEM;
27235f3d14dSJens Axboe }
27335f3d14dSJens Axboe 
274047fe360SEric Dumazet void splice_shrink_spd(struct splice_pipe_desc *spd)
27535f3d14dSJens Axboe {
276047fe360SEric Dumazet 	if (spd->nr_pages_max <= PIPE_DEF_BUFFERS)
27735f3d14dSJens Axboe 		return;
27835f3d14dSJens Axboe 
27935f3d14dSJens Axboe 	kfree(spd->pages);
28035f3d14dSJens Axboe 	kfree(spd->partial);
28135f3d14dSJens Axboe }
28235f3d14dSJens Axboe 
28383f9135bSJens Axboe /**
28483f9135bSJens Axboe  * generic_file_splice_read - splice data from file to a pipe
28583f9135bSJens Axboe  * @in:		file to splice from
286932cc6d4SJens Axboe  * @ppos:	position in @in
28783f9135bSJens Axboe  * @pipe:	pipe to splice to
28883f9135bSJens Axboe  * @len:	number of bytes to splice
28983f9135bSJens Axboe  * @flags:	splice modifier flags
29083f9135bSJens Axboe  *
291932cc6d4SJens Axboe  * Description:
292932cc6d4SJens Axboe  *    Will read pages from given file and fill them into a pipe. Can be
29382c156f8SAl Viro  *    used as long as it has more or less sane ->read_iter().
294932cc6d4SJens Axboe  *
29583f9135bSJens Axboe  */
296cbb7e577SJens Axboe ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
297cbb7e577SJens Axboe 				 struct pipe_inode_info *pipe, size_t len,
298cbb7e577SJens Axboe 				 unsigned int flags)
2995274f052SJens Axboe {
30082c156f8SAl Viro 	struct iov_iter to;
30182c156f8SAl Viro 	struct kiocb kiocb;
30282c156f8SAl Viro 	int idx, ret;
303be64f884SBoaz Harrosh 
30482c156f8SAl Viro 	iov_iter_pipe(&to, ITER_PIPE | READ, pipe, len);
30582c156f8SAl Viro 	idx = to.idx;
30682c156f8SAl Viro 	init_sync_kiocb(&kiocb, in);
30782c156f8SAl Viro 	kiocb.ki_pos = *ppos;
308bb7462b6SMiklos Szeredi 	ret = call_read_iter(in, &kiocb, &to);
309723590edSMiklos Szeredi 	if (ret > 0) {
31082c156f8SAl Viro 		*ppos = kiocb.ki_pos;
311723590edSMiklos Szeredi 		file_accessed(in);
31282c156f8SAl Viro 	} else if (ret < 0) {
31382c156f8SAl Viro 		to.idx = idx;
31482c156f8SAl Viro 		to.iov_offset = 0;
31582c156f8SAl Viro 		iov_iter_advance(&to, 0); /* to free what was emitted */
31682c156f8SAl Viro 		/*
31782c156f8SAl Viro 		 * callers of ->splice_read() expect -EAGAIN on
31882c156f8SAl Viro 		 * "can't put anything in there", rather than -EFAULT.
31982c156f8SAl Viro 		 */
32082c156f8SAl Viro 		if (ret == -EFAULT)
32182c156f8SAl Viro 			ret = -EAGAIN;
322723590edSMiklos Szeredi 	}
3235274f052SJens Axboe 
3245274f052SJens Axboe 	return ret;
3255274f052SJens Axboe }
326059a8f37SJens Axboe EXPORT_SYMBOL(generic_file_splice_read);
327059a8f37SJens Axboe 
328241699cdSAl Viro const struct pipe_buf_operations default_pipe_buf_ops = {
3296818173bSMiklos Szeredi 	.can_merge = 0,
3306818173bSMiklos Szeredi 	.confirm = generic_pipe_buf_confirm,
3316818173bSMiklos Szeredi 	.release = generic_pipe_buf_release,
3326818173bSMiklos Szeredi 	.steal = generic_pipe_buf_steal,
3336818173bSMiklos Szeredi 	.get = generic_pipe_buf_get,
3346818173bSMiklos Szeredi };
3356818173bSMiklos Szeredi 
33628a625cbSMiklos Szeredi static int generic_pipe_buf_nosteal(struct pipe_inode_info *pipe,
33728a625cbSMiklos Szeredi 				    struct pipe_buffer *buf)
33828a625cbSMiklos Szeredi {
33928a625cbSMiklos Szeredi 	return 1;
34028a625cbSMiklos Szeredi }
34128a625cbSMiklos Szeredi 
34228a625cbSMiklos Szeredi /* Pipe buffer operations for a socket and similar. */
34328a625cbSMiklos Szeredi const struct pipe_buf_operations nosteal_pipe_buf_ops = {
34428a625cbSMiklos Szeredi 	.can_merge = 0,
34528a625cbSMiklos Szeredi 	.confirm = generic_pipe_buf_confirm,
34628a625cbSMiklos Szeredi 	.release = generic_pipe_buf_release,
34728a625cbSMiklos Szeredi 	.steal = generic_pipe_buf_nosteal,
34828a625cbSMiklos Szeredi 	.get = generic_pipe_buf_get,
34928a625cbSMiklos Szeredi };
35028a625cbSMiklos Szeredi EXPORT_SYMBOL(nosteal_pipe_buf_ops);
35128a625cbSMiklos Szeredi 
352523ac9afSAl Viro static ssize_t kernel_readv(struct file *file, const struct kvec *vec,
3536818173bSMiklos Szeredi 			    unsigned long vlen, loff_t offset)
3546818173bSMiklos Szeredi {
3556818173bSMiklos Szeredi 	mm_segment_t old_fs;
3566818173bSMiklos Szeredi 	loff_t pos = offset;
3576818173bSMiklos Szeredi 	ssize_t res;
3586818173bSMiklos Szeredi 
3596818173bSMiklos Szeredi 	old_fs = get_fs();
3606818173bSMiklos Szeredi 	set_fs(get_ds());
3616818173bSMiklos Szeredi 	/* The cast to a user pointer is valid due to the set_fs() */
362793b80efSChristoph Hellwig 	res = vfs_readv(file, (const struct iovec __user *)vec, vlen, &pos, 0);
3636818173bSMiklos Szeredi 	set_fs(old_fs);
3646818173bSMiklos Szeredi 
3656818173bSMiklos Szeredi 	return res;
3666818173bSMiklos Szeredi }
3676818173bSMiklos Szeredi 
36882c156f8SAl Viro static ssize_t default_file_splice_read(struct file *in, loff_t *ppos,
3696818173bSMiklos Szeredi 				 struct pipe_inode_info *pipe, size_t len,
3706818173bSMiklos Szeredi 				 unsigned int flags)
3716818173bSMiklos Szeredi {
372523ac9afSAl Viro 	struct kvec *vec, __vec[PIPE_DEF_BUFFERS];
373523ac9afSAl Viro 	struct iov_iter to;
374523ac9afSAl Viro 	struct page **pages;
3756818173bSMiklos Szeredi 	unsigned int nr_pages;
37613c0f52bSAl Viro 	size_t offset, base, copied = 0;
3776818173bSMiklos Szeredi 	ssize_t res;
3786818173bSMiklos Szeredi 	int i;
3796818173bSMiklos Szeredi 
380523ac9afSAl Viro 	if (pipe->nrbufs == pipe->buffers)
381523ac9afSAl Viro 		return -EAGAIN;
382523ac9afSAl Viro 
383523ac9afSAl Viro 	/*
384523ac9afSAl Viro 	 * Try to keep page boundaries matching to source pagecache ones -
385523ac9afSAl Viro 	 * it probably won't be much help, but...
386523ac9afSAl Viro 	 */
387523ac9afSAl Viro 	offset = *ppos & ~PAGE_MASK;
388523ac9afSAl Viro 
389523ac9afSAl Viro 	iov_iter_pipe(&to, ITER_PIPE | READ, pipe, len + offset);
390523ac9afSAl Viro 
39113c0f52bSAl Viro 	res = iov_iter_get_pages_alloc(&to, &pages, len + offset, &base);
392523ac9afSAl Viro 	if (res <= 0)
39335f3d14dSJens Axboe 		return -ENOMEM;
39435f3d14dSJens Axboe 
39513c0f52bSAl Viro 	nr_pages = DIV_ROUND_UP(res + base, PAGE_SIZE);
396523ac9afSAl Viro 
39735f3d14dSJens Axboe 	vec = __vec;
398523ac9afSAl Viro 	if (nr_pages > PIPE_DEF_BUFFERS) {
3996da2ec56SKees Cook 		vec = kmalloc_array(nr_pages, sizeof(struct kvec), GFP_KERNEL);
400523ac9afSAl Viro 		if (unlikely(!vec)) {
401523ac9afSAl Viro 			res = -ENOMEM;
402523ac9afSAl Viro 			goto out;
403523ac9afSAl Viro 		}
40435f3d14dSJens Axboe 	}
40535f3d14dSJens Axboe 
406523ac9afSAl Viro 	pipe->bufs[to.idx].offset = offset;
407523ac9afSAl Viro 	pipe->bufs[to.idx].len -= offset;
4086818173bSMiklos Szeredi 
409523ac9afSAl Viro 	for (i = 0; i < nr_pages; i++) {
410523ac9afSAl Viro 		size_t this_len = min_t(size_t, len, PAGE_SIZE - offset);
411523ac9afSAl Viro 		vec[i].iov_base = page_address(pages[i]) + offset;
4126818173bSMiklos Szeredi 		vec[i].iov_len = this_len;
4136818173bSMiklos Szeredi 		len -= this_len;
4146818173bSMiklos Szeredi 		offset = 0;
4156818173bSMiklos Szeredi 	}
4166818173bSMiklos Szeredi 
417523ac9afSAl Viro 	res = kernel_readv(in, vec, nr_pages, *ppos);
418523ac9afSAl Viro 	if (res > 0) {
419523ac9afSAl Viro 		copied = res;
4206818173bSMiklos Szeredi 		*ppos += res;
421523ac9afSAl Viro 	}
4226818173bSMiklos Szeredi 
42335f3d14dSJens Axboe 	if (vec != __vec)
42435f3d14dSJens Axboe 		kfree(vec);
425523ac9afSAl Viro out:
426523ac9afSAl Viro 	for (i = 0; i < nr_pages; i++)
427523ac9afSAl Viro 		put_page(pages[i]);
428523ac9afSAl Viro 	kvfree(pages);
429523ac9afSAl Viro 	iov_iter_advance(&to, copied);	/* truncates and discards */
4306818173bSMiklos Szeredi 	return res;
4316818173bSMiklos Szeredi }
4326818173bSMiklos Szeredi 
4335274f052SJens Axboe /*
4344f6f0bd2SJens Axboe  * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
435016b661eSJens Axboe  * using sendpage(). Return the number of bytes sent.
4365274f052SJens Axboe  */
43776ad4d11SJens Axboe static int pipe_to_sendpage(struct pipe_inode_info *pipe,
4385274f052SJens Axboe 			    struct pipe_buffer *buf, struct splice_desc *sd)
4395274f052SJens Axboe {
4406a14b90bSJens Axboe 	struct file *file = sd->u.file;
4415274f052SJens Axboe 	loff_t pos = sd->pos;
442a8adbe37SMichał Mirosław 	int more;
4435274f052SJens Axboe 
44472c2d531SAl Viro 	if (!likely(file->f_op->sendpage))
445a8adbe37SMichał Mirosław 		return -EINVAL;
446a8adbe37SMichał Mirosław 
44735f9c09fSEric Dumazet 	more = (sd->flags & SPLICE_F_MORE) ? MSG_MORE : 0;
448ae62ca7bSEric Dumazet 
449ae62ca7bSEric Dumazet 	if (sd->len < sd->total_len && pipe->nrbufs > 1)
45035f9c09fSEric Dumazet 		more |= MSG_SENDPAGE_NOTLAST;
451ae62ca7bSEric Dumazet 
452a8adbe37SMichał Mirosław 	return file->f_op->sendpage(file, buf->page, buf->offset,
453f84d7519SJens Axboe 				    sd->len, &pos, more);
4545274f052SJens Axboe }
4555274f052SJens Axboe 
456b3c2d2ddSMiklos Szeredi static void wakeup_pipe_writers(struct pipe_inode_info *pipe)
457b3c2d2ddSMiklos Szeredi {
458b3c2d2ddSMiklos Szeredi 	smp_mb();
459b3c2d2ddSMiklos Szeredi 	if (waitqueue_active(&pipe->wait))
460b3c2d2ddSMiklos Szeredi 		wake_up_interruptible(&pipe->wait);
461b3c2d2ddSMiklos Szeredi 	kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
462b3c2d2ddSMiklos Szeredi }
463b3c2d2ddSMiklos Szeredi 
464b3c2d2ddSMiklos Szeredi /**
465b3c2d2ddSMiklos Szeredi  * splice_from_pipe_feed - feed available data from a pipe to a file
466b3c2d2ddSMiklos Szeredi  * @pipe:	pipe to splice from
467b3c2d2ddSMiklos Szeredi  * @sd:		information to @actor
468b3c2d2ddSMiklos Szeredi  * @actor:	handler that splices the data
469b3c2d2ddSMiklos Szeredi  *
470b3c2d2ddSMiklos Szeredi  * Description:
471b3c2d2ddSMiklos Szeredi  *    This function loops over the pipe and calls @actor to do the
472b3c2d2ddSMiklos Szeredi  *    actual moving of a single struct pipe_buffer to the desired
473b3c2d2ddSMiklos Szeredi  *    destination.  It returns when there's no more buffers left in
474b3c2d2ddSMiklos Szeredi  *    the pipe or if the requested number of bytes (@sd->total_len)
475b3c2d2ddSMiklos Szeredi  *    have been copied.  It returns a positive number (one) if the
476b3c2d2ddSMiklos Szeredi  *    pipe needs to be filled with more data, zero if the required
477b3c2d2ddSMiklos Szeredi  *    number of bytes have been copied and -errno on error.
478b3c2d2ddSMiklos Szeredi  *
479b3c2d2ddSMiklos Szeredi  *    This, together with splice_from_pipe_{begin,end,next}, may be
480b3c2d2ddSMiklos Szeredi  *    used to implement the functionality of __splice_from_pipe() when
481b3c2d2ddSMiklos Szeredi  *    locking is required around copying the pipe buffers to the
482b3c2d2ddSMiklos Szeredi  *    destination.
483b3c2d2ddSMiklos Szeredi  */
48496f9bc8fSAl Viro static int splice_from_pipe_feed(struct pipe_inode_info *pipe, struct splice_desc *sd,
485b3c2d2ddSMiklos Szeredi 			  splice_actor *actor)
486b3c2d2ddSMiklos Szeredi {
487b3c2d2ddSMiklos Szeredi 	int ret;
488b3c2d2ddSMiklos Szeredi 
489b3c2d2ddSMiklos Szeredi 	while (pipe->nrbufs) {
490b3c2d2ddSMiklos Szeredi 		struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
491b3c2d2ddSMiklos Szeredi 
492b3c2d2ddSMiklos Szeredi 		sd->len = buf->len;
493b3c2d2ddSMiklos Szeredi 		if (sd->len > sd->total_len)
494b3c2d2ddSMiklos Szeredi 			sd->len = sd->total_len;
495b3c2d2ddSMiklos Szeredi 
496fba597dbSMiklos Szeredi 		ret = pipe_buf_confirm(pipe, buf);
497a8adbe37SMichał Mirosław 		if (unlikely(ret)) {
498b3c2d2ddSMiklos Szeredi 			if (ret == -ENODATA)
499b3c2d2ddSMiklos Szeredi 				ret = 0;
500b3c2d2ddSMiklos Szeredi 			return ret;
501b3c2d2ddSMiklos Szeredi 		}
502a8adbe37SMichał Mirosław 
503a8adbe37SMichał Mirosław 		ret = actor(pipe, buf, sd);
504a8adbe37SMichał Mirosław 		if (ret <= 0)
505a8adbe37SMichał Mirosław 			return ret;
506a8adbe37SMichał Mirosław 
507b3c2d2ddSMiklos Szeredi 		buf->offset += ret;
508b3c2d2ddSMiklos Szeredi 		buf->len -= ret;
509b3c2d2ddSMiklos Szeredi 
510b3c2d2ddSMiklos Szeredi 		sd->num_spliced += ret;
511b3c2d2ddSMiklos Szeredi 		sd->len -= ret;
512b3c2d2ddSMiklos Szeredi 		sd->pos += ret;
513b3c2d2ddSMiklos Szeredi 		sd->total_len -= ret;
514b3c2d2ddSMiklos Szeredi 
515b3c2d2ddSMiklos Szeredi 		if (!buf->len) {
516a779638cSMiklos Szeredi 			pipe_buf_release(pipe, buf);
51735f3d14dSJens Axboe 			pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
518b3c2d2ddSMiklos Szeredi 			pipe->nrbufs--;
5196447a3cfSAl Viro 			if (pipe->files)
520b3c2d2ddSMiklos Szeredi 				sd->need_wakeup = true;
521b3c2d2ddSMiklos Szeredi 		}
522b3c2d2ddSMiklos Szeredi 
523b3c2d2ddSMiklos Szeredi 		if (!sd->total_len)
524b3c2d2ddSMiklos Szeredi 			return 0;
525b3c2d2ddSMiklos Szeredi 	}
526b3c2d2ddSMiklos Szeredi 
527b3c2d2ddSMiklos Szeredi 	return 1;
528b3c2d2ddSMiklos Szeredi }
529b3c2d2ddSMiklos Szeredi 
530b3c2d2ddSMiklos Szeredi /**
531b3c2d2ddSMiklos Szeredi  * splice_from_pipe_next - wait for some data to splice from
532b3c2d2ddSMiklos Szeredi  * @pipe:	pipe to splice from
533b3c2d2ddSMiklos Szeredi  * @sd:		information about the splice operation
534b3c2d2ddSMiklos Szeredi  *
535b3c2d2ddSMiklos Szeredi  * Description:
536b3c2d2ddSMiklos Szeredi  *    This function will wait for some data and return a positive
537b3c2d2ddSMiklos Szeredi  *    value (one) if pipe buffers are available.  It will return zero
538b3c2d2ddSMiklos Szeredi  *    or -errno if no more data needs to be spliced.
539b3c2d2ddSMiklos Szeredi  */
54096f9bc8fSAl Viro static int splice_from_pipe_next(struct pipe_inode_info *pipe, struct splice_desc *sd)
541b3c2d2ddSMiklos Szeredi {
542c725bfceSJan Kara 	/*
543c725bfceSJan Kara 	 * Check for signal early to make process killable when there are
544c725bfceSJan Kara 	 * always buffers available
545c725bfceSJan Kara 	 */
546c725bfceSJan Kara 	if (signal_pending(current))
547c725bfceSJan Kara 		return -ERESTARTSYS;
548c725bfceSJan Kara 
549b3c2d2ddSMiklos Szeredi 	while (!pipe->nrbufs) {
550b3c2d2ddSMiklos Szeredi 		if (!pipe->writers)
551b3c2d2ddSMiklos Szeredi 			return 0;
552b3c2d2ddSMiklos Szeredi 
553b3c2d2ddSMiklos Szeredi 		if (!pipe->waiting_writers && sd->num_spliced)
554b3c2d2ddSMiklos Szeredi 			return 0;
555b3c2d2ddSMiklos Szeredi 
556b3c2d2ddSMiklos Szeredi 		if (sd->flags & SPLICE_F_NONBLOCK)
557b3c2d2ddSMiklos Szeredi 			return -EAGAIN;
558b3c2d2ddSMiklos Szeredi 
559b3c2d2ddSMiklos Szeredi 		if (signal_pending(current))
560b3c2d2ddSMiklos Szeredi 			return -ERESTARTSYS;
561b3c2d2ddSMiklos Szeredi 
562b3c2d2ddSMiklos Szeredi 		if (sd->need_wakeup) {
563b3c2d2ddSMiklos Szeredi 			wakeup_pipe_writers(pipe);
564b3c2d2ddSMiklos Szeredi 			sd->need_wakeup = false;
565b3c2d2ddSMiklos Szeredi 		}
566b3c2d2ddSMiklos Szeredi 
567b3c2d2ddSMiklos Szeredi 		pipe_wait(pipe);
568b3c2d2ddSMiklos Szeredi 	}
569b3c2d2ddSMiklos Szeredi 
570b3c2d2ddSMiklos Szeredi 	return 1;
571b3c2d2ddSMiklos Szeredi }
572b3c2d2ddSMiklos Szeredi 
573b3c2d2ddSMiklos Szeredi /**
574b3c2d2ddSMiklos Szeredi  * splice_from_pipe_begin - start splicing from pipe
575b80901bbSRandy Dunlap  * @sd:		information about the splice operation
576b3c2d2ddSMiklos Szeredi  *
577b3c2d2ddSMiklos Szeredi  * Description:
578b3c2d2ddSMiklos Szeredi  *    This function should be called before a loop containing
579b3c2d2ddSMiklos Szeredi  *    splice_from_pipe_next() and splice_from_pipe_feed() to
580b3c2d2ddSMiklos Szeredi  *    initialize the necessary fields of @sd.
581b3c2d2ddSMiklos Szeredi  */
58296f9bc8fSAl Viro static void splice_from_pipe_begin(struct splice_desc *sd)
583b3c2d2ddSMiklos Szeredi {
584b3c2d2ddSMiklos Szeredi 	sd->num_spliced = 0;
585b3c2d2ddSMiklos Szeredi 	sd->need_wakeup = false;
586b3c2d2ddSMiklos Szeredi }
587b3c2d2ddSMiklos Szeredi 
588b3c2d2ddSMiklos Szeredi /**
589b3c2d2ddSMiklos Szeredi  * splice_from_pipe_end - finish splicing from pipe
590b3c2d2ddSMiklos Szeredi  * @pipe:	pipe to splice from
591b3c2d2ddSMiklos Szeredi  * @sd:		information about the splice operation
592b3c2d2ddSMiklos Szeredi  *
593b3c2d2ddSMiklos Szeredi  * Description:
594b3c2d2ddSMiklos Szeredi  *    This function will wake up pipe writers if necessary.  It should
595b3c2d2ddSMiklos Szeredi  *    be called after a loop containing splice_from_pipe_next() and
596b3c2d2ddSMiklos Szeredi  *    splice_from_pipe_feed().
597b3c2d2ddSMiklos Szeredi  */
59896f9bc8fSAl Viro static void splice_from_pipe_end(struct pipe_inode_info *pipe, struct splice_desc *sd)
599b3c2d2ddSMiklos Szeredi {
600b3c2d2ddSMiklos Szeredi 	if (sd->need_wakeup)
601b3c2d2ddSMiklos Szeredi 		wakeup_pipe_writers(pipe);
602b3c2d2ddSMiklos Szeredi }
603b3c2d2ddSMiklos Szeredi 
604932cc6d4SJens Axboe /**
605932cc6d4SJens Axboe  * __splice_from_pipe - splice data from a pipe to given actor
606932cc6d4SJens Axboe  * @pipe:	pipe to splice from
607932cc6d4SJens Axboe  * @sd:		information to @actor
608932cc6d4SJens Axboe  * @actor:	handler that splices the data
609932cc6d4SJens Axboe  *
610932cc6d4SJens Axboe  * Description:
611932cc6d4SJens Axboe  *    This function does little more than loop over the pipe and call
612932cc6d4SJens Axboe  *    @actor to do the actual moving of a single struct pipe_buffer to
613932cc6d4SJens Axboe  *    the desired destination. See pipe_to_file, pipe_to_sendpage, or
614932cc6d4SJens Axboe  *    pipe_to_user.
615932cc6d4SJens Axboe  *
61683f9135bSJens Axboe  */
617c66ab6faSJens Axboe ssize_t __splice_from_pipe(struct pipe_inode_info *pipe, struct splice_desc *sd,
618c66ab6faSJens Axboe 			   splice_actor *actor)
6195274f052SJens Axboe {
620b3c2d2ddSMiklos Szeredi 	int ret;
6215274f052SJens Axboe 
622b3c2d2ddSMiklos Szeredi 	splice_from_pipe_begin(sd);
623b3c2d2ddSMiklos Szeredi 	do {
624c2489e07SJan Kara 		cond_resched();
625b3c2d2ddSMiklos Szeredi 		ret = splice_from_pipe_next(pipe, sd);
626b3c2d2ddSMiklos Szeredi 		if (ret > 0)
627b3c2d2ddSMiklos Szeredi 			ret = splice_from_pipe_feed(pipe, sd, actor);
628b3c2d2ddSMiklos Szeredi 	} while (ret > 0);
629b3c2d2ddSMiklos Szeredi 	splice_from_pipe_end(pipe, sd);
6305274f052SJens Axboe 
631b3c2d2ddSMiklos Szeredi 	return sd->num_spliced ? sd->num_spliced : ret;
6325274f052SJens Axboe }
63340bee44eSMark Fasheh EXPORT_SYMBOL(__splice_from_pipe);
6345274f052SJens Axboe 
635932cc6d4SJens Axboe /**
636932cc6d4SJens Axboe  * splice_from_pipe - splice data from a pipe to a file
637932cc6d4SJens Axboe  * @pipe:	pipe to splice from
638932cc6d4SJens Axboe  * @out:	file to splice to
639932cc6d4SJens Axboe  * @ppos:	position in @out
640932cc6d4SJens Axboe  * @len:	how many bytes to splice
641932cc6d4SJens Axboe  * @flags:	splice modifier flags
642932cc6d4SJens Axboe  * @actor:	handler that splices the data
643932cc6d4SJens Axboe  *
644932cc6d4SJens Axboe  * Description:
6452933970bSMiklos Szeredi  *    See __splice_from_pipe. This function locks the pipe inode,
646932cc6d4SJens Axboe  *    otherwise it's identical to __splice_from_pipe().
647932cc6d4SJens Axboe  *
648932cc6d4SJens Axboe  */
6496da61809SMark Fasheh ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
6506da61809SMark Fasheh 			 loff_t *ppos, size_t len, unsigned int flags,
6516da61809SMark Fasheh 			 splice_actor *actor)
6526da61809SMark Fasheh {
6536da61809SMark Fasheh 	ssize_t ret;
654c66ab6faSJens Axboe 	struct splice_desc sd = {
655c66ab6faSJens Axboe 		.total_len = len,
656c66ab6faSJens Axboe 		.flags = flags,
657c66ab6faSJens Axboe 		.pos = *ppos,
6586a14b90bSJens Axboe 		.u.file = out,
659c66ab6faSJens Axboe 	};
6606da61809SMark Fasheh 
66161e0d47cSMiklos Szeredi 	pipe_lock(pipe);
662c66ab6faSJens Axboe 	ret = __splice_from_pipe(pipe, &sd, actor);
66361e0d47cSMiklos Szeredi 	pipe_unlock(pipe);
6646da61809SMark Fasheh 
6656da61809SMark Fasheh 	return ret;
6666da61809SMark Fasheh }
6676da61809SMark Fasheh 
6686da61809SMark Fasheh /**
6698d020765SAl Viro  * iter_file_splice_write - splice data from a pipe to a file
6708d020765SAl Viro  * @pipe:	pipe info
6718d020765SAl Viro  * @out:	file to write to
6728d020765SAl Viro  * @ppos:	position in @out
6738d020765SAl Viro  * @len:	number of bytes to splice
6748d020765SAl Viro  * @flags:	splice modifier flags
6758d020765SAl Viro  *
6768d020765SAl Viro  * Description:
6778d020765SAl Viro  *    Will either move or copy pages (determined by @flags options) from
6788d020765SAl Viro  *    the given pipe inode to the given file.
6798d020765SAl Viro  *    This one is ->write_iter-based.
6808d020765SAl Viro  *
6818d020765SAl Viro  */
6828d020765SAl Viro ssize_t
6838d020765SAl Viro iter_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
6848d020765SAl Viro 			  loff_t *ppos, size_t len, unsigned int flags)
6858d020765SAl Viro {
6868d020765SAl Viro 	struct splice_desc sd = {
6878d020765SAl Viro 		.total_len = len,
6888d020765SAl Viro 		.flags = flags,
6898d020765SAl Viro 		.pos = *ppos,
6908d020765SAl Viro 		.u.file = out,
6918d020765SAl Viro 	};
6928d020765SAl Viro 	int nbufs = pipe->buffers;
6938d020765SAl Viro 	struct bio_vec *array = kcalloc(nbufs, sizeof(struct bio_vec),
6948d020765SAl Viro 					GFP_KERNEL);
6958d020765SAl Viro 	ssize_t ret;
6968d020765SAl Viro 
6978d020765SAl Viro 	if (unlikely(!array))
6988d020765SAl Viro 		return -ENOMEM;
6998d020765SAl Viro 
7008d020765SAl Viro 	pipe_lock(pipe);
7018d020765SAl Viro 
7028d020765SAl Viro 	splice_from_pipe_begin(&sd);
7038d020765SAl Viro 	while (sd.total_len) {
7048d020765SAl Viro 		struct iov_iter from;
7058d020765SAl Viro 		size_t left;
7068d020765SAl Viro 		int n, idx;
7078d020765SAl Viro 
7088d020765SAl Viro 		ret = splice_from_pipe_next(pipe, &sd);
7098d020765SAl Viro 		if (ret <= 0)
7108d020765SAl Viro 			break;
7118d020765SAl Viro 
7128d020765SAl Viro 		if (unlikely(nbufs < pipe->buffers)) {
7138d020765SAl Viro 			kfree(array);
7148d020765SAl Viro 			nbufs = pipe->buffers;
7158d020765SAl Viro 			array = kcalloc(nbufs, sizeof(struct bio_vec),
7168d020765SAl Viro 					GFP_KERNEL);
7178d020765SAl Viro 			if (!array) {
7188d020765SAl Viro 				ret = -ENOMEM;
7198d020765SAl Viro 				break;
7208d020765SAl Viro 			}
7218d020765SAl Viro 		}
7228d020765SAl Viro 
7238d020765SAl Viro 		/* build the vector */
7248d020765SAl Viro 		left = sd.total_len;
7258d020765SAl Viro 		for (n = 0, idx = pipe->curbuf; left && n < pipe->nrbufs; n++, idx++) {
7268d020765SAl Viro 			struct pipe_buffer *buf = pipe->bufs + idx;
7278d020765SAl Viro 			size_t this_len = buf->len;
7288d020765SAl Viro 
7298d020765SAl Viro 			if (this_len > left)
7308d020765SAl Viro 				this_len = left;
7318d020765SAl Viro 
7328d020765SAl Viro 			if (idx == pipe->buffers - 1)
7338d020765SAl Viro 				idx = -1;
7348d020765SAl Viro 
735fba597dbSMiklos Szeredi 			ret = pipe_buf_confirm(pipe, buf);
7368d020765SAl Viro 			if (unlikely(ret)) {
7378d020765SAl Viro 				if (ret == -ENODATA)
7388d020765SAl Viro 					ret = 0;
7398d020765SAl Viro 				goto done;
7408d020765SAl Viro 			}
7418d020765SAl Viro 
7428d020765SAl Viro 			array[n].bv_page = buf->page;
7438d020765SAl Viro 			array[n].bv_len = this_len;
7448d020765SAl Viro 			array[n].bv_offset = buf->offset;
7458d020765SAl Viro 			left -= this_len;
7468d020765SAl Viro 		}
7478d020765SAl Viro 
74805afcb77SAl Viro 		iov_iter_bvec(&from, ITER_BVEC | WRITE, array, n,
74905afcb77SAl Viro 			      sd.total_len - left);
750abbb6589SChristoph Hellwig 		ret = vfs_iter_write(out, &from, &sd.pos, 0);
7518d020765SAl Viro 		if (ret <= 0)
7528d020765SAl Viro 			break;
7538d020765SAl Viro 
7548d020765SAl Viro 		sd.num_spliced += ret;
7558d020765SAl Viro 		sd.total_len -= ret;
756dbe4e192SChristoph Hellwig 		*ppos = sd.pos;
7578d020765SAl Viro 
7588d020765SAl Viro 		/* dismiss the fully eaten buffers, adjust the partial one */
7598d020765SAl Viro 		while (ret) {
7608d020765SAl Viro 			struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
7618d020765SAl Viro 			if (ret >= buf->len) {
7628d020765SAl Viro 				ret -= buf->len;
7638d020765SAl Viro 				buf->len = 0;
764a779638cSMiklos Szeredi 				pipe_buf_release(pipe, buf);
7658d020765SAl Viro 				pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
7668d020765SAl Viro 				pipe->nrbufs--;
7678d020765SAl Viro 				if (pipe->files)
7688d020765SAl Viro 					sd.need_wakeup = true;
7698d020765SAl Viro 			} else {
7708d020765SAl Viro 				buf->offset += ret;
7718d020765SAl Viro 				buf->len -= ret;
7728d020765SAl Viro 				ret = 0;
7738d020765SAl Viro 			}
7748d020765SAl Viro 		}
7758d020765SAl Viro 	}
7768d020765SAl Viro done:
7778d020765SAl Viro 	kfree(array);
7788d020765SAl Viro 	splice_from_pipe_end(pipe, &sd);
7798d020765SAl Viro 
7808d020765SAl Viro 	pipe_unlock(pipe);
7818d020765SAl Viro 
7828d020765SAl Viro 	if (sd.num_spliced)
7838d020765SAl Viro 		ret = sd.num_spliced;
7848d020765SAl Viro 
7858d020765SAl Viro 	return ret;
7868d020765SAl Viro }
7878d020765SAl Viro 
7888d020765SAl Viro EXPORT_SYMBOL(iter_file_splice_write);
7898d020765SAl Viro 
790b2858d7dSMiklos Szeredi static int write_pipe_buf(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
791b2858d7dSMiklos Szeredi 			  struct splice_desc *sd)
7920b0a47f5SMiklos Szeredi {
793b2858d7dSMiklos Szeredi 	int ret;
794b2858d7dSMiklos Szeredi 	void *data;
79506ae43f3SAl Viro 	loff_t tmp = sd->pos;
796b2858d7dSMiklos Szeredi 
797fbb32750SAl Viro 	data = kmap(buf->page);
79806ae43f3SAl Viro 	ret = __kernel_write(sd->u.file, data + buf->offset, sd->len, &tmp);
799fbb32750SAl Viro 	kunmap(buf->page);
800b2858d7dSMiklos Szeredi 
801b2858d7dSMiklos Szeredi 	return ret;
8020b0a47f5SMiklos Szeredi }
8030b0a47f5SMiklos Szeredi 
8040b0a47f5SMiklos Szeredi static ssize_t default_file_splice_write(struct pipe_inode_info *pipe,
8050b0a47f5SMiklos Szeredi 					 struct file *out, loff_t *ppos,
8060b0a47f5SMiklos Szeredi 					 size_t len, unsigned int flags)
8070b0a47f5SMiklos Szeredi {
808b2858d7dSMiklos Szeredi 	ssize_t ret;
8090b0a47f5SMiklos Szeredi 
810b2858d7dSMiklos Szeredi 	ret = splice_from_pipe(pipe, out, ppos, len, flags, write_pipe_buf);
811b2858d7dSMiklos Szeredi 	if (ret > 0)
812b2858d7dSMiklos Szeredi 		*ppos += ret;
8130b0a47f5SMiklos Szeredi 
814b2858d7dSMiklos Szeredi 	return ret;
8150b0a47f5SMiklos Szeredi }
8160b0a47f5SMiklos Szeredi 
81783f9135bSJens Axboe /**
81883f9135bSJens Axboe  * generic_splice_sendpage - splice data from a pipe to a socket
819932cc6d4SJens Axboe  * @pipe:	pipe to splice from
82083f9135bSJens Axboe  * @out:	socket to write to
821932cc6d4SJens Axboe  * @ppos:	position in @out
82283f9135bSJens Axboe  * @len:	number of bytes to splice
82383f9135bSJens Axboe  * @flags:	splice modifier flags
82483f9135bSJens Axboe  *
825932cc6d4SJens Axboe  * Description:
82683f9135bSJens Axboe  *    Will send @len bytes from the pipe to a network socket. No data copying
82783f9135bSJens Axboe  *    is involved.
82883f9135bSJens Axboe  *
82983f9135bSJens Axboe  */
8303a326a2cSIngo Molnar ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
831cbb7e577SJens Axboe 				loff_t *ppos, size_t len, unsigned int flags)
8325274f052SJens Axboe {
83300522fb4SJens Axboe 	return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
8345274f052SJens Axboe }
8355274f052SJens Axboe 
836059a8f37SJens Axboe EXPORT_SYMBOL(generic_splice_sendpage);
837a0f06780SJeff Garzik 
83883f9135bSJens Axboe /*
83983f9135bSJens Axboe  * Attempt to initiate a splice from pipe to file.
84083f9135bSJens Axboe  */
8413a326a2cSIngo Molnar static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
842cbb7e577SJens Axboe 			   loff_t *ppos, size_t len, unsigned int flags)
8435274f052SJens Axboe {
8440b0a47f5SMiklos Szeredi 	ssize_t (*splice_write)(struct pipe_inode_info *, struct file *,
8450b0a47f5SMiklos Szeredi 				loff_t *, size_t, unsigned int);
8465274f052SJens Axboe 
84772c2d531SAl Viro 	if (out->f_op->splice_write)
8480b0a47f5SMiklos Szeredi 		splice_write = out->f_op->splice_write;
849cc56f7deSChangli Gao 	else
8500b0a47f5SMiklos Szeredi 		splice_write = default_file_splice_write;
8510b0a47f5SMiklos Szeredi 
852500368f7SAl Viro 	return splice_write(pipe, out, ppos, len, flags);
8535274f052SJens Axboe }
8545274f052SJens Axboe 
85583f9135bSJens Axboe /*
85683f9135bSJens Axboe  * Attempt to initiate a splice from a file to a pipe.
85783f9135bSJens Axboe  */
858cbb7e577SJens Axboe static long do_splice_to(struct file *in, loff_t *ppos,
859cbb7e577SJens Axboe 			 struct pipe_inode_info *pipe, size_t len,
860cbb7e577SJens Axboe 			 unsigned int flags)
8615274f052SJens Axboe {
8626818173bSMiklos Szeredi 	ssize_t (*splice_read)(struct file *, loff_t *,
8636818173bSMiklos Szeredi 			       struct pipe_inode_info *, size_t, unsigned int);
8645274f052SJens Axboe 	int ret;
8655274f052SJens Axboe 
86649570e9bSJens Axboe 	if (unlikely(!(in->f_mode & FMODE_READ)))
8675274f052SJens Axboe 		return -EBADF;
8685274f052SJens Axboe 
869cbb7e577SJens Axboe 	ret = rw_verify_area(READ, in, ppos, len);
8705274f052SJens Axboe 	if (unlikely(ret < 0))
8715274f052SJens Axboe 		return ret;
8725274f052SJens Axboe 
87303cc0789SAl Viro 	if (unlikely(len > MAX_RW_COUNT))
87403cc0789SAl Viro 		len = MAX_RW_COUNT;
87503cc0789SAl Viro 
87672c2d531SAl Viro 	if (in->f_op->splice_read)
8776818173bSMiklos Szeredi 		splice_read = in->f_op->splice_read;
878cc56f7deSChangli Gao 	else
8796818173bSMiklos Szeredi 		splice_read = default_file_splice_read;
8806818173bSMiklos Szeredi 
8816818173bSMiklos Szeredi 	return splice_read(in, ppos, pipe, len, flags);
8825274f052SJens Axboe }
8835274f052SJens Axboe 
884932cc6d4SJens Axboe /**
885932cc6d4SJens Axboe  * splice_direct_to_actor - splices data directly between two non-pipes
886932cc6d4SJens Axboe  * @in:		file to splice from
887932cc6d4SJens Axboe  * @sd:		actor information on where to splice to
888932cc6d4SJens Axboe  * @actor:	handles the data splicing
889932cc6d4SJens Axboe  *
890932cc6d4SJens Axboe  * Description:
891932cc6d4SJens Axboe  *    This is a special case helper to splice directly between two
892932cc6d4SJens Axboe  *    points, without requiring an explicit pipe. Internally an allocated
893932cc6d4SJens Axboe  *    pipe is cached in the process, and reused during the lifetime of
894932cc6d4SJens Axboe  *    that process.
895932cc6d4SJens Axboe  *
896c66ab6faSJens Axboe  */
897c66ab6faSJens Axboe ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
898c66ab6faSJens Axboe 			       splice_direct_actor *actor)
899b92ce558SJens Axboe {
900b92ce558SJens Axboe 	struct pipe_inode_info *pipe;
901b92ce558SJens Axboe 	long ret, bytes;
902b92ce558SJens Axboe 	umode_t i_mode;
903c66ab6faSJens Axboe 	size_t len;
9040ff28d9fSChristophe Leroy 	int i, flags, more;
905b92ce558SJens Axboe 
906b92ce558SJens Axboe 	/*
907b92ce558SJens Axboe 	 * We require the input being a regular file, as we don't want to
908b92ce558SJens Axboe 	 * randomly drop data for eg socket -> socket splicing. Use the
909b92ce558SJens Axboe 	 * piped splicing for that!
910b92ce558SJens Axboe 	 */
911496ad9aaSAl Viro 	i_mode = file_inode(in)->i_mode;
912b92ce558SJens Axboe 	if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
913b92ce558SJens Axboe 		return -EINVAL;
914b92ce558SJens Axboe 
915b92ce558SJens Axboe 	/*
916b92ce558SJens Axboe 	 * neither in nor out is a pipe, setup an internal pipe attached to
917b92ce558SJens Axboe 	 * 'out' and transfer the wanted data from 'in' to 'out' through that
918b92ce558SJens Axboe 	 */
919b92ce558SJens Axboe 	pipe = current->splice_pipe;
92049570e9bSJens Axboe 	if (unlikely(!pipe)) {
9217bee130eSAl Viro 		pipe = alloc_pipe_info();
922b92ce558SJens Axboe 		if (!pipe)
923b92ce558SJens Axboe 			return -ENOMEM;
924b92ce558SJens Axboe 
925b92ce558SJens Axboe 		/*
926b92ce558SJens Axboe 		 * We don't have an immediate reader, but we'll read the stuff
92700522fb4SJens Axboe 		 * out of the pipe right after the splice_to_pipe(). So set
928b92ce558SJens Axboe 		 * PIPE_READERS appropriately.
929b92ce558SJens Axboe 		 */
930b92ce558SJens Axboe 		pipe->readers = 1;
931b92ce558SJens Axboe 
932b92ce558SJens Axboe 		current->splice_pipe = pipe;
933b92ce558SJens Axboe 	}
934b92ce558SJens Axboe 
935b92ce558SJens Axboe 	/*
93673d62d83SIngo Molnar 	 * Do the splice.
937b92ce558SJens Axboe 	 */
938b92ce558SJens Axboe 	ret = 0;
939b92ce558SJens Axboe 	bytes = 0;
940c66ab6faSJens Axboe 	len = sd->total_len;
941c66ab6faSJens Axboe 	flags = sd->flags;
942c66ab6faSJens Axboe 
943c66ab6faSJens Axboe 	/*
944c66ab6faSJens Axboe 	 * Don't block on output, we have to drain the direct pipe.
945c66ab6faSJens Axboe 	 */
946c66ab6faSJens Axboe 	sd->flags &= ~SPLICE_F_NONBLOCK;
9470ff28d9fSChristophe Leroy 	more = sd->flags & SPLICE_F_MORE;
948b92ce558SJens Axboe 
949b92ce558SJens Axboe 	while (len) {
95051a92c0fSJens Axboe 		size_t read_len;
951a82c53a0STom Zanussi 		loff_t pos = sd->pos, prev_pos = pos;
952b92ce558SJens Axboe 
953bcd4f3acSJens Axboe 		ret = do_splice_to(in, &pos, pipe, len, flags);
95451a92c0fSJens Axboe 		if (unlikely(ret <= 0))
955b92ce558SJens Axboe 			goto out_release;
956b92ce558SJens Axboe 
957b92ce558SJens Axboe 		read_len = ret;
958c66ab6faSJens Axboe 		sd->total_len = read_len;
959b92ce558SJens Axboe 
960b92ce558SJens Axboe 		/*
9610ff28d9fSChristophe Leroy 		 * If more data is pending, set SPLICE_F_MORE
9620ff28d9fSChristophe Leroy 		 * If this is the last data and SPLICE_F_MORE was not set
9630ff28d9fSChristophe Leroy 		 * initially, clears it.
9640ff28d9fSChristophe Leroy 		 */
9650ff28d9fSChristophe Leroy 		if (read_len < len)
9660ff28d9fSChristophe Leroy 			sd->flags |= SPLICE_F_MORE;
9670ff28d9fSChristophe Leroy 		else if (!more)
9680ff28d9fSChristophe Leroy 			sd->flags &= ~SPLICE_F_MORE;
9690ff28d9fSChristophe Leroy 		/*
970b92ce558SJens Axboe 		 * NOTE: nonblocking mode only applies to the input. We
971b92ce558SJens Axboe 		 * must not do the output in nonblocking mode as then we
972b92ce558SJens Axboe 		 * could get stuck data in the internal pipe:
973b92ce558SJens Axboe 		 */
974c66ab6faSJens Axboe 		ret = actor(pipe, sd);
975a82c53a0STom Zanussi 		if (unlikely(ret <= 0)) {
976a82c53a0STom Zanussi 			sd->pos = prev_pos;
977b92ce558SJens Axboe 			goto out_release;
978a82c53a0STom Zanussi 		}
979b92ce558SJens Axboe 
980b92ce558SJens Axboe 		bytes += ret;
981b92ce558SJens Axboe 		len -= ret;
982bcd4f3acSJens Axboe 		sd->pos = pos;
983b92ce558SJens Axboe 
984a82c53a0STom Zanussi 		if (ret < read_len) {
985a82c53a0STom Zanussi 			sd->pos = prev_pos + ret;
98651a92c0fSJens Axboe 			goto out_release;
987b92ce558SJens Axboe 		}
988a82c53a0STom Zanussi 	}
989b92ce558SJens Axboe 
9909e97198dSJens Axboe done:
991b92ce558SJens Axboe 	pipe->nrbufs = pipe->curbuf = 0;
9929e97198dSJens Axboe 	file_accessed(in);
993b92ce558SJens Axboe 	return bytes;
994b92ce558SJens Axboe 
995b92ce558SJens Axboe out_release:
996b92ce558SJens Axboe 	/*
997b92ce558SJens Axboe 	 * If we did an incomplete transfer we must release
998b92ce558SJens Axboe 	 * the pipe buffers in question:
999b92ce558SJens Axboe 	 */
100035f3d14dSJens Axboe 	for (i = 0; i < pipe->buffers; i++) {
1001b92ce558SJens Axboe 		struct pipe_buffer *buf = pipe->bufs + i;
1002b92ce558SJens Axboe 
1003a779638cSMiklos Szeredi 		if (buf->ops)
1004a779638cSMiklos Szeredi 			pipe_buf_release(pipe, buf);
1005b92ce558SJens Axboe 	}
1006b92ce558SJens Axboe 
10079e97198dSJens Axboe 	if (!bytes)
10089e97198dSJens Axboe 		bytes = ret;
1009b92ce558SJens Axboe 
10109e97198dSJens Axboe 	goto done;
1011c66ab6faSJens Axboe }
1012c66ab6faSJens Axboe EXPORT_SYMBOL(splice_direct_to_actor);
1013c66ab6faSJens Axboe 
1014c66ab6faSJens Axboe static int direct_splice_actor(struct pipe_inode_info *pipe,
1015c66ab6faSJens Axboe 			       struct splice_desc *sd)
1016c66ab6faSJens Axboe {
10176a14b90bSJens Axboe 	struct file *file = sd->u.file;
1018c66ab6faSJens Axboe 
10197995bd28SAl Viro 	return do_splice_from(pipe, file, sd->opos, sd->total_len,
10202cb4b05eSChangli Gao 			      sd->flags);
1021c66ab6faSJens Axboe }
1022c66ab6faSJens Axboe 
1023932cc6d4SJens Axboe /**
1024932cc6d4SJens Axboe  * do_splice_direct - splices data directly between two files
1025932cc6d4SJens Axboe  * @in:		file to splice from
1026932cc6d4SJens Axboe  * @ppos:	input file offset
1027932cc6d4SJens Axboe  * @out:	file to splice to
1028acdb37c3SRandy Dunlap  * @opos:	output file offset
1029932cc6d4SJens Axboe  * @len:	number of bytes to splice
1030932cc6d4SJens Axboe  * @flags:	splice modifier flags
1031932cc6d4SJens Axboe  *
1032932cc6d4SJens Axboe  * Description:
1033932cc6d4SJens Axboe  *    For use by do_sendfile(). splice can easily emulate sendfile, but
1034932cc6d4SJens Axboe  *    doing it in the application would incur an extra system call
1035932cc6d4SJens Axboe  *    (splice in + splice out, as compared to just sendfile()). So this helper
1036932cc6d4SJens Axboe  *    can splice directly through a process-private pipe.
1037932cc6d4SJens Axboe  *
1038932cc6d4SJens Axboe  */
1039c66ab6faSJens Axboe long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
10407995bd28SAl Viro 		      loff_t *opos, size_t len, unsigned int flags)
1041c66ab6faSJens Axboe {
1042c66ab6faSJens Axboe 	struct splice_desc sd = {
1043c66ab6faSJens Axboe 		.len		= len,
1044c66ab6faSJens Axboe 		.total_len	= len,
1045c66ab6faSJens Axboe 		.flags		= flags,
1046c66ab6faSJens Axboe 		.pos		= *ppos,
10476a14b90bSJens Axboe 		.u.file		= out,
10487995bd28SAl Viro 		.opos		= opos,
1049c66ab6faSJens Axboe 	};
105051a92c0fSJens Axboe 	long ret;
1051c66ab6faSJens Axboe 
105218c67cb9SAl Viro 	if (unlikely(!(out->f_mode & FMODE_WRITE)))
105318c67cb9SAl Viro 		return -EBADF;
105418c67cb9SAl Viro 
105518c67cb9SAl Viro 	if (unlikely(out->f_flags & O_APPEND))
105618c67cb9SAl Viro 		return -EINVAL;
105718c67cb9SAl Viro 
105818c67cb9SAl Viro 	ret = rw_verify_area(WRITE, out, opos, len);
105918c67cb9SAl Viro 	if (unlikely(ret < 0))
106018c67cb9SAl Viro 		return ret;
106118c67cb9SAl Viro 
1062c66ab6faSJens Axboe 	ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
106351a92c0fSJens Axboe 	if (ret > 0)
1064a82c53a0STom Zanussi 		*ppos = sd.pos;
106551a92c0fSJens Axboe 
1066c66ab6faSJens Axboe 	return ret;
1067b92ce558SJens Axboe }
10681c118596SMiklos Szeredi EXPORT_SYMBOL(do_splice_direct);
1069b92ce558SJens Axboe 
10708924feffSAl Viro static int wait_for_space(struct pipe_inode_info *pipe, unsigned flags)
10718924feffSAl Viro {
107252bce911SLinus Torvalds 	for (;;) {
107352bce911SLinus Torvalds 		if (unlikely(!pipe->readers)) {
107452bce911SLinus Torvalds 			send_sig(SIGPIPE, current, 0);
107552bce911SLinus Torvalds 			return -EPIPE;
107652bce911SLinus Torvalds 		}
107752bce911SLinus Torvalds 		if (pipe->nrbufs != pipe->buffers)
107852bce911SLinus Torvalds 			return 0;
10798924feffSAl Viro 		if (flags & SPLICE_F_NONBLOCK)
10808924feffSAl Viro 			return -EAGAIN;
10818924feffSAl Viro 		if (signal_pending(current))
10828924feffSAl Viro 			return -ERESTARTSYS;
10838924feffSAl Viro 		pipe->waiting_writers++;
10848924feffSAl Viro 		pipe_wait(pipe);
10858924feffSAl Viro 		pipe->waiting_writers--;
10868924feffSAl Viro 	}
10878924feffSAl Viro }
10888924feffSAl Viro 
10897c77f0b3SMiklos Szeredi static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
10907c77f0b3SMiklos Szeredi 			       struct pipe_inode_info *opipe,
10917c77f0b3SMiklos Szeredi 			       size_t len, unsigned int flags);
1092ddac0d39SJens Axboe 
1093ddac0d39SJens Axboe /*
109483f9135bSJens Axboe  * Determine where to splice to/from.
109583f9135bSJens Axboe  */
1096529565dcSIngo Molnar static long do_splice(struct file *in, loff_t __user *off_in,
1097529565dcSIngo Molnar 		      struct file *out, loff_t __user *off_out,
1098529565dcSIngo Molnar 		      size_t len, unsigned int flags)
10995274f052SJens Axboe {
11007c77f0b3SMiklos Szeredi 	struct pipe_inode_info *ipipe;
11017c77f0b3SMiklos Szeredi 	struct pipe_inode_info *opipe;
11027995bd28SAl Viro 	loff_t offset;
1103a4514ebdSJens Axboe 	long ret;
11045274f052SJens Axboe 
110571993e62SLinus Torvalds 	ipipe = get_pipe_info(in);
110671993e62SLinus Torvalds 	opipe = get_pipe_info(out);
11077c77f0b3SMiklos Szeredi 
11087c77f0b3SMiklos Szeredi 	if (ipipe && opipe) {
11097c77f0b3SMiklos Szeredi 		if (off_in || off_out)
11107c77f0b3SMiklos Szeredi 			return -ESPIPE;
11117c77f0b3SMiklos Szeredi 
11127c77f0b3SMiklos Szeredi 		if (!(in->f_mode & FMODE_READ))
11137c77f0b3SMiklos Szeredi 			return -EBADF;
11147c77f0b3SMiklos Szeredi 
11157c77f0b3SMiklos Szeredi 		if (!(out->f_mode & FMODE_WRITE))
11167c77f0b3SMiklos Szeredi 			return -EBADF;
11177c77f0b3SMiklos Szeredi 
11187c77f0b3SMiklos Szeredi 		/* Splicing to self would be fun, but... */
11197c77f0b3SMiklos Szeredi 		if (ipipe == opipe)
11207c77f0b3SMiklos Szeredi 			return -EINVAL;
11217c77f0b3SMiklos Szeredi 
11227c77f0b3SMiklos Szeredi 		return splice_pipe_to_pipe(ipipe, opipe, len, flags);
11237c77f0b3SMiklos Szeredi 	}
11247c77f0b3SMiklos Szeredi 
11257c77f0b3SMiklos Szeredi 	if (ipipe) {
1126529565dcSIngo Molnar 		if (off_in)
1127529565dcSIngo Molnar 			return -ESPIPE;
1128b92ce558SJens Axboe 		if (off_out) {
112919c9a49bSChangli Gao 			if (!(out->f_mode & FMODE_PWRITE))
1130b92ce558SJens Axboe 				return -EINVAL;
1131cbb7e577SJens Axboe 			if (copy_from_user(&offset, off_out, sizeof(loff_t)))
1132b92ce558SJens Axboe 				return -EFAULT;
11337995bd28SAl Viro 		} else {
11347995bd28SAl Viro 			offset = out->f_pos;
11357995bd28SAl Viro 		}
1136529565dcSIngo Molnar 
113718c67cb9SAl Viro 		if (unlikely(!(out->f_mode & FMODE_WRITE)))
113818c67cb9SAl Viro 			return -EBADF;
113918c67cb9SAl Viro 
114018c67cb9SAl Viro 		if (unlikely(out->f_flags & O_APPEND))
114118c67cb9SAl Viro 			return -EINVAL;
114218c67cb9SAl Viro 
114318c67cb9SAl Viro 		ret = rw_verify_area(WRITE, out, &offset, len);
114418c67cb9SAl Viro 		if (unlikely(ret < 0))
114518c67cb9SAl Viro 			return ret;
114618c67cb9SAl Viro 
1147500368f7SAl Viro 		file_start_write(out);
11487995bd28SAl Viro 		ret = do_splice_from(ipipe, out, &offset, len, flags);
1149500368f7SAl Viro 		file_end_write(out);
1150a4514ebdSJens Axboe 
11517995bd28SAl Viro 		if (!off_out)
11527995bd28SAl Viro 			out->f_pos = offset;
11537995bd28SAl Viro 		else if (copy_to_user(off_out, &offset, sizeof(loff_t)))
1154a4514ebdSJens Axboe 			ret = -EFAULT;
1155a4514ebdSJens Axboe 
1156a4514ebdSJens Axboe 		return ret;
1157529565dcSIngo Molnar 	}
11585274f052SJens Axboe 
11597c77f0b3SMiklos Szeredi 	if (opipe) {
1160529565dcSIngo Molnar 		if (off_out)
1161529565dcSIngo Molnar 			return -ESPIPE;
1162b92ce558SJens Axboe 		if (off_in) {
116319c9a49bSChangli Gao 			if (!(in->f_mode & FMODE_PREAD))
1164b92ce558SJens Axboe 				return -EINVAL;
1165cbb7e577SJens Axboe 			if (copy_from_user(&offset, off_in, sizeof(loff_t)))
1166b92ce558SJens Axboe 				return -EFAULT;
11677995bd28SAl Viro 		} else {
11687995bd28SAl Viro 			offset = in->f_pos;
11697995bd28SAl Viro 		}
1170529565dcSIngo Molnar 
11718924feffSAl Viro 		pipe_lock(opipe);
11728924feffSAl Viro 		ret = wait_for_space(opipe, flags);
11738924feffSAl Viro 		if (!ret)
11747995bd28SAl Viro 			ret = do_splice_to(in, &offset, opipe, len, flags);
11758924feffSAl Viro 		pipe_unlock(opipe);
11768924feffSAl Viro 		if (ret > 0)
11778924feffSAl Viro 			wakeup_pipe_readers(opipe);
11787995bd28SAl Viro 		if (!off_in)
11797995bd28SAl Viro 			in->f_pos = offset;
11807995bd28SAl Viro 		else if (copy_to_user(off_in, &offset, sizeof(loff_t)))
1181a4514ebdSJens Axboe 			ret = -EFAULT;
1182a4514ebdSJens Axboe 
1183a4514ebdSJens Axboe 		return ret;
1184529565dcSIngo Molnar 	}
11855274f052SJens Axboe 
11865274f052SJens Axboe 	return -EINVAL;
11875274f052SJens Axboe }
11885274f052SJens Axboe 
118979fddc4eSAl Viro static int iter_to_pipe(struct iov_iter *from,
119079fddc4eSAl Viro 			struct pipe_inode_info *pipe,
119179fddc4eSAl Viro 			unsigned flags)
1192912d35f8SJens Axboe {
119379fddc4eSAl Viro 	struct pipe_buffer buf = {
119479fddc4eSAl Viro 		.ops = &user_page_pipe_buf_ops,
119579fddc4eSAl Viro 		.flags = flags
119679fddc4eSAl Viro 	};
119779fddc4eSAl Viro 	size_t total = 0;
119879fddc4eSAl Viro 	int ret = 0;
119979fddc4eSAl Viro 	bool failed = false;
120079fddc4eSAl Viro 
120179fddc4eSAl Viro 	while (iov_iter_count(from) && !failed) {
120279fddc4eSAl Viro 		struct page *pages[16];
1203db85a9ebSAl Viro 		ssize_t copied;
1204db85a9ebSAl Viro 		size_t start;
120579fddc4eSAl Viro 		int n;
1206912d35f8SJens Axboe 
120779fddc4eSAl Viro 		copied = iov_iter_get_pages(from, pages, ~0UL, 16, &start);
120879fddc4eSAl Viro 		if (copied <= 0) {
120979fddc4eSAl Viro 			ret = copied;
121079fddc4eSAl Viro 			break;
121179fddc4eSAl Viro 		}
1212912d35f8SJens Axboe 
121379fddc4eSAl Viro 		for (n = 0; copied; n++, start = 0) {
1214db85a9ebSAl Viro 			int size = min_t(int, copied, PAGE_SIZE - start);
121579fddc4eSAl Viro 			if (!failed) {
121679fddc4eSAl Viro 				buf.page = pages[n];
121779fddc4eSAl Viro 				buf.offset = start;
121879fddc4eSAl Viro 				buf.len = size;
121979fddc4eSAl Viro 				ret = add_to_pipe(pipe, &buf);
122079fddc4eSAl Viro 				if (unlikely(ret < 0)) {
122179fddc4eSAl Viro 					failed = true;
122279fddc4eSAl Viro 				} else {
122379fddc4eSAl Viro 					iov_iter_advance(from, ret);
122479fddc4eSAl Viro 					total += ret;
122579fddc4eSAl Viro 				}
122679fddc4eSAl Viro 			} else {
122779fddc4eSAl Viro 				put_page(pages[n]);
122879fddc4eSAl Viro 			}
1229db85a9ebSAl Viro 			copied -= size;
1230912d35f8SJens Axboe 		}
1231912d35f8SJens Axboe 	}
123279fddc4eSAl Viro 	return total ? total : ret;
1233912d35f8SJens Axboe }
1234912d35f8SJens Axboe 
12356a14b90bSJens Axboe static int pipe_to_user(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
12366a14b90bSJens Axboe 			struct splice_desc *sd)
12376a14b90bSJens Axboe {
12386130f531SAl Viro 	int n = copy_page_to_iter(buf->page, buf->offset, sd->len, sd->u.data);
12396130f531SAl Viro 	return n == sd->len ? n : -EFAULT;
12406a14b90bSJens Axboe }
12416a14b90bSJens Axboe 
12426a14b90bSJens Axboe /*
12436a14b90bSJens Axboe  * For lack of a better implementation, implement vmsplice() to userspace
12446a14b90bSJens Axboe  * as a simple copy of the pipes pages to the user iov.
12456a14b90bSJens Axboe  */
12466130f531SAl Viro static long vmsplice_to_user(struct file *file, const struct iovec __user *uiov,
12476a14b90bSJens Axboe 			     unsigned long nr_segs, unsigned int flags)
12486a14b90bSJens Axboe {
12496a14b90bSJens Axboe 	struct pipe_inode_info *pipe;
12506a14b90bSJens Axboe 	struct splice_desc sd;
12516a14b90bSJens Axboe 	long ret;
12526130f531SAl Viro 	struct iovec iovstack[UIO_FASTIOV];
12536130f531SAl Viro 	struct iovec *iov = iovstack;
12546130f531SAl Viro 	struct iov_iter iter;
12556a14b90bSJens Axboe 
125671993e62SLinus Torvalds 	pipe = get_pipe_info(file);
12576a14b90bSJens Axboe 	if (!pipe)
12586a14b90bSJens Axboe 		return -EBADF;
12596a14b90bSJens Axboe 
1260345995faSAl Viro 	ret = import_iovec(READ, uiov, nr_segs,
1261345995faSAl Viro 			   ARRAY_SIZE(iovstack), &iov, &iter);
1262345995faSAl Viro 	if (ret < 0)
1263345995faSAl Viro 		return ret;
12646a14b90bSJens Axboe 
1265345995faSAl Viro 	sd.total_len = iov_iter_count(&iter);
12666a14b90bSJens Axboe 	sd.len = 0;
12676a14b90bSJens Axboe 	sd.flags = flags;
12686130f531SAl Viro 	sd.u.data = &iter;
12696a14b90bSJens Axboe 	sd.pos = 0;
12706a14b90bSJens Axboe 
1271345995faSAl Viro 	if (sd.total_len) {
12726130f531SAl Viro 		pipe_lock(pipe);
12736130f531SAl Viro 		ret = __splice_from_pipe(pipe, &sd, pipe_to_user);
127461e0d47cSMiklos Szeredi 		pipe_unlock(pipe);
1275345995faSAl Viro 	}
12766a14b90bSJens Axboe 
12776130f531SAl Viro 	kfree(iov);
12786a14b90bSJens Axboe 	return ret;
12796a14b90bSJens Axboe }
12806a14b90bSJens Axboe 
1281912d35f8SJens Axboe /*
1282912d35f8SJens Axboe  * vmsplice splices a user address range into a pipe. It can be thought of
1283912d35f8SJens Axboe  * as splice-from-memory, where the regular splice is splice-from-file (or
1284912d35f8SJens Axboe  * to file). In both cases the output is a pipe, naturally.
1285912d35f8SJens Axboe  */
1286db85a9ebSAl Viro static long vmsplice_to_pipe(struct file *file, const struct iovec __user *uiov,
1287912d35f8SJens Axboe 			     unsigned long nr_segs, unsigned int flags)
1288912d35f8SJens Axboe {
1289ddac0d39SJens Axboe 	struct pipe_inode_info *pipe;
1290db85a9ebSAl Viro 	struct iovec iovstack[UIO_FASTIOV];
1291db85a9ebSAl Viro 	struct iovec *iov = iovstack;
1292db85a9ebSAl Viro 	struct iov_iter from;
129335f3d14dSJens Axboe 	long ret;
129479fddc4eSAl Viro 	unsigned buf_flag = 0;
129579fddc4eSAl Viro 
129679fddc4eSAl Viro 	if (flags & SPLICE_F_GIFT)
129779fddc4eSAl Viro 		buf_flag = PIPE_BUF_FLAG_GIFT;
1298912d35f8SJens Axboe 
129971993e62SLinus Torvalds 	pipe = get_pipe_info(file);
1300ddac0d39SJens Axboe 	if (!pipe)
1301912d35f8SJens Axboe 		return -EBADF;
1302912d35f8SJens Axboe 
1303db85a9ebSAl Viro 	ret = import_iovec(WRITE, uiov, nr_segs,
1304db85a9ebSAl Viro 			   ARRAY_SIZE(iovstack), &iov, &from);
1305db85a9ebSAl Viro 	if (ret < 0)
1306db85a9ebSAl Viro 		return ret;
1307912d35f8SJens Axboe 
13088924feffSAl Viro 	pipe_lock(pipe);
13098924feffSAl Viro 	ret = wait_for_space(pipe, flags);
131079fddc4eSAl Viro 	if (!ret)
131179fddc4eSAl Viro 		ret = iter_to_pipe(&from, pipe, buf_flag);
13128924feffSAl Viro 	pipe_unlock(pipe);
13138924feffSAl Viro 	if (ret > 0)
13148924feffSAl Viro 		wakeup_pipe_readers(pipe);
1315db85a9ebSAl Viro 	kfree(iov);
131635f3d14dSJens Axboe 	return ret;
1317912d35f8SJens Axboe }
1318912d35f8SJens Axboe 
13196a14b90bSJens Axboe /*
13206a14b90bSJens Axboe  * Note that vmsplice only really supports true splicing _from_ user memory
13216a14b90bSJens Axboe  * to a pipe, not the other way around. Splicing from user memory is a simple
13226a14b90bSJens Axboe  * operation that can be supported without any funky alignment restrictions
13236a14b90bSJens Axboe  * or nasty vm tricks. We simply map in the user memory and fill them into
13246a14b90bSJens Axboe  * a pipe. The reverse isn't quite as easy, though. There are two possible
13256a14b90bSJens Axboe  * solutions for that:
13266a14b90bSJens Axboe  *
13276a14b90bSJens Axboe  *	- memcpy() the data internally, at which point we might as well just
13286a14b90bSJens Axboe  *	  do a regular read() on the buffer anyway.
13296a14b90bSJens Axboe  *	- Lots of nasty vm tricks, that are neither fast nor flexible (it
13306a14b90bSJens Axboe  *	  has restriction limitations on both ends of the pipe).
13316a14b90bSJens Axboe  *
13326a14b90bSJens Axboe  * Currently we punt and implement it as a normal copy, see pipe_to_user().
13336a14b90bSJens Axboe  *
13346a14b90bSJens Axboe  */
133530cfe4efSDominik Brodowski static long do_vmsplice(int fd, const struct iovec __user *iov,
133630cfe4efSDominik Brodowski 			unsigned long nr_segs, unsigned int flags)
1337912d35f8SJens Axboe {
13382903ff01SAl Viro 	struct fd f;
1339912d35f8SJens Axboe 	long error;
1340912d35f8SJens Axboe 
13413d6ea290SAl Viro 	if (unlikely(flags & ~SPLICE_F_ALL))
13423d6ea290SAl Viro 		return -EINVAL;
13436a14b90bSJens Axboe 	if (unlikely(nr_segs > UIO_MAXIOV))
13446a14b90bSJens Axboe 		return -EINVAL;
13456a14b90bSJens Axboe 	else if (unlikely(!nr_segs))
13466a14b90bSJens Axboe 		return 0;
13476a14b90bSJens Axboe 
1348912d35f8SJens Axboe 	error = -EBADF;
13492903ff01SAl Viro 	f = fdget(fd);
13502903ff01SAl Viro 	if (f.file) {
13512903ff01SAl Viro 		if (f.file->f_mode & FMODE_WRITE)
13522903ff01SAl Viro 			error = vmsplice_to_pipe(f.file, iov, nr_segs, flags);
13532903ff01SAl Viro 		else if (f.file->f_mode & FMODE_READ)
13542903ff01SAl Viro 			error = vmsplice_to_user(f.file, iov, nr_segs, flags);
1355912d35f8SJens Axboe 
13562903ff01SAl Viro 		fdput(f);
1357912d35f8SJens Axboe 	}
1358912d35f8SJens Axboe 
1359912d35f8SJens Axboe 	return error;
1360912d35f8SJens Axboe }
1361912d35f8SJens Axboe 
136230cfe4efSDominik Brodowski SYSCALL_DEFINE4(vmsplice, int, fd, const struct iovec __user *, iov,
136330cfe4efSDominik Brodowski 		unsigned long, nr_segs, unsigned int, flags)
136430cfe4efSDominik Brodowski {
136530cfe4efSDominik Brodowski 	return do_vmsplice(fd, iov, nr_segs, flags);
136630cfe4efSDominik Brodowski }
136730cfe4efSDominik Brodowski 
136876b021d0SAl Viro #ifdef CONFIG_COMPAT
136976b021d0SAl Viro COMPAT_SYSCALL_DEFINE4(vmsplice, int, fd, const struct compat_iovec __user *, iov32,
137076b021d0SAl Viro 		    unsigned int, nr_segs, unsigned int, flags)
137176b021d0SAl Viro {
137276b021d0SAl Viro 	unsigned i;
137376b021d0SAl Viro 	struct iovec __user *iov;
137476b021d0SAl Viro 	if (nr_segs > UIO_MAXIOV)
137576b021d0SAl Viro 		return -EINVAL;
137676b021d0SAl Viro 	iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
137776b021d0SAl Viro 	for (i = 0; i < nr_segs; i++) {
137876b021d0SAl Viro 		struct compat_iovec v;
137976b021d0SAl Viro 		if (get_user(v.iov_base, &iov32[i].iov_base) ||
138076b021d0SAl Viro 		    get_user(v.iov_len, &iov32[i].iov_len) ||
138176b021d0SAl Viro 		    put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
138276b021d0SAl Viro 		    put_user(v.iov_len, &iov[i].iov_len))
138376b021d0SAl Viro 			return -EFAULT;
138476b021d0SAl Viro 	}
138530cfe4efSDominik Brodowski 	return do_vmsplice(fd, iov, nr_segs, flags);
138676b021d0SAl Viro }
138776b021d0SAl Viro #endif
138876b021d0SAl Viro 
1389836f92adSHeiko Carstens SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in,
1390836f92adSHeiko Carstens 		int, fd_out, loff_t __user *, off_out,
1391836f92adSHeiko Carstens 		size_t, len, unsigned int, flags)
13925274f052SJens Axboe {
13932903ff01SAl Viro 	struct fd in, out;
13945274f052SJens Axboe 	long error;
13955274f052SJens Axboe 
13965274f052SJens Axboe 	if (unlikely(!len))
13975274f052SJens Axboe 		return 0;
13985274f052SJens Axboe 
13993d6ea290SAl Viro 	if (unlikely(flags & ~SPLICE_F_ALL))
14003d6ea290SAl Viro 		return -EINVAL;
14013d6ea290SAl Viro 
14025274f052SJens Axboe 	error = -EBADF;
14032903ff01SAl Viro 	in = fdget(fd_in);
14042903ff01SAl Viro 	if (in.file) {
14052903ff01SAl Viro 		if (in.file->f_mode & FMODE_READ) {
14062903ff01SAl Viro 			out = fdget(fd_out);
14072903ff01SAl Viro 			if (out.file) {
14082903ff01SAl Viro 				if (out.file->f_mode & FMODE_WRITE)
14092903ff01SAl Viro 					error = do_splice(in.file, off_in,
14102903ff01SAl Viro 							  out.file, off_out,
1411529565dcSIngo Molnar 							  len, flags);
14122903ff01SAl Viro 				fdput(out);
14135274f052SJens Axboe 			}
14145274f052SJens Axboe 		}
14152903ff01SAl Viro 		fdput(in);
14165274f052SJens Axboe 	}
14175274f052SJens Axboe 	return error;
14185274f052SJens Axboe }
141970524490SJens Axboe 
142070524490SJens Axboe /*
1421aadd06e5SJens Axboe  * Make sure there's data to read. Wait for input if we can, otherwise
1422aadd06e5SJens Axboe  * return an appropriate error.
1423aadd06e5SJens Axboe  */
14247c77f0b3SMiklos Szeredi static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1425aadd06e5SJens Axboe {
1426aadd06e5SJens Axboe 	int ret;
1427aadd06e5SJens Axboe 
1428aadd06e5SJens Axboe 	/*
1429aadd06e5SJens Axboe 	 * Check ->nrbufs without the inode lock first. This function
1430aadd06e5SJens Axboe 	 * is speculative anyways, so missing one is ok.
1431aadd06e5SJens Axboe 	 */
1432aadd06e5SJens Axboe 	if (pipe->nrbufs)
1433aadd06e5SJens Axboe 		return 0;
1434aadd06e5SJens Axboe 
1435aadd06e5SJens Axboe 	ret = 0;
143661e0d47cSMiklos Szeredi 	pipe_lock(pipe);
1437aadd06e5SJens Axboe 
1438aadd06e5SJens Axboe 	while (!pipe->nrbufs) {
1439aadd06e5SJens Axboe 		if (signal_pending(current)) {
1440aadd06e5SJens Axboe 			ret = -ERESTARTSYS;
1441aadd06e5SJens Axboe 			break;
1442aadd06e5SJens Axboe 		}
1443aadd06e5SJens Axboe 		if (!pipe->writers)
1444aadd06e5SJens Axboe 			break;
1445aadd06e5SJens Axboe 		if (!pipe->waiting_writers) {
1446aadd06e5SJens Axboe 			if (flags & SPLICE_F_NONBLOCK) {
1447aadd06e5SJens Axboe 				ret = -EAGAIN;
1448aadd06e5SJens Axboe 				break;
1449aadd06e5SJens Axboe 			}
1450aadd06e5SJens Axboe 		}
1451aadd06e5SJens Axboe 		pipe_wait(pipe);
1452aadd06e5SJens Axboe 	}
1453aadd06e5SJens Axboe 
145461e0d47cSMiklos Szeredi 	pipe_unlock(pipe);
1455aadd06e5SJens Axboe 	return ret;
1456aadd06e5SJens Axboe }
1457aadd06e5SJens Axboe 
1458aadd06e5SJens Axboe /*
1459aadd06e5SJens Axboe  * Make sure there's writeable room. Wait for room if we can, otherwise
1460aadd06e5SJens Axboe  * return an appropriate error.
1461aadd06e5SJens Axboe  */
14627c77f0b3SMiklos Szeredi static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1463aadd06e5SJens Axboe {
1464aadd06e5SJens Axboe 	int ret;
1465aadd06e5SJens Axboe 
1466aadd06e5SJens Axboe 	/*
1467aadd06e5SJens Axboe 	 * Check ->nrbufs without the inode lock first. This function
1468aadd06e5SJens Axboe 	 * is speculative anyways, so missing one is ok.
1469aadd06e5SJens Axboe 	 */
147035f3d14dSJens Axboe 	if (pipe->nrbufs < pipe->buffers)
1471aadd06e5SJens Axboe 		return 0;
1472aadd06e5SJens Axboe 
1473aadd06e5SJens Axboe 	ret = 0;
147461e0d47cSMiklos Szeredi 	pipe_lock(pipe);
1475aadd06e5SJens Axboe 
147635f3d14dSJens Axboe 	while (pipe->nrbufs >= pipe->buffers) {
1477aadd06e5SJens Axboe 		if (!pipe->readers) {
1478aadd06e5SJens Axboe 			send_sig(SIGPIPE, current, 0);
1479aadd06e5SJens Axboe 			ret = -EPIPE;
1480aadd06e5SJens Axboe 			break;
1481aadd06e5SJens Axboe 		}
1482aadd06e5SJens Axboe 		if (flags & SPLICE_F_NONBLOCK) {
1483aadd06e5SJens Axboe 			ret = -EAGAIN;
1484aadd06e5SJens Axboe 			break;
1485aadd06e5SJens Axboe 		}
1486aadd06e5SJens Axboe 		if (signal_pending(current)) {
1487aadd06e5SJens Axboe 			ret = -ERESTARTSYS;
1488aadd06e5SJens Axboe 			break;
1489aadd06e5SJens Axboe 		}
1490aadd06e5SJens Axboe 		pipe->waiting_writers++;
1491aadd06e5SJens Axboe 		pipe_wait(pipe);
1492aadd06e5SJens Axboe 		pipe->waiting_writers--;
1493aadd06e5SJens Axboe 	}
1494aadd06e5SJens Axboe 
149561e0d47cSMiklos Szeredi 	pipe_unlock(pipe);
1496aadd06e5SJens Axboe 	return ret;
1497aadd06e5SJens Axboe }
1498aadd06e5SJens Axboe 
1499aadd06e5SJens Axboe /*
15007c77f0b3SMiklos Szeredi  * Splice contents of ipipe to opipe.
15017c77f0b3SMiklos Szeredi  */
15027c77f0b3SMiklos Szeredi static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
15037c77f0b3SMiklos Szeredi 			       struct pipe_inode_info *opipe,
15047c77f0b3SMiklos Szeredi 			       size_t len, unsigned int flags)
15057c77f0b3SMiklos Szeredi {
15067c77f0b3SMiklos Szeredi 	struct pipe_buffer *ibuf, *obuf;
15077c77f0b3SMiklos Szeredi 	int ret = 0, nbuf;
15087c77f0b3SMiklos Szeredi 	bool input_wakeup = false;
15097c77f0b3SMiklos Szeredi 
15107c77f0b3SMiklos Szeredi 
15117c77f0b3SMiklos Szeredi retry:
15127c77f0b3SMiklos Szeredi 	ret = ipipe_prep(ipipe, flags);
15137c77f0b3SMiklos Szeredi 	if (ret)
15147c77f0b3SMiklos Szeredi 		return ret;
15157c77f0b3SMiklos Szeredi 
15167c77f0b3SMiklos Szeredi 	ret = opipe_prep(opipe, flags);
15177c77f0b3SMiklos Szeredi 	if (ret)
15187c77f0b3SMiklos Szeredi 		return ret;
15197c77f0b3SMiklos Szeredi 
15207c77f0b3SMiklos Szeredi 	/*
15217c77f0b3SMiklos Szeredi 	 * Potential ABBA deadlock, work around it by ordering lock
15227c77f0b3SMiklos Szeredi 	 * grabbing by pipe info address. Otherwise two different processes
15237c77f0b3SMiklos Szeredi 	 * could deadlock (one doing tee from A -> B, the other from B -> A).
15247c77f0b3SMiklos Szeredi 	 */
15257c77f0b3SMiklos Szeredi 	pipe_double_lock(ipipe, opipe);
15267c77f0b3SMiklos Szeredi 
15277c77f0b3SMiklos Szeredi 	do {
15287c77f0b3SMiklos Szeredi 		if (!opipe->readers) {
15297c77f0b3SMiklos Szeredi 			send_sig(SIGPIPE, current, 0);
15307c77f0b3SMiklos Szeredi 			if (!ret)
15317c77f0b3SMiklos Szeredi 				ret = -EPIPE;
15327c77f0b3SMiklos Szeredi 			break;
15337c77f0b3SMiklos Szeredi 		}
15347c77f0b3SMiklos Szeredi 
15357c77f0b3SMiklos Szeredi 		if (!ipipe->nrbufs && !ipipe->writers)
15367c77f0b3SMiklos Szeredi 			break;
15377c77f0b3SMiklos Szeredi 
15387c77f0b3SMiklos Szeredi 		/*
15397c77f0b3SMiklos Szeredi 		 * Cannot make any progress, because either the input
15407c77f0b3SMiklos Szeredi 		 * pipe is empty or the output pipe is full.
15417c77f0b3SMiklos Szeredi 		 */
154235f3d14dSJens Axboe 		if (!ipipe->nrbufs || opipe->nrbufs >= opipe->buffers) {
15437c77f0b3SMiklos Szeredi 			/* Already processed some buffers, break */
15447c77f0b3SMiklos Szeredi 			if (ret)
15457c77f0b3SMiklos Szeredi 				break;
15467c77f0b3SMiklos Szeredi 
15477c77f0b3SMiklos Szeredi 			if (flags & SPLICE_F_NONBLOCK) {
15487c77f0b3SMiklos Szeredi 				ret = -EAGAIN;
15497c77f0b3SMiklos Szeredi 				break;
15507c77f0b3SMiklos Szeredi 			}
15517c77f0b3SMiklos Szeredi 
15527c77f0b3SMiklos Szeredi 			/*
15537c77f0b3SMiklos Szeredi 			 * We raced with another reader/writer and haven't
15547c77f0b3SMiklos Szeredi 			 * managed to process any buffers.  A zero return
15557c77f0b3SMiklos Szeredi 			 * value means EOF, so retry instead.
15567c77f0b3SMiklos Szeredi 			 */
15577c77f0b3SMiklos Szeredi 			pipe_unlock(ipipe);
15587c77f0b3SMiklos Szeredi 			pipe_unlock(opipe);
15597c77f0b3SMiklos Szeredi 			goto retry;
15607c77f0b3SMiklos Szeredi 		}
15617c77f0b3SMiklos Szeredi 
15627c77f0b3SMiklos Szeredi 		ibuf = ipipe->bufs + ipipe->curbuf;
156335f3d14dSJens Axboe 		nbuf = (opipe->curbuf + opipe->nrbufs) & (opipe->buffers - 1);
15647c77f0b3SMiklos Szeredi 		obuf = opipe->bufs + nbuf;
15657c77f0b3SMiklos Szeredi 
15667c77f0b3SMiklos Szeredi 		if (len >= ibuf->len) {
15677c77f0b3SMiklos Szeredi 			/*
15687c77f0b3SMiklos Szeredi 			 * Simply move the whole buffer from ipipe to opipe
15697c77f0b3SMiklos Szeredi 			 */
15707c77f0b3SMiklos Szeredi 			*obuf = *ibuf;
15717c77f0b3SMiklos Szeredi 			ibuf->ops = NULL;
15727c77f0b3SMiklos Szeredi 			opipe->nrbufs++;
157335f3d14dSJens Axboe 			ipipe->curbuf = (ipipe->curbuf + 1) & (ipipe->buffers - 1);
15747c77f0b3SMiklos Szeredi 			ipipe->nrbufs--;
15757c77f0b3SMiklos Szeredi 			input_wakeup = true;
15767c77f0b3SMiklos Szeredi 		} else {
15777c77f0b3SMiklos Szeredi 			/*
15787c77f0b3SMiklos Szeredi 			 * Get a reference to this pipe buffer,
15797c77f0b3SMiklos Szeredi 			 * so we can copy the contents over.
15807c77f0b3SMiklos Szeredi 			 */
15817bf2d1dfSMiklos Szeredi 			pipe_buf_get(ipipe, ibuf);
15827c77f0b3SMiklos Szeredi 			*obuf = *ibuf;
15837c77f0b3SMiklos Szeredi 
15847c77f0b3SMiklos Szeredi 			/*
15857c77f0b3SMiklos Szeredi 			 * Don't inherit the gift flag, we need to
15867c77f0b3SMiklos Szeredi 			 * prevent multiple steals of this page.
15877c77f0b3SMiklos Szeredi 			 */
15887c77f0b3SMiklos Szeredi 			obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
15897c77f0b3SMiklos Szeredi 
15907c77f0b3SMiklos Szeredi 			obuf->len = len;
15917c77f0b3SMiklos Szeredi 			opipe->nrbufs++;
15927c77f0b3SMiklos Szeredi 			ibuf->offset += obuf->len;
15937c77f0b3SMiklos Szeredi 			ibuf->len -= obuf->len;
15947c77f0b3SMiklos Szeredi 		}
15957c77f0b3SMiklos Szeredi 		ret += obuf->len;
15967c77f0b3SMiklos Szeredi 		len -= obuf->len;
15977c77f0b3SMiklos Szeredi 	} while (len);
15987c77f0b3SMiklos Szeredi 
15997c77f0b3SMiklos Szeredi 	pipe_unlock(ipipe);
16007c77f0b3SMiklos Szeredi 	pipe_unlock(opipe);
16017c77f0b3SMiklos Szeredi 
16027c77f0b3SMiklos Szeredi 	/*
16037c77f0b3SMiklos Szeredi 	 * If we put data in the output pipe, wakeup any potential readers.
16047c77f0b3SMiklos Szeredi 	 */
1605825cdcb1SNamhyung Kim 	if (ret > 0)
1606825cdcb1SNamhyung Kim 		wakeup_pipe_readers(opipe);
1607825cdcb1SNamhyung Kim 
16087c77f0b3SMiklos Szeredi 	if (input_wakeup)
16097c77f0b3SMiklos Szeredi 		wakeup_pipe_writers(ipipe);
16107c77f0b3SMiklos Szeredi 
16117c77f0b3SMiklos Szeredi 	return ret;
16127c77f0b3SMiklos Szeredi }
16137c77f0b3SMiklos Szeredi 
16147c77f0b3SMiklos Szeredi /*
161570524490SJens Axboe  * Link contents of ipipe to opipe.
161670524490SJens Axboe  */
161770524490SJens Axboe static int link_pipe(struct pipe_inode_info *ipipe,
161870524490SJens Axboe 		     struct pipe_inode_info *opipe,
161970524490SJens Axboe 		     size_t len, unsigned int flags)
162070524490SJens Axboe {
162170524490SJens Axboe 	struct pipe_buffer *ibuf, *obuf;
1622aadd06e5SJens Axboe 	int ret = 0, i = 0, nbuf;
162370524490SJens Axboe 
162470524490SJens Axboe 	/*
162570524490SJens Axboe 	 * Potential ABBA deadlock, work around it by ordering lock
162661e0d47cSMiklos Szeredi 	 * grabbing by pipe info address. Otherwise two different processes
162770524490SJens Axboe 	 * could deadlock (one doing tee from A -> B, the other from B -> A).
162870524490SJens Axboe 	 */
162961e0d47cSMiklos Szeredi 	pipe_double_lock(ipipe, opipe);
163070524490SJens Axboe 
1631aadd06e5SJens Axboe 	do {
163270524490SJens Axboe 		if (!opipe->readers) {
163370524490SJens Axboe 			send_sig(SIGPIPE, current, 0);
163470524490SJens Axboe 			if (!ret)
163570524490SJens Axboe 				ret = -EPIPE;
163670524490SJens Axboe 			break;
163770524490SJens Axboe 		}
163870524490SJens Axboe 
163970524490SJens Axboe 		/*
1640aadd06e5SJens Axboe 		 * If we have iterated all input buffers or ran out of
1641aadd06e5SJens Axboe 		 * output room, break.
164270524490SJens Axboe 		 */
164335f3d14dSJens Axboe 		if (i >= ipipe->nrbufs || opipe->nrbufs >= opipe->buffers)
1644aadd06e5SJens Axboe 			break;
1645aadd06e5SJens Axboe 
164635f3d14dSJens Axboe 		ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (ipipe->buffers-1));
164735f3d14dSJens Axboe 		nbuf = (opipe->curbuf + opipe->nrbufs) & (opipe->buffers - 1);
164870524490SJens Axboe 
164970524490SJens Axboe 		/*
165070524490SJens Axboe 		 * Get a reference to this pipe buffer,
165170524490SJens Axboe 		 * so we can copy the contents over.
165270524490SJens Axboe 		 */
16537bf2d1dfSMiklos Szeredi 		pipe_buf_get(ipipe, ibuf);
165470524490SJens Axboe 
165570524490SJens Axboe 		obuf = opipe->bufs + nbuf;
165670524490SJens Axboe 		*obuf = *ibuf;
165770524490SJens Axboe 
16587afa6fd0SJens Axboe 		/*
16597afa6fd0SJens Axboe 		 * Don't inherit the gift flag, we need to
16607afa6fd0SJens Axboe 		 * prevent multiple steals of this page.
16617afa6fd0SJens Axboe 		 */
16627afa6fd0SJens Axboe 		obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
16637afa6fd0SJens Axboe 
166470524490SJens Axboe 		if (obuf->len > len)
166570524490SJens Axboe 			obuf->len = len;
166670524490SJens Axboe 
166770524490SJens Axboe 		opipe->nrbufs++;
166870524490SJens Axboe 		ret += obuf->len;
166970524490SJens Axboe 		len -= obuf->len;
1670aadd06e5SJens Axboe 		i++;
1671aadd06e5SJens Axboe 	} while (len);
167270524490SJens Axboe 
167302cf01aeSJens Axboe 	/*
167402cf01aeSJens Axboe 	 * return EAGAIN if we have the potential of some data in the
167502cf01aeSJens Axboe 	 * future, otherwise just return 0
167602cf01aeSJens Axboe 	 */
167702cf01aeSJens Axboe 	if (!ret && ipipe->waiting_writers && (flags & SPLICE_F_NONBLOCK))
167802cf01aeSJens Axboe 		ret = -EAGAIN;
167902cf01aeSJens Axboe 
168061e0d47cSMiklos Szeredi 	pipe_unlock(ipipe);
168161e0d47cSMiklos Szeredi 	pipe_unlock(opipe);
168270524490SJens Axboe 
1683aadd06e5SJens Axboe 	/*
1684aadd06e5SJens Axboe 	 * If we put data in the output pipe, wakeup any potential readers.
1685aadd06e5SJens Axboe 	 */
1686825cdcb1SNamhyung Kim 	if (ret > 0)
1687825cdcb1SNamhyung Kim 		wakeup_pipe_readers(opipe);
168870524490SJens Axboe 
168970524490SJens Axboe 	return ret;
169070524490SJens Axboe }
169170524490SJens Axboe 
169270524490SJens Axboe /*
169370524490SJens Axboe  * This is a tee(1) implementation that works on pipes. It doesn't copy
169470524490SJens Axboe  * any data, it simply references the 'in' pages on the 'out' pipe.
169570524490SJens Axboe  * The 'flags' used are the SPLICE_F_* variants, currently the only
169670524490SJens Axboe  * applicable one is SPLICE_F_NONBLOCK.
169770524490SJens Axboe  */
169870524490SJens Axboe static long do_tee(struct file *in, struct file *out, size_t len,
169970524490SJens Axboe 		   unsigned int flags)
170070524490SJens Axboe {
170171993e62SLinus Torvalds 	struct pipe_inode_info *ipipe = get_pipe_info(in);
170271993e62SLinus Torvalds 	struct pipe_inode_info *opipe = get_pipe_info(out);
1703aadd06e5SJens Axboe 	int ret = -EINVAL;
170470524490SJens Axboe 
170570524490SJens Axboe 	/*
1706aadd06e5SJens Axboe 	 * Duplicate the contents of ipipe to opipe without actually
1707aadd06e5SJens Axboe 	 * copying the data.
170870524490SJens Axboe 	 */
1709aadd06e5SJens Axboe 	if (ipipe && opipe && ipipe != opipe) {
1710aadd06e5SJens Axboe 		/*
1711aadd06e5SJens Axboe 		 * Keep going, unless we encounter an error. The ipipe/opipe
1712aadd06e5SJens Axboe 		 * ordering doesn't really matter.
1713aadd06e5SJens Axboe 		 */
17147c77f0b3SMiklos Szeredi 		ret = ipipe_prep(ipipe, flags);
1715aadd06e5SJens Axboe 		if (!ret) {
17167c77f0b3SMiklos Szeredi 			ret = opipe_prep(opipe, flags);
171702cf01aeSJens Axboe 			if (!ret)
1718aadd06e5SJens Axboe 				ret = link_pipe(ipipe, opipe, len, flags);
1719aadd06e5SJens Axboe 		}
1720aadd06e5SJens Axboe 	}
172170524490SJens Axboe 
1722aadd06e5SJens Axboe 	return ret;
172370524490SJens Axboe }
172470524490SJens Axboe 
1725836f92adSHeiko Carstens SYSCALL_DEFINE4(tee, int, fdin, int, fdout, size_t, len, unsigned int, flags)
172670524490SJens Axboe {
17272903ff01SAl Viro 	struct fd in;
17282903ff01SAl Viro 	int error;
172970524490SJens Axboe 
17303d6ea290SAl Viro 	if (unlikely(flags & ~SPLICE_F_ALL))
17313d6ea290SAl Viro 		return -EINVAL;
17323d6ea290SAl Viro 
173370524490SJens Axboe 	if (unlikely(!len))
173470524490SJens Axboe 		return 0;
173570524490SJens Axboe 
173670524490SJens Axboe 	error = -EBADF;
17372903ff01SAl Viro 	in = fdget(fdin);
17382903ff01SAl Viro 	if (in.file) {
17392903ff01SAl Viro 		if (in.file->f_mode & FMODE_READ) {
17402903ff01SAl Viro 			struct fd out = fdget(fdout);
17412903ff01SAl Viro 			if (out.file) {
17422903ff01SAl Viro 				if (out.file->f_mode & FMODE_WRITE)
17432903ff01SAl Viro 					error = do_tee(in.file, out.file,
17442903ff01SAl Viro 							len, flags);
17452903ff01SAl Viro 				fdput(out);
174670524490SJens Axboe 			}
174770524490SJens Axboe 		}
17482903ff01SAl Viro  		fdput(in);
174970524490SJens Axboe  	}
175070524490SJens Axboe 
175170524490SJens Axboe 	return error;
175270524490SJens Axboe }
1753