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