splice: Make do_splice_to() generic and export it
[linux-block.git] / fs / splice.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * "splice": joining two ropes together by interweaving their strands.
4  *
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.
8  *
9  * The traditional unix read/write is extended with a "splice()" operation
10  * that transfers data buffers to or from a pipe buffer.
11  *
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.
15  *
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>
19  *
20  */
21 #include <linux/bvec.h>
22 #include <linux/fs.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/socket.h>
37 #include <linux/sched/signal.h>
38
39 #include "internal.h"
40
41 /*
42  * Splice doesn't support FMODE_NOWAIT. Since pipes may set this flag to
43  * indicate they support non-blocking reads or writes, we must clear it
44  * here if set to avoid blocking other users of this pipe if splice is
45  * being done on it.
46  */
47 static noinline void noinline pipe_clear_nowait(struct file *file)
48 {
49         fmode_t fmode = READ_ONCE(file->f_mode);
50
51         do {
52                 if (!(fmode & FMODE_NOWAIT))
53                         break;
54         } while (!try_cmpxchg(&file->f_mode, &fmode, fmode & ~FMODE_NOWAIT));
55 }
56
57 /*
58  * Attempt to steal a page from a pipe buffer. This should perhaps go into
59  * a vm helper function, it's already simplified quite a bit by the
60  * addition of remove_mapping(). If success is returned, the caller may
61  * attempt to reuse this page for another destination.
62  */
63 static bool page_cache_pipe_buf_try_steal(struct pipe_inode_info *pipe,
64                 struct pipe_buffer *buf)
65 {
66         struct folio *folio = page_folio(buf->page);
67         struct address_space *mapping;
68
69         folio_lock(folio);
70
71         mapping = folio_mapping(folio);
72         if (mapping) {
73                 WARN_ON(!folio_test_uptodate(folio));
74
75                 /*
76                  * At least for ext2 with nobh option, we need to wait on
77                  * writeback completing on this folio, since we'll remove it
78                  * from the pagecache.  Otherwise truncate wont wait on the
79                  * folio, allowing the disk blocks to be reused by someone else
80                  * before we actually wrote our data to them. fs corruption
81                  * ensues.
82                  */
83                 folio_wait_writeback(folio);
84
85                 if (folio_has_private(folio) &&
86                     !filemap_release_folio(folio, GFP_KERNEL))
87                         goto out_unlock;
88
89                 /*
90                  * If we succeeded in removing the mapping, set LRU flag
91                  * and return good.
92                  */
93                 if (remove_mapping(mapping, folio)) {
94                         buf->flags |= PIPE_BUF_FLAG_LRU;
95                         return true;
96                 }
97         }
98
99         /*
100          * Raced with truncate or failed to remove folio from current
101          * address space, unlock and return failure.
102          */
103 out_unlock:
104         folio_unlock(folio);
105         return false;
106 }
107
108 static void page_cache_pipe_buf_release(struct pipe_inode_info *pipe,
109                                         struct pipe_buffer *buf)
110 {
111         put_page(buf->page);
112         buf->flags &= ~PIPE_BUF_FLAG_LRU;
113 }
114
115 /*
116  * Check whether the contents of buf is OK to access. Since the content
117  * is a page cache page, IO may be in flight.
118  */
119 static int page_cache_pipe_buf_confirm(struct pipe_inode_info *pipe,
120                                        struct pipe_buffer *buf)
121 {
122         struct page *page = buf->page;
123         int err;
124
125         if (!PageUptodate(page)) {
126                 lock_page(page);
127
128                 /*
129                  * Page got truncated/unhashed. This will cause a 0-byte
130                  * splice, if this is the first page.
131                  */
132                 if (!page->mapping) {
133                         err = -ENODATA;
134                         goto error;
135                 }
136
137                 /*
138                  * Uh oh, read-error from disk.
139                  */
140                 if (!PageUptodate(page)) {
141                         err = -EIO;
142                         goto error;
143                 }
144
145                 /*
146                  * Page is ok afterall, we are done.
147                  */
148                 unlock_page(page);
149         }
150
151         return 0;
152 error:
153         unlock_page(page);
154         return err;
155 }
156
157 const struct pipe_buf_operations page_cache_pipe_buf_ops = {
158         .confirm        = page_cache_pipe_buf_confirm,
159         .release        = page_cache_pipe_buf_release,
160         .try_steal      = page_cache_pipe_buf_try_steal,
161         .get            = generic_pipe_buf_get,
162 };
163
164 static bool user_page_pipe_buf_try_steal(struct pipe_inode_info *pipe,
165                 struct pipe_buffer *buf)
166 {
167         if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
168                 return false;
169
170         buf->flags |= PIPE_BUF_FLAG_LRU;
171         return generic_pipe_buf_try_steal(pipe, buf);
172 }
173
174 static const struct pipe_buf_operations user_page_pipe_buf_ops = {
175         .release        = page_cache_pipe_buf_release,
176         .try_steal      = user_page_pipe_buf_try_steal,
177         .get            = generic_pipe_buf_get,
178 };
179
180 static void wakeup_pipe_readers(struct pipe_inode_info *pipe)
181 {
182         smp_mb();
183         if (waitqueue_active(&pipe->rd_wait))
184                 wake_up_interruptible(&pipe->rd_wait);
185         kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
186 }
187
188 /**
189  * splice_to_pipe - fill passed data into a pipe
190  * @pipe:       pipe to fill
191  * @spd:        data to fill
192  *
193  * Description:
194  *    @spd contains a map of pages and len/offset tuples, along with
195  *    the struct pipe_buf_operations associated with these pages. This
196  *    function will link that data to the pipe.
197  *
198  */
199 ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
200                        struct splice_pipe_desc *spd)
201 {
202         unsigned int spd_pages = spd->nr_pages;
203         unsigned int tail = pipe->tail;
204         unsigned int head = pipe->head;
205         unsigned int mask = pipe->ring_size - 1;
206         int ret = 0, page_nr = 0;
207
208         if (!spd_pages)
209                 return 0;
210
211         if (unlikely(!pipe->readers)) {
212                 send_sig(SIGPIPE, current, 0);
213                 ret = -EPIPE;
214                 goto out;
215         }
216
217         while (!pipe_full(head, tail, pipe->max_usage)) {
218                 struct pipe_buffer *buf = &pipe->bufs[head & mask];
219
220                 buf->page = spd->pages[page_nr];
221                 buf->offset = spd->partial[page_nr].offset;
222                 buf->len = spd->partial[page_nr].len;
223                 buf->private = spd->partial[page_nr].private;
224                 buf->ops = spd->ops;
225                 buf->flags = 0;
226
227                 head++;
228                 pipe->head = head;
229                 page_nr++;
230                 ret += buf->len;
231
232                 if (!--spd->nr_pages)
233                         break;
234         }
235
236         if (!ret)
237                 ret = -EAGAIN;
238
239 out:
240         while (page_nr < spd_pages)
241                 spd->spd_release(spd, page_nr++);
242
243         return ret;
244 }
245 EXPORT_SYMBOL_GPL(splice_to_pipe);
246
247 ssize_t add_to_pipe(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
248 {
249         unsigned int head = pipe->head;
250         unsigned int tail = pipe->tail;
251         unsigned int mask = pipe->ring_size - 1;
252         int ret;
253
254         if (unlikely(!pipe->readers)) {
255                 send_sig(SIGPIPE, current, 0);
256                 ret = -EPIPE;
257         } else if (pipe_full(head, tail, pipe->max_usage)) {
258                 ret = -EAGAIN;
259         } else {
260                 pipe->bufs[head & mask] = *buf;
261                 pipe->head = head + 1;
262                 return buf->len;
263         }
264         pipe_buf_release(pipe, buf);
265         return ret;
266 }
267 EXPORT_SYMBOL(add_to_pipe);
268
269 /*
270  * Check if we need to grow the arrays holding pages and partial page
271  * descriptions.
272  */
273 int splice_grow_spd(const struct pipe_inode_info *pipe, struct splice_pipe_desc *spd)
274 {
275         unsigned int max_usage = READ_ONCE(pipe->max_usage);
276
277         spd->nr_pages_max = max_usage;
278         if (max_usage <= PIPE_DEF_BUFFERS)
279                 return 0;
280
281         spd->pages = kmalloc_array(max_usage, sizeof(struct page *), GFP_KERNEL);
282         spd->partial = kmalloc_array(max_usage, sizeof(struct partial_page),
283                                      GFP_KERNEL);
284
285         if (spd->pages && spd->partial)
286                 return 0;
287
288         kfree(spd->pages);
289         kfree(spd->partial);
290         return -ENOMEM;
291 }
292
293 void splice_shrink_spd(struct splice_pipe_desc *spd)
294 {
295         if (spd->nr_pages_max <= PIPE_DEF_BUFFERS)
296                 return;
297
298         kfree(spd->pages);
299         kfree(spd->partial);
300 }
301
302 /*
303  * Copy data from a file into pages and then splice those into the output pipe.
304  */
305 ssize_t copy_splice_read(struct file *in, loff_t *ppos,
306                          struct pipe_inode_info *pipe,
307                          size_t len, unsigned int flags)
308 {
309         struct iov_iter to;
310         struct bio_vec *bv;
311         struct kiocb kiocb;
312         struct page **pages;
313         ssize_t ret;
314         size_t used, npages, chunk, remain, keep = 0;
315         int i;
316
317         /* Work out how much data we can actually add into the pipe */
318         used = pipe_occupancy(pipe->head, pipe->tail);
319         npages = max_t(ssize_t, pipe->max_usage - used, 0);
320         len = min_t(size_t, len, npages * PAGE_SIZE);
321         npages = DIV_ROUND_UP(len, PAGE_SIZE);
322
323         bv = kzalloc(array_size(npages, sizeof(bv[0])) +
324                      array_size(npages, sizeof(struct page *)), GFP_KERNEL);
325         if (!bv)
326                 return -ENOMEM;
327
328         pages = (struct page **)(bv + npages);
329         npages = alloc_pages_bulk_array(GFP_USER, npages, pages);
330         if (!npages) {
331                 kfree(bv);
332                 return -ENOMEM;
333         }
334
335         remain = len = min_t(size_t, len, npages * PAGE_SIZE);
336
337         for (i = 0; i < npages; i++) {
338                 chunk = min_t(size_t, PAGE_SIZE, remain);
339                 bv[i].bv_page = pages[i];
340                 bv[i].bv_offset = 0;
341                 bv[i].bv_len = chunk;
342                 remain -= chunk;
343         }
344
345         /* Do the I/O */
346         iov_iter_bvec(&to, ITER_DEST, bv, npages, len);
347         init_sync_kiocb(&kiocb, in);
348         kiocb.ki_pos = *ppos;
349         ret = call_read_iter(in, &kiocb, &to);
350
351         if (ret > 0) {
352                 keep = DIV_ROUND_UP(ret, PAGE_SIZE);
353                 *ppos = kiocb.ki_pos;
354                 file_accessed(in);
355         } else if (ret < 0) {
356                 /*
357                  * callers of ->splice_read() expect -EAGAIN on
358                  * "can't put anything in there", rather than -EFAULT.
359                  */
360                 if (ret == -EFAULT)
361                         ret = -EAGAIN;
362         }
363
364         /* Free any pages that didn't get touched at all. */
365         if (keep < npages)
366                 release_pages(pages + keep, npages - keep);
367
368         /* Push the remaining pages into the pipe. */
369         remain = ret;
370         for (i = 0; i < keep; i++) {
371                 struct pipe_buffer *buf = pipe_head_buf(pipe);
372
373                 chunk = min_t(size_t, remain, PAGE_SIZE);
374                 *buf = (struct pipe_buffer) {
375                         .ops    = &default_pipe_buf_ops,
376                         .page   = bv[i].bv_page,
377                         .offset = 0,
378                         .len    = chunk,
379                 };
380                 pipe->head++;
381                 remain -= chunk;
382         }
383
384         kfree(bv);
385         return ret;
386 }
387 EXPORT_SYMBOL(copy_splice_read);
388
389 /**
390  * generic_file_splice_read - splice data from file to a pipe
391  * @in:         file to splice from
392  * @ppos:       position in @in
393  * @pipe:       pipe to splice to
394  * @len:        number of bytes to splice
395  * @flags:      splice modifier flags
396  *
397  * Description:
398  *    Will read pages from given file and fill them into a pipe. Can be
399  *    used as long as it has more or less sane ->read_iter().
400  *
401  */
402 ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
403                                  struct pipe_inode_info *pipe, size_t len,
404                                  unsigned int flags)
405 {
406         struct iov_iter to;
407         struct kiocb kiocb;
408         int ret;
409
410         iov_iter_pipe(&to, ITER_DEST, pipe, len);
411         init_sync_kiocb(&kiocb, in);
412         kiocb.ki_pos = *ppos;
413         ret = call_read_iter(in, &kiocb, &to);
414         if (ret > 0) {
415                 *ppos = kiocb.ki_pos;
416                 file_accessed(in);
417         } else if (ret < 0) {
418                 /* free what was emitted */
419                 pipe_discard_from(pipe, to.start_head);
420                 /*
421                  * callers of ->splice_read() expect -EAGAIN on
422                  * "can't put anything in there", rather than -EFAULT.
423                  */
424                 if (ret == -EFAULT)
425                         ret = -EAGAIN;
426         }
427
428         return ret;
429 }
430 EXPORT_SYMBOL(generic_file_splice_read);
431
432 const struct pipe_buf_operations default_pipe_buf_ops = {
433         .release        = generic_pipe_buf_release,
434         .try_steal      = generic_pipe_buf_try_steal,
435         .get            = generic_pipe_buf_get,
436 };
437
438 /* Pipe buffer operations for a socket and similar. */
439 const struct pipe_buf_operations nosteal_pipe_buf_ops = {
440         .release        = generic_pipe_buf_release,
441         .get            = generic_pipe_buf_get,
442 };
443 EXPORT_SYMBOL(nosteal_pipe_buf_ops);
444
445 /*
446  * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
447  * using sendpage(). Return the number of bytes sent.
448  */
449 static int pipe_to_sendpage(struct pipe_inode_info *pipe,
450                             struct pipe_buffer *buf, struct splice_desc *sd)
451 {
452         struct file *file = sd->u.file;
453         loff_t pos = sd->pos;
454         int more;
455
456         if (!likely(file->f_op->sendpage))
457                 return -EINVAL;
458
459         more = (sd->flags & SPLICE_F_MORE) ? MSG_MORE : 0;
460
461         if (sd->len < sd->total_len &&
462             pipe_occupancy(pipe->head, pipe->tail) > 1)
463                 more |= MSG_SENDPAGE_NOTLAST;
464
465         return file->f_op->sendpage(file, buf->page, buf->offset,
466                                     sd->len, &pos, more);
467 }
468
469 static void wakeup_pipe_writers(struct pipe_inode_info *pipe)
470 {
471         smp_mb();
472         if (waitqueue_active(&pipe->wr_wait))
473                 wake_up_interruptible(&pipe->wr_wait);
474         kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
475 }
476
477 /**
478  * splice_from_pipe_feed - feed available data from a pipe to a file
479  * @pipe:       pipe to splice from
480  * @sd:         information to @actor
481  * @actor:      handler that splices the data
482  *
483  * Description:
484  *    This function loops over the pipe and calls @actor to do the
485  *    actual moving of a single struct pipe_buffer to the desired
486  *    destination.  It returns when there's no more buffers left in
487  *    the pipe or if the requested number of bytes (@sd->total_len)
488  *    have been copied.  It returns a positive number (one) if the
489  *    pipe needs to be filled with more data, zero if the required
490  *    number of bytes have been copied and -errno on error.
491  *
492  *    This, together with splice_from_pipe_{begin,end,next}, may be
493  *    used to implement the functionality of __splice_from_pipe() when
494  *    locking is required around copying the pipe buffers to the
495  *    destination.
496  */
497 static int splice_from_pipe_feed(struct pipe_inode_info *pipe, struct splice_desc *sd,
498                           splice_actor *actor)
499 {
500         unsigned int head = pipe->head;
501         unsigned int tail = pipe->tail;
502         unsigned int mask = pipe->ring_size - 1;
503         int ret;
504
505         while (!pipe_empty(head, tail)) {
506                 struct pipe_buffer *buf = &pipe->bufs[tail & mask];
507
508                 sd->len = buf->len;
509                 if (sd->len > sd->total_len)
510                         sd->len = sd->total_len;
511
512                 ret = pipe_buf_confirm(pipe, buf);
513                 if (unlikely(ret)) {
514                         if (ret == -ENODATA)
515                                 ret = 0;
516                         return ret;
517                 }
518
519                 ret = actor(pipe, buf, sd);
520                 if (ret <= 0)
521                         return ret;
522
523                 buf->offset += ret;
524                 buf->len -= ret;
525
526                 sd->num_spliced += ret;
527                 sd->len -= ret;
528                 sd->pos += ret;
529                 sd->total_len -= ret;
530
531                 if (!buf->len) {
532                         pipe_buf_release(pipe, buf);
533                         tail++;
534                         pipe->tail = tail;
535                         if (pipe->files)
536                                 sd->need_wakeup = true;
537                 }
538
539                 if (!sd->total_len)
540                         return 0;
541         }
542
543         return 1;
544 }
545
546 /* We know we have a pipe buffer, but maybe it's empty? */
547 static inline bool eat_empty_buffer(struct pipe_inode_info *pipe)
548 {
549         unsigned int tail = pipe->tail;
550         unsigned int mask = pipe->ring_size - 1;
551         struct pipe_buffer *buf = &pipe->bufs[tail & mask];
552
553         if (unlikely(!buf->len)) {
554                 pipe_buf_release(pipe, buf);
555                 pipe->tail = tail+1;
556                 return true;
557         }
558
559         return false;
560 }
561
562 /**
563  * splice_from_pipe_next - wait for some data to splice from
564  * @pipe:       pipe to splice from
565  * @sd:         information about the splice operation
566  *
567  * Description:
568  *    This function will wait for some data and return a positive
569  *    value (one) if pipe buffers are available.  It will return zero
570  *    or -errno if no more data needs to be spliced.
571  */
572 static int splice_from_pipe_next(struct pipe_inode_info *pipe, struct splice_desc *sd)
573 {
574         /*
575          * Check for signal early to make process killable when there are
576          * always buffers available
577          */
578         if (signal_pending(current))
579                 return -ERESTARTSYS;
580
581 repeat:
582         while (pipe_empty(pipe->head, pipe->tail)) {
583                 if (!pipe->writers)
584                         return 0;
585
586                 if (sd->num_spliced)
587                         return 0;
588
589                 if (sd->flags & SPLICE_F_NONBLOCK)
590                         return -EAGAIN;
591
592                 if (signal_pending(current))
593                         return -ERESTARTSYS;
594
595                 if (sd->need_wakeup) {
596                         wakeup_pipe_writers(pipe);
597                         sd->need_wakeup = false;
598                 }
599
600                 pipe_wait_readable(pipe);
601         }
602
603         if (eat_empty_buffer(pipe))
604                 goto repeat;
605
606         return 1;
607 }
608
609 /**
610  * splice_from_pipe_begin - start splicing from pipe
611  * @sd:         information about the splice operation
612  *
613  * Description:
614  *    This function should be called before a loop containing
615  *    splice_from_pipe_next() and splice_from_pipe_feed() to
616  *    initialize the necessary fields of @sd.
617  */
618 static void splice_from_pipe_begin(struct splice_desc *sd)
619 {
620         sd->num_spliced = 0;
621         sd->need_wakeup = false;
622 }
623
624 /**
625  * splice_from_pipe_end - finish splicing from pipe
626  * @pipe:       pipe to splice from
627  * @sd:         information about the splice operation
628  *
629  * Description:
630  *    This function will wake up pipe writers if necessary.  It should
631  *    be called after a loop containing splice_from_pipe_next() and
632  *    splice_from_pipe_feed().
633  */
634 static void splice_from_pipe_end(struct pipe_inode_info *pipe, struct splice_desc *sd)
635 {
636         if (sd->need_wakeup)
637                 wakeup_pipe_writers(pipe);
638 }
639
640 /**
641  * __splice_from_pipe - splice data from a pipe to given actor
642  * @pipe:       pipe to splice from
643  * @sd:         information to @actor
644  * @actor:      handler that splices the data
645  *
646  * Description:
647  *    This function does little more than loop over the pipe and call
648  *    @actor to do the actual moving of a single struct pipe_buffer to
649  *    the desired destination. See pipe_to_file, pipe_to_sendpage, or
650  *    pipe_to_user.
651  *
652  */
653 ssize_t __splice_from_pipe(struct pipe_inode_info *pipe, struct splice_desc *sd,
654                            splice_actor *actor)
655 {
656         int ret;
657
658         splice_from_pipe_begin(sd);
659         do {
660                 cond_resched();
661                 ret = splice_from_pipe_next(pipe, sd);
662                 if (ret > 0)
663                         ret = splice_from_pipe_feed(pipe, sd, actor);
664         } while (ret > 0);
665         splice_from_pipe_end(pipe, sd);
666
667         return sd->num_spliced ? sd->num_spliced : ret;
668 }
669 EXPORT_SYMBOL(__splice_from_pipe);
670
671 /**
672  * splice_from_pipe - splice data from a pipe to a file
673  * @pipe:       pipe to splice from
674  * @out:        file to splice to
675  * @ppos:       position in @out
676  * @len:        how many bytes to splice
677  * @flags:      splice modifier flags
678  * @actor:      handler that splices the data
679  *
680  * Description:
681  *    See __splice_from_pipe. This function locks the pipe inode,
682  *    otherwise it's identical to __splice_from_pipe().
683  *
684  */
685 ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
686                          loff_t *ppos, size_t len, unsigned int flags,
687                          splice_actor *actor)
688 {
689         ssize_t ret;
690         struct splice_desc sd = {
691                 .total_len = len,
692                 .flags = flags,
693                 .pos = *ppos,
694                 .u.file = out,
695         };
696
697         pipe_lock(pipe);
698         ret = __splice_from_pipe(pipe, &sd, actor);
699         pipe_unlock(pipe);
700
701         return ret;
702 }
703
704 /**
705  * iter_file_splice_write - splice data from a pipe to a file
706  * @pipe:       pipe info
707  * @out:        file to write to
708  * @ppos:       position in @out
709  * @len:        number of bytes to splice
710  * @flags:      splice modifier flags
711  *
712  * Description:
713  *    Will either move or copy pages (determined by @flags options) from
714  *    the given pipe inode to the given file.
715  *    This one is ->write_iter-based.
716  *
717  */
718 ssize_t
719 iter_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
720                           loff_t *ppos, size_t len, unsigned int flags)
721 {
722         struct splice_desc sd = {
723                 .total_len = len,
724                 .flags = flags,
725                 .pos = *ppos,
726                 .u.file = out,
727         };
728         int nbufs = pipe->max_usage;
729         struct bio_vec *array = kcalloc(nbufs, sizeof(struct bio_vec),
730                                         GFP_KERNEL);
731         ssize_t ret;
732
733         if (unlikely(!array))
734                 return -ENOMEM;
735
736         pipe_lock(pipe);
737
738         splice_from_pipe_begin(&sd);
739         while (sd.total_len) {
740                 struct iov_iter from;
741                 unsigned int head, tail, mask;
742                 size_t left;
743                 int n;
744
745                 ret = splice_from_pipe_next(pipe, &sd);
746                 if (ret <= 0)
747                         break;
748
749                 if (unlikely(nbufs < pipe->max_usage)) {
750                         kfree(array);
751                         nbufs = pipe->max_usage;
752                         array = kcalloc(nbufs, sizeof(struct bio_vec),
753                                         GFP_KERNEL);
754                         if (!array) {
755                                 ret = -ENOMEM;
756                                 break;
757                         }
758                 }
759
760                 head = pipe->head;
761                 tail = pipe->tail;
762                 mask = pipe->ring_size - 1;
763
764                 /* build the vector */
765                 left = sd.total_len;
766                 for (n = 0; !pipe_empty(head, tail) && left && n < nbufs; tail++) {
767                         struct pipe_buffer *buf = &pipe->bufs[tail & mask];
768                         size_t this_len = buf->len;
769
770                         /* zero-length bvecs are not supported, skip them */
771                         if (!this_len)
772                                 continue;
773                         this_len = min(this_len, left);
774
775                         ret = pipe_buf_confirm(pipe, buf);
776                         if (unlikely(ret)) {
777                                 if (ret == -ENODATA)
778                                         ret = 0;
779                                 goto done;
780                         }
781
782                         bvec_set_page(&array[n], buf->page, this_len,
783                                       buf->offset);
784                         left -= this_len;
785                         n++;
786                 }
787
788                 iov_iter_bvec(&from, ITER_SOURCE, array, n, sd.total_len - left);
789                 ret = vfs_iter_write(out, &from, &sd.pos, 0);
790                 if (ret <= 0)
791                         break;
792
793                 sd.num_spliced += ret;
794                 sd.total_len -= ret;
795                 *ppos = sd.pos;
796
797                 /* dismiss the fully eaten buffers, adjust the partial one */
798                 tail = pipe->tail;
799                 while (ret) {
800                         struct pipe_buffer *buf = &pipe->bufs[tail & mask];
801                         if (ret >= buf->len) {
802                                 ret -= buf->len;
803                                 buf->len = 0;
804                                 pipe_buf_release(pipe, buf);
805                                 tail++;
806                                 pipe->tail = tail;
807                                 if (pipe->files)
808                                         sd.need_wakeup = true;
809                         } else {
810                                 buf->offset += ret;
811                                 buf->len -= ret;
812                                 ret = 0;
813                         }
814                 }
815         }
816 done:
817         kfree(array);
818         splice_from_pipe_end(pipe, &sd);
819
820         pipe_unlock(pipe);
821
822         if (sd.num_spliced)
823                 ret = sd.num_spliced;
824
825         return ret;
826 }
827
828 EXPORT_SYMBOL(iter_file_splice_write);
829
830 /**
831  * generic_splice_sendpage - splice data from a pipe to a socket
832  * @pipe:       pipe to splice from
833  * @out:        socket to write to
834  * @ppos:       position in @out
835  * @len:        number of bytes to splice
836  * @flags:      splice modifier flags
837  *
838  * Description:
839  *    Will send @len bytes from the pipe to a network socket. No data copying
840  *    is involved.
841  *
842  */
843 ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
844                                 loff_t *ppos, size_t len, unsigned int flags)
845 {
846         return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
847 }
848
849 EXPORT_SYMBOL(generic_splice_sendpage);
850
851 static int warn_unsupported(struct file *file, const char *op)
852 {
853         pr_debug_ratelimited(
854                 "splice %s not supported for file %pD4 (pid: %d comm: %.20s)\n",
855                 op, file, current->pid, current->comm);
856         return -EINVAL;
857 }
858
859 /*
860  * Attempt to initiate a splice from pipe to file.
861  */
862 static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
863                            loff_t *ppos, size_t len, unsigned int flags)
864 {
865         if (unlikely(!out->f_op->splice_write))
866                 return warn_unsupported(out, "write");
867         return out->f_op->splice_write(pipe, out, ppos, len, flags);
868 }
869
870 /**
871  * vfs_splice_read - Read data from a file and splice it into a pipe
872  * @in:         File to splice from
873  * @ppos:       Input file offset
874  * @pipe:       Pipe to splice to
875  * @len:        Number of bytes to splice
876  * @flags:      Splice modifier flags (SPLICE_F_*)
877  *
878  * Splice the requested amount of data from the input file to the pipe.  This
879  * is synchronous as the caller must hold the pipe lock across the entire
880  * operation.
881  *
882  * If successful, it returns the amount of data spliced, 0 if it hit the EOF or
883  * a hole and a negative error code otherwise.
884  */
885 long vfs_splice_read(struct file *in, loff_t *ppos,
886                      struct pipe_inode_info *pipe, size_t len,
887                      unsigned int flags)
888 {
889         unsigned int p_space;
890         int ret;
891
892         if (unlikely(!(in->f_mode & FMODE_READ)))
893                 return -EBADF;
894
895         /* Don't try to read more the pipe has space for. */
896         p_space = pipe->max_usage - pipe_occupancy(pipe->head, pipe->tail);
897         len = min_t(size_t, len, p_space << PAGE_SHIFT);
898
899         ret = rw_verify_area(READ, in, ppos, len);
900         if (unlikely(ret < 0))
901                 return ret;
902
903         if (unlikely(len > MAX_RW_COUNT))
904                 len = MAX_RW_COUNT;
905
906         if (unlikely(!in->f_op->splice_read))
907                 return warn_unsupported(in, "read");
908         return in->f_op->splice_read(in, ppos, pipe, len, flags);
909 }
910 EXPORT_SYMBOL_GPL(vfs_splice_read);
911
912 /**
913  * splice_direct_to_actor - splices data directly between two non-pipes
914  * @in:         file to splice from
915  * @sd:         actor information on where to splice to
916  * @actor:      handles the data splicing
917  *
918  * Description:
919  *    This is a special case helper to splice directly between two
920  *    points, without requiring an explicit pipe. Internally an allocated
921  *    pipe is cached in the process, and reused during the lifetime of
922  *    that process.
923  *
924  */
925 ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
926                                splice_direct_actor *actor)
927 {
928         struct pipe_inode_info *pipe;
929         long ret, bytes;
930         size_t len;
931         int i, flags, more;
932
933         /*
934          * We require the input to be seekable, as we don't want to randomly
935          * drop data for eg socket -> socket splicing. Use the piped splicing
936          * for that!
937          */
938         if (unlikely(!(in->f_mode & FMODE_LSEEK)))
939                 return -EINVAL;
940
941         /*
942          * neither in nor out is a pipe, setup an internal pipe attached to
943          * 'out' and transfer the wanted data from 'in' to 'out' through that
944          */
945         pipe = current->splice_pipe;
946         if (unlikely(!pipe)) {
947                 pipe = alloc_pipe_info();
948                 if (!pipe)
949                         return -ENOMEM;
950
951                 /*
952                  * We don't have an immediate reader, but we'll read the stuff
953                  * out of the pipe right after the splice_to_pipe(). So set
954                  * PIPE_READERS appropriately.
955                  */
956                 pipe->readers = 1;
957
958                 current->splice_pipe = pipe;
959         }
960
961         /*
962          * Do the splice.
963          */
964         bytes = 0;
965         len = sd->total_len;
966         flags = sd->flags;
967
968         /*
969          * Don't block on output, we have to drain the direct pipe.
970          */
971         sd->flags &= ~SPLICE_F_NONBLOCK;
972         more = sd->flags & SPLICE_F_MORE;
973
974         WARN_ON_ONCE(!pipe_empty(pipe->head, pipe->tail));
975
976         while (len) {
977                 size_t read_len;
978                 loff_t pos = sd->pos, prev_pos = pos;
979
980                 ret = vfs_splice_read(in, &pos, pipe, len, flags);
981                 if (unlikely(ret <= 0))
982                         goto out_release;
983
984                 read_len = ret;
985                 sd->total_len = read_len;
986
987                 /*
988                  * If more data is pending, set SPLICE_F_MORE
989                  * If this is the last data and SPLICE_F_MORE was not set
990                  * initially, clears it.
991                  */
992                 if (read_len < len)
993                         sd->flags |= SPLICE_F_MORE;
994                 else if (!more)
995                         sd->flags &= ~SPLICE_F_MORE;
996                 /*
997                  * NOTE: nonblocking mode only applies to the input. We
998                  * must not do the output in nonblocking mode as then we
999                  * could get stuck data in the internal pipe:
1000                  */
1001                 ret = actor(pipe, sd);
1002                 if (unlikely(ret <= 0)) {
1003                         sd->pos = prev_pos;
1004                         goto out_release;
1005                 }
1006
1007                 bytes += ret;
1008                 len -= ret;
1009                 sd->pos = pos;
1010
1011                 if (ret < read_len) {
1012                         sd->pos = prev_pos + ret;
1013                         goto out_release;
1014                 }
1015         }
1016
1017 done:
1018         pipe->tail = pipe->head = 0;
1019         file_accessed(in);
1020         return bytes;
1021
1022 out_release:
1023         /*
1024          * If we did an incomplete transfer we must release
1025          * the pipe buffers in question:
1026          */
1027         for (i = 0; i < pipe->ring_size; i++) {
1028                 struct pipe_buffer *buf = &pipe->bufs[i];
1029
1030                 if (buf->ops)
1031                         pipe_buf_release(pipe, buf);
1032         }
1033
1034         if (!bytes)
1035                 bytes = ret;
1036
1037         goto done;
1038 }
1039 EXPORT_SYMBOL(splice_direct_to_actor);
1040
1041 static int direct_splice_actor(struct pipe_inode_info *pipe,
1042                                struct splice_desc *sd)
1043 {
1044         struct file *file = sd->u.file;
1045
1046         return do_splice_from(pipe, file, sd->opos, sd->total_len,
1047                               sd->flags);
1048 }
1049
1050 /**
1051  * do_splice_direct - splices data directly between two files
1052  * @in:         file to splice from
1053  * @ppos:       input file offset
1054  * @out:        file to splice to
1055  * @opos:       output file offset
1056  * @len:        number of bytes to splice
1057  * @flags:      splice modifier flags
1058  *
1059  * Description:
1060  *    For use by do_sendfile(). splice can easily emulate sendfile, but
1061  *    doing it in the application would incur an extra system call
1062  *    (splice in + splice out, as compared to just sendfile()). So this helper
1063  *    can splice directly through a process-private pipe.
1064  *
1065  */
1066 long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1067                       loff_t *opos, size_t len, unsigned int flags)
1068 {
1069         struct splice_desc sd = {
1070                 .len            = len,
1071                 .total_len      = len,
1072                 .flags          = flags,
1073                 .pos            = *ppos,
1074                 .u.file         = out,
1075                 .opos           = opos,
1076         };
1077         long ret;
1078
1079         if (unlikely(!(out->f_mode & FMODE_WRITE)))
1080                 return -EBADF;
1081
1082         if (unlikely(out->f_flags & O_APPEND))
1083                 return -EINVAL;
1084
1085         ret = rw_verify_area(WRITE, out, opos, len);
1086         if (unlikely(ret < 0))
1087                 return ret;
1088
1089         ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
1090         if (ret > 0)
1091                 *ppos = sd.pos;
1092
1093         return ret;
1094 }
1095 EXPORT_SYMBOL(do_splice_direct);
1096
1097 static int wait_for_space(struct pipe_inode_info *pipe, unsigned flags)
1098 {
1099         for (;;) {
1100                 if (unlikely(!pipe->readers)) {
1101                         send_sig(SIGPIPE, current, 0);
1102                         return -EPIPE;
1103                 }
1104                 if (!pipe_full(pipe->head, pipe->tail, pipe->max_usage))
1105                         return 0;
1106                 if (flags & SPLICE_F_NONBLOCK)
1107                         return -EAGAIN;
1108                 if (signal_pending(current))
1109                         return -ERESTARTSYS;
1110                 pipe_wait_writable(pipe);
1111         }
1112 }
1113
1114 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1115                                struct pipe_inode_info *opipe,
1116                                size_t len, unsigned int flags);
1117
1118 long splice_file_to_pipe(struct file *in,
1119                          struct pipe_inode_info *opipe,
1120                          loff_t *offset,
1121                          size_t len, unsigned int flags)
1122 {
1123         long ret;
1124
1125         pipe_lock(opipe);
1126         ret = wait_for_space(opipe, flags);
1127         if (!ret)
1128                 ret = vfs_splice_read(in, offset, opipe, len, flags);
1129         pipe_unlock(opipe);
1130         if (ret > 0)
1131                 wakeup_pipe_readers(opipe);
1132         return ret;
1133 }
1134
1135 /*
1136  * Determine where to splice to/from.
1137  */
1138 long do_splice(struct file *in, loff_t *off_in, struct file *out,
1139                loff_t *off_out, size_t len, unsigned int flags)
1140 {
1141         struct pipe_inode_info *ipipe;
1142         struct pipe_inode_info *opipe;
1143         loff_t offset;
1144         long ret;
1145
1146         if (unlikely(!(in->f_mode & FMODE_READ) ||
1147                      !(out->f_mode & FMODE_WRITE)))
1148                 return -EBADF;
1149
1150         ipipe = get_pipe_info(in, true);
1151         opipe = get_pipe_info(out, true);
1152
1153         if (ipipe && opipe) {
1154                 if (off_in || off_out)
1155                         return -ESPIPE;
1156
1157                 /* Splicing to self would be fun, but... */
1158                 if (ipipe == opipe)
1159                         return -EINVAL;
1160
1161                 if ((in->f_flags | out->f_flags) & O_NONBLOCK)
1162                         flags |= SPLICE_F_NONBLOCK;
1163
1164                 return splice_pipe_to_pipe(ipipe, opipe, len, flags);
1165         }
1166
1167         if (ipipe) {
1168                 if (off_in)
1169                         return -ESPIPE;
1170                 if (off_out) {
1171                         if (!(out->f_mode & FMODE_PWRITE))
1172                                 return -EINVAL;
1173                         offset = *off_out;
1174                 } else {
1175                         offset = out->f_pos;
1176                 }
1177
1178                 if (unlikely(out->f_flags & O_APPEND))
1179                         return -EINVAL;
1180
1181                 ret = rw_verify_area(WRITE, out, &offset, len);
1182                 if (unlikely(ret < 0))
1183                         return ret;
1184
1185                 if (in->f_flags & O_NONBLOCK)
1186                         flags |= SPLICE_F_NONBLOCK;
1187
1188                 file_start_write(out);
1189                 ret = do_splice_from(ipipe, out, &offset, len, flags);
1190                 file_end_write(out);
1191
1192                 if (ret > 0)
1193                         fsnotify_modify(out);
1194
1195                 if (!off_out)
1196                         out->f_pos = offset;
1197                 else
1198                         *off_out = offset;
1199
1200                 return ret;
1201         }
1202
1203         if (opipe) {
1204                 if (off_out)
1205                         return -ESPIPE;
1206                 if (off_in) {
1207                         if (!(in->f_mode & FMODE_PREAD))
1208                                 return -EINVAL;
1209                         offset = *off_in;
1210                 } else {
1211                         offset = in->f_pos;
1212                 }
1213
1214                 if (out->f_flags & O_NONBLOCK)
1215                         flags |= SPLICE_F_NONBLOCK;
1216
1217                 ret = splice_file_to_pipe(in, opipe, &offset, len, flags);
1218
1219                 if (ret > 0)
1220                         fsnotify_access(in);
1221
1222                 if (!off_in)
1223                         in->f_pos = offset;
1224                 else
1225                         *off_in = offset;
1226
1227                 return ret;
1228         }
1229
1230         return -EINVAL;
1231 }
1232
1233 static long __do_splice(struct file *in, loff_t __user *off_in,
1234                         struct file *out, loff_t __user *off_out,
1235                         size_t len, unsigned int flags)
1236 {
1237         struct pipe_inode_info *ipipe;
1238         struct pipe_inode_info *opipe;
1239         loff_t offset, *__off_in = NULL, *__off_out = NULL;
1240         long ret;
1241
1242         ipipe = get_pipe_info(in, true);
1243         opipe = get_pipe_info(out, true);
1244
1245         if (ipipe) {
1246                 if (off_in)
1247                         return -ESPIPE;
1248                 pipe_clear_nowait(in);
1249         }
1250         if (opipe) {
1251                 if (off_out)
1252                         return -ESPIPE;
1253                 pipe_clear_nowait(out);
1254         }
1255
1256         if (off_out) {
1257                 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
1258                         return -EFAULT;
1259                 __off_out = &offset;
1260         }
1261         if (off_in) {
1262                 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
1263                         return -EFAULT;
1264                 __off_in = &offset;
1265         }
1266
1267         ret = do_splice(in, __off_in, out, __off_out, len, flags);
1268         if (ret < 0)
1269                 return ret;
1270
1271         if (__off_out && copy_to_user(off_out, __off_out, sizeof(loff_t)))
1272                 return -EFAULT;
1273         if (__off_in && copy_to_user(off_in, __off_in, sizeof(loff_t)))
1274                 return -EFAULT;
1275
1276         return ret;
1277 }
1278
1279 static int iter_to_pipe(struct iov_iter *from,
1280                         struct pipe_inode_info *pipe,
1281                         unsigned flags)
1282 {
1283         struct pipe_buffer buf = {
1284                 .ops = &user_page_pipe_buf_ops,
1285                 .flags = flags
1286         };
1287         size_t total = 0;
1288         int ret = 0;
1289
1290         while (iov_iter_count(from)) {
1291                 struct page *pages[16];
1292                 ssize_t left;
1293                 size_t start;
1294                 int i, n;
1295
1296                 left = iov_iter_get_pages2(from, pages, ~0UL, 16, &start);
1297                 if (left <= 0) {
1298                         ret = left;
1299                         break;
1300                 }
1301
1302                 n = DIV_ROUND_UP(left + start, PAGE_SIZE);
1303                 for (i = 0; i < n; i++) {
1304                         int size = min_t(int, left, PAGE_SIZE - start);
1305
1306                         buf.page = pages[i];
1307                         buf.offset = start;
1308                         buf.len = size;
1309                         ret = add_to_pipe(pipe, &buf);
1310                         if (unlikely(ret < 0)) {
1311                                 iov_iter_revert(from, left);
1312                                 // this one got dropped by add_to_pipe()
1313                                 while (++i < n)
1314                                         put_page(pages[i]);
1315                                 goto out;
1316                         }
1317                         total += ret;
1318                         left -= size;
1319                         start = 0;
1320                 }
1321         }
1322 out:
1323         return total ? total : ret;
1324 }
1325
1326 static int pipe_to_user(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
1327                         struct splice_desc *sd)
1328 {
1329         int n = copy_page_to_iter(buf->page, buf->offset, sd->len, sd->u.data);
1330         return n == sd->len ? n : -EFAULT;
1331 }
1332
1333 /*
1334  * For lack of a better implementation, implement vmsplice() to userspace
1335  * as a simple copy of the pipes pages to the user iov.
1336  */
1337 static long vmsplice_to_user(struct file *file, struct iov_iter *iter,
1338                              unsigned int flags)
1339 {
1340         struct pipe_inode_info *pipe = get_pipe_info(file, true);
1341         struct splice_desc sd = {
1342                 .total_len = iov_iter_count(iter),
1343                 .flags = flags,
1344                 .u.data = iter
1345         };
1346         long ret = 0;
1347
1348         if (!pipe)
1349                 return -EBADF;
1350
1351         pipe_clear_nowait(file);
1352
1353         if (sd.total_len) {
1354                 pipe_lock(pipe);
1355                 ret = __splice_from_pipe(pipe, &sd, pipe_to_user);
1356                 pipe_unlock(pipe);
1357         }
1358
1359         return ret;
1360 }
1361
1362 /*
1363  * vmsplice splices a user address range into a pipe. It can be thought of
1364  * as splice-from-memory, where the regular splice is splice-from-file (or
1365  * to file). In both cases the output is a pipe, naturally.
1366  */
1367 static long vmsplice_to_pipe(struct file *file, struct iov_iter *iter,
1368                              unsigned int flags)
1369 {
1370         struct pipe_inode_info *pipe;
1371         long ret = 0;
1372         unsigned buf_flag = 0;
1373
1374         if (flags & SPLICE_F_GIFT)
1375                 buf_flag = PIPE_BUF_FLAG_GIFT;
1376
1377         pipe = get_pipe_info(file, true);
1378         if (!pipe)
1379                 return -EBADF;
1380
1381         pipe_clear_nowait(file);
1382
1383         pipe_lock(pipe);
1384         ret = wait_for_space(pipe, flags);
1385         if (!ret)
1386                 ret = iter_to_pipe(iter, pipe, buf_flag);
1387         pipe_unlock(pipe);
1388         if (ret > 0)
1389                 wakeup_pipe_readers(pipe);
1390         return ret;
1391 }
1392
1393 static int vmsplice_type(struct fd f, int *type)
1394 {
1395         if (!f.file)
1396                 return -EBADF;
1397         if (f.file->f_mode & FMODE_WRITE) {
1398                 *type = ITER_SOURCE;
1399         } else if (f.file->f_mode & FMODE_READ) {
1400                 *type = ITER_DEST;
1401         } else {
1402                 fdput(f);
1403                 return -EBADF;
1404         }
1405         return 0;
1406 }
1407
1408 /*
1409  * Note that vmsplice only really supports true splicing _from_ user memory
1410  * to a pipe, not the other way around. Splicing from user memory is a simple
1411  * operation that can be supported without any funky alignment restrictions
1412  * or nasty vm tricks. We simply map in the user memory and fill them into
1413  * a pipe. The reverse isn't quite as easy, though. There are two possible
1414  * solutions for that:
1415  *
1416  *      - memcpy() the data internally, at which point we might as well just
1417  *        do a regular read() on the buffer anyway.
1418  *      - Lots of nasty vm tricks, that are neither fast nor flexible (it
1419  *        has restriction limitations on both ends of the pipe).
1420  *
1421  * Currently we punt and implement it as a normal copy, see pipe_to_user().
1422  *
1423  */
1424 SYSCALL_DEFINE4(vmsplice, int, fd, const struct iovec __user *, uiov,
1425                 unsigned long, nr_segs, unsigned int, flags)
1426 {
1427         struct iovec iovstack[UIO_FASTIOV];
1428         struct iovec *iov = iovstack;
1429         struct iov_iter iter;
1430         ssize_t error;
1431         struct fd f;
1432         int type;
1433
1434         if (unlikely(flags & ~SPLICE_F_ALL))
1435                 return -EINVAL;
1436
1437         f = fdget(fd);
1438         error = vmsplice_type(f, &type);
1439         if (error)
1440                 return error;
1441
1442         error = import_iovec(type, uiov, nr_segs,
1443                              ARRAY_SIZE(iovstack), &iov, &iter);
1444         if (error < 0)
1445                 goto out_fdput;
1446
1447         if (!iov_iter_count(&iter))
1448                 error = 0;
1449         else if (type == ITER_SOURCE)
1450                 error = vmsplice_to_pipe(f.file, &iter, flags);
1451         else
1452                 error = vmsplice_to_user(f.file, &iter, flags);
1453
1454         kfree(iov);
1455 out_fdput:
1456         fdput(f);
1457         return error;
1458 }
1459
1460 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in,
1461                 int, fd_out, loff_t __user *, off_out,
1462                 size_t, len, unsigned int, flags)
1463 {
1464         struct fd in, out;
1465         long error;
1466
1467         if (unlikely(!len))
1468                 return 0;
1469
1470         if (unlikely(flags & ~SPLICE_F_ALL))
1471                 return -EINVAL;
1472
1473         error = -EBADF;
1474         in = fdget(fd_in);
1475         if (in.file) {
1476                 out = fdget(fd_out);
1477                 if (out.file) {
1478                         error = __do_splice(in.file, off_in, out.file, off_out,
1479                                                 len, flags);
1480                         fdput(out);
1481                 }
1482                 fdput(in);
1483         }
1484         return error;
1485 }
1486
1487 /*
1488  * Make sure there's data to read. Wait for input if we can, otherwise
1489  * return an appropriate error.
1490  */
1491 static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1492 {
1493         int ret;
1494
1495         /*
1496          * Check the pipe occupancy without the inode lock first. This function
1497          * is speculative anyways, so missing one is ok.
1498          */
1499         if (!pipe_empty(pipe->head, pipe->tail))
1500                 return 0;
1501
1502         ret = 0;
1503         pipe_lock(pipe);
1504
1505         while (pipe_empty(pipe->head, pipe->tail)) {
1506                 if (signal_pending(current)) {
1507                         ret = -ERESTARTSYS;
1508                         break;
1509                 }
1510                 if (!pipe->writers)
1511                         break;
1512                 if (flags & SPLICE_F_NONBLOCK) {
1513                         ret = -EAGAIN;
1514                         break;
1515                 }
1516                 pipe_wait_readable(pipe);
1517         }
1518
1519         pipe_unlock(pipe);
1520         return ret;
1521 }
1522
1523 /*
1524  * Make sure there's writeable room. Wait for room if we can, otherwise
1525  * return an appropriate error.
1526  */
1527 static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1528 {
1529         int ret;
1530
1531         /*
1532          * Check pipe occupancy without the inode lock first. This function
1533          * is speculative anyways, so missing one is ok.
1534          */
1535         if (!pipe_full(pipe->head, pipe->tail, pipe->max_usage))
1536                 return 0;
1537
1538         ret = 0;
1539         pipe_lock(pipe);
1540
1541         while (pipe_full(pipe->head, pipe->tail, pipe->max_usage)) {
1542                 if (!pipe->readers) {
1543                         send_sig(SIGPIPE, current, 0);
1544                         ret = -EPIPE;
1545                         break;
1546                 }
1547                 if (flags & SPLICE_F_NONBLOCK) {
1548                         ret = -EAGAIN;
1549                         break;
1550                 }
1551                 if (signal_pending(current)) {
1552                         ret = -ERESTARTSYS;
1553                         break;
1554                 }
1555                 pipe_wait_writable(pipe);
1556         }
1557
1558         pipe_unlock(pipe);
1559         return ret;
1560 }
1561
1562 /*
1563  * Splice contents of ipipe to opipe.
1564  */
1565 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1566                                struct pipe_inode_info *opipe,
1567                                size_t len, unsigned int flags)
1568 {
1569         struct pipe_buffer *ibuf, *obuf;
1570         unsigned int i_head, o_head;
1571         unsigned int i_tail, o_tail;
1572         unsigned int i_mask, o_mask;
1573         int ret = 0;
1574         bool input_wakeup = false;
1575
1576
1577 retry:
1578         ret = ipipe_prep(ipipe, flags);
1579         if (ret)
1580                 return ret;
1581
1582         ret = opipe_prep(opipe, flags);
1583         if (ret)
1584                 return ret;
1585
1586         /*
1587          * Potential ABBA deadlock, work around it by ordering lock
1588          * grabbing by pipe info address. Otherwise two different processes
1589          * could deadlock (one doing tee from A -> B, the other from B -> A).
1590          */
1591         pipe_double_lock(ipipe, opipe);
1592
1593         i_tail = ipipe->tail;
1594         i_mask = ipipe->ring_size - 1;
1595         o_head = opipe->head;
1596         o_mask = opipe->ring_size - 1;
1597
1598         do {
1599                 size_t o_len;
1600
1601                 if (!opipe->readers) {
1602                         send_sig(SIGPIPE, current, 0);
1603                         if (!ret)
1604                                 ret = -EPIPE;
1605                         break;
1606                 }
1607
1608                 i_head = ipipe->head;
1609                 o_tail = opipe->tail;
1610
1611                 if (pipe_empty(i_head, i_tail) && !ipipe->writers)
1612                         break;
1613
1614                 /*
1615                  * Cannot make any progress, because either the input
1616                  * pipe is empty or the output pipe is full.
1617                  */
1618                 if (pipe_empty(i_head, i_tail) ||
1619                     pipe_full(o_head, o_tail, opipe->max_usage)) {
1620                         /* Already processed some buffers, break */
1621                         if (ret)
1622                                 break;
1623
1624                         if (flags & SPLICE_F_NONBLOCK) {
1625                                 ret = -EAGAIN;
1626                                 break;
1627                         }
1628
1629                         /*
1630                          * We raced with another reader/writer and haven't
1631                          * managed to process any buffers.  A zero return
1632                          * value means EOF, so retry instead.
1633                          */
1634                         pipe_unlock(ipipe);
1635                         pipe_unlock(opipe);
1636                         goto retry;
1637                 }
1638
1639                 ibuf = &ipipe->bufs[i_tail & i_mask];
1640                 obuf = &opipe->bufs[o_head & o_mask];
1641
1642                 if (len >= ibuf->len) {
1643                         /*
1644                          * Simply move the whole buffer from ipipe to opipe
1645                          */
1646                         *obuf = *ibuf;
1647                         ibuf->ops = NULL;
1648                         i_tail++;
1649                         ipipe->tail = i_tail;
1650                         input_wakeup = true;
1651                         o_len = obuf->len;
1652                         o_head++;
1653                         opipe->head = o_head;
1654                 } else {
1655                         /*
1656                          * Get a reference to this pipe buffer,
1657                          * so we can copy the contents over.
1658                          */
1659                         if (!pipe_buf_get(ipipe, ibuf)) {
1660                                 if (ret == 0)
1661                                         ret = -EFAULT;
1662                                 break;
1663                         }
1664                         *obuf = *ibuf;
1665
1666                         /*
1667                          * Don't inherit the gift and merge flags, we need to
1668                          * prevent multiple steals of this page.
1669                          */
1670                         obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1671                         obuf->flags &= ~PIPE_BUF_FLAG_CAN_MERGE;
1672
1673                         obuf->len = len;
1674                         ibuf->offset += len;
1675                         ibuf->len -= len;
1676                         o_len = len;
1677                         o_head++;
1678                         opipe->head = o_head;
1679                 }
1680                 ret += o_len;
1681                 len -= o_len;
1682         } while (len);
1683
1684         pipe_unlock(ipipe);
1685         pipe_unlock(opipe);
1686
1687         /*
1688          * If we put data in the output pipe, wakeup any potential readers.
1689          */
1690         if (ret > 0)
1691                 wakeup_pipe_readers(opipe);
1692
1693         if (input_wakeup)
1694                 wakeup_pipe_writers(ipipe);
1695
1696         return ret;
1697 }
1698
1699 /*
1700  * Link contents of ipipe to opipe.
1701  */
1702 static int link_pipe(struct pipe_inode_info *ipipe,
1703                      struct pipe_inode_info *opipe,
1704                      size_t len, unsigned int flags)
1705 {
1706         struct pipe_buffer *ibuf, *obuf;
1707         unsigned int i_head, o_head;
1708         unsigned int i_tail, o_tail;
1709         unsigned int i_mask, o_mask;
1710         int ret = 0;
1711
1712         /*
1713          * Potential ABBA deadlock, work around it by ordering lock
1714          * grabbing by pipe info address. Otherwise two different processes
1715          * could deadlock (one doing tee from A -> B, the other from B -> A).
1716          */
1717         pipe_double_lock(ipipe, opipe);
1718
1719         i_tail = ipipe->tail;
1720         i_mask = ipipe->ring_size - 1;
1721         o_head = opipe->head;
1722         o_mask = opipe->ring_size - 1;
1723
1724         do {
1725                 if (!opipe->readers) {
1726                         send_sig(SIGPIPE, current, 0);
1727                         if (!ret)
1728                                 ret = -EPIPE;
1729                         break;
1730                 }
1731
1732                 i_head = ipipe->head;
1733                 o_tail = opipe->tail;
1734
1735                 /*
1736                  * If we have iterated all input buffers or run out of
1737                  * output room, break.
1738                  */
1739                 if (pipe_empty(i_head, i_tail) ||
1740                     pipe_full(o_head, o_tail, opipe->max_usage))
1741                         break;
1742
1743                 ibuf = &ipipe->bufs[i_tail & i_mask];
1744                 obuf = &opipe->bufs[o_head & o_mask];
1745
1746                 /*
1747                  * Get a reference to this pipe buffer,
1748                  * so we can copy the contents over.
1749                  */
1750                 if (!pipe_buf_get(ipipe, ibuf)) {
1751                         if (ret == 0)
1752                                 ret = -EFAULT;
1753                         break;
1754                 }
1755
1756                 *obuf = *ibuf;
1757
1758                 /*
1759                  * Don't inherit the gift and merge flag, we need to prevent
1760                  * multiple steals of this page.
1761                  */
1762                 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1763                 obuf->flags &= ~PIPE_BUF_FLAG_CAN_MERGE;
1764
1765                 if (obuf->len > len)
1766                         obuf->len = len;
1767                 ret += obuf->len;
1768                 len -= obuf->len;
1769
1770                 o_head++;
1771                 opipe->head = o_head;
1772                 i_tail++;
1773         } while (len);
1774
1775         pipe_unlock(ipipe);
1776         pipe_unlock(opipe);
1777
1778         /*
1779          * If we put data in the output pipe, wakeup any potential readers.
1780          */
1781         if (ret > 0)
1782                 wakeup_pipe_readers(opipe);
1783
1784         return ret;
1785 }
1786
1787 /*
1788  * This is a tee(1) implementation that works on pipes. It doesn't copy
1789  * any data, it simply references the 'in' pages on the 'out' pipe.
1790  * The 'flags' used are the SPLICE_F_* variants, currently the only
1791  * applicable one is SPLICE_F_NONBLOCK.
1792  */
1793 long do_tee(struct file *in, struct file *out, size_t len, unsigned int flags)
1794 {
1795         struct pipe_inode_info *ipipe = get_pipe_info(in, true);
1796         struct pipe_inode_info *opipe = get_pipe_info(out, true);
1797         int ret = -EINVAL;
1798
1799         if (unlikely(!(in->f_mode & FMODE_READ) ||
1800                      !(out->f_mode & FMODE_WRITE)))
1801                 return -EBADF;
1802
1803         /*
1804          * Duplicate the contents of ipipe to opipe without actually
1805          * copying the data.
1806          */
1807         if (ipipe && opipe && ipipe != opipe) {
1808                 if ((in->f_flags | out->f_flags) & O_NONBLOCK)
1809                         flags |= SPLICE_F_NONBLOCK;
1810
1811                 /*
1812                  * Keep going, unless we encounter an error. The ipipe/opipe
1813                  * ordering doesn't really matter.
1814                  */
1815                 ret = ipipe_prep(ipipe, flags);
1816                 if (!ret) {
1817                         ret = opipe_prep(opipe, flags);
1818                         if (!ret)
1819                                 ret = link_pipe(ipipe, opipe, len, flags);
1820                 }
1821         }
1822
1823         return ret;
1824 }
1825
1826 SYSCALL_DEFINE4(tee, int, fdin, int, fdout, size_t, len, unsigned int, flags)
1827 {
1828         struct fd in, out;
1829         int error;
1830
1831         if (unlikely(flags & ~SPLICE_F_ALL))
1832                 return -EINVAL;
1833
1834         if (unlikely(!len))
1835                 return 0;
1836
1837         error = -EBADF;
1838         in = fdget(fdin);
1839         if (in.file) {
1840                 out = fdget(fdout);
1841                 if (out.file) {
1842                         error = do_tee(in.file, out.file, len, flags);
1843                         fdput(out);
1844                 }
1845                 fdput(in);
1846         }
1847
1848         return error;
1849 }