]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/splice.c
Linux v2.6.17-rc2
[net-next-2.6.git] / fs / splice.c
CommitLineData
5274f052
JA
1/*
2 * "splice": joining two ropes together by interweaving their strands.
3 *
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.
7 *
8 * The traditional unix read/write is extended with a "splice()" operation
9 * that transfers data buffers to or from a pipe buffer.
10 *
11 * Named by Larry McVoy, original implementation from Linus, extended by
c2058e06
JA
12 * Jens to support splicing to files, network, direct splicing, etc and
13 * fixing lots of bugs.
5274f052 14 *
c2058e06
JA
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>
5274f052
JA
18 *
19 */
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>
5abc97aa 25#include <linux/swap.h>
4f6f0bd2
JA
26#include <linux/writeback.h>
27#include <linux/buffer_head.h>
a0f06780 28#include <linux/module.h>
4f6f0bd2 29#include <linux/syscalls.h>
5274f052
JA
30
31/*
32 * Passed to the actors
33 */
34struct 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 */
39};
40
83f9135b
JA
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 */
5abc97aa
JA
47static int page_cache_pipe_buf_steal(struct pipe_inode_info *info,
48 struct pipe_buffer *buf)
49{
50 struct page *page = buf->page;
4f6f0bd2 51 struct address_space *mapping = page_mapping(page);
5abc97aa
JA
52
53 WARN_ON(!PageLocked(page));
54 WARN_ON(!PageUptodate(page));
55
ad8d6f0a
JA
56 /*
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.
62 */
63 wait_on_page_writeback(page);
64
4f6f0bd2
JA
65 if (PagePrivate(page))
66 try_to_release_page(page, mapping_gfp_mask(mapping));
67
68 if (!remove_mapping(mapping, page))
5abc97aa
JA
69 return 1;
70
3e7ee3e7 71 buf->flags |= PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU;
5abc97aa
JA
72 return 0;
73}
74
5274f052
JA
75static void page_cache_pipe_buf_release(struct pipe_inode_info *info,
76 struct pipe_buffer *buf)
77{
78 page_cache_release(buf->page);
79 buf->page = NULL;
3e7ee3e7 80 buf->flags &= ~(PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU);
5274f052
JA
81}
82
83static void *page_cache_pipe_buf_map(struct file *file,
84 struct pipe_inode_info *info,
85 struct pipe_buffer *buf)
86{
87 struct page *page = buf->page;
49d0b21b 88 int err;
5274f052
JA
89
90 if (!PageUptodate(page)) {
49d0b21b
JA
91 lock_page(page);
92
93 /*
94 * Page got truncated/unhashed. This will cause a 0-byte
73d62d83 95 * splice, if this is the first page.
49d0b21b
JA
96 */
97 if (!page->mapping) {
98 err = -ENODATA;
99 goto error;
100 }
5274f052 101
49d0b21b 102 /*
73d62d83 103 * Uh oh, read-error from disk.
49d0b21b
JA
104 */
105 if (!PageUptodate(page)) {
106 err = -EIO;
107 goto error;
108 }
109
110 /*
73d62d83 111 * Page is ok afterall, fall through to mapping.
49d0b21b 112 */
5274f052 113 unlock_page(page);
5274f052
JA
114 }
115
49d0b21b
JA
116 return kmap(page);
117error:
118 unlock_page(page);
119 return ERR_PTR(err);
5274f052
JA
120}
121
122static void page_cache_pipe_buf_unmap(struct pipe_inode_info *info,
123 struct pipe_buffer *buf)
124{
5274f052
JA
125 kunmap(buf->page);
126}
127
70524490
JA
128static void page_cache_pipe_buf_get(struct pipe_inode_info *info,
129 struct pipe_buffer *buf)
130{
131 page_cache_get(buf->page);
132}
133
5274f052
JA
134static 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,
5abc97aa 139 .steal = page_cache_pipe_buf_steal,
70524490 140 .get = page_cache_pipe_buf_get,
5274f052
JA
141};
142
83f9135b
JA
143/*
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().
146 */
3a326a2c 147static ssize_t move_to_pipe(struct pipe_inode_info *pipe, struct page **pages,
5274f052 148 int nr_pages, unsigned long offset,
29e35094 149 unsigned long len, unsigned int flags)
5274f052 150{
5274f052
JA
151 int ret, do_wakeup, i;
152
153 ret = 0;
154 do_wakeup = 0;
155 i = 0;
156
3a326a2c
IM
157 if (pipe->inode)
158 mutex_lock(&pipe->inode->i_mutex);
5274f052 159
5274f052 160 for (;;) {
3a326a2c 161 if (!pipe->readers) {
5274f052
JA
162 send_sig(SIGPIPE, current, 0);
163 if (!ret)
164 ret = -EPIPE;
165 break;
166 }
167
6f767b04
JA
168 if (pipe->nrbufs < PIPE_BUFFERS) {
169 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
3a326a2c 170 struct pipe_buffer *buf = pipe->bufs + newbuf;
5274f052
JA
171 struct page *page = pages[i++];
172 unsigned long this_len;
173
174 this_len = PAGE_CACHE_SIZE - offset;
175 if (this_len > len)
176 this_len = len;
177
178 buf->page = page;
179 buf->offset = offset;
180 buf->len = this_len;
181 buf->ops = &page_cache_pipe_buf_ops;
6f767b04
JA
182 pipe->nrbufs++;
183 if (pipe->inode)
184 do_wakeup = 1;
5274f052
JA
185
186 ret += this_len;
187 len -= this_len;
188 offset = 0;
189 if (!--nr_pages)
190 break;
191 if (!len)
192 break;
6f767b04 193 if (pipe->nrbufs < PIPE_BUFFERS)
5274f052
JA
194 continue;
195
196 break;
197 }
198
29e35094
LT
199 if (flags & SPLICE_F_NONBLOCK) {
200 if (!ret)
201 ret = -EAGAIN;
202 break;
203 }
204
5274f052
JA
205 if (signal_pending(current)) {
206 if (!ret)
207 ret = -ERESTARTSYS;
208 break;
209 }
210
211 if (do_wakeup) {
c0bd1f65 212 smp_mb();
3a326a2c
IM
213 if (waitqueue_active(&pipe->wait))
214 wake_up_interruptible_sync(&pipe->wait);
215 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
5274f052
JA
216 do_wakeup = 0;
217 }
218
3a326a2c
IM
219 pipe->waiting_writers++;
220 pipe_wait(pipe);
221 pipe->waiting_writers--;
5274f052
JA
222 }
223
3a326a2c
IM
224 if (pipe->inode)
225 mutex_unlock(&pipe->inode->i_mutex);
5274f052
JA
226
227 if (do_wakeup) {
c0bd1f65 228 smp_mb();
3a326a2c
IM
229 if (waitqueue_active(&pipe->wait))
230 wake_up_interruptible(&pipe->wait);
231 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
5274f052
JA
232 }
233
234 while (i < nr_pages)
235 page_cache_release(pages[i++]);
236
237 return ret;
238}
239
3a326a2c 240static int
cbb7e577
JA
241__generic_file_splice_read(struct file *in, loff_t *ppos,
242 struct pipe_inode_info *pipe, size_t len,
243 unsigned int flags)
5274f052
JA
244{
245 struct address_space *mapping = in->f_mapping;
246 unsigned int offset, nr_pages;
16c523dd 247 struct page *pages[PIPE_BUFFERS];
5274f052 248 struct page *page;
16c523dd 249 pgoff_t index;
7480a904 250 int i, error;
5274f052 251
cbb7e577
JA
252 index = *ppos >> PAGE_CACHE_SHIFT;
253 offset = *ppos & ~PAGE_CACHE_MASK;
5274f052
JA
254 nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
255
256 if (nr_pages > PIPE_BUFFERS)
257 nr_pages = PIPE_BUFFERS;
258
259 /*
73d62d83 260 * Initiate read-ahead on this page range. however, don't call into
0b749ce3
JA
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.
5274f052 263 */
0b749ce3
JA
264 if (!offset || nr_pages > 1)
265 do_page_cache_readahead(mapping, in, index, nr_pages);
5274f052 266
5274f052 267 /*
73d62d83 268 * Now fill in the holes:
5274f052 269 */
7480a904 270 error = 0;
16c523dd 271 for (i = 0; i < nr_pages; i++, index++) {
7480a904 272find_page:
5274f052 273 /*
7480a904 274 * lookup the page for this index
5274f052 275 */
7480a904
JA
276 page = find_get_page(mapping, index);
277 if (!page) {
278 /*
279 * If in nonblock mode then dont block on
280 * readpage (we've kicked readahead so there
281 * will be asynchronous progress):
282 */
283 if (flags & SPLICE_F_NONBLOCK)
284 break;
285
286 /*
287 * page didn't exist, allocate one
288 */
289 page = page_cache_alloc_cold(mapping);
290 if (!page)
291 break;
292
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;
298 }
299
300 goto readpage;
301 }
302
303 /*
304 * If the page isn't uptodate, we may need to start io on it
305 */
306 if (!PageUptodate(page)) {
307 lock_page(page);
308
309 /*
310 * page was truncated, stop here. if this isn't the
311 * first page, we'll just complete what we already
312 * added
313 */
314 if (!page->mapping) {
315 unlock_page(page);
316 page_cache_release(page);
317 break;
318 }
319 /*
320 * page was already under io and is now done, great
321 */
322 if (PageUptodate(page)) {
323 unlock_page(page);
324 goto fill_it;
325 }
5274f052 326
7480a904
JA
327readpage:
328 /*
329 * need to read in the page
330 */
331 error = mapping->a_ops->readpage(in, page);
5274f052
JA
332
333 if (unlikely(error)) {
334 page_cache_release(page);
7480a904
JA
335 if (error == AOP_TRUNCATED_PAGE)
336 goto find_page;
5274f052
JA
337 break;
338 }
339 }
7480a904 340fill_it:
16c523dd 341 pages[i] = page;
5274f052
JA
342 }
343
16c523dd
JA
344 if (i)
345 return move_to_pipe(pipe, pages, i, offset, len, flags);
5274f052 346
7480a904 347 return error;
5274f052
JA
348}
349
83f9135b
JA
350/**
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
356 *
357 * Will read pages from given file and fill them into a pipe.
83f9135b 358 */
cbb7e577
JA
359ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
360 struct pipe_inode_info *pipe, size_t len,
361 unsigned int flags)
5274f052
JA
362{
363 ssize_t spliced;
364 int ret;
365
366 ret = 0;
367 spliced = 0;
3a326a2c 368
5274f052 369 while (len) {
cbb7e577 370 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
5274f052
JA
371
372 if (ret <= 0)
373 break;
374
cbb7e577 375 *ppos += ret;
5274f052
JA
376 len -= ret;
377 spliced += ret;
29e35094
LT
378
379 if (!(flags & SPLICE_F_NONBLOCK))
380 continue;
381 ret = -EAGAIN;
382 break;
5274f052
JA
383 }
384
385 if (spliced)
386 return spliced;
387
388 return ret;
389}
390
059a8f37
JA
391EXPORT_SYMBOL(generic_file_splice_read);
392
5274f052 393/*
4f6f0bd2
JA
394 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
395 * using sendpage().
5274f052
JA
396 */
397static int pipe_to_sendpage(struct pipe_inode_info *info,
398 struct pipe_buffer *buf, struct splice_desc *sd)
399{
400 struct file *file = sd->file;
401 loff_t pos = sd->pos;
402 unsigned int offset;
403 ssize_t ret;
404 void *ptr;
b2b39fa4 405 int more;
5274f052
JA
406
407 /*
73d62d83 408 * Sub-optimal, but we are limited by the pipe ->map. We don't
5274f052
JA
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
73d62d83 411 * page cache.
5274f052
JA
412 */
413 ptr = buf->ops->map(file, info, buf);
414 if (IS_ERR(ptr))
415 return PTR_ERR(ptr);
416
417 offset = pos & ~PAGE_CACHE_MASK;
b2b39fa4 418 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
5274f052 419
b2b39fa4 420 ret = file->f_op->sendpage(file, buf->page, offset, sd->len, &pos,more);
5274f052
JA
421
422 buf->ops->unmap(info, buf);
423 if (ret == sd->len)
424 return 0;
425
426 return -EIO;
427}
428
429/*
430 * This is a little more tricky than the file -> pipe splicing. There are
431 * basically three cases:
432 *
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.
441 *
83f9135b
JA
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.
5274f052
JA
448 */
449static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
450 struct splice_desc *sd)
451{
452 struct file *file = sd->file;
453 struct address_space *mapping = file->f_mapping;
3e7ee3e7 454 gfp_t gfp_mask = mapping_gfp_mask(mapping);
5274f052
JA
455 unsigned int offset;
456 struct page *page;
5274f052 457 pgoff_t index;
5abc97aa 458 char *src;
3e7ee3e7 459 int ret;
5274f052
JA
460
461 /*
49d0b21b 462 * make sure the data in this buffer is uptodate
5274f052
JA
463 */
464 src = buf->ops->map(file, info, buf);
465 if (IS_ERR(src))
466 return PTR_ERR(src);
467
468 index = sd->pos >> PAGE_CACHE_SHIFT;
469 offset = sd->pos & ~PAGE_CACHE_MASK;
470
5274f052 471 /*
73d62d83 472 * Reuse buf page, if SPLICE_F_MOVE is set.
5274f052 473 */
5abc97aa 474 if (sd->flags & SPLICE_F_MOVE) {
83f9135b
JA
475 /*
476 * If steal succeeds, buf->page is now pruned from the vm
477 * side (LRU and page cache) and we can reuse it.
478 */
5abc97aa
JA
479 if (buf->ops->steal(info, buf))
480 goto find_page;
481
49d0b21b
JA
482 /*
483 * this will also set the page locked
484 */
5abc97aa 485 page = buf->page;
3e7ee3e7 486 if (add_to_page_cache(page, mapping, index, gfp_mask))
5abc97aa 487 goto find_page;
3e7ee3e7
JA
488
489 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
490 lru_cache_add(page);
5abc97aa
JA
491 } else {
492find_page:
493 ret = -ENOMEM;
3e7ee3e7 494 page = find_or_create_page(mapping, index, gfp_mask);
5abc97aa 495 if (!page)
9aefe431 496 goto out_nomem;
5abc97aa
JA
497
498 /*
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...
502 */
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;
508
509 lock_page(page);
510
511 if (!PageUptodate(page)) {
512 /*
73d62d83 513 * Page got invalidated, repeat.
5abc97aa
JA
514 */
515 if (!page->mapping) {
516 unlock_page(page);
517 page_cache_release(page);
518 goto find_page;
519 }
520 ret = -EIO;
521 goto out;
5274f052 522 }
5abc97aa
JA
523 } else {
524 WARN_ON(!PageLocked(page));
525 SetPageUptodate(page);
5274f052 526 }
5274f052
JA
527 }
528 }
529
530 ret = mapping->a_ops->prepare_write(file, page, 0, sd->len);
4f6f0bd2
JA
531 if (ret == AOP_TRUNCATED_PAGE) {
532 page_cache_release(page);
533 goto find_page;
534 } else if (ret)
5274f052
JA
535 goto out;
536
3e7ee3e7 537 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
5abc97aa
JA
538 char *dst = kmap_atomic(page, KM_USER0);
539
540 memcpy(dst + offset, src + buf->offset, sd->len);
541 flush_dcache_page(page);
542 kunmap_atomic(dst, KM_USER0);
543 }
5274f052
JA
544
545 ret = mapping->a_ops->commit_write(file, page, 0, sd->len);
4f6f0bd2
JA
546 if (ret == AOP_TRUNCATED_PAGE) {
547 page_cache_release(page);
548 goto find_page;
549 } else if (ret)
5274f052
JA
550 goto out;
551
c7f21e4f 552 mark_page_accessed(page);
4f6f0bd2 553 balance_dirty_pages_ratelimited(mapping);
5274f052 554out:
3e7ee3e7 555 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
5abc97aa 556 page_cache_release(page);
4f6f0bd2
JA
557 unlock_page(page);
558 }
9aefe431 559out_nomem:
5274f052
JA
560 buf->ops->unmap(info, buf);
561 return ret;
562}
563
564typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
565 struct splice_desc *);
566
83f9135b
JA
567/*
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.
571 */
3a326a2c 572static ssize_t move_from_pipe(struct pipe_inode_info *pipe, struct file *out,
cbb7e577 573 loff_t *ppos, size_t len, unsigned int flags,
5274f052
JA
574 splice_actor *actor)
575{
5274f052
JA
576 int ret, do_wakeup, err;
577 struct splice_desc sd;
578
579 ret = 0;
580 do_wakeup = 0;
581
582 sd.total_len = len;
583 sd.flags = flags;
584 sd.file = out;
cbb7e577 585 sd.pos = *ppos;
5274f052 586
3a326a2c
IM
587 if (pipe->inode)
588 mutex_lock(&pipe->inode->i_mutex);
5274f052 589
5274f052 590 for (;;) {
6f767b04
JA
591 if (pipe->nrbufs) {
592 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
5274f052
JA
593 struct pipe_buf_operations *ops = buf->ops;
594
595 sd.len = buf->len;
596 if (sd.len > sd.total_len)
597 sd.len = sd.total_len;
598
3a326a2c 599 err = actor(pipe, buf, &sd);
5274f052
JA
600 if (err) {
601 if (!ret && err != -ENODATA)
602 ret = err;
603
604 break;
605 }
606
607 ret += sd.len;
608 buf->offset += sd.len;
609 buf->len -= sd.len;
73d62d83 610
5274f052
JA
611 if (!buf->len) {
612 buf->ops = NULL;
3a326a2c 613 ops->release(pipe, buf);
6f767b04
JA
614 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
615 pipe->nrbufs--;
616 if (pipe->inode)
617 do_wakeup = 1;
5274f052
JA
618 }
619
620 sd.pos += sd.len;
621 sd.total_len -= sd.len;
622 if (!sd.total_len)
623 break;
624 }
625
6f767b04 626 if (pipe->nrbufs)
5274f052 627 continue;
3a326a2c 628 if (!pipe->writers)
5274f052 629 break;
3a326a2c 630 if (!pipe->waiting_writers) {
5274f052
JA
631 if (ret)
632 break;
633 }
634
29e35094
LT
635 if (flags & SPLICE_F_NONBLOCK) {
636 if (!ret)
637 ret = -EAGAIN;
638 break;
639 }
640
5274f052
JA
641 if (signal_pending(current)) {
642 if (!ret)
643 ret = -ERESTARTSYS;
644 break;
645 }
646
647 if (do_wakeup) {
c0bd1f65 648 smp_mb();
3a326a2c
IM
649 if (waitqueue_active(&pipe->wait))
650 wake_up_interruptible_sync(&pipe->wait);
651 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
5274f052
JA
652 do_wakeup = 0;
653 }
654
3a326a2c 655 pipe_wait(pipe);
5274f052
JA
656 }
657
3a326a2c
IM
658 if (pipe->inode)
659 mutex_unlock(&pipe->inode->i_mutex);
5274f052
JA
660
661 if (do_wakeup) {
c0bd1f65 662 smp_mb();
3a326a2c
IM
663 if (waitqueue_active(&pipe->wait))
664 wake_up_interruptible(&pipe->wait);
665 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
5274f052
JA
666 }
667
5274f052 668 return ret;
5274f052
JA
669}
670
83f9135b
JA
671/**
672 * generic_file_splice_write - splice data from a pipe to a file
3a326a2c 673 * @pipe: pipe info
83f9135b
JA
674 * @out: file to write to
675 * @len: number of bytes to splice
676 * @flags: splice modifier flags
677 *
678 * Will either move or copy pages (determined by @flags options) from
679 * the given pipe inode to the given file.
680 *
681 */
3a326a2c
IM
682ssize_t
683generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
cbb7e577 684 loff_t *ppos, size_t len, unsigned int flags)
5274f052 685{
4f6f0bd2 686 struct address_space *mapping = out->f_mapping;
3a326a2c
IM
687 ssize_t ret;
688
cbb7e577 689 ret = move_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
4f6f0bd2
JA
690
691 /*
73d62d83 692 * If file or inode is SYNC and we actually wrote some data, sync it.
4f6f0bd2
JA
693 */
694 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(mapping->host))
695 && ret > 0) {
696 struct inode *inode = mapping->host;
697 int err;
698
699 mutex_lock(&inode->i_mutex);
700 err = generic_osync_inode(mapping->host, mapping,
49570e9b 701 OSYNC_METADATA|OSYNC_DATA);
4f6f0bd2
JA
702 mutex_unlock(&inode->i_mutex);
703
704 if (err)
705 ret = err;
706 }
707
708 return ret;
5274f052
JA
709}
710
059a8f37
JA
711EXPORT_SYMBOL(generic_file_splice_write);
712
83f9135b
JA
713/**
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
719 *
720 * Will send @len bytes from the pipe to a network socket. No data copying
721 * is involved.
722 *
723 */
3a326a2c 724ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
cbb7e577 725 loff_t *ppos, size_t len, unsigned int flags)
5274f052 726{
cbb7e577 727 return move_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
5274f052
JA
728}
729
059a8f37 730EXPORT_SYMBOL(generic_splice_sendpage);
a0f06780 731
83f9135b
JA
732/*
733 * Attempt to initiate a splice from pipe to file.
734 */
3a326a2c 735static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
cbb7e577 736 loff_t *ppos, size_t len, unsigned int flags)
5274f052 737{
5274f052
JA
738 int ret;
739
49570e9b 740 if (unlikely(!out->f_op || !out->f_op->splice_write))
5274f052
JA
741 return -EINVAL;
742
49570e9b 743 if (unlikely(!(out->f_mode & FMODE_WRITE)))
5274f052
JA
744 return -EBADF;
745
cbb7e577 746 ret = rw_verify_area(WRITE, out, ppos, len);
5274f052
JA
747 if (unlikely(ret < 0))
748 return ret;
749
cbb7e577 750 return out->f_op->splice_write(pipe, out, ppos, len, flags);
5274f052
JA
751}
752
83f9135b
JA
753/*
754 * Attempt to initiate a splice from a file to a pipe.
755 */
cbb7e577
JA
756static long do_splice_to(struct file *in, loff_t *ppos,
757 struct pipe_inode_info *pipe, size_t len,
758 unsigned int flags)
5274f052 759{
cbb7e577 760 loff_t isize, left;
5274f052
JA
761 int ret;
762
49570e9b 763 if (unlikely(!in->f_op || !in->f_op->splice_read))
5274f052
JA
764 return -EINVAL;
765
49570e9b 766 if (unlikely(!(in->f_mode & FMODE_READ)))
5274f052
JA
767 return -EBADF;
768
cbb7e577 769 ret = rw_verify_area(READ, in, ppos, len);
5274f052
JA
770 if (unlikely(ret < 0))
771 return ret;
772
773 isize = i_size_read(in->f_mapping->host);
cbb7e577 774 if (unlikely(*ppos >= isize))
5274f052
JA
775 return 0;
776
cbb7e577 777 left = isize - *ppos;
49570e9b 778 if (unlikely(left < len))
5274f052
JA
779 len = left;
780
cbb7e577 781 return in->f_op->splice_read(in, ppos, pipe, len, flags);
5274f052
JA
782}
783
cbb7e577
JA
784long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
785 size_t len, unsigned int flags)
b92ce558
JA
786{
787 struct pipe_inode_info *pipe;
788 long ret, bytes;
cbb7e577 789 loff_t out_off;
b92ce558
JA
790 umode_t i_mode;
791 int i;
792
793 /*
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!
797 */
798 i_mode = in->f_dentry->d_inode->i_mode;
799 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
800 return -EINVAL;
801
802 /*
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
805 */
806 pipe = current->splice_pipe;
49570e9b 807 if (unlikely(!pipe)) {
b92ce558
JA
808 pipe = alloc_pipe_info(NULL);
809 if (!pipe)
810 return -ENOMEM;
811
812 /*
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.
816 */
817 pipe->readers = 1;
818
819 current->splice_pipe = pipe;
820 }
821
822 /*
73d62d83 823 * Do the splice.
b92ce558
JA
824 */
825 ret = 0;
826 bytes = 0;
cbb7e577 827 out_off = 0;
b92ce558
JA
828
829 while (len) {
830 size_t read_len, max_read_len;
831
832 /*
833 * Do at most PIPE_BUFFERS pages worth of transfer:
834 */
835 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
836
cbb7e577 837 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
b92ce558
JA
838 if (unlikely(ret < 0))
839 goto out_release;
840
841 read_len = ret;
842
843 /*
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:
847 */
cbb7e577 848 ret = do_splice_from(pipe, out, &out_off, read_len,
b92ce558
JA
849 flags & ~SPLICE_F_NONBLOCK);
850 if (unlikely(ret < 0))
851 goto out_release;
852
853 bytes += ret;
854 len -= ret;
855
856 /*
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:
863 */
864 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
865 break;
866 }
867
868 pipe->nrbufs = pipe->curbuf = 0;
869
870 return bytes;
871
872out_release:
873 /*
874 * If we did an incomplete transfer we must release
875 * the pipe buffers in question:
876 */
877 for (i = 0; i < PIPE_BUFFERS; i++) {
878 struct pipe_buffer *buf = pipe->bufs + i;
879
880 if (buf->ops) {
881 buf->ops->release(pipe, buf);
882 buf->ops = NULL;
883 }
884 }
885 pipe->nrbufs = pipe->curbuf = 0;
886
887 /*
888 * If we transferred some data, return the number of bytes:
889 */
890 if (bytes > 0)
891 return bytes;
892
893 return ret;
894}
895
896EXPORT_SYMBOL(do_splice_direct);
897
83f9135b
JA
898/*
899 * Determine where to splice to/from.
900 */
529565dc
IM
901static 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)
5274f052 904{
3a326a2c 905 struct pipe_inode_info *pipe;
cbb7e577 906 loff_t offset, *off;
5274f052 907
3a326a2c 908 pipe = in->f_dentry->d_inode->i_pipe;
529565dc
IM
909 if (pipe) {
910 if (off_in)
911 return -ESPIPE;
b92ce558
JA
912 if (off_out) {
913 if (out->f_op->llseek == no_llseek)
914 return -EINVAL;
cbb7e577 915 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
b92ce558 916 return -EFAULT;
cbb7e577
JA
917 off = &offset;
918 } else
919 off = &out->f_pos;
529565dc 920
cbb7e577 921 return do_splice_from(pipe, out, off, len, flags);
529565dc 922 }
5274f052 923
3a326a2c 924 pipe = out->f_dentry->d_inode->i_pipe;
529565dc
IM
925 if (pipe) {
926 if (off_out)
927 return -ESPIPE;
b92ce558
JA
928 if (off_in) {
929 if (in->f_op->llseek == no_llseek)
930 return -EINVAL;
cbb7e577 931 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
b92ce558 932 return -EFAULT;
cbb7e577
JA
933 off = &offset;
934 } else
935 off = &in->f_pos;
529565dc 936
cbb7e577 937 return do_splice_to(in, off, pipe, len, flags);
529565dc 938 }
5274f052
JA
939
940 return -EINVAL;
941}
942
529565dc
IM
943asmlinkage 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)
5274f052
JA
946{
947 long error;
948 struct file *in, *out;
949 int fput_in, fput_out;
950
951 if (unlikely(!len))
952 return 0;
953
954 error = -EBADF;
529565dc 955 in = fget_light(fd_in, &fput_in);
5274f052
JA
956 if (in) {
957 if (in->f_mode & FMODE_READ) {
529565dc 958 out = fget_light(fd_out, &fput_out);
5274f052
JA
959 if (out) {
960 if (out->f_mode & FMODE_WRITE)
529565dc
IM
961 error = do_splice(in, off_in,
962 out, off_out,
963 len, flags);
5274f052
JA
964 fput_light(out, fput_out);
965 }
966 }
967
968 fput_light(in, fput_in);
969 }
970
971 return error;
972}
70524490
JA
973
974/*
975 * Link contents of ipipe to opipe.
976 */
977static int link_pipe(struct pipe_inode_info *ipipe,
978 struct pipe_inode_info *opipe,
979 size_t len, unsigned int flags)
980{
981 struct pipe_buffer *ibuf, *obuf;
982 int ret = 0, do_wakeup = 0, i;
983
984 /*
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).
988 */
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);
995 }
996
997 for (i = 0;; i++) {
998 if (!opipe->readers) {
999 send_sig(SIGPIPE, current, 0);
1000 if (!ret)
1001 ret = -EPIPE;
1002 break;
1003 }
1004 if (ipipe->nrbufs - i) {
1005 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1006
1007 /*
1008 * If we have room, fill this buffer
1009 */
1010 if (opipe->nrbufs < PIPE_BUFFERS) {
1011 int nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1012
1013 /*
1014 * Get a reference to this pipe buffer,
1015 * so we can copy the contents over.
1016 */
1017 ibuf->ops->get(ipipe, ibuf);
1018
1019 obuf = opipe->bufs + nbuf;
1020 *obuf = *ibuf;
1021
1022 if (obuf->len > len)
1023 obuf->len = len;
1024
1025 opipe->nrbufs++;
1026 do_wakeup = 1;
1027 ret += obuf->len;
1028 len -= obuf->len;
1029
1030 if (!len)
1031 break;
1032 if (opipe->nrbufs < PIPE_BUFFERS)
1033 continue;
1034 }
1035
1036 /*
1037 * We have input available, but no output room.
1038 * If we already copied data, return that.
1039 */
1040 if (flags & SPLICE_F_NONBLOCK) {
1041 if (!ret)
1042 ret = -EAGAIN;
1043 break;
1044 }
1045 if (signal_pending(current)) {
1046 if (!ret)
1047 ret = -ERESTARTSYS;
1048 break;
1049 }
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;
1056 }
1057
1058 opipe->waiting_writers++;
1059 pipe_wait(opipe);
1060 opipe->waiting_writers--;
1061 continue;
1062 }
1063
1064 /*
1065 * No input buffers, do the usual checks for available
1066 * writers and blocking and wait if necessary
1067 */
1068 if (!ipipe->writers)
1069 break;
1070 if (!ipipe->waiting_writers) {
1071 if (ret)
1072 break;
1073 }
1074 if (flags & SPLICE_F_NONBLOCK) {
1075 if (!ret)
1076 ret = -EAGAIN;
1077 break;
1078 }
1079 if (signal_pending(current)) {
1080 if (!ret)
1081 ret = -ERESTARTSYS;
1082 break;
1083 }
1084
1085 if (waitqueue_active(&ipipe->wait))
1086 wake_up_interruptible_sync(&ipipe->wait);
1087 kill_fasync(&ipipe->fasync_writers, SIGIO, POLL_OUT);
1088
1089 pipe_wait(ipipe);
1090 }
1091
1092 mutex_unlock(&ipipe->inode->i_mutex);
1093 mutex_unlock(&opipe->inode->i_mutex);
1094
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);
1100 }
1101
1102 return ret;
1103}
1104
1105/*
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.
1110 */
1111static long do_tee(struct file *in, struct file *out, size_t len,
1112 unsigned int flags)
1113{
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;
1116
1117 /*
1118 * Link ipipe to the two output pipes, consuming as we go along.
1119 */
1120 if (ipipe && opipe)
1121 return link_pipe(ipipe, opipe, len, flags);
1122
1123 return -EINVAL;
1124}
1125
1126asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1127{
1128 struct file *in;
1129 int error, fput_in;
1130
1131 if (unlikely(!len))
1132 return 0;
1133
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);
1140
1141 if (out) {
1142 if (out->f_mode & FMODE_WRITE)
1143 error = do_tee(in, out, len, flags);
1144 fput_light(out, fput_out);
1145 }
1146 }
1147 fput_light(in, fput_in);
1148 }
1149
1150 return error;
1151}