1 // SPDX-License-Identifier: GPL-2.0-only
3 * "splice": joining two ropes together by interweaving their strands.
5 * This is the "extended pipe" functionality, where a pipe is used as
6 * an arbitrary in-memory buffer. Think of a pipe as a small kernel
7 * buffer that you can use to transfer data from one end to the other.
9 * The traditional unix read/write is extended with a "splice()" operation
10 * that transfers data buffers to or from a pipe buffer.
12 * Named by Larry McVoy, original implementation from Linus, extended by
13 * Jens to support splicing to files, network, direct splicing, etc and
14 * fixing lots of bugs.
16 * Copyright (C) 2005-2006 Jens Axboe <axboe@kernel.dk>
17 * Copyright (C) 2005-2006 Linus Torvalds <torvalds@osdl.org>
18 * Copyright (C) 2006 Ingo Molnar <mingo@elte.hu>
21 #include <linux/bvec.h>
23 #include <linux/file.h>
24 #include <linux/pagemap.h>
25 #include <linux/splice.h>
26 #include <linux/memcontrol.h>
27 #include <linux/mm_inline.h>
28 #include <linux/swap.h>
29 #include <linux/writeback.h>
30 #include <linux/export.h>
31 #include <linux/syscalls.h>
32 #include <linux/uio.h>
33 #include <linux/fsnotify.h>
34 #include <linux/security.h>
35 #include <linux/gfp.h>
36 #include <linux/net.h>
37 #include <linux/socket.h>
38 #include <linux/sched/signal.h>
43 * Splice doesn't support FMODE_NOWAIT. Since pipes may set this flag to
44 * indicate they support non-blocking reads or writes, we must clear it
45 * here if set to avoid blocking other users of this pipe if splice is
48 static noinline void noinline pipe_clear_nowait(struct file *file)
50 fmode_t fmode = READ_ONCE(file->f_mode);
53 if (!(fmode & FMODE_NOWAIT))
55 } while (!try_cmpxchg(&file->f_mode, &fmode, fmode & ~FMODE_NOWAIT));
59 * Attempt to steal a page from a pipe buffer. This should perhaps go into
60 * a vm helper function, it's already simplified quite a bit by the
61 * addition of remove_mapping(). If success is returned, the caller may
62 * attempt to reuse this page for another destination.
64 static bool page_cache_pipe_buf_try_steal(struct pipe_inode_info *pipe,
65 struct pipe_buffer *buf)
67 struct folio *folio = page_folio(buf->page);
68 struct address_space *mapping;
72 mapping = folio_mapping(folio);
74 WARN_ON(!folio_test_uptodate(folio));
77 * At least for ext2 with nobh option, we need to wait on
78 * writeback completing on this folio, since we'll remove it
79 * from the pagecache. Otherwise truncate wont wait on the
80 * folio, allowing the disk blocks to be reused by someone else
81 * before we actually wrote our data to them. fs corruption
84 folio_wait_writeback(folio);
86 if (folio_has_private(folio) &&
87 !filemap_release_folio(folio, GFP_KERNEL))
91 * If we succeeded in removing the mapping, set LRU flag
94 if (remove_mapping(mapping, folio)) {
95 buf->flags |= PIPE_BUF_FLAG_LRU;
101 * Raced with truncate or failed to remove folio from current
102 * address space, unlock and return failure.
109 static void page_cache_pipe_buf_release(struct pipe_inode_info *pipe,
110 struct pipe_buffer *buf)
113 buf->flags &= ~PIPE_BUF_FLAG_LRU;
117 * Check whether the contents of buf is OK to access. Since the content
118 * is a page cache page, IO may be in flight.
120 static int page_cache_pipe_buf_confirm(struct pipe_inode_info *pipe,
121 struct pipe_buffer *buf)
123 struct page *page = buf->page;
126 if (!PageUptodate(page)) {
130 * Page got truncated/unhashed. This will cause a 0-byte
131 * splice, if this is the first page.
133 if (!page->mapping) {
139 * Uh oh, read-error from disk.
141 if (!PageUptodate(page)) {
147 * Page is ok afterall, we are done.
158 const struct pipe_buf_operations page_cache_pipe_buf_ops = {
159 .confirm = page_cache_pipe_buf_confirm,
160 .release = page_cache_pipe_buf_release,
161 .try_steal = page_cache_pipe_buf_try_steal,
162 .get = generic_pipe_buf_get,
165 static bool user_page_pipe_buf_try_steal(struct pipe_inode_info *pipe,
166 struct pipe_buffer *buf)
168 if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
171 buf->flags |= PIPE_BUF_FLAG_LRU;
172 return generic_pipe_buf_try_steal(pipe, buf);
175 static const struct pipe_buf_operations user_page_pipe_buf_ops = {
176 .release = page_cache_pipe_buf_release,
177 .try_steal = user_page_pipe_buf_try_steal,
178 .get = generic_pipe_buf_get,
181 static void wakeup_pipe_readers(struct pipe_inode_info *pipe)
184 if (waitqueue_active(&pipe->rd_wait))
185 wake_up_interruptible(&pipe->rd_wait);
186 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
190 * splice_to_pipe - fill passed data into a pipe
191 * @pipe: pipe to fill
195 * @spd contains a map of pages and len/offset tuples, along with
196 * the struct pipe_buf_operations associated with these pages. This
197 * function will link that data to the pipe.
200 ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
201 struct splice_pipe_desc *spd)
203 unsigned int spd_pages = spd->nr_pages;
204 unsigned int tail = pipe->tail;
205 unsigned int head = pipe->head;
206 unsigned int mask = pipe->ring_size - 1;
207 int ret = 0, page_nr = 0;
212 if (unlikely(!pipe->readers)) {
213 send_sig(SIGPIPE, current, 0);
218 while (!pipe_full(head, tail, pipe->max_usage)) {
219 struct pipe_buffer *buf = &pipe->bufs[head & mask];
221 buf->page = spd->pages[page_nr];
222 buf->offset = spd->partial[page_nr].offset;
223 buf->len = spd->partial[page_nr].len;
224 buf->private = spd->partial[page_nr].private;
233 if (!--spd->nr_pages)
241 while (page_nr < spd_pages)
242 spd->spd_release(spd, page_nr++);
246 EXPORT_SYMBOL_GPL(splice_to_pipe);
248 ssize_t add_to_pipe(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
250 unsigned int head = pipe->head;
251 unsigned int tail = pipe->tail;
252 unsigned int mask = pipe->ring_size - 1;
255 if (unlikely(!pipe->readers)) {
256 send_sig(SIGPIPE, current, 0);
258 } else if (pipe_full(head, tail, pipe->max_usage)) {
261 pipe->bufs[head & mask] = *buf;
262 pipe->head = head + 1;
265 pipe_buf_release(pipe, buf);
268 EXPORT_SYMBOL(add_to_pipe);
271 * Check if we need to grow the arrays holding pages and partial page
274 int splice_grow_spd(const struct pipe_inode_info *pipe, struct splice_pipe_desc *spd)
276 unsigned int max_usage = READ_ONCE(pipe->max_usage);
278 spd->nr_pages_max = max_usage;
279 if (max_usage <= PIPE_DEF_BUFFERS)
282 spd->pages = kmalloc_array(max_usage, sizeof(struct page *), GFP_KERNEL);
283 spd->partial = kmalloc_array(max_usage, sizeof(struct partial_page),
286 if (spd->pages && spd->partial)
294 void splice_shrink_spd(struct splice_pipe_desc *spd)
296 if (spd->nr_pages_max <= PIPE_DEF_BUFFERS)
304 * copy_splice_read - Copy data from a file and splice the copy into a pipe
305 * @in: The file to read from
306 * @ppos: Pointer to the file position to read from
307 * @pipe: The pipe to splice into
308 * @len: The amount to splice
309 * @flags: The SPLICE_F_* flags
311 * This function allocates a bunch of pages sufficient to hold the requested
312 * amount of data (but limited by the remaining pipe capacity), passes it to
313 * the file's ->read_iter() to read into and then splices the used pages into
316 * Return: On success, the number of bytes read will be returned and *@ppos
317 * will be updated if appropriate; 0 will be returned if there is no more data
318 * to be read; -EAGAIN will be returned if the pipe had no space, and some
319 * other negative error code will be returned on error. A short read may occur
320 * if the pipe has insufficient space, we reach the end of the data or we hit a
323 ssize_t copy_splice_read(struct file *in, loff_t *ppos,
324 struct pipe_inode_info *pipe,
325 size_t len, unsigned int flags)
332 size_t used, npages, chunk, remain, keep = 0;
335 /* Work out how much data we can actually add into the pipe */
336 used = pipe_occupancy(pipe->head, pipe->tail);
337 npages = max_t(ssize_t, pipe->max_usage - used, 0);
338 len = min_t(size_t, len, npages * PAGE_SIZE);
339 npages = DIV_ROUND_UP(len, PAGE_SIZE);
341 bv = kzalloc(array_size(npages, sizeof(bv[0])) +
342 array_size(npages, sizeof(struct page *)), GFP_KERNEL);
346 pages = (struct page **)(bv + npages);
347 npages = alloc_pages_bulk_array(GFP_USER, npages, pages);
353 remain = len = min_t(size_t, len, npages * PAGE_SIZE);
355 for (i = 0; i < npages; i++) {
356 chunk = min_t(size_t, PAGE_SIZE, remain);
357 bv[i].bv_page = pages[i];
359 bv[i].bv_len = chunk;
364 iov_iter_bvec(&to, ITER_DEST, bv, npages, len);
365 init_sync_kiocb(&kiocb, in);
366 kiocb.ki_pos = *ppos;
367 ret = call_read_iter(in, &kiocb, &to);
370 keep = DIV_ROUND_UP(ret, PAGE_SIZE);
371 *ppos = kiocb.ki_pos;
375 * Callers of ->splice_read() expect -EAGAIN on "can't put anything in
376 * there", rather than -EFAULT.
381 /* Free any pages that didn't get touched at all. */
383 release_pages(pages + keep, npages - keep);
385 /* Push the remaining pages into the pipe. */
387 for (i = 0; i < keep; i++) {
388 struct pipe_buffer *buf = pipe_head_buf(pipe);
390 chunk = min_t(size_t, remain, PAGE_SIZE);
391 *buf = (struct pipe_buffer) {
392 .ops = &default_pipe_buf_ops,
393 .page = bv[i].bv_page,
404 EXPORT_SYMBOL(copy_splice_read);
406 const struct pipe_buf_operations default_pipe_buf_ops = {
407 .release = generic_pipe_buf_release,
408 .try_steal = generic_pipe_buf_try_steal,
409 .get = generic_pipe_buf_get,
412 /* Pipe buffer operations for a socket and similar. */
413 const struct pipe_buf_operations nosteal_pipe_buf_ops = {
414 .release = generic_pipe_buf_release,
415 .get = generic_pipe_buf_get,
417 EXPORT_SYMBOL(nosteal_pipe_buf_ops);
419 static void wakeup_pipe_writers(struct pipe_inode_info *pipe)
422 if (waitqueue_active(&pipe->wr_wait))
423 wake_up_interruptible(&pipe->wr_wait);
424 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
428 * splice_from_pipe_feed - feed available data from a pipe to a file
429 * @pipe: pipe to splice from
430 * @sd: information to @actor
431 * @actor: handler that splices the data
434 * This function loops over the pipe and calls @actor to do the
435 * actual moving of a single struct pipe_buffer to the desired
436 * destination. It returns when there's no more buffers left in
437 * the pipe or if the requested number of bytes (@sd->total_len)
438 * have been copied. It returns a positive number (one) if the
439 * pipe needs to be filled with more data, zero if the required
440 * number of bytes have been copied and -errno on error.
442 * This, together with splice_from_pipe_{begin,end,next}, may be
443 * used to implement the functionality of __splice_from_pipe() when
444 * locking is required around copying the pipe buffers to the
447 static int splice_from_pipe_feed(struct pipe_inode_info *pipe, struct splice_desc *sd,
450 unsigned int head = pipe->head;
451 unsigned int tail = pipe->tail;
452 unsigned int mask = pipe->ring_size - 1;
455 while (!pipe_empty(head, tail)) {
456 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
459 if (sd->len > sd->total_len)
460 sd->len = sd->total_len;
462 ret = pipe_buf_confirm(pipe, buf);
469 ret = actor(pipe, buf, sd);
476 sd->num_spliced += ret;
479 sd->total_len -= ret;
482 pipe_buf_release(pipe, buf);
486 sd->need_wakeup = true;
496 /* We know we have a pipe buffer, but maybe it's empty? */
497 static inline bool eat_empty_buffer(struct pipe_inode_info *pipe)
499 unsigned int tail = pipe->tail;
500 unsigned int mask = pipe->ring_size - 1;
501 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
503 if (unlikely(!buf->len)) {
504 pipe_buf_release(pipe, buf);
513 * splice_from_pipe_next - wait for some data to splice from
514 * @pipe: pipe to splice from
515 * @sd: information about the splice operation
518 * This function will wait for some data and return a positive
519 * value (one) if pipe buffers are available. It will return zero
520 * or -errno if no more data needs to be spliced.
522 static int splice_from_pipe_next(struct pipe_inode_info *pipe, struct splice_desc *sd)
525 * Check for signal early to make process killable when there are
526 * always buffers available
528 if (signal_pending(current))
532 while (pipe_empty(pipe->head, pipe->tail)) {
539 if (sd->flags & SPLICE_F_NONBLOCK)
542 if (signal_pending(current))
545 if (sd->need_wakeup) {
546 wakeup_pipe_writers(pipe);
547 sd->need_wakeup = false;
550 pipe_wait_readable(pipe);
553 if (eat_empty_buffer(pipe))
560 * splice_from_pipe_begin - start splicing from pipe
561 * @sd: information about the splice operation
564 * This function should be called before a loop containing
565 * splice_from_pipe_next() and splice_from_pipe_feed() to
566 * initialize the necessary fields of @sd.
568 static void splice_from_pipe_begin(struct splice_desc *sd)
571 sd->need_wakeup = false;
575 * splice_from_pipe_end - finish splicing from pipe
576 * @pipe: pipe to splice from
577 * @sd: information about the splice operation
580 * This function will wake up pipe writers if necessary. It should
581 * be called after a loop containing splice_from_pipe_next() and
582 * splice_from_pipe_feed().
584 static void splice_from_pipe_end(struct pipe_inode_info *pipe, struct splice_desc *sd)
587 wakeup_pipe_writers(pipe);
591 * __splice_from_pipe - splice data from a pipe to given actor
592 * @pipe: pipe to splice from
593 * @sd: information to @actor
594 * @actor: handler that splices the data
597 * This function does little more than loop over the pipe and call
598 * @actor to do the actual moving of a single struct pipe_buffer to
599 * the desired destination. See pipe_to_file, pipe_to_sendmsg, or
603 ssize_t __splice_from_pipe(struct pipe_inode_info *pipe, struct splice_desc *sd,
608 splice_from_pipe_begin(sd);
611 ret = splice_from_pipe_next(pipe, sd);
613 ret = splice_from_pipe_feed(pipe, sd, actor);
615 splice_from_pipe_end(pipe, sd);
617 return sd->num_spliced ? sd->num_spliced : ret;
619 EXPORT_SYMBOL(__splice_from_pipe);
622 * splice_from_pipe - splice data from a pipe to a file
623 * @pipe: pipe to splice from
624 * @out: file to splice to
625 * @ppos: position in @out
626 * @len: how many bytes to splice
627 * @flags: splice modifier flags
628 * @actor: handler that splices the data
631 * See __splice_from_pipe. This function locks the pipe inode,
632 * otherwise it's identical to __splice_from_pipe().
635 ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
636 loff_t *ppos, size_t len, unsigned int flags,
640 struct splice_desc sd = {
648 ret = __splice_from_pipe(pipe, &sd, actor);
655 * iter_file_splice_write - splice data from a pipe to a file
657 * @out: file to write to
658 * @ppos: position in @out
659 * @len: number of bytes to splice
660 * @flags: splice modifier flags
663 * Will either move or copy pages (determined by @flags options) from
664 * the given pipe inode to the given file.
665 * This one is ->write_iter-based.
669 iter_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
670 loff_t *ppos, size_t len, unsigned int flags)
672 struct splice_desc sd = {
678 int nbufs = pipe->max_usage;
679 struct bio_vec *array = kcalloc(nbufs, sizeof(struct bio_vec),
683 if (unlikely(!array))
688 splice_from_pipe_begin(&sd);
689 while (sd.total_len) {
690 struct iov_iter from;
691 unsigned int head, tail, mask;
695 ret = splice_from_pipe_next(pipe, &sd);
699 if (unlikely(nbufs < pipe->max_usage)) {
701 nbufs = pipe->max_usage;
702 array = kcalloc(nbufs, sizeof(struct bio_vec),
712 mask = pipe->ring_size - 1;
714 /* build the vector */
716 for (n = 0; !pipe_empty(head, tail) && left && n < nbufs; tail++) {
717 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
718 size_t this_len = buf->len;
720 /* zero-length bvecs are not supported, skip them */
723 this_len = min(this_len, left);
725 ret = pipe_buf_confirm(pipe, buf);
732 bvec_set_page(&array[n], buf->page, this_len,
738 iov_iter_bvec(&from, ITER_SOURCE, array, n, sd.total_len - left);
739 ret = vfs_iter_write(out, &from, &sd.pos, 0);
743 sd.num_spliced += ret;
747 /* dismiss the fully eaten buffers, adjust the partial one */
750 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
751 if (ret >= buf->len) {
754 pipe_buf_release(pipe, buf);
758 sd.need_wakeup = true;
768 splice_from_pipe_end(pipe, &sd);
773 ret = sd.num_spliced;
778 EXPORT_SYMBOL(iter_file_splice_write);
782 * splice_to_socket - splice data from a pipe to a socket
783 * @pipe: pipe to splice from
784 * @out: socket to write to
785 * @ppos: position in @out
786 * @len: number of bytes to splice
787 * @flags: splice modifier flags
790 * Will send @len bytes from the pipe to a network socket. No data copying
794 ssize_t splice_to_socket(struct pipe_inode_info *pipe, struct file *out,
795 loff_t *ppos, size_t len, unsigned int flags)
797 struct socket *sock = sock_from_file(out);
798 struct bio_vec bvec[16];
799 struct msghdr msg = {};
802 bool need_wakeup = false;
807 unsigned int head, tail, mask, bc = 0;
811 * Check for signal early to make process killable when there
812 * are always buffers available
815 if (signal_pending(current))
818 while (pipe_empty(pipe->head, pipe->tail)) {
827 if (flags & SPLICE_F_NONBLOCK)
831 if (signal_pending(current))
835 wakeup_pipe_writers(pipe);
839 pipe_wait_readable(pipe);
844 mask = pipe->ring_size - 1;
846 while (!pipe_empty(head, tail)) {
847 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
855 seg = min_t(size_t, remain, buf->len);
857 ret = pipe_buf_confirm(pipe, buf);
864 bvec_set_page(&bvec[bc++], buf->page, seg, buf->offset);
866 if (remain == 0 || bc >= ARRAY_SIZE(bvec))
874 msg.msg_flags = MSG_SPLICE_PAGES;
875 if (flags & SPLICE_F_MORE)
876 msg.msg_flags |= MSG_MORE;
877 if (remain && pipe_occupancy(pipe->head, tail) > 0)
878 msg.msg_flags |= MSG_MORE;
880 iov_iter_bvec(&msg.msg_iter, ITER_SOURCE, bvec, bc,
882 ret = sock_sendmsg(sock, &msg);
890 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
891 size_t seg = min_t(size_t, ret, buf->len);
898 pipe_buf_release(pipe, buf);
903 if (tail != pipe->tail) {
913 wakeup_pipe_writers(pipe);
914 return spliced ?: ret;
918 static int warn_unsupported(struct file *file, const char *op)
920 pr_debug_ratelimited(
921 "splice %s not supported for file %pD4 (pid: %d comm: %.20s)\n",
922 op, file, current->pid, current->comm);
927 * Attempt to initiate a splice from pipe to file.
929 static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
930 loff_t *ppos, size_t len, unsigned int flags)
932 if (unlikely(!out->f_op->splice_write))
933 return warn_unsupported(out, "write");
934 return out->f_op->splice_write(pipe, out, ppos, len, flags);
938 * Indicate to the caller that there was a premature EOF when reading from the
939 * source and the caller didn't indicate they would be sending more data after
942 static void do_splice_eof(struct splice_desc *sd)
949 * vfs_splice_read - Read data from a file and splice it into a pipe
950 * @in: File to splice from
951 * @ppos: Input file offset
952 * @pipe: Pipe to splice to
953 * @len: Number of bytes to splice
954 * @flags: Splice modifier flags (SPLICE_F_*)
956 * Splice the requested amount of data from the input file to the pipe. This
957 * is synchronous as the caller must hold the pipe lock across the entire
960 * If successful, it returns the amount of data spliced, 0 if it hit the EOF or
961 * a hole and a negative error code otherwise.
963 long vfs_splice_read(struct file *in, loff_t *ppos,
964 struct pipe_inode_info *pipe, size_t len,
967 unsigned int p_space;
970 if (unlikely(!(in->f_mode & FMODE_READ)))
975 /* Don't try to read more the pipe has space for. */
976 p_space = pipe->max_usage - pipe_occupancy(pipe->head, pipe->tail);
977 len = min_t(size_t, len, p_space << PAGE_SHIFT);
979 ret = rw_verify_area(READ, in, ppos, len);
980 if (unlikely(ret < 0))
983 if (unlikely(len > MAX_RW_COUNT))
986 if (unlikely(!in->f_op->splice_read))
987 return warn_unsupported(in, "read");
989 * O_DIRECT and DAX don't deal with the pagecache, so we allocate a
990 * buffer, copy into it and splice that into the pipe.
992 if ((in->f_flags & O_DIRECT) || IS_DAX(in->f_mapping->host))
993 return copy_splice_read(in, ppos, pipe, len, flags);
994 return in->f_op->splice_read(in, ppos, pipe, len, flags);
996 EXPORT_SYMBOL_GPL(vfs_splice_read);
999 * splice_direct_to_actor - splices data directly between two non-pipes
1000 * @in: file to splice from
1001 * @sd: actor information on where to splice to
1002 * @actor: handles the data splicing
1005 * This is a special case helper to splice directly between two
1006 * points, without requiring an explicit pipe. Internally an allocated
1007 * pipe is cached in the process, and reused during the lifetime of
1011 ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
1012 splice_direct_actor *actor)
1014 struct pipe_inode_info *pipe;
1020 * We require the input to be seekable, as we don't want to randomly
1021 * drop data for eg socket -> socket splicing. Use the piped splicing
1024 if (unlikely(!(in->f_mode & FMODE_LSEEK)))
1028 * neither in nor out is a pipe, setup an internal pipe attached to
1029 * 'out' and transfer the wanted data from 'in' to 'out' through that
1031 pipe = current->splice_pipe;
1032 if (unlikely(!pipe)) {
1033 pipe = alloc_pipe_info();
1038 * We don't have an immediate reader, but we'll read the stuff
1039 * out of the pipe right after the splice_to_pipe(). So set
1040 * PIPE_READERS appropriately.
1044 current->splice_pipe = pipe;
1051 len = sd->total_len;
1053 /* Don't block on output, we have to drain the direct pipe. */
1055 sd->flags &= ~SPLICE_F_NONBLOCK;
1058 * We signal MORE until we've read sufficient data to fulfill the
1059 * request and we keep signalling it if the caller set it.
1061 more = sd->flags & SPLICE_F_MORE;
1062 sd->flags |= SPLICE_F_MORE;
1064 WARN_ON_ONCE(!pipe_empty(pipe->head, pipe->tail));
1068 loff_t pos = sd->pos, prev_pos = pos;
1070 ret = vfs_splice_read(in, &pos, pipe, len, flags);
1071 if (unlikely(ret <= 0))
1075 sd->total_len = read_len;
1078 * If we now have sufficient data to fulfill the request then
1079 * we clear SPLICE_F_MORE if it was not set initially.
1081 if (read_len >= len && !more)
1082 sd->flags &= ~SPLICE_F_MORE;
1085 * NOTE: nonblocking mode only applies to the input. We
1086 * must not do the output in nonblocking mode as then we
1087 * could get stuck data in the internal pipe:
1089 ret = actor(pipe, sd);
1090 if (unlikely(ret <= 0)) {
1099 if (ret < read_len) {
1100 sd->pos = prev_pos + ret;
1106 pipe->tail = pipe->head = 0;
1112 * If the user did *not* set SPLICE_F_MORE *and* we didn't hit that
1113 * "use all of len" case that cleared SPLICE_F_MORE, *and* we did a
1114 * "->splice_in()" that returned EOF (ie zero) *and* we have sent at
1115 * least 1 byte *then* we will also do the ->splice_eof() call.
1117 if (ret == 0 && !more && len > 0 && bytes)
1121 * If we did an incomplete transfer we must release
1122 * the pipe buffers in question:
1124 for (i = 0; i < pipe->ring_size; i++) {
1125 struct pipe_buffer *buf = &pipe->bufs[i];
1128 pipe_buf_release(pipe, buf);
1136 EXPORT_SYMBOL(splice_direct_to_actor);
1138 static int direct_splice_actor(struct pipe_inode_info *pipe,
1139 struct splice_desc *sd)
1141 struct file *file = sd->u.file;
1143 return do_splice_from(pipe, file, sd->opos, sd->total_len,
1147 static void direct_file_splice_eof(struct splice_desc *sd)
1149 struct file *file = sd->u.file;
1151 if (file->f_op->splice_eof)
1152 file->f_op->splice_eof(file);
1156 * do_splice_direct - splices data directly between two files
1157 * @in: file to splice from
1158 * @ppos: input file offset
1159 * @out: file to splice to
1160 * @opos: output file offset
1161 * @len: number of bytes to splice
1162 * @flags: splice modifier flags
1165 * For use by do_sendfile(). splice can easily emulate sendfile, but
1166 * doing it in the application would incur an extra system call
1167 * (splice in + splice out, as compared to just sendfile()). So this helper
1168 * can splice directly through a process-private pipe.
1171 long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1172 loff_t *opos, size_t len, unsigned int flags)
1174 struct splice_desc sd = {
1180 .splice_eof = direct_file_splice_eof,
1185 if (unlikely(!(out->f_mode & FMODE_WRITE)))
1188 if (unlikely(out->f_flags & O_APPEND))
1191 ret = rw_verify_area(WRITE, out, opos, len);
1192 if (unlikely(ret < 0))
1195 ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
1201 EXPORT_SYMBOL(do_splice_direct);
1203 static int wait_for_space(struct pipe_inode_info *pipe, unsigned flags)
1206 if (unlikely(!pipe->readers)) {
1207 send_sig(SIGPIPE, current, 0);
1210 if (!pipe_full(pipe->head, pipe->tail, pipe->max_usage))
1212 if (flags & SPLICE_F_NONBLOCK)
1214 if (signal_pending(current))
1215 return -ERESTARTSYS;
1216 pipe_wait_writable(pipe);
1220 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1221 struct pipe_inode_info *opipe,
1222 size_t len, unsigned int flags);
1224 long splice_file_to_pipe(struct file *in,
1225 struct pipe_inode_info *opipe,
1227 size_t len, unsigned int flags)
1232 ret = wait_for_space(opipe, flags);
1234 ret = vfs_splice_read(in, offset, opipe, len, flags);
1237 wakeup_pipe_readers(opipe);
1242 * Determine where to splice to/from.
1244 long do_splice(struct file *in, loff_t *off_in, struct file *out,
1245 loff_t *off_out, size_t len, unsigned int flags)
1247 struct pipe_inode_info *ipipe;
1248 struct pipe_inode_info *opipe;
1252 if (unlikely(!(in->f_mode & FMODE_READ) ||
1253 !(out->f_mode & FMODE_WRITE)))
1256 ipipe = get_pipe_info(in, true);
1257 opipe = get_pipe_info(out, true);
1259 if (ipipe && opipe) {
1260 if (off_in || off_out)
1263 /* Splicing to self would be fun, but... */
1267 if ((in->f_flags | out->f_flags) & O_NONBLOCK)
1268 flags |= SPLICE_F_NONBLOCK;
1270 return splice_pipe_to_pipe(ipipe, opipe, len, flags);
1277 if (!(out->f_mode & FMODE_PWRITE))
1281 offset = out->f_pos;
1284 if (unlikely(out->f_flags & O_APPEND))
1287 ret = rw_verify_area(WRITE, out, &offset, len);
1288 if (unlikely(ret < 0))
1291 if (in->f_flags & O_NONBLOCK)
1292 flags |= SPLICE_F_NONBLOCK;
1294 file_start_write(out);
1295 ret = do_splice_from(ipipe, out, &offset, len, flags);
1296 file_end_write(out);
1299 fsnotify_modify(out);
1302 out->f_pos = offset;
1313 if (!(in->f_mode & FMODE_PREAD))
1320 if (out->f_flags & O_NONBLOCK)
1321 flags |= SPLICE_F_NONBLOCK;
1323 ret = splice_file_to_pipe(in, opipe, &offset, len, flags);
1326 fsnotify_access(in);
1339 static long __do_splice(struct file *in, loff_t __user *off_in,
1340 struct file *out, loff_t __user *off_out,
1341 size_t len, unsigned int flags)
1343 struct pipe_inode_info *ipipe;
1344 struct pipe_inode_info *opipe;
1345 loff_t offset, *__off_in = NULL, *__off_out = NULL;
1348 ipipe = get_pipe_info(in, true);
1349 opipe = get_pipe_info(out, true);
1354 pipe_clear_nowait(in);
1359 pipe_clear_nowait(out);
1363 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
1365 __off_out = &offset;
1368 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
1373 ret = do_splice(in, __off_in, out, __off_out, len, flags);
1377 if (__off_out && copy_to_user(off_out, __off_out, sizeof(loff_t)))
1379 if (__off_in && copy_to_user(off_in, __off_in, sizeof(loff_t)))
1385 static int iter_to_pipe(struct iov_iter *from,
1386 struct pipe_inode_info *pipe,
1389 struct pipe_buffer buf = {
1390 .ops = &user_page_pipe_buf_ops,
1396 while (iov_iter_count(from)) {
1397 struct page *pages[16];
1402 left = iov_iter_get_pages2(from, pages, ~0UL, 16, &start);
1408 n = DIV_ROUND_UP(left + start, PAGE_SIZE);
1409 for (i = 0; i < n; i++) {
1410 int size = min_t(int, left, PAGE_SIZE - start);
1412 buf.page = pages[i];
1415 ret = add_to_pipe(pipe, &buf);
1416 if (unlikely(ret < 0)) {
1417 iov_iter_revert(from, left);
1418 // this one got dropped by add_to_pipe()
1429 return total ? total : ret;
1432 static int pipe_to_user(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
1433 struct splice_desc *sd)
1435 int n = copy_page_to_iter(buf->page, buf->offset, sd->len, sd->u.data);
1436 return n == sd->len ? n : -EFAULT;
1440 * For lack of a better implementation, implement vmsplice() to userspace
1441 * as a simple copy of the pipes pages to the user iov.
1443 static long vmsplice_to_user(struct file *file, struct iov_iter *iter,
1446 struct pipe_inode_info *pipe = get_pipe_info(file, true);
1447 struct splice_desc sd = {
1448 .total_len = iov_iter_count(iter),
1457 pipe_clear_nowait(file);
1461 ret = __splice_from_pipe(pipe, &sd, pipe_to_user);
1469 * vmsplice splices a user address range into a pipe. It can be thought of
1470 * as splice-from-memory, where the regular splice is splice-from-file (or
1471 * to file). In both cases the output is a pipe, naturally.
1473 static long vmsplice_to_pipe(struct file *file, struct iov_iter *iter,
1476 struct pipe_inode_info *pipe;
1478 unsigned buf_flag = 0;
1480 if (flags & SPLICE_F_GIFT)
1481 buf_flag = PIPE_BUF_FLAG_GIFT;
1483 pipe = get_pipe_info(file, true);
1487 pipe_clear_nowait(file);
1490 ret = wait_for_space(pipe, flags);
1492 ret = iter_to_pipe(iter, pipe, buf_flag);
1495 wakeup_pipe_readers(pipe);
1499 static int vmsplice_type(struct fd f, int *type)
1503 if (f.file->f_mode & FMODE_WRITE) {
1504 *type = ITER_SOURCE;
1505 } else if (f.file->f_mode & FMODE_READ) {
1515 * Note that vmsplice only really supports true splicing _from_ user memory
1516 * to a pipe, not the other way around. Splicing from user memory is a simple
1517 * operation that can be supported without any funky alignment restrictions
1518 * or nasty vm tricks. We simply map in the user memory and fill them into
1519 * a pipe. The reverse isn't quite as easy, though. There are two possible
1520 * solutions for that:
1522 * - memcpy() the data internally, at which point we might as well just
1523 * do a regular read() on the buffer anyway.
1524 * - Lots of nasty vm tricks, that are neither fast nor flexible (it
1525 * has restriction limitations on both ends of the pipe).
1527 * Currently we punt and implement it as a normal copy, see pipe_to_user().
1530 SYSCALL_DEFINE4(vmsplice, int, fd, const struct iovec __user *, uiov,
1531 unsigned long, nr_segs, unsigned int, flags)
1533 struct iovec iovstack[UIO_FASTIOV];
1534 struct iovec *iov = iovstack;
1535 struct iov_iter iter;
1540 if (unlikely(flags & ~SPLICE_F_ALL))
1544 error = vmsplice_type(f, &type);
1548 error = import_iovec(type, uiov, nr_segs,
1549 ARRAY_SIZE(iovstack), &iov, &iter);
1553 if (!iov_iter_count(&iter))
1555 else if (type == ITER_SOURCE)
1556 error = vmsplice_to_pipe(f.file, &iter, flags);
1558 error = vmsplice_to_user(f.file, &iter, flags);
1566 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in,
1567 int, fd_out, loff_t __user *, off_out,
1568 size_t, len, unsigned int, flags)
1576 if (unlikely(flags & ~SPLICE_F_ALL))
1582 out = fdget(fd_out);
1584 error = __do_splice(in.file, off_in, out.file, off_out,
1594 * Make sure there's data to read. Wait for input if we can, otherwise
1595 * return an appropriate error.
1597 static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1602 * Check the pipe occupancy without the inode lock first. This function
1603 * is speculative anyways, so missing one is ok.
1605 if (!pipe_empty(pipe->head, pipe->tail))
1611 while (pipe_empty(pipe->head, pipe->tail)) {
1612 if (signal_pending(current)) {
1618 if (flags & SPLICE_F_NONBLOCK) {
1622 pipe_wait_readable(pipe);
1630 * Make sure there's writeable room. Wait for room if we can, otherwise
1631 * return an appropriate error.
1633 static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1638 * Check pipe occupancy without the inode lock first. This function
1639 * is speculative anyways, so missing one is ok.
1641 if (!pipe_full(pipe->head, pipe->tail, pipe->max_usage))
1647 while (pipe_full(pipe->head, pipe->tail, pipe->max_usage)) {
1648 if (!pipe->readers) {
1649 send_sig(SIGPIPE, current, 0);
1653 if (flags & SPLICE_F_NONBLOCK) {
1657 if (signal_pending(current)) {
1661 pipe_wait_writable(pipe);
1669 * Splice contents of ipipe to opipe.
1671 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1672 struct pipe_inode_info *opipe,
1673 size_t len, unsigned int flags)
1675 struct pipe_buffer *ibuf, *obuf;
1676 unsigned int i_head, o_head;
1677 unsigned int i_tail, o_tail;
1678 unsigned int i_mask, o_mask;
1680 bool input_wakeup = false;
1684 ret = ipipe_prep(ipipe, flags);
1688 ret = opipe_prep(opipe, flags);
1693 * Potential ABBA deadlock, work around it by ordering lock
1694 * grabbing by pipe info address. Otherwise two different processes
1695 * could deadlock (one doing tee from A -> B, the other from B -> A).
1697 pipe_double_lock(ipipe, opipe);
1699 i_tail = ipipe->tail;
1700 i_mask = ipipe->ring_size - 1;
1701 o_head = opipe->head;
1702 o_mask = opipe->ring_size - 1;
1707 if (!opipe->readers) {
1708 send_sig(SIGPIPE, current, 0);
1714 i_head = ipipe->head;
1715 o_tail = opipe->tail;
1717 if (pipe_empty(i_head, i_tail) && !ipipe->writers)
1721 * Cannot make any progress, because either the input
1722 * pipe is empty or the output pipe is full.
1724 if (pipe_empty(i_head, i_tail) ||
1725 pipe_full(o_head, o_tail, opipe->max_usage)) {
1726 /* Already processed some buffers, break */
1730 if (flags & SPLICE_F_NONBLOCK) {
1736 * We raced with another reader/writer and haven't
1737 * managed to process any buffers. A zero return
1738 * value means EOF, so retry instead.
1745 ibuf = &ipipe->bufs[i_tail & i_mask];
1746 obuf = &opipe->bufs[o_head & o_mask];
1748 if (len >= ibuf->len) {
1750 * Simply move the whole buffer from ipipe to opipe
1755 ipipe->tail = i_tail;
1756 input_wakeup = true;
1759 opipe->head = o_head;
1762 * Get a reference to this pipe buffer,
1763 * so we can copy the contents over.
1765 if (!pipe_buf_get(ipipe, ibuf)) {
1773 * Don't inherit the gift and merge flags, we need to
1774 * prevent multiple steals of this page.
1776 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1777 obuf->flags &= ~PIPE_BUF_FLAG_CAN_MERGE;
1780 ibuf->offset += len;
1784 opipe->head = o_head;
1794 * If we put data in the output pipe, wakeup any potential readers.
1797 wakeup_pipe_readers(opipe);
1800 wakeup_pipe_writers(ipipe);
1806 * Link contents of ipipe to opipe.
1808 static int link_pipe(struct pipe_inode_info *ipipe,
1809 struct pipe_inode_info *opipe,
1810 size_t len, unsigned int flags)
1812 struct pipe_buffer *ibuf, *obuf;
1813 unsigned int i_head, o_head;
1814 unsigned int i_tail, o_tail;
1815 unsigned int i_mask, o_mask;
1819 * Potential ABBA deadlock, work around it by ordering lock
1820 * grabbing by pipe info address. Otherwise two different processes
1821 * could deadlock (one doing tee from A -> B, the other from B -> A).
1823 pipe_double_lock(ipipe, opipe);
1825 i_tail = ipipe->tail;
1826 i_mask = ipipe->ring_size - 1;
1827 o_head = opipe->head;
1828 o_mask = opipe->ring_size - 1;
1831 if (!opipe->readers) {
1832 send_sig(SIGPIPE, current, 0);
1838 i_head = ipipe->head;
1839 o_tail = opipe->tail;
1842 * If we have iterated all input buffers or run out of
1843 * output room, break.
1845 if (pipe_empty(i_head, i_tail) ||
1846 pipe_full(o_head, o_tail, opipe->max_usage))
1849 ibuf = &ipipe->bufs[i_tail & i_mask];
1850 obuf = &opipe->bufs[o_head & o_mask];
1853 * Get a reference to this pipe buffer,
1854 * so we can copy the contents over.
1856 if (!pipe_buf_get(ipipe, ibuf)) {
1865 * Don't inherit the gift and merge flag, we need to prevent
1866 * multiple steals of this page.
1868 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1869 obuf->flags &= ~PIPE_BUF_FLAG_CAN_MERGE;
1871 if (obuf->len > len)
1877 opipe->head = o_head;
1885 * If we put data in the output pipe, wakeup any potential readers.
1888 wakeup_pipe_readers(opipe);
1894 * This is a tee(1) implementation that works on pipes. It doesn't copy
1895 * any data, it simply references the 'in' pages on the 'out' pipe.
1896 * The 'flags' used are the SPLICE_F_* variants, currently the only
1897 * applicable one is SPLICE_F_NONBLOCK.
1899 long do_tee(struct file *in, struct file *out, size_t len, unsigned int flags)
1901 struct pipe_inode_info *ipipe = get_pipe_info(in, true);
1902 struct pipe_inode_info *opipe = get_pipe_info(out, true);
1905 if (unlikely(!(in->f_mode & FMODE_READ) ||
1906 !(out->f_mode & FMODE_WRITE)))
1910 * Duplicate the contents of ipipe to opipe without actually
1913 if (ipipe && opipe && ipipe != opipe) {
1914 if ((in->f_flags | out->f_flags) & O_NONBLOCK)
1915 flags |= SPLICE_F_NONBLOCK;
1918 * Keep going, unless we encounter an error. The ipipe/opipe
1919 * ordering doesn't really matter.
1921 ret = ipipe_prep(ipipe, flags);
1923 ret = opipe_prep(opipe, flags);
1925 ret = link_pipe(ipipe, opipe, len, flags);
1932 SYSCALL_DEFINE4(tee, int, fdin, int, fdout, size_t, len, unsigned int, flags)
1937 if (unlikely(flags & ~SPLICE_F_ALL))
1948 error = do_tee(in.file, out.file, len, flags);