PCI: Do not run NVidia quirks related to MSI with MSI disabled
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / splice.c
blobeb602cbc1eb544c3f7a0ff954a8f4ab1073178f5
1 /*
2 * "splice": joining two ropes together by interweaving their strands.
4 * This is the "extended pipe" functionality, where a pipe is used as
5 * an arbitrary in-memory buffer. Think of a pipe as a small kernel
6 * buffer that you can use to transfer data from one end to the other.
8 * The traditional unix read/write is extended with a "splice()" operation
9 * that transfers data buffers to or from a pipe buffer.
11 * Named by Larry McVoy, original implementation from Linus, extended by
12 * Jens to support splicing to files, network, direct splicing, etc and
13 * fixing lots of bugs.
15 * Copyright (C) 2005-2006 Jens Axboe <axboe@kernel.dk>
16 * Copyright (C) 2005-2006 Linus Torvalds <torvalds@osdl.org>
17 * Copyright (C) 2006 Ingo Molnar <mingo@elte.hu>
20 #include <linux/fs.h>
21 #include <linux/file.h>
22 #include <linux/pagemap.h>
23 #include <linux/splice.h>
24 #include <linux/memcontrol.h>
25 #include <linux/mm_inline.h>
26 #include <linux/swap.h>
27 #include <linux/writeback.h>
28 #include <linux/buffer_head.h>
29 #include <linux/module.h>
30 #include <linux/syscalls.h>
31 #include <linux/uio.h>
32 #include <linux/security.h>
33 #include <linux/gfp.h>
36 * Attempt to steal a page from a pipe buffer. This should perhaps go into
37 * a vm helper function, it's already simplified quite a bit by the
38 * addition of remove_mapping(). If success is returned, the caller may
39 * attempt to reuse this page for another destination.
41 static int page_cache_pipe_buf_steal(struct pipe_inode_info *pipe,
42 struct pipe_buffer *buf)
44 struct page *page = buf->page;
45 struct address_space *mapping;
47 lock_page(page);
49 mapping = page_mapping(page);
50 if (mapping) {
51 WARN_ON(!PageUptodate(page));
54 * At least for ext2 with nobh option, we need to wait on
55 * writeback completing on this page, since we'll remove it
56 * from the pagecache. Otherwise truncate wont wait on the
57 * page, allowing the disk blocks to be reused by someone else
58 * before we actually wrote our data to them. fs corruption
59 * ensues.
61 wait_on_page_writeback(page);
63 if (page_has_private(page) &&
64 !try_to_release_page(page, GFP_KERNEL))
65 goto out_unlock;
68 * If we succeeded in removing the mapping, set LRU flag
69 * and return good.
71 if (remove_mapping(mapping, page)) {
72 buf->flags |= PIPE_BUF_FLAG_LRU;
73 return 0;
78 * Raced with truncate or failed to remove page from current
79 * address space, unlock and return failure.
81 out_unlock:
82 unlock_page(page);
83 return 1;
86 static void page_cache_pipe_buf_release(struct pipe_inode_info *pipe,
87 struct pipe_buffer *buf)
89 page_cache_release(buf->page);
90 buf->flags &= ~PIPE_BUF_FLAG_LRU;
94 * Check whether the contents of buf is OK to access. Since the content
95 * is a page cache page, IO may be in flight.
97 static int page_cache_pipe_buf_confirm(struct pipe_inode_info *pipe,
98 struct pipe_buffer *buf)
100 struct page *page = buf->page;
101 int err;
103 if (!PageUptodate(page)) {
104 lock_page(page);
107 * Page got truncated/unhashed. This will cause a 0-byte
108 * splice, if this is the first page.
110 if (!page->mapping) {
111 err = -ENODATA;
112 goto error;
116 * Uh oh, read-error from disk.
118 if (!PageUptodate(page)) {
119 err = -EIO;
120 goto error;
124 * Page is ok afterall, we are done.
126 unlock_page(page);
129 return 0;
130 error:
131 unlock_page(page);
132 return err;
135 static const struct pipe_buf_operations page_cache_pipe_buf_ops = {
136 .can_merge = 0,
137 .map = generic_pipe_buf_map,
138 .unmap = generic_pipe_buf_unmap,
139 .confirm = page_cache_pipe_buf_confirm,
140 .release = page_cache_pipe_buf_release,
141 .steal = page_cache_pipe_buf_steal,
142 .get = generic_pipe_buf_get,
145 static int user_page_pipe_buf_steal(struct pipe_inode_info *pipe,
146 struct pipe_buffer *buf)
148 if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
149 return 1;
151 buf->flags |= PIPE_BUF_FLAG_LRU;
152 return generic_pipe_buf_steal(pipe, buf);
155 static const struct pipe_buf_operations user_page_pipe_buf_ops = {
156 .can_merge = 0,
157 .map = generic_pipe_buf_map,
158 .unmap = generic_pipe_buf_unmap,
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,
166 * splice_to_pipe - fill passed data into a pipe
167 * @pipe: pipe to fill
168 * @spd: data to fill
170 * Description:
171 * @spd contains a map of pages and len/offset tuples, along with
172 * the struct pipe_buf_operations associated with these pages. This
173 * function will link that data to the pipe.
176 ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
177 struct splice_pipe_desc *spd)
179 unsigned int spd_pages = spd->nr_pages;
180 int ret, do_wakeup, page_nr;
182 ret = 0;
183 do_wakeup = 0;
184 page_nr = 0;
186 pipe_lock(pipe);
188 for (;;) {
189 if (!pipe->readers) {
190 send_sig(SIGPIPE, current, 0);
191 if (!ret)
192 ret = -EPIPE;
193 break;
196 if (pipe->nrbufs < PIPE_BUFFERS) {
197 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
198 struct pipe_buffer *buf = pipe->bufs + newbuf;
200 buf->page = spd->pages[page_nr];
201 buf->offset = spd->partial[page_nr].offset;
202 buf->len = spd->partial[page_nr].len;
203 buf->private = spd->partial[page_nr].private;
204 buf->ops = spd->ops;
205 if (spd->flags & SPLICE_F_GIFT)
206 buf->flags |= PIPE_BUF_FLAG_GIFT;
208 pipe->nrbufs++;
209 page_nr++;
210 ret += buf->len;
212 if (pipe->inode)
213 do_wakeup = 1;
215 if (!--spd->nr_pages)
216 break;
217 if (pipe->nrbufs < PIPE_BUFFERS)
218 continue;
220 break;
223 if (spd->flags & SPLICE_F_NONBLOCK) {
224 if (!ret)
225 ret = -EAGAIN;
226 break;
229 if (signal_pending(current)) {
230 if (!ret)
231 ret = -ERESTARTSYS;
232 break;
235 if (do_wakeup) {
236 smp_mb();
237 if (waitqueue_active(&pipe->wait))
238 wake_up_interruptible_sync(&pipe->wait);
239 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
240 do_wakeup = 0;
243 pipe->waiting_writers++;
244 pipe_wait(pipe);
245 pipe->waiting_writers--;
248 pipe_unlock(pipe);
250 if (do_wakeup) {
251 smp_mb();
252 if (waitqueue_active(&pipe->wait))
253 wake_up_interruptible(&pipe->wait);
254 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
257 while (page_nr < spd_pages)
258 spd->spd_release(spd, page_nr++);
260 return ret;
263 static void spd_release_page(struct splice_pipe_desc *spd, unsigned int i)
265 page_cache_release(spd->pages[i]);
268 static int
269 __generic_file_splice_read(struct file *in, loff_t *ppos,
270 struct pipe_inode_info *pipe, size_t len,
271 unsigned int flags)
273 struct address_space *mapping = in->f_mapping;
274 unsigned int loff, nr_pages, req_pages;
275 struct page *pages[PIPE_BUFFERS];
276 struct partial_page partial[PIPE_BUFFERS];
277 struct page *page;
278 pgoff_t index, end_index;
279 loff_t isize;
280 int error, page_nr;
281 struct splice_pipe_desc spd = {
282 .pages = pages,
283 .partial = partial,
284 .flags = flags,
285 .ops = &page_cache_pipe_buf_ops,
286 .spd_release = spd_release_page,
289 index = *ppos >> PAGE_CACHE_SHIFT;
290 loff = *ppos & ~PAGE_CACHE_MASK;
291 req_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
292 nr_pages = min(req_pages, (unsigned)PIPE_BUFFERS);
295 * Lookup the (hopefully) full range of pages we need.
297 spd.nr_pages = find_get_pages_contig(mapping, index, nr_pages, pages);
298 index += spd.nr_pages;
301 * If find_get_pages_contig() returned fewer pages than we needed,
302 * readahead/allocate the rest and fill in the holes.
304 if (spd.nr_pages < nr_pages)
305 page_cache_sync_readahead(mapping, &in->f_ra, in,
306 index, req_pages - spd.nr_pages);
308 error = 0;
309 while (spd.nr_pages < nr_pages) {
311 * Page could be there, find_get_pages_contig() breaks on
312 * the first hole.
314 page = find_get_page(mapping, index);
315 if (!page) {
317 * page didn't exist, allocate one.
319 page = page_cache_alloc_cold(mapping);
320 if (!page)
321 break;
323 error = add_to_page_cache_lru(page, mapping, index,
324 mapping_gfp_mask(mapping));
325 if (unlikely(error)) {
326 page_cache_release(page);
327 if (error == -EEXIST)
328 continue;
329 break;
332 * add_to_page_cache() locks the page, unlock it
333 * to avoid convoluting the logic below even more.
335 unlock_page(page);
338 pages[spd.nr_pages++] = page;
339 index++;
343 * Now loop over the map and see if we need to start IO on any
344 * pages, fill in the partial map, etc.
346 index = *ppos >> PAGE_CACHE_SHIFT;
347 nr_pages = spd.nr_pages;
348 spd.nr_pages = 0;
349 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
350 unsigned int this_len;
352 if (!len)
353 break;
356 * this_len is the max we'll use from this page
358 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
359 page = pages[page_nr];
361 if (PageReadahead(page))
362 page_cache_async_readahead(mapping, &in->f_ra, in,
363 page, index, req_pages - page_nr);
366 * If the page isn't uptodate, we may need to start io on it
368 if (!PageUptodate(page)) {
370 * If in nonblock mode then dont block on waiting
371 * for an in-flight io page
373 if (flags & SPLICE_F_NONBLOCK) {
374 if (!trylock_page(page)) {
375 error = -EAGAIN;
376 break;
378 } else
379 lock_page(page);
382 * Page was truncated, or invalidated by the
383 * filesystem. Redo the find/create, but this time the
384 * page is kept locked, so there's no chance of another
385 * race with truncate/invalidate.
387 if (!page->mapping) {
388 unlock_page(page);
389 page = find_or_create_page(mapping, index,
390 mapping_gfp_mask(mapping));
392 if (!page) {
393 error = -ENOMEM;
394 break;
396 page_cache_release(pages[page_nr]);
397 pages[page_nr] = page;
400 * page was already under io and is now done, great
402 if (PageUptodate(page)) {
403 unlock_page(page);
404 goto fill_it;
408 * need to read in the page
410 error = mapping->a_ops->readpage(in, page);
411 if (unlikely(error)) {
413 * We really should re-lookup the page here,
414 * but it complicates things a lot. Instead
415 * lets just do what we already stored, and
416 * we'll get it the next time we are called.
418 if (error == AOP_TRUNCATED_PAGE)
419 error = 0;
421 break;
424 fill_it:
426 * i_size must be checked after PageUptodate.
428 isize = i_size_read(mapping->host);
429 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
430 if (unlikely(!isize || index > end_index))
431 break;
434 * if this is the last page, see if we need to shrink
435 * the length and stop
437 if (end_index == index) {
438 unsigned int plen;
441 * max good bytes in this page
443 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
444 if (plen <= loff)
445 break;
448 * force quit after adding this page
450 this_len = min(this_len, plen - loff);
451 len = this_len;
454 partial[page_nr].offset = loff;
455 partial[page_nr].len = this_len;
456 len -= this_len;
457 loff = 0;
458 spd.nr_pages++;
459 index++;
463 * Release any pages at the end, if we quit early. 'page_nr' is how far
464 * we got, 'nr_pages' is how many pages are in the map.
466 while (page_nr < nr_pages)
467 page_cache_release(pages[page_nr++]);
468 in->f_ra.prev_pos = (loff_t)index << PAGE_CACHE_SHIFT;
470 if (spd.nr_pages)
471 return splice_to_pipe(pipe, &spd);
473 return error;
477 * generic_file_splice_read - splice data from file to a pipe
478 * @in: file to splice from
479 * @ppos: position in @in
480 * @pipe: pipe to splice to
481 * @len: number of bytes to splice
482 * @flags: splice modifier flags
484 * Description:
485 * Will read pages from given file and fill them into a pipe. Can be
486 * used as long as the address_space operations for the source implements
487 * a readpage() hook.
490 ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
491 struct pipe_inode_info *pipe, size_t len,
492 unsigned int flags)
494 loff_t isize, left;
495 int ret;
497 isize = i_size_read(in->f_mapping->host);
498 if (unlikely(*ppos >= isize))
499 return 0;
501 left = isize - *ppos;
502 if (unlikely(left < len))
503 len = left;
505 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
506 if (ret > 0) {
507 *ppos += ret;
508 file_accessed(in);
511 return ret;
513 EXPORT_SYMBOL(generic_file_splice_read);
515 static const struct pipe_buf_operations default_pipe_buf_ops = {
516 .can_merge = 0,
517 .map = generic_pipe_buf_map,
518 .unmap = generic_pipe_buf_unmap,
519 .confirm = generic_pipe_buf_confirm,
520 .release = generic_pipe_buf_release,
521 .steal = generic_pipe_buf_steal,
522 .get = generic_pipe_buf_get,
525 static ssize_t kernel_readv(struct file *file, const struct iovec *vec,
526 unsigned long vlen, loff_t offset)
528 mm_segment_t old_fs;
529 loff_t pos = offset;
530 ssize_t res;
532 old_fs = get_fs();
533 set_fs(get_ds());
534 /* The cast to a user pointer is valid due to the set_fs() */
535 res = vfs_readv(file, (const struct iovec __user *)vec, vlen, &pos);
536 set_fs(old_fs);
538 return res;
541 static ssize_t kernel_write(struct file *file, const char *buf, size_t count,
542 loff_t pos)
544 mm_segment_t old_fs;
545 ssize_t res;
547 old_fs = get_fs();
548 set_fs(get_ds());
549 /* The cast to a user pointer is valid due to the set_fs() */
550 res = vfs_write(file, (const char __user *)buf, count, &pos);
551 set_fs(old_fs);
553 return res;
556 ssize_t default_file_splice_read(struct file *in, loff_t *ppos,
557 struct pipe_inode_info *pipe, size_t len,
558 unsigned int flags)
560 unsigned int nr_pages;
561 unsigned int nr_freed;
562 size_t offset;
563 struct page *pages[PIPE_BUFFERS];
564 struct partial_page partial[PIPE_BUFFERS];
565 struct iovec vec[PIPE_BUFFERS];
566 pgoff_t index;
567 ssize_t res;
568 size_t this_len;
569 int error;
570 int i;
571 struct splice_pipe_desc spd = {
572 .pages = pages,
573 .partial = partial,
574 .flags = flags,
575 .ops = &default_pipe_buf_ops,
576 .spd_release = spd_release_page,
579 index = *ppos >> PAGE_CACHE_SHIFT;
580 offset = *ppos & ~PAGE_CACHE_MASK;
581 nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
583 for (i = 0; i < nr_pages && i < PIPE_BUFFERS && len; i++) {
584 struct page *page;
586 page = alloc_page(GFP_USER);
587 error = -ENOMEM;
588 if (!page)
589 goto err;
591 this_len = min_t(size_t, len, PAGE_CACHE_SIZE - offset);
592 vec[i].iov_base = (void __user *) page_address(page);
593 vec[i].iov_len = this_len;
594 pages[i] = page;
595 spd.nr_pages++;
596 len -= this_len;
597 offset = 0;
600 res = kernel_readv(in, vec, spd.nr_pages, *ppos);
601 if (res < 0) {
602 error = res;
603 goto err;
606 error = 0;
607 if (!res)
608 goto err;
610 nr_freed = 0;
611 for (i = 0; i < spd.nr_pages; i++) {
612 this_len = min_t(size_t, vec[i].iov_len, res);
613 partial[i].offset = 0;
614 partial[i].len = this_len;
615 if (!this_len) {
616 __free_page(pages[i]);
617 pages[i] = NULL;
618 nr_freed++;
620 res -= this_len;
622 spd.nr_pages -= nr_freed;
624 res = splice_to_pipe(pipe, &spd);
625 if (res > 0)
626 *ppos += res;
628 return res;
630 err:
631 for (i = 0; i < spd.nr_pages; i++)
632 __free_page(pages[i]);
634 return error;
636 EXPORT_SYMBOL(default_file_splice_read);
639 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
640 * using sendpage(). Return the number of bytes sent.
642 static int pipe_to_sendpage(struct pipe_inode_info *pipe,
643 struct pipe_buffer *buf, struct splice_desc *sd)
645 struct file *file = sd->u.file;
646 loff_t pos = sd->pos;
647 int ret, more;
649 ret = buf->ops->confirm(pipe, buf);
650 if (!ret) {
651 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
652 if (file->f_op && file->f_op->sendpage)
653 ret = file->f_op->sendpage(file, buf->page, buf->offset,
654 sd->len, &pos, more);
655 else
656 ret = -EINVAL;
659 return ret;
663 * This is a little more tricky than the file -> pipe splicing. There are
664 * basically three cases:
666 * - Destination page already exists in the address space and there
667 * are users of it. For that case we have no other option that
668 * copying the data. Tough luck.
669 * - Destination page already exists in the address space, but there
670 * are no users of it. Make sure it's uptodate, then drop it. Fall
671 * through to last case.
672 * - Destination page does not exist, we can add the pipe page to
673 * the page cache and avoid the copy.
675 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
676 * sd->flags), we attempt to migrate pages from the pipe to the output
677 * file address space page cache. This is possible if no one else has
678 * the pipe page referenced outside of the pipe and page cache. If
679 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
680 * a new page in the output file page cache and fill/dirty that.
682 int pipe_to_file(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
683 struct splice_desc *sd)
685 struct file *file = sd->u.file;
686 struct address_space *mapping = file->f_mapping;
687 unsigned int offset, this_len;
688 struct page *page;
689 void *fsdata;
690 int ret;
693 * make sure the data in this buffer is uptodate
695 ret = buf->ops->confirm(pipe, buf);
696 if (unlikely(ret))
697 return ret;
699 offset = sd->pos & ~PAGE_CACHE_MASK;
701 this_len = sd->len;
702 if (this_len + offset > PAGE_CACHE_SIZE)
703 this_len = PAGE_CACHE_SIZE - offset;
705 ret = pagecache_write_begin(file, mapping, sd->pos, this_len,
706 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
707 if (unlikely(ret))
708 goto out;
710 if (buf->page != page) {
712 * Careful, ->map() uses KM_USER0!
714 char *src = buf->ops->map(pipe, buf, 1);
715 char *dst = kmap_atomic(page, KM_USER1);
717 memcpy(dst + offset, src + buf->offset, this_len);
718 flush_dcache_page(page);
719 kunmap_atomic(dst, KM_USER1);
720 buf->ops->unmap(pipe, buf, src);
722 ret = pagecache_write_end(file, mapping, sd->pos, this_len, this_len,
723 page, fsdata);
724 out:
725 return ret;
727 EXPORT_SYMBOL(pipe_to_file);
729 static void wakeup_pipe_writers(struct pipe_inode_info *pipe)
731 smp_mb();
732 if (waitqueue_active(&pipe->wait))
733 wake_up_interruptible(&pipe->wait);
734 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
738 * splice_from_pipe_feed - feed available data from a pipe to a file
739 * @pipe: pipe to splice from
740 * @sd: information to @actor
741 * @actor: handler that splices the data
743 * Description:
744 * This function loops over the pipe and calls @actor to do the
745 * actual moving of a single struct pipe_buffer to the desired
746 * destination. It returns when there's no more buffers left in
747 * the pipe or if the requested number of bytes (@sd->total_len)
748 * have been copied. It returns a positive number (one) if the
749 * pipe needs to be filled with more data, zero if the required
750 * number of bytes have been copied and -errno on error.
752 * This, together with splice_from_pipe_{begin,end,next}, may be
753 * used to implement the functionality of __splice_from_pipe() when
754 * locking is required around copying the pipe buffers to the
755 * destination.
757 int splice_from_pipe_feed(struct pipe_inode_info *pipe, struct splice_desc *sd,
758 splice_actor *actor)
760 int ret;
762 while (pipe->nrbufs) {
763 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
764 const struct pipe_buf_operations *ops = buf->ops;
766 sd->len = buf->len;
767 if (sd->len > sd->total_len)
768 sd->len = sd->total_len;
770 ret = actor(pipe, buf, sd);
771 if (ret <= 0) {
772 if (ret == -ENODATA)
773 ret = 0;
774 return ret;
776 buf->offset += ret;
777 buf->len -= ret;
779 sd->num_spliced += ret;
780 sd->len -= ret;
781 sd->pos += ret;
782 sd->total_len -= ret;
784 if (!buf->len) {
785 buf->ops = NULL;
786 ops->release(pipe, buf);
787 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
788 pipe->nrbufs--;
789 if (pipe->inode)
790 sd->need_wakeup = true;
793 if (!sd->total_len)
794 return 0;
797 return 1;
799 EXPORT_SYMBOL(splice_from_pipe_feed);
802 * splice_from_pipe_next - wait for some data to splice from
803 * @pipe: pipe to splice from
804 * @sd: information about the splice operation
806 * Description:
807 * This function will wait for some data and return a positive
808 * value (one) if pipe buffers are available. It will return zero
809 * or -errno if no more data needs to be spliced.
811 int splice_from_pipe_next(struct pipe_inode_info *pipe, struct splice_desc *sd)
813 while (!pipe->nrbufs) {
814 if (!pipe->writers)
815 return 0;
817 if (!pipe->waiting_writers && sd->num_spliced)
818 return 0;
820 if (sd->flags & SPLICE_F_NONBLOCK)
821 return -EAGAIN;
823 if (signal_pending(current))
824 return -ERESTARTSYS;
826 if (sd->need_wakeup) {
827 wakeup_pipe_writers(pipe);
828 sd->need_wakeup = false;
831 pipe_wait(pipe);
834 return 1;
836 EXPORT_SYMBOL(splice_from_pipe_next);
839 * splice_from_pipe_begin - start splicing from pipe
840 * @sd: information about the splice operation
842 * Description:
843 * This function should be called before a loop containing
844 * splice_from_pipe_next() and splice_from_pipe_feed() to
845 * initialize the necessary fields of @sd.
847 void splice_from_pipe_begin(struct splice_desc *sd)
849 sd->num_spliced = 0;
850 sd->need_wakeup = false;
852 EXPORT_SYMBOL(splice_from_pipe_begin);
855 * splice_from_pipe_end - finish splicing from pipe
856 * @pipe: pipe to splice from
857 * @sd: information about the splice operation
859 * Description:
860 * This function will wake up pipe writers if necessary. It should
861 * be called after a loop containing splice_from_pipe_next() and
862 * splice_from_pipe_feed().
864 void splice_from_pipe_end(struct pipe_inode_info *pipe, struct splice_desc *sd)
866 if (sd->need_wakeup)
867 wakeup_pipe_writers(pipe);
869 EXPORT_SYMBOL(splice_from_pipe_end);
872 * __splice_from_pipe - splice data from a pipe to given actor
873 * @pipe: pipe to splice from
874 * @sd: information to @actor
875 * @actor: handler that splices the data
877 * Description:
878 * This function does little more than loop over the pipe and call
879 * @actor to do the actual moving of a single struct pipe_buffer to
880 * the desired destination. See pipe_to_file, pipe_to_sendpage, or
881 * pipe_to_user.
884 ssize_t __splice_from_pipe(struct pipe_inode_info *pipe, struct splice_desc *sd,
885 splice_actor *actor)
887 int ret;
889 splice_from_pipe_begin(sd);
890 do {
891 ret = splice_from_pipe_next(pipe, sd);
892 if (ret > 0)
893 ret = splice_from_pipe_feed(pipe, sd, actor);
894 } while (ret > 0);
895 splice_from_pipe_end(pipe, sd);
897 return sd->num_spliced ? sd->num_spliced : ret;
899 EXPORT_SYMBOL(__splice_from_pipe);
902 * splice_from_pipe - splice data from a pipe to a file
903 * @pipe: pipe to splice from
904 * @out: file to splice to
905 * @ppos: position in @out
906 * @len: how many bytes to splice
907 * @flags: splice modifier flags
908 * @actor: handler that splices the data
910 * Description:
911 * See __splice_from_pipe. This function locks the pipe inode,
912 * otherwise it's identical to __splice_from_pipe().
915 ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
916 loff_t *ppos, size_t len, unsigned int flags,
917 splice_actor *actor)
919 ssize_t ret;
920 struct splice_desc sd = {
921 .total_len = len,
922 .flags = flags,
923 .pos = *ppos,
924 .u.file = out,
927 pipe_lock(pipe);
928 ret = __splice_from_pipe(pipe, &sd, actor);
929 pipe_unlock(pipe);
931 return ret;
935 * generic_file_splice_write - splice data from a pipe to a file
936 * @pipe: pipe info
937 * @out: file to write to
938 * @ppos: position in @out
939 * @len: number of bytes to splice
940 * @flags: splice modifier flags
942 * Description:
943 * Will either move or copy pages (determined by @flags options) from
944 * the given pipe inode to the given file.
947 ssize_t
948 generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
949 loff_t *ppos, size_t len, unsigned int flags)
951 struct address_space *mapping = out->f_mapping;
952 struct inode *inode = mapping->host;
953 struct splice_desc sd = {
954 .total_len = len,
955 .flags = flags,
956 .pos = *ppos,
957 .u.file = out,
959 ssize_t ret;
961 pipe_lock(pipe);
963 splice_from_pipe_begin(&sd);
964 do {
965 ret = splice_from_pipe_next(pipe, &sd);
966 if (ret <= 0)
967 break;
969 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
970 ret = file_remove_suid(out);
971 if (!ret) {
972 file_update_time(out);
973 ret = splice_from_pipe_feed(pipe, &sd, pipe_to_file);
975 mutex_unlock(&inode->i_mutex);
976 } while (ret > 0);
977 splice_from_pipe_end(pipe, &sd);
979 pipe_unlock(pipe);
981 if (sd.num_spliced)
982 ret = sd.num_spliced;
984 if (ret > 0) {
985 unsigned long nr_pages;
986 int err;
988 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
990 err = generic_write_sync(out, *ppos, ret);
991 if (err)
992 ret = err;
993 else
994 *ppos += ret;
995 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
998 return ret;
1001 EXPORT_SYMBOL(generic_file_splice_write);
1003 static int write_pipe_buf(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
1004 struct splice_desc *sd)
1006 int ret;
1007 void *data;
1009 ret = buf->ops->confirm(pipe, buf);
1010 if (ret)
1011 return ret;
1013 data = buf->ops->map(pipe, buf, 0);
1014 ret = kernel_write(sd->u.file, data + buf->offset, sd->len, sd->pos);
1015 buf->ops->unmap(pipe, buf, data);
1017 return ret;
1020 static ssize_t default_file_splice_write(struct pipe_inode_info *pipe,
1021 struct file *out, loff_t *ppos,
1022 size_t len, unsigned int flags)
1024 ssize_t ret;
1026 ret = splice_from_pipe(pipe, out, ppos, len, flags, write_pipe_buf);
1027 if (ret > 0)
1028 *ppos += ret;
1030 return ret;
1034 * generic_splice_sendpage - splice data from a pipe to a socket
1035 * @pipe: pipe to splice from
1036 * @out: socket to write to
1037 * @ppos: position in @out
1038 * @len: number of bytes to splice
1039 * @flags: splice modifier flags
1041 * Description:
1042 * Will send @len bytes from the pipe to a network socket. No data copying
1043 * is involved.
1046 ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
1047 loff_t *ppos, size_t len, unsigned int flags)
1049 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
1052 EXPORT_SYMBOL(generic_splice_sendpage);
1055 * Attempt to initiate a splice from pipe to file.
1057 static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
1058 loff_t *ppos, size_t len, unsigned int flags)
1060 ssize_t (*splice_write)(struct pipe_inode_info *, struct file *,
1061 loff_t *, size_t, unsigned int);
1062 int ret;
1064 if (unlikely(!(out->f_mode & FMODE_WRITE)))
1065 return -EBADF;
1067 if (unlikely(out->f_flags & O_APPEND))
1068 return -EINVAL;
1070 ret = rw_verify_area(WRITE, out, ppos, len);
1071 if (unlikely(ret < 0))
1072 return ret;
1074 if (out->f_op && out->f_op->splice_write)
1075 splice_write = out->f_op->splice_write;
1076 else
1077 splice_write = default_file_splice_write;
1079 return splice_write(pipe, out, ppos, len, flags);
1083 * Attempt to initiate a splice from a file to a pipe.
1085 static long do_splice_to(struct file *in, loff_t *ppos,
1086 struct pipe_inode_info *pipe, size_t len,
1087 unsigned int flags)
1089 ssize_t (*splice_read)(struct file *, loff_t *,
1090 struct pipe_inode_info *, size_t, unsigned int);
1091 int ret;
1093 if (unlikely(!(in->f_mode & FMODE_READ)))
1094 return -EBADF;
1096 ret = rw_verify_area(READ, in, ppos, len);
1097 if (unlikely(ret < 0))
1098 return ret;
1100 if (in->f_op && in->f_op->splice_read)
1101 splice_read = in->f_op->splice_read;
1102 else
1103 splice_read = default_file_splice_read;
1105 return splice_read(in, ppos, pipe, len, flags);
1109 * splice_direct_to_actor - splices data directly between two non-pipes
1110 * @in: file to splice from
1111 * @sd: actor information on where to splice to
1112 * @actor: handles the data splicing
1114 * Description:
1115 * This is a special case helper to splice directly between two
1116 * points, without requiring an explicit pipe. Internally an allocated
1117 * pipe is cached in the process, and reused during the lifetime of
1118 * that process.
1121 ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
1122 splice_direct_actor *actor)
1124 struct pipe_inode_info *pipe;
1125 long ret, bytes;
1126 umode_t i_mode;
1127 size_t len;
1128 int i, flags;
1131 * We require the input being a regular file, as we don't want to
1132 * randomly drop data for eg socket -> socket splicing. Use the
1133 * piped splicing for that!
1135 i_mode = in->f_path.dentry->d_inode->i_mode;
1136 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
1137 return -EINVAL;
1140 * neither in nor out is a pipe, setup an internal pipe attached to
1141 * 'out' and transfer the wanted data from 'in' to 'out' through that
1143 pipe = current->splice_pipe;
1144 if (unlikely(!pipe)) {
1145 pipe = alloc_pipe_info(NULL);
1146 if (!pipe)
1147 return -ENOMEM;
1150 * We don't have an immediate reader, but we'll read the stuff
1151 * out of the pipe right after the splice_to_pipe(). So set
1152 * PIPE_READERS appropriately.
1154 pipe->readers = 1;
1156 current->splice_pipe = pipe;
1160 * Do the splice.
1162 ret = 0;
1163 bytes = 0;
1164 len = sd->total_len;
1165 flags = sd->flags;
1168 * Don't block on output, we have to drain the direct pipe.
1170 sd->flags &= ~SPLICE_F_NONBLOCK;
1172 while (len) {
1173 size_t read_len;
1174 loff_t pos = sd->pos, prev_pos = pos;
1176 ret = do_splice_to(in, &pos, pipe, len, flags);
1177 if (unlikely(ret <= 0))
1178 goto out_release;
1180 read_len = ret;
1181 sd->total_len = read_len;
1184 * NOTE: nonblocking mode only applies to the input. We
1185 * must not do the output in nonblocking mode as then we
1186 * could get stuck data in the internal pipe:
1188 ret = actor(pipe, sd);
1189 if (unlikely(ret <= 0)) {
1190 sd->pos = prev_pos;
1191 goto out_release;
1194 bytes += ret;
1195 len -= ret;
1196 sd->pos = pos;
1198 if (ret < read_len) {
1199 sd->pos = prev_pos + ret;
1200 goto out_release;
1204 done:
1205 pipe->nrbufs = pipe->curbuf = 0;
1206 file_accessed(in);
1207 return bytes;
1209 out_release:
1211 * If we did an incomplete transfer we must release
1212 * the pipe buffers in question:
1214 for (i = 0; i < PIPE_BUFFERS; i++) {
1215 struct pipe_buffer *buf = pipe->bufs + i;
1217 if (buf->ops) {
1218 buf->ops->release(pipe, buf);
1219 buf->ops = NULL;
1223 if (!bytes)
1224 bytes = ret;
1226 goto done;
1228 EXPORT_SYMBOL(splice_direct_to_actor);
1230 static int direct_splice_actor(struct pipe_inode_info *pipe,
1231 struct splice_desc *sd)
1233 struct file *file = sd->u.file;
1235 return do_splice_from(pipe, file, &file->f_pos, sd->total_len,
1236 sd->flags);
1240 * do_splice_direct - splices data directly between two files
1241 * @in: file to splice from
1242 * @ppos: input file offset
1243 * @out: file to splice to
1244 * @len: number of bytes to splice
1245 * @flags: splice modifier flags
1247 * Description:
1248 * For use by do_sendfile(). splice can easily emulate sendfile, but
1249 * doing it in the application would incur an extra system call
1250 * (splice in + splice out, as compared to just sendfile()). So this helper
1251 * can splice directly through a process-private pipe.
1254 long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1255 size_t len, unsigned int flags)
1257 struct splice_desc sd = {
1258 .len = len,
1259 .total_len = len,
1260 .flags = flags,
1261 .pos = *ppos,
1262 .u.file = out,
1264 long ret;
1266 ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
1267 if (ret > 0)
1268 *ppos = sd.pos;
1270 return ret;
1273 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1274 struct pipe_inode_info *opipe,
1275 size_t len, unsigned int flags);
1277 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1278 * location, so checking ->i_pipe is not enough to verify that this is a
1279 * pipe.
1281 static inline struct pipe_inode_info *pipe_info(struct inode *inode)
1283 if (S_ISFIFO(inode->i_mode))
1284 return inode->i_pipe;
1286 return NULL;
1290 * Determine where to splice to/from.
1292 static long do_splice(struct file *in, loff_t __user *off_in,
1293 struct file *out, loff_t __user *off_out,
1294 size_t len, unsigned int flags)
1296 struct pipe_inode_info *ipipe;
1297 struct pipe_inode_info *opipe;
1298 loff_t offset, *off;
1299 long ret;
1301 ipipe = pipe_info(in->f_path.dentry->d_inode);
1302 opipe = pipe_info(out->f_path.dentry->d_inode);
1304 if (ipipe && opipe) {
1305 if (off_in || off_out)
1306 return -ESPIPE;
1308 if (!(in->f_mode & FMODE_READ))
1309 return -EBADF;
1311 if (!(out->f_mode & FMODE_WRITE))
1312 return -EBADF;
1314 /* Splicing to self would be fun, but... */
1315 if (ipipe == opipe)
1316 return -EINVAL;
1318 return splice_pipe_to_pipe(ipipe, opipe, len, flags);
1321 if (ipipe) {
1322 if (off_in)
1323 return -ESPIPE;
1324 if (off_out) {
1325 if (!(out->f_mode & FMODE_PWRITE))
1326 return -EINVAL;
1327 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
1328 return -EFAULT;
1329 off = &offset;
1330 } else
1331 off = &out->f_pos;
1333 ret = do_splice_from(ipipe, out, off, len, flags);
1335 if (off_out && copy_to_user(off_out, off, sizeof(loff_t)))
1336 ret = -EFAULT;
1338 return ret;
1341 if (opipe) {
1342 if (off_out)
1343 return -ESPIPE;
1344 if (off_in) {
1345 if (!(in->f_mode & FMODE_PREAD))
1346 return -EINVAL;
1347 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
1348 return -EFAULT;
1349 off = &offset;
1350 } else
1351 off = &in->f_pos;
1353 ret = do_splice_to(in, off, opipe, len, flags);
1355 if (off_in && copy_to_user(off_in, off, sizeof(loff_t)))
1356 ret = -EFAULT;
1358 return ret;
1361 return -EINVAL;
1365 * Map an iov into an array of pages and offset/length tupples. With the
1366 * partial_page structure, we can map several non-contiguous ranges into
1367 * our ones pages[] map instead of splitting that operation into pieces.
1368 * Could easily be exported as a generic helper for other users, in which
1369 * case one would probably want to add a 'max_nr_pages' parameter as well.
1371 static int get_iovec_page_array(const struct iovec __user *iov,
1372 unsigned int nr_vecs, struct page **pages,
1373 struct partial_page *partial, int aligned)
1375 int buffers = 0, error = 0;
1377 while (nr_vecs) {
1378 unsigned long off, npages;
1379 struct iovec entry;
1380 void __user *base;
1381 size_t len;
1382 int i;
1384 error = -EFAULT;
1385 if (copy_from_user(&entry, iov, sizeof(entry)))
1386 break;
1388 base = entry.iov_base;
1389 len = entry.iov_len;
1392 * Sanity check this iovec. 0 read succeeds.
1394 error = 0;
1395 if (unlikely(!len))
1396 break;
1397 error = -EFAULT;
1398 if (!access_ok(VERIFY_READ, base, len))
1399 break;
1402 * Get this base offset and number of pages, then map
1403 * in the user pages.
1405 off = (unsigned long) base & ~PAGE_MASK;
1408 * If asked for alignment, the offset must be zero and the
1409 * length a multiple of the PAGE_SIZE.
1411 error = -EINVAL;
1412 if (aligned && (off || len & ~PAGE_MASK))
1413 break;
1415 npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1416 if (npages > PIPE_BUFFERS - buffers)
1417 npages = PIPE_BUFFERS - buffers;
1419 error = get_user_pages_fast((unsigned long)base, npages,
1420 0, &pages[buffers]);
1422 if (unlikely(error <= 0))
1423 break;
1426 * Fill this contiguous range into the partial page map.
1428 for (i = 0; i < error; i++) {
1429 const int plen = min_t(size_t, len, PAGE_SIZE - off);
1431 partial[buffers].offset = off;
1432 partial[buffers].len = plen;
1434 off = 0;
1435 len -= plen;
1436 buffers++;
1440 * We didn't complete this iov, stop here since it probably
1441 * means we have to move some of this into a pipe to
1442 * be able to continue.
1444 if (len)
1445 break;
1448 * Don't continue if we mapped fewer pages than we asked for,
1449 * or if we mapped the max number of pages that we have
1450 * room for.
1452 if (error < npages || buffers == PIPE_BUFFERS)
1453 break;
1455 nr_vecs--;
1456 iov++;
1459 if (buffers)
1460 return buffers;
1462 return error;
1465 static int pipe_to_user(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
1466 struct splice_desc *sd)
1468 char *src;
1469 int ret;
1471 ret = buf->ops->confirm(pipe, buf);
1472 if (unlikely(ret))
1473 return ret;
1476 * See if we can use the atomic maps, by prefaulting in the
1477 * pages and doing an atomic copy
1479 if (!fault_in_pages_writeable(sd->u.userptr, sd->len)) {
1480 src = buf->ops->map(pipe, buf, 1);
1481 ret = __copy_to_user_inatomic(sd->u.userptr, src + buf->offset,
1482 sd->len);
1483 buf->ops->unmap(pipe, buf, src);
1484 if (!ret) {
1485 ret = sd->len;
1486 goto out;
1491 * No dice, use slow non-atomic map and copy
1493 src = buf->ops->map(pipe, buf, 0);
1495 ret = sd->len;
1496 if (copy_to_user(sd->u.userptr, src + buf->offset, sd->len))
1497 ret = -EFAULT;
1499 buf->ops->unmap(pipe, buf, src);
1500 out:
1501 if (ret > 0)
1502 sd->u.userptr += ret;
1503 return ret;
1507 * For lack of a better implementation, implement vmsplice() to userspace
1508 * as a simple copy of the pipes pages to the user iov.
1510 static long vmsplice_to_user(struct file *file, const struct iovec __user *iov,
1511 unsigned long nr_segs, unsigned int flags)
1513 struct pipe_inode_info *pipe;
1514 struct splice_desc sd;
1515 ssize_t size;
1516 int error;
1517 long ret;
1519 pipe = pipe_info(file->f_path.dentry->d_inode);
1520 if (!pipe)
1521 return -EBADF;
1523 pipe_lock(pipe);
1525 error = ret = 0;
1526 while (nr_segs) {
1527 void __user *base;
1528 size_t len;
1531 * Get user address base and length for this iovec.
1533 error = get_user(base, &iov->iov_base);
1534 if (unlikely(error))
1535 break;
1536 error = get_user(len, &iov->iov_len);
1537 if (unlikely(error))
1538 break;
1541 * Sanity check this iovec. 0 read succeeds.
1543 if (unlikely(!len))
1544 break;
1545 if (unlikely(!base)) {
1546 error = -EFAULT;
1547 break;
1550 if (unlikely(!access_ok(VERIFY_WRITE, base, len))) {
1551 error = -EFAULT;
1552 break;
1555 sd.len = 0;
1556 sd.total_len = len;
1557 sd.flags = flags;
1558 sd.u.userptr = base;
1559 sd.pos = 0;
1561 size = __splice_from_pipe(pipe, &sd, pipe_to_user);
1562 if (size < 0) {
1563 if (!ret)
1564 ret = size;
1566 break;
1569 ret += size;
1571 if (size < len)
1572 break;
1574 nr_segs--;
1575 iov++;
1578 pipe_unlock(pipe);
1580 if (!ret)
1581 ret = error;
1583 return ret;
1587 * vmsplice splices a user address range into a pipe. It can be thought of
1588 * as splice-from-memory, where the regular splice is splice-from-file (or
1589 * to file). In both cases the output is a pipe, naturally.
1591 static long vmsplice_to_pipe(struct file *file, const struct iovec __user *iov,
1592 unsigned long nr_segs, unsigned int flags)
1594 struct pipe_inode_info *pipe;
1595 struct page *pages[PIPE_BUFFERS];
1596 struct partial_page partial[PIPE_BUFFERS];
1597 struct splice_pipe_desc spd = {
1598 .pages = pages,
1599 .partial = partial,
1600 .flags = flags,
1601 .ops = &user_page_pipe_buf_ops,
1602 .spd_release = spd_release_page,
1605 pipe = pipe_info(file->f_path.dentry->d_inode);
1606 if (!pipe)
1607 return -EBADF;
1609 spd.nr_pages = get_iovec_page_array(iov, nr_segs, pages, partial,
1610 flags & SPLICE_F_GIFT);
1611 if (spd.nr_pages <= 0)
1612 return spd.nr_pages;
1614 return splice_to_pipe(pipe, &spd);
1618 * Note that vmsplice only really supports true splicing _from_ user memory
1619 * to a pipe, not the other way around. Splicing from user memory is a simple
1620 * operation that can be supported without any funky alignment restrictions
1621 * or nasty vm tricks. We simply map in the user memory and fill them into
1622 * a pipe. The reverse isn't quite as easy, though. There are two possible
1623 * solutions for that:
1625 * - memcpy() the data internally, at which point we might as well just
1626 * do a regular read() on the buffer anyway.
1627 * - Lots of nasty vm tricks, that are neither fast nor flexible (it
1628 * has restriction limitations on both ends of the pipe).
1630 * Currently we punt and implement it as a normal copy, see pipe_to_user().
1633 SYSCALL_DEFINE4(vmsplice, int, fd, const struct iovec __user *, iov,
1634 unsigned long, nr_segs, unsigned int, flags)
1636 struct file *file;
1637 long error;
1638 int fput;
1640 if (unlikely(nr_segs > UIO_MAXIOV))
1641 return -EINVAL;
1642 else if (unlikely(!nr_segs))
1643 return 0;
1645 error = -EBADF;
1646 file = fget_light(fd, &fput);
1647 if (file) {
1648 if (file->f_mode & FMODE_WRITE)
1649 error = vmsplice_to_pipe(file, iov, nr_segs, flags);
1650 else if (file->f_mode & FMODE_READ)
1651 error = vmsplice_to_user(file, iov, nr_segs, flags);
1653 fput_light(file, fput);
1656 return error;
1659 SYSCALL_DEFINE6(splice, int, fd_in, loff_t __user *, off_in,
1660 int, fd_out, loff_t __user *, off_out,
1661 size_t, len, unsigned int, flags)
1663 long error;
1664 struct file *in, *out;
1665 int fput_in, fput_out;
1667 if (unlikely(!len))
1668 return 0;
1670 error = -EBADF;
1671 in = fget_light(fd_in, &fput_in);
1672 if (in) {
1673 if (in->f_mode & FMODE_READ) {
1674 out = fget_light(fd_out, &fput_out);
1675 if (out) {
1676 if (out->f_mode & FMODE_WRITE)
1677 error = do_splice(in, off_in,
1678 out, off_out,
1679 len, flags);
1680 fput_light(out, fput_out);
1684 fput_light(in, fput_in);
1687 return error;
1691 * Make sure there's data to read. Wait for input if we can, otherwise
1692 * return an appropriate error.
1694 static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1696 int ret;
1699 * Check ->nrbufs without the inode lock first. This function
1700 * is speculative anyways, so missing one is ok.
1702 if (pipe->nrbufs)
1703 return 0;
1705 ret = 0;
1706 pipe_lock(pipe);
1708 while (!pipe->nrbufs) {
1709 if (signal_pending(current)) {
1710 ret = -ERESTARTSYS;
1711 break;
1713 if (!pipe->writers)
1714 break;
1715 if (!pipe->waiting_writers) {
1716 if (flags & SPLICE_F_NONBLOCK) {
1717 ret = -EAGAIN;
1718 break;
1721 pipe_wait(pipe);
1724 pipe_unlock(pipe);
1725 return ret;
1729 * Make sure there's writeable room. Wait for room if we can, otherwise
1730 * return an appropriate error.
1732 static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1734 int ret;
1737 * Check ->nrbufs without the inode lock first. This function
1738 * is speculative anyways, so missing one is ok.
1740 if (pipe->nrbufs < PIPE_BUFFERS)
1741 return 0;
1743 ret = 0;
1744 pipe_lock(pipe);
1746 while (pipe->nrbufs >= PIPE_BUFFERS) {
1747 if (!pipe->readers) {
1748 send_sig(SIGPIPE, current, 0);
1749 ret = -EPIPE;
1750 break;
1752 if (flags & SPLICE_F_NONBLOCK) {
1753 ret = -EAGAIN;
1754 break;
1756 if (signal_pending(current)) {
1757 ret = -ERESTARTSYS;
1758 break;
1760 pipe->waiting_writers++;
1761 pipe_wait(pipe);
1762 pipe->waiting_writers--;
1765 pipe_unlock(pipe);
1766 return ret;
1770 * Splice contents of ipipe to opipe.
1772 static int splice_pipe_to_pipe(struct pipe_inode_info *ipipe,
1773 struct pipe_inode_info *opipe,
1774 size_t len, unsigned int flags)
1776 struct pipe_buffer *ibuf, *obuf;
1777 int ret = 0, nbuf;
1778 bool input_wakeup = false;
1781 retry:
1782 ret = ipipe_prep(ipipe, flags);
1783 if (ret)
1784 return ret;
1786 ret = opipe_prep(opipe, flags);
1787 if (ret)
1788 return ret;
1791 * Potential ABBA deadlock, work around it by ordering lock
1792 * grabbing by pipe info address. Otherwise two different processes
1793 * could deadlock (one doing tee from A -> B, the other from B -> A).
1795 pipe_double_lock(ipipe, opipe);
1797 do {
1798 if (!opipe->readers) {
1799 send_sig(SIGPIPE, current, 0);
1800 if (!ret)
1801 ret = -EPIPE;
1802 break;
1805 if (!ipipe->nrbufs && !ipipe->writers)
1806 break;
1809 * Cannot make any progress, because either the input
1810 * pipe is empty or the output pipe is full.
1812 if (!ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS) {
1813 /* Already processed some buffers, break */
1814 if (ret)
1815 break;
1817 if (flags & SPLICE_F_NONBLOCK) {
1818 ret = -EAGAIN;
1819 break;
1823 * We raced with another reader/writer and haven't
1824 * managed to process any buffers. A zero return
1825 * value means EOF, so retry instead.
1827 pipe_unlock(ipipe);
1828 pipe_unlock(opipe);
1829 goto retry;
1832 ibuf = ipipe->bufs + ipipe->curbuf;
1833 nbuf = (opipe->curbuf + opipe->nrbufs) % PIPE_BUFFERS;
1834 obuf = opipe->bufs + nbuf;
1836 if (len >= ibuf->len) {
1838 * Simply move the whole buffer from ipipe to opipe
1840 *obuf = *ibuf;
1841 ibuf->ops = NULL;
1842 opipe->nrbufs++;
1843 ipipe->curbuf = (ipipe->curbuf + 1) % PIPE_BUFFERS;
1844 ipipe->nrbufs--;
1845 input_wakeup = true;
1846 } else {
1848 * Get a reference to this pipe buffer,
1849 * so we can copy the contents over.
1851 ibuf->ops->get(ipipe, ibuf);
1852 *obuf = *ibuf;
1855 * Don't inherit the gift flag, we need to
1856 * prevent multiple steals of this page.
1858 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1860 obuf->len = len;
1861 opipe->nrbufs++;
1862 ibuf->offset += obuf->len;
1863 ibuf->len -= obuf->len;
1865 ret += obuf->len;
1866 len -= obuf->len;
1867 } while (len);
1869 pipe_unlock(ipipe);
1870 pipe_unlock(opipe);
1873 * If we put data in the output pipe, wakeup any potential readers.
1875 if (ret > 0) {
1876 smp_mb();
1877 if (waitqueue_active(&opipe->wait))
1878 wake_up_interruptible(&opipe->wait);
1879 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1881 if (input_wakeup)
1882 wakeup_pipe_writers(ipipe);
1884 return ret;
1888 * Link contents of ipipe to opipe.
1890 static int link_pipe(struct pipe_inode_info *ipipe,
1891 struct pipe_inode_info *opipe,
1892 size_t len, unsigned int flags)
1894 struct pipe_buffer *ibuf, *obuf;
1895 int ret = 0, i = 0, nbuf;
1898 * Potential ABBA deadlock, work around it by ordering lock
1899 * grabbing by pipe info address. Otherwise two different processes
1900 * could deadlock (one doing tee from A -> B, the other from B -> A).
1902 pipe_double_lock(ipipe, opipe);
1904 do {
1905 if (!opipe->readers) {
1906 send_sig(SIGPIPE, current, 0);
1907 if (!ret)
1908 ret = -EPIPE;
1909 break;
1913 * If we have iterated all input buffers or ran out of
1914 * output room, break.
1916 if (i >= ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS)
1917 break;
1919 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1920 nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1923 * Get a reference to this pipe buffer,
1924 * so we can copy the contents over.
1926 ibuf->ops->get(ipipe, ibuf);
1928 obuf = opipe->bufs + nbuf;
1929 *obuf = *ibuf;
1932 * Don't inherit the gift flag, we need to
1933 * prevent multiple steals of this page.
1935 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1937 if (obuf->len > len)
1938 obuf->len = len;
1940 opipe->nrbufs++;
1941 ret += obuf->len;
1942 len -= obuf->len;
1943 i++;
1944 } while (len);
1947 * return EAGAIN if we have the potential of some data in the
1948 * future, otherwise just return 0
1950 if (!ret && ipipe->waiting_writers && (flags & SPLICE_F_NONBLOCK))
1951 ret = -EAGAIN;
1953 pipe_unlock(ipipe);
1954 pipe_unlock(opipe);
1957 * If we put data in the output pipe, wakeup any potential readers.
1959 if (ret > 0) {
1960 smp_mb();
1961 if (waitqueue_active(&opipe->wait))
1962 wake_up_interruptible(&opipe->wait);
1963 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1966 return ret;
1970 * This is a tee(1) implementation that works on pipes. It doesn't copy
1971 * any data, it simply references the 'in' pages on the 'out' pipe.
1972 * The 'flags' used are the SPLICE_F_* variants, currently the only
1973 * applicable one is SPLICE_F_NONBLOCK.
1975 static long do_tee(struct file *in, struct file *out, size_t len,
1976 unsigned int flags)
1978 struct pipe_inode_info *ipipe = pipe_info(in->f_path.dentry->d_inode);
1979 struct pipe_inode_info *opipe = pipe_info(out->f_path.dentry->d_inode);
1980 int ret = -EINVAL;
1983 * Duplicate the contents of ipipe to opipe without actually
1984 * copying the data.
1986 if (ipipe && opipe && ipipe != opipe) {
1988 * Keep going, unless we encounter an error. The ipipe/opipe
1989 * ordering doesn't really matter.
1991 ret = ipipe_prep(ipipe, flags);
1992 if (!ret) {
1993 ret = opipe_prep(opipe, flags);
1994 if (!ret)
1995 ret = link_pipe(ipipe, opipe, len, flags);
1999 return ret;
2002 SYSCALL_DEFINE4(tee, int, fdin, int, fdout, size_t, len, unsigned int, flags)
2004 struct file *in;
2005 int error, fput_in;
2007 if (unlikely(!len))
2008 return 0;
2010 error = -EBADF;
2011 in = fget_light(fdin, &fput_in);
2012 if (in) {
2013 if (in->f_mode & FMODE_READ) {
2014 int fput_out;
2015 struct file *out = fget_light(fdout, &fput_out);
2017 if (out) {
2018 if (out->f_mode & FMODE_WRITE)
2019 error = do_tee(in, out, len, flags);
2020 fput_light(out, fput_out);
2023 fput_light(in, fput_in);
2026 return error;