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