[PATCH] PCI: rpaphp: remove init error condition
[linux-2.6/zen-sources.git] / fs / splice.c
blob8d57e89924a68990efa6a72d279dd35efa0fc7a7
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@suse.de>
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/pipe_fs_i.h>
24 #include <linux/mm_inline.h>
25 #include <linux/swap.h>
26 #include <linux/writeback.h>
27 #include <linux/buffer_head.h>
28 #include <linux/module.h>
29 #include <linux/syscalls.h>
32 * Passed to the actors
34 struct splice_desc {
35 unsigned int len, total_len; /* current and remaining length */
36 unsigned int flags; /* splice flags */
37 struct file *file; /* file to read/write */
38 loff_t pos; /* file position */
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.
47 static int page_cache_pipe_buf_steal(struct pipe_inode_info *info,
48 struct pipe_buffer *buf)
50 struct page *page = buf->page;
51 struct address_space *mapping = page_mapping(page);
53 WARN_ON(!PageLocked(page));
54 WARN_ON(!PageUptodate(page));
57 * At least for ext2 with nobh option, we need to wait on writeback
58 * completing on this page, since we'll remove it from the pagecache.
59 * Otherwise truncate wont wait on the page, allowing the disk
60 * blocks to be reused by someone else before we actually wrote our
61 * data to them. fs corruption ensues.
63 wait_on_page_writeback(page);
65 if (PagePrivate(page))
66 try_to_release_page(page, mapping_gfp_mask(mapping));
68 if (!remove_mapping(mapping, page))
69 return 1;
71 buf->flags |= PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU;
72 return 0;
75 static void page_cache_pipe_buf_release(struct pipe_inode_info *info,
76 struct pipe_buffer *buf)
78 page_cache_release(buf->page);
79 buf->page = NULL;
80 buf->flags &= ~(PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU);
83 static void *page_cache_pipe_buf_map(struct file *file,
84 struct pipe_inode_info *info,
85 struct pipe_buffer *buf)
87 struct page *page = buf->page;
88 int err;
90 if (!PageUptodate(page)) {
91 lock_page(page);
94 * Page got truncated/unhashed. This will cause a 0-byte
95 * splice, if this is the first page.
97 if (!page->mapping) {
98 err = -ENODATA;
99 goto error;
103 * Uh oh, read-error from disk.
105 if (!PageUptodate(page)) {
106 err = -EIO;
107 goto error;
111 * Page is ok afterall, fall through to mapping.
113 unlock_page(page);
116 return kmap(page);
117 error:
118 unlock_page(page);
119 return ERR_PTR(err);
122 static void page_cache_pipe_buf_unmap(struct pipe_inode_info *info,
123 struct pipe_buffer *buf)
125 kunmap(buf->page);
128 static void page_cache_pipe_buf_get(struct pipe_inode_info *info,
129 struct pipe_buffer *buf)
131 page_cache_get(buf->page);
134 static struct pipe_buf_operations page_cache_pipe_buf_ops = {
135 .can_merge = 0,
136 .map = page_cache_pipe_buf_map,
137 .unmap = page_cache_pipe_buf_unmap,
138 .release = page_cache_pipe_buf_release,
139 .steal = page_cache_pipe_buf_steal,
140 .get = page_cache_pipe_buf_get,
144 * Pipe output worker. This sets up our pipe format with the page cache
145 * pipe buffer operations. Otherwise very similar to the regular pipe_writev().
147 static ssize_t move_to_pipe(struct pipe_inode_info *pipe, struct page **pages,
148 int nr_pages, unsigned long offset,
149 unsigned long len, unsigned int flags)
151 int ret, do_wakeup, i;
153 ret = 0;
154 do_wakeup = 0;
155 i = 0;
157 if (pipe->inode)
158 mutex_lock(&pipe->inode->i_mutex);
160 for (;;) {
161 if (!pipe->readers) {
162 send_sig(SIGPIPE, current, 0);
163 if (!ret)
164 ret = -EPIPE;
165 break;
168 if (pipe->nrbufs < PIPE_BUFFERS) {
169 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
170 struct pipe_buffer *buf = pipe->bufs + newbuf;
171 struct page *page = pages[i++];
172 unsigned long this_len;
174 this_len = PAGE_CACHE_SIZE - offset;
175 if (this_len > len)
176 this_len = len;
178 buf->page = page;
179 buf->offset = offset;
180 buf->len = this_len;
181 buf->ops = &page_cache_pipe_buf_ops;
182 pipe->nrbufs++;
183 if (pipe->inode)
184 do_wakeup = 1;
186 ret += this_len;
187 len -= this_len;
188 offset = 0;
189 if (!--nr_pages)
190 break;
191 if (!len)
192 break;
193 if (pipe->nrbufs < PIPE_BUFFERS)
194 continue;
196 break;
199 if (flags & SPLICE_F_NONBLOCK) {
200 if (!ret)
201 ret = -EAGAIN;
202 break;
205 if (signal_pending(current)) {
206 if (!ret)
207 ret = -ERESTARTSYS;
208 break;
211 if (do_wakeup) {
212 smp_mb();
213 if (waitqueue_active(&pipe->wait))
214 wake_up_interruptible_sync(&pipe->wait);
215 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
216 do_wakeup = 0;
219 pipe->waiting_writers++;
220 pipe_wait(pipe);
221 pipe->waiting_writers--;
224 if (pipe->inode)
225 mutex_unlock(&pipe->inode->i_mutex);
227 if (do_wakeup) {
228 smp_mb();
229 if (waitqueue_active(&pipe->wait))
230 wake_up_interruptible(&pipe->wait);
231 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
234 while (i < nr_pages)
235 page_cache_release(pages[i++]);
237 return ret;
240 static int
241 __generic_file_splice_read(struct file *in, loff_t *ppos,
242 struct pipe_inode_info *pipe, size_t len,
243 unsigned int flags)
245 struct address_space *mapping = in->f_mapping;
246 unsigned int offset, nr_pages;
247 struct page *pages[PIPE_BUFFERS];
248 struct page *page;
249 pgoff_t index;
250 int i, error;
252 index = *ppos >> PAGE_CACHE_SHIFT;
253 offset = *ppos & ~PAGE_CACHE_MASK;
254 nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
256 if (nr_pages > PIPE_BUFFERS)
257 nr_pages = PIPE_BUFFERS;
260 * Initiate read-ahead on this page range. however, don't call into
261 * read-ahead if this is a non-zero offset (we are likely doing small
262 * chunk splice and the page is already there) for a single page.
264 if (!offset || nr_pages > 1)
265 do_page_cache_readahead(mapping, in, index, nr_pages);
268 * Now fill in the holes:
270 error = 0;
271 for (i = 0; i < nr_pages; i++, index++) {
272 find_page:
274 * lookup the page for this index
276 page = find_get_page(mapping, index);
277 if (!page) {
279 * If in nonblock mode then dont block on
280 * readpage (we've kicked readahead so there
281 * will be asynchronous progress):
283 if (flags & SPLICE_F_NONBLOCK)
284 break;
287 * page didn't exist, allocate one
289 page = page_cache_alloc_cold(mapping);
290 if (!page)
291 break;
293 error = add_to_page_cache_lru(page, mapping, index,
294 mapping_gfp_mask(mapping));
295 if (unlikely(error)) {
296 page_cache_release(page);
297 break;
300 goto readpage;
304 * If the page isn't uptodate, we may need to start io on it
306 if (!PageUptodate(page)) {
307 lock_page(page);
310 * page was truncated, stop here. if this isn't the
311 * first page, we'll just complete what we already
312 * added
314 if (!page->mapping) {
315 unlock_page(page);
316 page_cache_release(page);
317 break;
320 * page was already under io and is now done, great
322 if (PageUptodate(page)) {
323 unlock_page(page);
324 goto fill_it;
327 readpage:
329 * need to read in the page
331 error = mapping->a_ops->readpage(in, page);
333 if (unlikely(error)) {
334 page_cache_release(page);
335 if (error == AOP_TRUNCATED_PAGE)
336 goto find_page;
337 break;
340 fill_it:
341 pages[i] = page;
344 if (i)
345 return move_to_pipe(pipe, pages, i, offset, len, flags);
347 return error;
351 * generic_file_splice_read - splice data from file to a pipe
352 * @in: file to splice from
353 * @pipe: pipe to splice to
354 * @len: number of bytes to splice
355 * @flags: splice modifier flags
357 * Will read pages from given file and fill them into a pipe.
359 ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
360 struct pipe_inode_info *pipe, size_t len,
361 unsigned int flags)
363 ssize_t spliced;
364 int ret;
366 ret = 0;
367 spliced = 0;
369 while (len) {
370 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
372 if (ret <= 0)
373 break;
375 *ppos += ret;
376 len -= ret;
377 spliced += ret;
379 if (!(flags & SPLICE_F_NONBLOCK))
380 continue;
381 ret = -EAGAIN;
382 break;
385 if (spliced)
386 return spliced;
388 return ret;
391 EXPORT_SYMBOL(generic_file_splice_read);
394 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
395 * using sendpage().
397 static int pipe_to_sendpage(struct pipe_inode_info *info,
398 struct pipe_buffer *buf, struct splice_desc *sd)
400 struct file *file = sd->file;
401 loff_t pos = sd->pos;
402 unsigned int offset;
403 ssize_t ret;
404 void *ptr;
405 int more;
408 * Sub-optimal, but we are limited by the pipe ->map. We don't
409 * need a kmap'ed buffer here, we just want to make sure we
410 * have the page pinned if the pipe page originates from the
411 * page cache.
413 ptr = buf->ops->map(file, info, buf);
414 if (IS_ERR(ptr))
415 return PTR_ERR(ptr);
417 offset = pos & ~PAGE_CACHE_MASK;
418 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
420 ret = file->f_op->sendpage(file, buf->page, offset, sd->len, &pos,more);
422 buf->ops->unmap(info, buf);
423 if (ret == sd->len)
424 return 0;
426 return -EIO;
430 * This is a little more tricky than the file -> pipe splicing. There are
431 * basically three cases:
433 * - Destination page already exists in the address space and there
434 * are users of it. For that case we have no other option that
435 * copying the data. Tough luck.
436 * - Destination page already exists in the address space, but there
437 * are no users of it. Make sure it's uptodate, then drop it. Fall
438 * through to last case.
439 * - Destination page does not exist, we can add the pipe page to
440 * the page cache and avoid the copy.
442 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
443 * sd->flags), we attempt to migrate pages from the pipe to the output
444 * file address space page cache. This is possible if no one else has
445 * the pipe page referenced outside of the pipe and page cache. If
446 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
447 * a new page in the output file page cache and fill/dirty that.
449 static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
450 struct splice_desc *sd)
452 struct file *file = sd->file;
453 struct address_space *mapping = file->f_mapping;
454 gfp_t gfp_mask = mapping_gfp_mask(mapping);
455 unsigned int offset;
456 struct page *page;
457 pgoff_t index;
458 char *src;
459 int ret;
462 * make sure the data in this buffer is uptodate
464 src = buf->ops->map(file, info, buf);
465 if (IS_ERR(src))
466 return PTR_ERR(src);
468 index = sd->pos >> PAGE_CACHE_SHIFT;
469 offset = sd->pos & ~PAGE_CACHE_MASK;
472 * Reuse buf page, if SPLICE_F_MOVE is set.
474 if (sd->flags & SPLICE_F_MOVE) {
476 * If steal succeeds, buf->page is now pruned from the vm
477 * side (LRU and page cache) and we can reuse it.
479 if (buf->ops->steal(info, buf))
480 goto find_page;
483 * this will also set the page locked
485 page = buf->page;
486 if (add_to_page_cache(page, mapping, index, gfp_mask))
487 goto find_page;
489 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
490 lru_cache_add(page);
491 } else {
492 find_page:
493 ret = -ENOMEM;
494 page = find_or_create_page(mapping, index, gfp_mask);
495 if (!page)
496 goto out_nomem;
499 * If the page is uptodate, it is also locked. If it isn't
500 * uptodate, we can mark it uptodate if we are filling the
501 * full page. Otherwise we need to read it in first...
503 if (!PageUptodate(page)) {
504 if (sd->len < PAGE_CACHE_SIZE) {
505 ret = mapping->a_ops->readpage(file, page);
506 if (unlikely(ret))
507 goto out;
509 lock_page(page);
511 if (!PageUptodate(page)) {
513 * Page got invalidated, repeat.
515 if (!page->mapping) {
516 unlock_page(page);
517 page_cache_release(page);
518 goto find_page;
520 ret = -EIO;
521 goto out;
523 } else {
524 WARN_ON(!PageLocked(page));
525 SetPageUptodate(page);
530 ret = mapping->a_ops->prepare_write(file, page, 0, sd->len);
531 if (ret == AOP_TRUNCATED_PAGE) {
532 page_cache_release(page);
533 goto find_page;
534 } else if (ret)
535 goto out;
537 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
538 char *dst = kmap_atomic(page, KM_USER0);
540 memcpy(dst + offset, src + buf->offset, sd->len);
541 flush_dcache_page(page);
542 kunmap_atomic(dst, KM_USER0);
545 ret = mapping->a_ops->commit_write(file, page, 0, sd->len);
546 if (ret == AOP_TRUNCATED_PAGE) {
547 page_cache_release(page);
548 goto find_page;
549 } else if (ret)
550 goto out;
552 mark_page_accessed(page);
553 balance_dirty_pages_ratelimited(mapping);
554 out:
555 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
556 page_cache_release(page);
557 unlock_page(page);
559 out_nomem:
560 buf->ops->unmap(info, buf);
561 return ret;
564 typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
565 struct splice_desc *);
568 * Pipe input worker. Most of this logic works like a regular pipe, the
569 * key here is the 'actor' worker passed in that actually moves the data
570 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
572 static ssize_t move_from_pipe(struct pipe_inode_info *pipe, struct file *out,
573 loff_t *ppos, size_t len, unsigned int flags,
574 splice_actor *actor)
576 int ret, do_wakeup, err;
577 struct splice_desc sd;
579 ret = 0;
580 do_wakeup = 0;
582 sd.total_len = len;
583 sd.flags = flags;
584 sd.file = out;
585 sd.pos = *ppos;
587 if (pipe->inode)
588 mutex_lock(&pipe->inode->i_mutex);
590 for (;;) {
591 if (pipe->nrbufs) {
592 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
593 struct pipe_buf_operations *ops = buf->ops;
595 sd.len = buf->len;
596 if (sd.len > sd.total_len)
597 sd.len = sd.total_len;
599 err = actor(pipe, buf, &sd);
600 if (err) {
601 if (!ret && err != -ENODATA)
602 ret = err;
604 break;
607 ret += sd.len;
608 buf->offset += sd.len;
609 buf->len -= sd.len;
611 if (!buf->len) {
612 buf->ops = NULL;
613 ops->release(pipe, buf);
614 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
615 pipe->nrbufs--;
616 if (pipe->inode)
617 do_wakeup = 1;
620 sd.pos += sd.len;
621 sd.total_len -= sd.len;
622 if (!sd.total_len)
623 break;
626 if (pipe->nrbufs)
627 continue;
628 if (!pipe->writers)
629 break;
630 if (!pipe->waiting_writers) {
631 if (ret)
632 break;
635 if (flags & SPLICE_F_NONBLOCK) {
636 if (!ret)
637 ret = -EAGAIN;
638 break;
641 if (signal_pending(current)) {
642 if (!ret)
643 ret = -ERESTARTSYS;
644 break;
647 if (do_wakeup) {
648 smp_mb();
649 if (waitqueue_active(&pipe->wait))
650 wake_up_interruptible_sync(&pipe->wait);
651 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
652 do_wakeup = 0;
655 pipe_wait(pipe);
658 if (pipe->inode)
659 mutex_unlock(&pipe->inode->i_mutex);
661 if (do_wakeup) {
662 smp_mb();
663 if (waitqueue_active(&pipe->wait))
664 wake_up_interruptible(&pipe->wait);
665 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
668 return ret;
672 * generic_file_splice_write - splice data from a pipe to a file
673 * @pipe: pipe info
674 * @out: file to write to
675 * @len: number of bytes to splice
676 * @flags: splice modifier flags
678 * Will either move or copy pages (determined by @flags options) from
679 * the given pipe inode to the given file.
682 ssize_t
683 generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
684 loff_t *ppos, size_t len, unsigned int flags)
686 struct address_space *mapping = out->f_mapping;
687 ssize_t ret;
689 ret = move_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
692 * If file or inode is SYNC and we actually wrote some data, sync it.
694 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(mapping->host))
695 && ret > 0) {
696 struct inode *inode = mapping->host;
697 int err;
699 mutex_lock(&inode->i_mutex);
700 err = generic_osync_inode(mapping->host, mapping,
701 OSYNC_METADATA|OSYNC_DATA);
702 mutex_unlock(&inode->i_mutex);
704 if (err)
705 ret = err;
708 return ret;
711 EXPORT_SYMBOL(generic_file_splice_write);
714 * generic_splice_sendpage - splice data from a pipe to a socket
715 * @inode: pipe inode
716 * @out: socket to write to
717 * @len: number of bytes to splice
718 * @flags: splice modifier flags
720 * Will send @len bytes from the pipe to a network socket. No data copying
721 * is involved.
724 ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
725 loff_t *ppos, size_t len, unsigned int flags)
727 return move_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
730 EXPORT_SYMBOL(generic_splice_sendpage);
733 * Attempt to initiate a splice from pipe to file.
735 static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
736 loff_t *ppos, size_t len, unsigned int flags)
738 int ret;
740 if (unlikely(!out->f_op || !out->f_op->splice_write))
741 return -EINVAL;
743 if (unlikely(!(out->f_mode & FMODE_WRITE)))
744 return -EBADF;
746 ret = rw_verify_area(WRITE, out, ppos, len);
747 if (unlikely(ret < 0))
748 return ret;
750 return out->f_op->splice_write(pipe, out, ppos, len, flags);
754 * Attempt to initiate a splice from a file to a pipe.
756 static long do_splice_to(struct file *in, loff_t *ppos,
757 struct pipe_inode_info *pipe, size_t len,
758 unsigned int flags)
760 loff_t isize, left;
761 int ret;
763 if (unlikely(!in->f_op || !in->f_op->splice_read))
764 return -EINVAL;
766 if (unlikely(!(in->f_mode & FMODE_READ)))
767 return -EBADF;
769 ret = rw_verify_area(READ, in, ppos, len);
770 if (unlikely(ret < 0))
771 return ret;
773 isize = i_size_read(in->f_mapping->host);
774 if (unlikely(*ppos >= isize))
775 return 0;
777 left = isize - *ppos;
778 if (unlikely(left < len))
779 len = left;
781 return in->f_op->splice_read(in, ppos, pipe, len, flags);
784 long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
785 size_t len, unsigned int flags)
787 struct pipe_inode_info *pipe;
788 long ret, bytes;
789 loff_t out_off;
790 umode_t i_mode;
791 int i;
794 * We require the input being a regular file, as we don't want to
795 * randomly drop data for eg socket -> socket splicing. Use the
796 * piped splicing for that!
798 i_mode = in->f_dentry->d_inode->i_mode;
799 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
800 return -EINVAL;
803 * neither in nor out is a pipe, setup an internal pipe attached to
804 * 'out' and transfer the wanted data from 'in' to 'out' through that
806 pipe = current->splice_pipe;
807 if (unlikely(!pipe)) {
808 pipe = alloc_pipe_info(NULL);
809 if (!pipe)
810 return -ENOMEM;
813 * We don't have an immediate reader, but we'll read the stuff
814 * out of the pipe right after the move_to_pipe(). So set
815 * PIPE_READERS appropriately.
817 pipe->readers = 1;
819 current->splice_pipe = pipe;
823 * Do the splice.
825 ret = 0;
826 bytes = 0;
827 out_off = 0;
829 while (len) {
830 size_t read_len, max_read_len;
833 * Do at most PIPE_BUFFERS pages worth of transfer:
835 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
837 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
838 if (unlikely(ret < 0))
839 goto out_release;
841 read_len = ret;
844 * NOTE: nonblocking mode only applies to the input. We
845 * must not do the output in nonblocking mode as then we
846 * could get stuck data in the internal pipe:
848 ret = do_splice_from(pipe, out, &out_off, read_len,
849 flags & ~SPLICE_F_NONBLOCK);
850 if (unlikely(ret < 0))
851 goto out_release;
853 bytes += ret;
854 len -= ret;
857 * In nonblocking mode, if we got back a short read then
858 * that was due to either an IO error or due to the
859 * pagecache entry not being there. In the IO error case
860 * the _next_ splice attempt will produce a clean IO error
861 * return value (not a short read), so in both cases it's
862 * correct to break out of the loop here:
864 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
865 break;
868 pipe->nrbufs = pipe->curbuf = 0;
870 return bytes;
872 out_release:
874 * If we did an incomplete transfer we must release
875 * the pipe buffers in question:
877 for (i = 0; i < PIPE_BUFFERS; i++) {
878 struct pipe_buffer *buf = pipe->bufs + i;
880 if (buf->ops) {
881 buf->ops->release(pipe, buf);
882 buf->ops = NULL;
885 pipe->nrbufs = pipe->curbuf = 0;
888 * If we transferred some data, return the number of bytes:
890 if (bytes > 0)
891 return bytes;
893 return ret;
896 EXPORT_SYMBOL(do_splice_direct);
899 * Determine where to splice to/from.
901 static long do_splice(struct file *in, loff_t __user *off_in,
902 struct file *out, loff_t __user *off_out,
903 size_t len, unsigned int flags)
905 struct pipe_inode_info *pipe;
906 loff_t offset, *off;
908 pipe = in->f_dentry->d_inode->i_pipe;
909 if (pipe) {
910 if (off_in)
911 return -ESPIPE;
912 if (off_out) {
913 if (out->f_op->llseek == no_llseek)
914 return -EINVAL;
915 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
916 return -EFAULT;
917 off = &offset;
918 } else
919 off = &out->f_pos;
921 return do_splice_from(pipe, out, off, len, flags);
924 pipe = out->f_dentry->d_inode->i_pipe;
925 if (pipe) {
926 if (off_out)
927 return -ESPIPE;
928 if (off_in) {
929 if (in->f_op->llseek == no_llseek)
930 return -EINVAL;
931 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
932 return -EFAULT;
933 off = &offset;
934 } else
935 off = &in->f_pos;
937 return do_splice_to(in, off, pipe, len, flags);
940 return -EINVAL;
943 asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
944 int fd_out, loff_t __user *off_out,
945 size_t len, unsigned int flags)
947 long error;
948 struct file *in, *out;
949 int fput_in, fput_out;
951 if (unlikely(!len))
952 return 0;
954 error = -EBADF;
955 in = fget_light(fd_in, &fput_in);
956 if (in) {
957 if (in->f_mode & FMODE_READ) {
958 out = fget_light(fd_out, &fput_out);
959 if (out) {
960 if (out->f_mode & FMODE_WRITE)
961 error = do_splice(in, off_in,
962 out, off_out,
963 len, flags);
964 fput_light(out, fput_out);
968 fput_light(in, fput_in);
971 return error;
975 * Link contents of ipipe to opipe.
977 static int link_pipe(struct pipe_inode_info *ipipe,
978 struct pipe_inode_info *opipe,
979 size_t len, unsigned int flags)
981 struct pipe_buffer *ibuf, *obuf;
982 int ret = 0, do_wakeup = 0, i;
985 * Potential ABBA deadlock, work around it by ordering lock
986 * grabbing by inode address. Otherwise two different processes
987 * could deadlock (one doing tee from A -> B, the other from B -> A).
989 if (ipipe->inode < opipe->inode) {
990 mutex_lock(&ipipe->inode->i_mutex);
991 mutex_lock(&opipe->inode->i_mutex);
992 } else {
993 mutex_lock(&opipe->inode->i_mutex);
994 mutex_lock(&ipipe->inode->i_mutex);
997 for (i = 0;; i++) {
998 if (!opipe->readers) {
999 send_sig(SIGPIPE, current, 0);
1000 if (!ret)
1001 ret = -EPIPE;
1002 break;
1004 if (ipipe->nrbufs - i) {
1005 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1008 * If we have room, fill this buffer
1010 if (opipe->nrbufs < PIPE_BUFFERS) {
1011 int nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1014 * Get a reference to this pipe buffer,
1015 * so we can copy the contents over.
1017 ibuf->ops->get(ipipe, ibuf);
1019 obuf = opipe->bufs + nbuf;
1020 *obuf = *ibuf;
1022 if (obuf->len > len)
1023 obuf->len = len;
1025 opipe->nrbufs++;
1026 do_wakeup = 1;
1027 ret += obuf->len;
1028 len -= obuf->len;
1030 if (!len)
1031 break;
1032 if (opipe->nrbufs < PIPE_BUFFERS)
1033 continue;
1037 * We have input available, but no output room.
1038 * If we already copied data, return that.
1040 if (flags & SPLICE_F_NONBLOCK) {
1041 if (!ret)
1042 ret = -EAGAIN;
1043 break;
1045 if (signal_pending(current)) {
1046 if (!ret)
1047 ret = -ERESTARTSYS;
1048 break;
1050 if (do_wakeup) {
1051 smp_mb();
1052 if (waitqueue_active(&opipe->wait))
1053 wake_up_interruptible(&opipe->wait);
1054 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1055 do_wakeup = 0;
1058 opipe->waiting_writers++;
1059 pipe_wait(opipe);
1060 opipe->waiting_writers--;
1061 continue;
1065 * No input buffers, do the usual checks for available
1066 * writers and blocking and wait if necessary
1068 if (!ipipe->writers)
1069 break;
1070 if (!ipipe->waiting_writers) {
1071 if (ret)
1072 break;
1074 if (flags & SPLICE_F_NONBLOCK) {
1075 if (!ret)
1076 ret = -EAGAIN;
1077 break;
1079 if (signal_pending(current)) {
1080 if (!ret)
1081 ret = -ERESTARTSYS;
1082 break;
1085 if (waitqueue_active(&ipipe->wait))
1086 wake_up_interruptible_sync(&ipipe->wait);
1087 kill_fasync(&ipipe->fasync_writers, SIGIO, POLL_OUT);
1089 pipe_wait(ipipe);
1092 mutex_unlock(&ipipe->inode->i_mutex);
1093 mutex_unlock(&opipe->inode->i_mutex);
1095 if (do_wakeup) {
1096 smp_mb();
1097 if (waitqueue_active(&opipe->wait))
1098 wake_up_interruptible(&opipe->wait);
1099 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1102 return ret;
1106 * This is a tee(1) implementation that works on pipes. It doesn't copy
1107 * any data, it simply references the 'in' pages on the 'out' pipe.
1108 * The 'flags' used are the SPLICE_F_* variants, currently the only
1109 * applicable one is SPLICE_F_NONBLOCK.
1111 static long do_tee(struct file *in, struct file *out, size_t len,
1112 unsigned int flags)
1114 struct pipe_inode_info *ipipe = in->f_dentry->d_inode->i_pipe;
1115 struct pipe_inode_info *opipe = out->f_dentry->d_inode->i_pipe;
1118 * Link ipipe to the two output pipes, consuming as we go along.
1120 if (ipipe && opipe)
1121 return link_pipe(ipipe, opipe, len, flags);
1123 return -EINVAL;
1126 asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1128 struct file *in;
1129 int error, fput_in;
1131 if (unlikely(!len))
1132 return 0;
1134 error = -EBADF;
1135 in = fget_light(fdin, &fput_in);
1136 if (in) {
1137 if (in->f_mode & FMODE_READ) {
1138 int fput_out;
1139 struct file *out = fget_light(fdout, &fput_out);
1141 if (out) {
1142 if (out->f_mode & FMODE_WRITE)
1143 error = do_tee(in, out, len, flags);
1144 fput_light(out, fput_out);
1147 fput_light(in, fput_in);
1150 return error;