blob: b150493b6fc33defb17dac4f3af8b28379a33d8d [file] [log] [blame]
Jens Axboe5274f052006-03-30 15:15:30 +02001/*
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
Jens Axboec2058e02006-04-11 13:56:34 +020012 * Jens to support splicing to files, network, direct splicing, etc and
13 * fixing lots of bugs.
Jens Axboe5274f052006-03-30 15:15:30 +020014 *
Jens Axboec2058e02006-04-11 13:56:34 +020015 * 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>
Jens Axboe5274f052006-03-30 15:15:30 +020018 *
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>
Jens Axboe5abc97a2006-03-30 15:16:46 +020025#include <linux/swap.h>
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020026#include <linux/writeback.h>
27#include <linux/buffer_head.h>
Jeff Garzika0f06782006-03-30 23:06:13 -050028#include <linux/module.h>
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020029#include <linux/syscalls.h>
Jens Axboe912d35f2006-04-26 10:59:21 +020030#include <linux/uio.h>
Jens Axboe5274f052006-03-30 15:15:30 +020031
Jens Axboe912d35f2006-04-26 10:59:21 +020032struct partial_page {
33 unsigned int offset;
34 unsigned int len;
35};
36
37/*
Jens Axboe00522fb2006-04-26 14:39:29 +020038 * Passed to splice_to_pipe
Jens Axboe912d35f2006-04-26 10:59:21 +020039 */
40struct splice_pipe_desc {
41 struct page **pages; /* page map */
42 struct partial_page *partial; /* pages[] may not be contig */
43 int nr_pages; /* number of pages in map */
44 unsigned int flags; /* splice flags */
45 struct pipe_buf_operations *ops;/* ops associated with output pipe */
46};
47
Jens Axboe83f91352006-04-02 23:05:09 +020048/*
49 * Attempt to steal a page from a pipe buffer. This should perhaps go into
50 * a vm helper function, it's already simplified quite a bit by the
51 * addition of remove_mapping(). If success is returned, the caller may
52 * attempt to reuse this page for another destination.
53 */
Jens Axboe5abc97a2006-03-30 15:16:46 +020054static int page_cache_pipe_buf_steal(struct pipe_inode_info *info,
55 struct pipe_buffer *buf)
56{
57 struct page *page = buf->page;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020058 struct address_space *mapping = page_mapping(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +020059
Jens Axboe9e0267c2006-04-19 15:57:31 +020060 lock_page(page);
61
Jens Axboe5abc97a2006-03-30 15:16:46 +020062 WARN_ON(!PageUptodate(page));
63
Jens Axboead8d6f02006-04-02 23:10:32 +020064 /*
65 * At least for ext2 with nobh option, we need to wait on writeback
66 * completing on this page, since we'll remove it from the pagecache.
67 * Otherwise truncate wont wait on the page, allowing the disk
68 * blocks to be reused by someone else before we actually wrote our
69 * data to them. fs corruption ensues.
70 */
71 wait_on_page_writeback(page);
72
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020073 if (PagePrivate(page))
74 try_to_release_page(page, mapping_gfp_mask(mapping));
75
Jens Axboe9e0267c2006-04-19 15:57:31 +020076 if (!remove_mapping(mapping, page)) {
77 unlock_page(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +020078 return 1;
Jens Axboe9e0267c2006-04-19 15:57:31 +020079 }
Jens Axboe5abc97a2006-03-30 15:16:46 +020080
Jens Axboe0568b402006-05-01 19:50:48 +020081 buf->flags |= PIPE_BUF_FLAG_LRU;
Jens Axboe5abc97a2006-03-30 15:16:46 +020082 return 0;
83}
84
Jens Axboe5274f052006-03-30 15:15:30 +020085static void page_cache_pipe_buf_release(struct pipe_inode_info *info,
86 struct pipe_buffer *buf)
87{
88 page_cache_release(buf->page);
89 buf->page = NULL;
Jens Axboe0568b402006-05-01 19:50:48 +020090 buf->flags &= ~PIPE_BUF_FLAG_LRU;
Jens Axboe5274f052006-03-30 15:15:30 +020091}
92
Jens Axboef84d7512006-05-01 19:59:03 +020093static int page_cache_pipe_buf_pin(struct pipe_inode_info *info,
94 struct pipe_buffer *buf)
Jens Axboe5274f052006-03-30 15:15:30 +020095{
96 struct page *page = buf->page;
Jens Axboe49d0b212006-04-10 09:04:41 +020097 int err;
Jens Axboe5274f052006-03-30 15:15:30 +020098
99 if (!PageUptodate(page)) {
Jens Axboe49d0b212006-04-10 09:04:41 +0200100 lock_page(page);
101
102 /*
103 * Page got truncated/unhashed. This will cause a 0-byte
Ingo Molnar73d62d82006-04-11 13:57:21 +0200104 * splice, if this is the first page.
Jens Axboe49d0b212006-04-10 09:04:41 +0200105 */
106 if (!page->mapping) {
107 err = -ENODATA;
108 goto error;
109 }
110
111 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200112 * Uh oh, read-error from disk.
Jens Axboe49d0b212006-04-10 09:04:41 +0200113 */
114 if (!PageUptodate(page)) {
115 err = -EIO;
116 goto error;
117 }
118
119 /*
Jens Axboef84d7512006-05-01 19:59:03 +0200120 * Page is ok afterall, we are done.
Jens Axboe49d0b212006-04-10 09:04:41 +0200121 */
Jens Axboe5274f052006-03-30 15:15:30 +0200122 unlock_page(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200123 }
124
Jens Axboef84d7512006-05-01 19:59:03 +0200125 return 0;
Jens Axboe49d0b212006-04-10 09:04:41 +0200126error:
127 unlock_page(page);
Jens Axboef84d7512006-05-01 19:59:03 +0200128 return err;
Jens Axboe70524492006-04-11 15:51:17 +0200129}
130
Jens Axboe5274f052006-03-30 15:15:30 +0200131static struct pipe_buf_operations page_cache_pipe_buf_ops = {
132 .can_merge = 0,
Jens Axboef84d7512006-05-01 19:59:03 +0200133 .map = generic_pipe_buf_map,
134 .unmap = generic_pipe_buf_unmap,
135 .pin = page_cache_pipe_buf_pin,
Jens Axboe5274f052006-03-30 15:15:30 +0200136 .release = page_cache_pipe_buf_release,
Jens Axboe5abc97a2006-03-30 15:16:46 +0200137 .steal = page_cache_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200138 .get = generic_pipe_buf_get,
Jens Axboe5274f052006-03-30 15:15:30 +0200139};
140
Jens Axboe912d35f2006-04-26 10:59:21 +0200141static int user_page_pipe_buf_steal(struct pipe_inode_info *pipe,
142 struct pipe_buffer *buf)
143{
Jens Axboe7afa6fd2006-05-01 20:02:33 +0200144 if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
145 return 1;
146
147 return 0;
Jens Axboe912d35f2006-04-26 10:59:21 +0200148}
149
150static struct pipe_buf_operations user_page_pipe_buf_ops = {
151 .can_merge = 0,
Jens Axboef84d7512006-05-01 19:59:03 +0200152 .map = generic_pipe_buf_map,
153 .unmap = generic_pipe_buf_unmap,
154 .pin = generic_pipe_buf_pin,
Jens Axboe912d35f2006-04-26 10:59:21 +0200155 .release = page_cache_pipe_buf_release,
156 .steal = user_page_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200157 .get = generic_pipe_buf_get,
Jens Axboe912d35f2006-04-26 10:59:21 +0200158};
159
Jens Axboe83f91352006-04-02 23:05:09 +0200160/*
161 * Pipe output worker. This sets up our pipe format with the page cache
162 * pipe buffer operations. Otherwise very similar to the regular pipe_writev().
163 */
Jens Axboe00522fb2006-04-26 14:39:29 +0200164static ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
165 struct splice_pipe_desc *spd)
Jens Axboe5274f052006-03-30 15:15:30 +0200166{
Jens Axboe912d35f2006-04-26 10:59:21 +0200167 int ret, do_wakeup, page_nr;
Jens Axboe5274f052006-03-30 15:15:30 +0200168
169 ret = 0;
170 do_wakeup = 0;
Jens Axboe912d35f2006-04-26 10:59:21 +0200171 page_nr = 0;
Jens Axboe5274f052006-03-30 15:15:30 +0200172
Ingo Molnar3a326a22006-04-10 15:18:35 +0200173 if (pipe->inode)
174 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200175
Jens Axboe5274f052006-03-30 15:15:30 +0200176 for (;;) {
Ingo Molnar3a326a22006-04-10 15:18:35 +0200177 if (!pipe->readers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200178 send_sig(SIGPIPE, current, 0);
179 if (!ret)
180 ret = -EPIPE;
181 break;
182 }
183
Jens Axboe6f767b02006-04-11 13:53:56 +0200184 if (pipe->nrbufs < PIPE_BUFFERS) {
185 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200186 struct pipe_buffer *buf = pipe->bufs + newbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200187
Jens Axboe912d35f2006-04-26 10:59:21 +0200188 buf->page = spd->pages[page_nr];
189 buf->offset = spd->partial[page_nr].offset;
190 buf->len = spd->partial[page_nr].len;
191 buf->ops = spd->ops;
Jens Axboe7afa6fd2006-05-01 20:02:33 +0200192 if (spd->flags & SPLICE_F_GIFT)
193 buf->flags |= PIPE_BUF_FLAG_GIFT;
194
Jens Axboe6f767b02006-04-11 13:53:56 +0200195 pipe->nrbufs++;
Jens Axboe912d35f2006-04-26 10:59:21 +0200196 page_nr++;
197 ret += buf->len;
198
Jens Axboe6f767b02006-04-11 13:53:56 +0200199 if (pipe->inode)
200 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200201
Jens Axboe912d35f2006-04-26 10:59:21 +0200202 if (!--spd->nr_pages)
Jens Axboe5274f052006-03-30 15:15:30 +0200203 break;
Jens Axboe6f767b02006-04-11 13:53:56 +0200204 if (pipe->nrbufs < PIPE_BUFFERS)
Jens Axboe5274f052006-03-30 15:15:30 +0200205 continue;
206
207 break;
208 }
209
Jens Axboe912d35f2006-04-26 10:59:21 +0200210 if (spd->flags & SPLICE_F_NONBLOCK) {
Linus Torvalds29e35092006-04-02 12:46:35 -0700211 if (!ret)
212 ret = -EAGAIN;
213 break;
214 }
215
Jens Axboe5274f052006-03-30 15:15:30 +0200216 if (signal_pending(current)) {
217 if (!ret)
218 ret = -ERESTARTSYS;
219 break;
220 }
221
222 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200223 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200224 if (waitqueue_active(&pipe->wait))
225 wake_up_interruptible_sync(&pipe->wait);
226 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200227 do_wakeup = 0;
228 }
229
Ingo Molnar3a326a22006-04-10 15:18:35 +0200230 pipe->waiting_writers++;
231 pipe_wait(pipe);
232 pipe->waiting_writers--;
Jens Axboe5274f052006-03-30 15:15:30 +0200233 }
234
Ingo Molnar3a326a22006-04-10 15:18:35 +0200235 if (pipe->inode)
236 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200237
238 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200239 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200240 if (waitqueue_active(&pipe->wait))
241 wake_up_interruptible(&pipe->wait);
242 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200243 }
244
Jens Axboe912d35f2006-04-26 10:59:21 +0200245 while (page_nr < spd->nr_pages)
246 page_cache_release(spd->pages[page_nr++]);
Jens Axboe5274f052006-03-30 15:15:30 +0200247
248 return ret;
249}
250
Ingo Molnar3a326a22006-04-10 15:18:35 +0200251static int
Jens Axboecbb7e572006-04-11 14:57:50 +0200252__generic_file_splice_read(struct file *in, loff_t *ppos,
253 struct pipe_inode_info *pipe, size_t len,
254 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200255{
256 struct address_space *mapping = in->f_mapping;
Jens Axboe912d35f2006-04-26 10:59:21 +0200257 unsigned int loff, nr_pages;
Jens Axboe16c523d2006-04-10 09:03:58 +0200258 struct page *pages[PIPE_BUFFERS];
Jens Axboe912d35f2006-04-26 10:59:21 +0200259 struct partial_page partial[PIPE_BUFFERS];
Jens Axboe5274f052006-03-30 15:15:30 +0200260 struct page *page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200261 pgoff_t index, end_index;
262 loff_t isize;
Jens Axboe912d35f2006-04-26 10:59:21 +0200263 size_t total_len;
Jens Axboeeb207962006-04-27 11:05:22 +0200264 int error, page_nr;
Jens Axboe912d35f2006-04-26 10:59:21 +0200265 struct splice_pipe_desc spd = {
266 .pages = pages,
267 .partial = partial,
268 .flags = flags,
269 .ops = &page_cache_pipe_buf_ops,
270 };
Jens Axboe5274f052006-03-30 15:15:30 +0200271
Jens Axboecbb7e572006-04-11 14:57:50 +0200272 index = *ppos >> PAGE_CACHE_SHIFT;
Jens Axboe912d35f2006-04-26 10:59:21 +0200273 loff = *ppos & ~PAGE_CACHE_MASK;
274 nr_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Jens Axboe5274f052006-03-30 15:15:30 +0200275
276 if (nr_pages > PIPE_BUFFERS)
277 nr_pages = PIPE_BUFFERS;
278
279 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200280 * Initiate read-ahead on this page range. however, don't call into
Jens Axboe0b749ce2006-04-10 09:05:04 +0200281 * read-ahead if this is a non-zero offset (we are likely doing small
282 * chunk splice and the page is already there) for a single page.
Jens Axboe5274f052006-03-30 15:15:30 +0200283 */
Jens Axboeeb645a22006-04-27 08:44:27 +0200284 if (!loff || nr_pages > 1)
285 page_cache_readahead(mapping, &in->f_ra, in, index, nr_pages);
Jens Axboe5274f052006-03-30 15:15:30 +0200286
287 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200288 * Now fill in the holes:
Jens Axboe5274f052006-03-30 15:15:30 +0200289 */
Jens Axboe7480a902006-04-11 13:52:47 +0200290 error = 0;
Jens Axboe912d35f2006-04-26 10:59:21 +0200291 total_len = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200292
293 /*
294 * Lookup the (hopefully) full range of pages we need.
295 */
296 spd.nr_pages = find_get_pages_contig(mapping, index, nr_pages, pages);
297
298 /*
299 * If find_get_pages_contig() returned fewer pages than we needed,
300 * allocate the rest.
301 */
302 index += spd.nr_pages;
303 while (spd.nr_pages < nr_pages) {
304 /*
305 * Page could be there, find_get_pages_contig() breaks on
306 * the first hole.
307 */
308 page = find_get_page(mapping, index);
309 if (!page) {
310 /*
Jens Axboee27dedd2006-05-01 19:59:54 +0200311 * Make sure the read-ahead engine is notified
312 * about this failure.
313 */
314 handle_ra_miss(mapping, &in->f_ra, index);
315
316 /*
Jens Axboeeb207962006-04-27 11:05:22 +0200317 * page didn't exist, allocate one.
318 */
319 page = page_cache_alloc_cold(mapping);
320 if (!page)
321 break;
322
323 error = add_to_page_cache_lru(page, mapping, index,
324 mapping_gfp_mask(mapping));
325 if (unlikely(error)) {
326 page_cache_release(page);
327 break;
328 }
329 /*
330 * add_to_page_cache() locks the page, unlock it
331 * to avoid convoluting the logic below even more.
332 */
333 unlock_page(page);
334 }
335
336 pages[spd.nr_pages++] = page;
337 index++;
338 }
339
340 /*
341 * Now loop over the map and see if we need to start IO on any
342 * pages, fill in the partial map, etc.
343 */
344 index = *ppos >> PAGE_CACHE_SHIFT;
345 nr_pages = spd.nr_pages;
346 spd.nr_pages = 0;
347 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
Jens Axboe82aa5d62006-04-20 13:05:48 +0200348 unsigned int this_len;
349
350 if (!len)
351 break;
352
353 /*
354 * this_len is the max we'll use from this page
355 */
Andrew Mortonba5f5d92006-04-25 15:33:34 +0200356 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
Jens Axboeeb207962006-04-27 11:05:22 +0200357 page = pages[page_nr];
Jens Axboe7480a902006-04-11 13:52:47 +0200358
359 /*
360 * If the page isn't uptodate, we may need to start io on it
361 */
362 if (!PageUptodate(page)) {
Jens Axboec4f895c2006-04-19 15:56:12 +0200363 /*
364 * If in nonblock mode then dont block on waiting
365 * for an in-flight io page
366 */
367 if (flags & SPLICE_F_NONBLOCK)
368 break;
369
Jens Axboe7480a902006-04-11 13:52:47 +0200370 lock_page(page);
371
372 /*
373 * page was truncated, stop here. if this isn't the
374 * first page, we'll just complete what we already
375 * added
376 */
377 if (!page->mapping) {
378 unlock_page(page);
Jens Axboe7480a902006-04-11 13:52:47 +0200379 break;
380 }
381 /*
382 * page was already under io and is now done, great
383 */
384 if (PageUptodate(page)) {
385 unlock_page(page);
386 goto fill_it;
387 }
388
Jens Axboe7480a902006-04-11 13:52:47 +0200389 /*
390 * need to read in the page
391 */
392 error = mapping->a_ops->readpage(in, page);
Jens Axboe7480a902006-04-11 13:52:47 +0200393 if (unlikely(error)) {
Jens Axboeeb207962006-04-27 11:05:22 +0200394 /*
395 * We really should re-lookup the page here,
396 * but it complicates things a lot. Instead
397 * lets just do what we already stored, and
398 * we'll get it the next time we are called.
399 */
Jens Axboe7480a902006-04-11 13:52:47 +0200400 if (error == AOP_TRUNCATED_PAGE)
Jens Axboeeb207962006-04-27 11:05:22 +0200401 error = 0;
402
Jens Axboe7480a902006-04-11 13:52:47 +0200403 break;
404 }
Jens Axboe91ad66e2006-04-19 15:55:10 +0200405
406 /*
407 * i_size must be checked after ->readpage().
408 */
409 isize = i_size_read(mapping->host);
410 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Jens Axboeeb207962006-04-27 11:05:22 +0200411 if (unlikely(!isize || index > end_index))
Jens Axboe91ad66e2006-04-19 15:55:10 +0200412 break;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200413
414 /*
415 * if this is the last page, see if we need to shrink
416 * the length and stop
417 */
418 if (end_index == index) {
419 loff = PAGE_CACHE_SIZE - (isize & ~PAGE_CACHE_MASK);
Jens Axboeeb207962006-04-27 11:05:22 +0200420 if (total_len + loff > isize)
Jens Axboe91ad66e2006-04-19 15:55:10 +0200421 break;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200422 /*
423 * force quit after adding this page
424 */
Jens Axboeeb207962006-04-27 11:05:22 +0200425 len = this_len;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200426 this_len = min(this_len, loff);
Jens Axboe912d35f2006-04-26 10:59:21 +0200427 loff = 0;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200428 }
Jens Axboe7480a902006-04-11 13:52:47 +0200429 }
430fill_it:
Jens Axboeeb207962006-04-27 11:05:22 +0200431 partial[page_nr].offset = loff;
432 partial[page_nr].len = this_len;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200433 len -= this_len;
Jens Axboe912d35f2006-04-26 10:59:21 +0200434 total_len += this_len;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200435 loff = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200436 spd.nr_pages++;
437 index++;
Jens Axboe5274f052006-03-30 15:15:30 +0200438 }
439
Jens Axboeeb207962006-04-27 11:05:22 +0200440 /*
441 * Release any pages at the end, if we quit early. 'i' is how far
442 * we got, 'nr_pages' is how many pages are in the map.
443 */
444 while (page_nr < nr_pages)
445 page_cache_release(pages[page_nr++]);
446
Jens Axboe912d35f2006-04-26 10:59:21 +0200447 if (spd.nr_pages)
Jens Axboe00522fb2006-04-26 14:39:29 +0200448 return splice_to_pipe(pipe, &spd);
Jens Axboe5274f052006-03-30 15:15:30 +0200449
Jens Axboe7480a902006-04-11 13:52:47 +0200450 return error;
Jens Axboe5274f052006-03-30 15:15:30 +0200451}
452
Jens Axboe83f91352006-04-02 23:05:09 +0200453/**
454 * generic_file_splice_read - splice data from file to a pipe
455 * @in: file to splice from
456 * @pipe: pipe to splice to
457 * @len: number of bytes to splice
458 * @flags: splice modifier flags
459 *
460 * Will read pages from given file and fill them into a pipe.
Jens Axboe83f91352006-04-02 23:05:09 +0200461 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200462ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
463 struct pipe_inode_info *pipe, size_t len,
464 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200465{
466 ssize_t spliced;
467 int ret;
468
469 ret = 0;
470 spliced = 0;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200471
Jens Axboe5274f052006-03-30 15:15:30 +0200472 while (len) {
Jens Axboecbb7e572006-04-11 14:57:50 +0200473 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200474
Jens Axboec4f895c2006-04-19 15:56:12 +0200475 if (ret < 0)
Jens Axboe5274f052006-03-30 15:15:30 +0200476 break;
Jens Axboec4f895c2006-04-19 15:56:12 +0200477 else if (!ret) {
478 if (spliced)
479 break;
480 if (flags & SPLICE_F_NONBLOCK) {
481 ret = -EAGAIN;
482 break;
483 }
484 }
Jens Axboe5274f052006-03-30 15:15:30 +0200485
Jens Axboecbb7e572006-04-11 14:57:50 +0200486 *ppos += ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200487 len -= ret;
488 spliced += ret;
489 }
490
491 if (spliced)
492 return spliced;
493
494 return ret;
495}
496
Jens Axboe059a8f32006-04-02 23:06:05 +0200497EXPORT_SYMBOL(generic_file_splice_read);
498
Jens Axboe5274f052006-03-30 15:15:30 +0200499/*
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200500 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
Jens Axboe016b6612006-04-25 15:42:00 +0200501 * using sendpage(). Return the number of bytes sent.
Jens Axboe5274f052006-03-30 15:15:30 +0200502 */
503static int pipe_to_sendpage(struct pipe_inode_info *info,
504 struct pipe_buffer *buf, struct splice_desc *sd)
505{
506 struct file *file = sd->file;
507 loff_t pos = sd->pos;
Jens Axboef84d7512006-05-01 19:59:03 +0200508 int ret, more;
Jens Axboe5274f052006-03-30 15:15:30 +0200509
Jens Axboef84d7512006-05-01 19:59:03 +0200510 ret = buf->ops->pin(info, buf);
511 if (!ret) {
512 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200513
Jens Axboef84d7512006-05-01 19:59:03 +0200514 ret = file->f_op->sendpage(file, buf->page, buf->offset,
515 sd->len, &pos, more);
516 }
Jens Axboe5274f052006-03-30 15:15:30 +0200517
Jens Axboe016b6612006-04-25 15:42:00 +0200518 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200519}
520
521/*
522 * This is a little more tricky than the file -> pipe splicing. There are
523 * basically three cases:
524 *
525 * - Destination page already exists in the address space and there
526 * are users of it. For that case we have no other option that
527 * copying the data. Tough luck.
528 * - Destination page already exists in the address space, but there
529 * are no users of it. Make sure it's uptodate, then drop it. Fall
530 * through to last case.
531 * - Destination page does not exist, we can add the pipe page to
532 * the page cache and avoid the copy.
533 *
Jens Axboe83f91352006-04-02 23:05:09 +0200534 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
535 * sd->flags), we attempt to migrate pages from the pipe to the output
536 * file address space page cache. This is possible if no one else has
537 * the pipe page referenced outside of the pipe and page cache. If
538 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
539 * a new page in the output file page cache and fill/dirty that.
Jens Axboe5274f052006-03-30 15:15:30 +0200540 */
541static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
542 struct splice_desc *sd)
543{
544 struct file *file = sd->file;
545 struct address_space *mapping = file->f_mapping;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200546 gfp_t gfp_mask = mapping_gfp_mask(mapping);
Jens Axboe016b6612006-04-25 15:42:00 +0200547 unsigned int offset, this_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200548 struct page *page;
Jens Axboe5274f052006-03-30 15:15:30 +0200549 pgoff_t index;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200550 int ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200551
552 /*
Jens Axboe49d0b212006-04-10 09:04:41 +0200553 * make sure the data in this buffer is uptodate
Jens Axboe5274f052006-03-30 15:15:30 +0200554 */
Jens Axboef84d7512006-05-01 19:59:03 +0200555 ret = buf->ops->pin(info, buf);
556 if (unlikely(ret))
557 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200558
559 index = sd->pos >> PAGE_CACHE_SHIFT;
560 offset = sd->pos & ~PAGE_CACHE_MASK;
561
Jens Axboe016b6612006-04-25 15:42:00 +0200562 this_len = sd->len;
563 if (this_len + offset > PAGE_CACHE_SIZE)
564 this_len = PAGE_CACHE_SIZE - offset;
565
Jens Axboe5274f052006-03-30 15:15:30 +0200566 /*
Jens Axboe0568b402006-05-01 19:50:48 +0200567 * Reuse buf page, if SPLICE_F_MOVE is set and we are doing a full
568 * page.
Jens Axboe5274f052006-03-30 15:15:30 +0200569 */
Jens Axboe0568b402006-05-01 19:50:48 +0200570 if ((sd->flags & SPLICE_F_MOVE) && this_len == PAGE_CACHE_SIZE) {
Jens Axboe83f91352006-04-02 23:05:09 +0200571 /*
572 * If steal succeeds, buf->page is now pruned from the vm
Jens Axboe9e0267c2006-04-19 15:57:31 +0200573 * side (LRU and page cache) and we can reuse it. The page
574 * will also be looked on successful return.
Jens Axboe83f91352006-04-02 23:05:09 +0200575 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200576 if (buf->ops->steal(info, buf))
577 goto find_page;
Jens Axboe5274f052006-03-30 15:15:30 +0200578
Jens Axboe5abc97a2006-03-30 15:16:46 +0200579 page = buf->page;
Jens Axboe46e678c2006-04-30 16:36:32 +0200580 if (add_to_page_cache(page, mapping, index, gfp_mask)) {
581 unlock_page(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200582 goto find_page;
Jens Axboe46e678c2006-04-30 16:36:32 +0200583 }
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200584
Jens Axboe0568b402006-05-01 19:50:48 +0200585 page_cache_get(page);
586
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200587 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
588 lru_cache_add(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200589 } else {
590find_page:
Jens Axboe9e0267c2006-04-19 15:57:31 +0200591 page = find_lock_page(mapping, index);
592 if (!page) {
593 ret = -ENOMEM;
594 page = page_cache_alloc_cold(mapping);
595 if (unlikely(!page))
596 goto out_nomem;
597
598 /*
599 * This will also lock the page
600 */
601 ret = add_to_page_cache_lru(page, mapping, index,
602 gfp_mask);
603 if (unlikely(ret))
604 goto out;
605 }
Jens Axboe5274f052006-03-30 15:15:30 +0200606
Jens Axboe5abc97a2006-03-30 15:16:46 +0200607 /*
Jens Axboe9e0267c2006-04-19 15:57:31 +0200608 * We get here with the page locked. If the page is also
609 * uptodate, we don't need to do more. If it isn't, we
610 * may need to bring it in if we are not going to overwrite
611 * the full page.
Jens Axboe5abc97a2006-03-30 15:16:46 +0200612 */
613 if (!PageUptodate(page)) {
Jens Axboe016b6612006-04-25 15:42:00 +0200614 if (this_len < PAGE_CACHE_SIZE) {
Jens Axboe5abc97a2006-03-30 15:16:46 +0200615 ret = mapping->a_ops->readpage(file, page);
616 if (unlikely(ret))
617 goto out;
618
619 lock_page(page);
620
621 if (!PageUptodate(page)) {
622 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200623 * Page got invalidated, repeat.
Jens Axboe5abc97a2006-03-30 15:16:46 +0200624 */
625 if (!page->mapping) {
626 unlock_page(page);
627 page_cache_release(page);
628 goto find_page;
629 }
630 ret = -EIO;
631 goto out;
Jens Axboe5274f052006-03-30 15:15:30 +0200632 }
Jens Axboe9e0267c2006-04-19 15:57:31 +0200633 } else
Jens Axboe5abc97a2006-03-30 15:16:46 +0200634 SetPageUptodate(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200635 }
636 }
637
Jens Axboe016b6612006-04-25 15:42:00 +0200638 ret = mapping->a_ops->prepare_write(file, page, offset, offset+this_len);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200639 if (ret == AOP_TRUNCATED_PAGE) {
640 page_cache_release(page);
641 goto find_page;
642 } else if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200643 goto out;
644
Jens Axboe0568b402006-05-01 19:50:48 +0200645 if (buf->page != page) {
Jens Axboef84d7512006-05-01 19:59:03 +0200646 /*
647 * Careful, ->map() uses KM_USER0!
648 */
Jens Axboef6762b72006-05-01 20:02:05 +0200649 char *src = buf->ops->map(info, buf, 1);
Jens Axboef84d7512006-05-01 19:59:03 +0200650 char *dst = kmap_atomic(page, KM_USER1);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200651
Jens Axboe016b6612006-04-25 15:42:00 +0200652 memcpy(dst + offset, src + buf->offset, this_len);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200653 flush_dcache_page(page);
Jens Axboef84d7512006-05-01 19:59:03 +0200654 kunmap_atomic(dst, KM_USER1);
Jens Axboef6762b72006-05-01 20:02:05 +0200655 buf->ops->unmap(info, buf, src);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200656 }
Jens Axboe5274f052006-03-30 15:15:30 +0200657
Jens Axboe016b6612006-04-25 15:42:00 +0200658 ret = mapping->a_ops->commit_write(file, page, offset, offset+this_len);
Jens Axboe0568b402006-05-01 19:50:48 +0200659 if (!ret) {
660 /*
661 * Return the number of bytes written and mark page as
662 * accessed, we are now done!
663 */
664 ret = this_len;
665 mark_page_accessed(page);
666 balance_dirty_pages_ratelimited(mapping);
667 } else if (ret == AOP_TRUNCATED_PAGE) {
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200668 page_cache_release(page);
669 goto find_page;
Jens Axboe0568b402006-05-01 19:50:48 +0200670 }
Jens Axboe5274f052006-03-30 15:15:30 +0200671out:
Jens Axboe0568b402006-05-01 19:50:48 +0200672 page_cache_release(page);
Jens Axboe9e0267c2006-04-19 15:57:31 +0200673 unlock_page(page);
Dave Jones9aefe432006-04-10 09:02:40 +0200674out_nomem:
Jens Axboe5274f052006-03-30 15:15:30 +0200675 return ret;
676}
677
Jens Axboe83f91352006-04-02 23:05:09 +0200678/*
679 * Pipe input worker. Most of this logic works like a regular pipe, the
680 * key here is the 'actor' worker passed in that actually moves the data
681 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
682 */
Jens Axboe00522fb2006-04-26 14:39:29 +0200683ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
684 loff_t *ppos, size_t len, unsigned int flags,
685 splice_actor *actor)
Jens Axboe5274f052006-03-30 15:15:30 +0200686{
Jens Axboe5274f052006-03-30 15:15:30 +0200687 int ret, do_wakeup, err;
688 struct splice_desc sd;
689
690 ret = 0;
691 do_wakeup = 0;
692
693 sd.total_len = len;
694 sd.flags = flags;
695 sd.file = out;
Jens Axboecbb7e572006-04-11 14:57:50 +0200696 sd.pos = *ppos;
Jens Axboe5274f052006-03-30 15:15:30 +0200697
Ingo Molnar3a326a22006-04-10 15:18:35 +0200698 if (pipe->inode)
699 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200700
Jens Axboe5274f052006-03-30 15:15:30 +0200701 for (;;) {
Jens Axboe6f767b02006-04-11 13:53:56 +0200702 if (pipe->nrbufs) {
703 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200704 struct pipe_buf_operations *ops = buf->ops;
705
706 sd.len = buf->len;
707 if (sd.len > sd.total_len)
708 sd.len = sd.total_len;
709
Ingo Molnar3a326a22006-04-10 15:18:35 +0200710 err = actor(pipe, buf, &sd);
Jens Axboe016b6612006-04-25 15:42:00 +0200711 if (err <= 0) {
Jens Axboe5274f052006-03-30 15:15:30 +0200712 if (!ret && err != -ENODATA)
713 ret = err;
714
715 break;
716 }
717
Jens Axboe016b6612006-04-25 15:42:00 +0200718 ret += err;
719 buf->offset += err;
720 buf->len -= err;
721
722 sd.len -= err;
723 sd.pos += err;
724 sd.total_len -= err;
725 if (sd.len)
726 continue;
Ingo Molnar73d62d82006-04-11 13:57:21 +0200727
Jens Axboe5274f052006-03-30 15:15:30 +0200728 if (!buf->len) {
729 buf->ops = NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200730 ops->release(pipe, buf);
Jens Axboe6f767b02006-04-11 13:53:56 +0200731 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
732 pipe->nrbufs--;
733 if (pipe->inode)
734 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200735 }
736
Jens Axboe5274f052006-03-30 15:15:30 +0200737 if (!sd.total_len)
738 break;
739 }
740
Jens Axboe6f767b02006-04-11 13:53:56 +0200741 if (pipe->nrbufs)
Jens Axboe5274f052006-03-30 15:15:30 +0200742 continue;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200743 if (!pipe->writers)
Jens Axboe5274f052006-03-30 15:15:30 +0200744 break;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200745 if (!pipe->waiting_writers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200746 if (ret)
747 break;
748 }
749
Linus Torvalds29e35092006-04-02 12:46:35 -0700750 if (flags & SPLICE_F_NONBLOCK) {
751 if (!ret)
752 ret = -EAGAIN;
753 break;
754 }
755
Jens Axboe5274f052006-03-30 15:15:30 +0200756 if (signal_pending(current)) {
757 if (!ret)
758 ret = -ERESTARTSYS;
759 break;
760 }
761
762 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200763 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200764 if (waitqueue_active(&pipe->wait))
765 wake_up_interruptible_sync(&pipe->wait);
766 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200767 do_wakeup = 0;
768 }
769
Ingo Molnar3a326a22006-04-10 15:18:35 +0200770 pipe_wait(pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200771 }
772
Ingo Molnar3a326a22006-04-10 15:18:35 +0200773 if (pipe->inode)
774 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200775
776 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200777 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200778 if (waitqueue_active(&pipe->wait))
779 wake_up_interruptible(&pipe->wait);
780 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200781 }
782
Jens Axboe5274f052006-03-30 15:15:30 +0200783 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200784}
785
Jens Axboe83f91352006-04-02 23:05:09 +0200786/**
787 * generic_file_splice_write - splice data from a pipe to a file
Ingo Molnar3a326a22006-04-10 15:18:35 +0200788 * @pipe: pipe info
Jens Axboe83f91352006-04-02 23:05:09 +0200789 * @out: file to write to
790 * @len: number of bytes to splice
791 * @flags: splice modifier flags
792 *
793 * Will either move or copy pages (determined by @flags options) from
794 * the given pipe inode to the given file.
795 *
796 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200797ssize_t
798generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200799 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200800{
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200801 struct address_space *mapping = out->f_mapping;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200802 ssize_t ret;
803
Jens Axboe00522fb2006-04-26 14:39:29 +0200804 ret = splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
Jens Axboea4514eb2006-04-19 15:57:05 +0200805 if (ret > 0) {
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200806 struct inode *inode = mapping->host;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200807
Jens Axboea4514eb2006-04-19 15:57:05 +0200808 *ppos += ret;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200809
Jens Axboea4514eb2006-04-19 15:57:05 +0200810 /*
811 * If file or inode is SYNC and we actually wrote some data,
812 * sync it.
813 */
814 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
815 int err;
816
817 mutex_lock(&inode->i_mutex);
818 err = generic_osync_inode(inode, mapping,
819 OSYNC_METADATA|OSYNC_DATA);
820 mutex_unlock(&inode->i_mutex);
821
822 if (err)
823 ret = err;
824 }
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200825 }
826
827 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200828}
829
Jens Axboe059a8f32006-04-02 23:06:05 +0200830EXPORT_SYMBOL(generic_file_splice_write);
831
Jens Axboe83f91352006-04-02 23:05:09 +0200832/**
833 * generic_splice_sendpage - splice data from a pipe to a socket
834 * @inode: pipe inode
835 * @out: socket to write to
836 * @len: number of bytes to splice
837 * @flags: splice modifier flags
838 *
839 * Will send @len bytes from the pipe to a network socket. No data copying
840 * is involved.
841 *
842 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200843ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200844 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200845{
Jens Axboe00522fb2006-04-26 14:39:29 +0200846 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
Jens Axboe5274f052006-03-30 15:15:30 +0200847}
848
Jens Axboe059a8f32006-04-02 23:06:05 +0200849EXPORT_SYMBOL(generic_splice_sendpage);
Jeff Garzika0f06782006-03-30 23:06:13 -0500850
Jens Axboe83f91352006-04-02 23:05:09 +0200851/*
852 * Attempt to initiate a splice from pipe to file.
853 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200854static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200855 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200856{
Jens Axboe5274f052006-03-30 15:15:30 +0200857 int ret;
858
Jens Axboe49570e92006-04-11 13:56:09 +0200859 if (unlikely(!out->f_op || !out->f_op->splice_write))
Jens Axboe5274f052006-03-30 15:15:30 +0200860 return -EINVAL;
861
Jens Axboe49570e92006-04-11 13:56:09 +0200862 if (unlikely(!(out->f_mode & FMODE_WRITE)))
Jens Axboe5274f052006-03-30 15:15:30 +0200863 return -EBADF;
864
Jens Axboecbb7e572006-04-11 14:57:50 +0200865 ret = rw_verify_area(WRITE, out, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200866 if (unlikely(ret < 0))
867 return ret;
868
Jens Axboecbb7e572006-04-11 14:57:50 +0200869 return out->f_op->splice_write(pipe, out, ppos, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200870}
871
Jens Axboe83f91352006-04-02 23:05:09 +0200872/*
873 * Attempt to initiate a splice from a file to a pipe.
874 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200875static long do_splice_to(struct file *in, loff_t *ppos,
876 struct pipe_inode_info *pipe, size_t len,
877 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200878{
Jens Axboecbb7e572006-04-11 14:57:50 +0200879 loff_t isize, left;
Jens Axboe5274f052006-03-30 15:15:30 +0200880 int ret;
881
Jens Axboe49570e92006-04-11 13:56:09 +0200882 if (unlikely(!in->f_op || !in->f_op->splice_read))
Jens Axboe5274f052006-03-30 15:15:30 +0200883 return -EINVAL;
884
Jens Axboe49570e92006-04-11 13:56:09 +0200885 if (unlikely(!(in->f_mode & FMODE_READ)))
Jens Axboe5274f052006-03-30 15:15:30 +0200886 return -EBADF;
887
Jens Axboecbb7e572006-04-11 14:57:50 +0200888 ret = rw_verify_area(READ, in, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200889 if (unlikely(ret < 0))
890 return ret;
891
892 isize = i_size_read(in->f_mapping->host);
Jens Axboecbb7e572006-04-11 14:57:50 +0200893 if (unlikely(*ppos >= isize))
Jens Axboe5274f052006-03-30 15:15:30 +0200894 return 0;
895
Jens Axboecbb7e572006-04-11 14:57:50 +0200896 left = isize - *ppos;
Jens Axboe49570e92006-04-11 13:56:09 +0200897 if (unlikely(left < len))
Jens Axboe5274f052006-03-30 15:15:30 +0200898 len = left;
899
Jens Axboecbb7e572006-04-11 14:57:50 +0200900 return in->f_op->splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200901}
902
Jens Axboecbb7e572006-04-11 14:57:50 +0200903long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
904 size_t len, unsigned int flags)
Jens Axboeb92ce552006-04-11 13:52:07 +0200905{
906 struct pipe_inode_info *pipe;
907 long ret, bytes;
Jens Axboecbb7e572006-04-11 14:57:50 +0200908 loff_t out_off;
Jens Axboeb92ce552006-04-11 13:52:07 +0200909 umode_t i_mode;
910 int i;
911
912 /*
913 * We require the input being a regular file, as we don't want to
914 * randomly drop data for eg socket -> socket splicing. Use the
915 * piped splicing for that!
916 */
917 i_mode = in->f_dentry->d_inode->i_mode;
918 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
919 return -EINVAL;
920
921 /*
922 * neither in nor out is a pipe, setup an internal pipe attached to
923 * 'out' and transfer the wanted data from 'in' to 'out' through that
924 */
925 pipe = current->splice_pipe;
Jens Axboe49570e92006-04-11 13:56:09 +0200926 if (unlikely(!pipe)) {
Jens Axboeb92ce552006-04-11 13:52:07 +0200927 pipe = alloc_pipe_info(NULL);
928 if (!pipe)
929 return -ENOMEM;
930
931 /*
932 * We don't have an immediate reader, but we'll read the stuff
Jens Axboe00522fb2006-04-26 14:39:29 +0200933 * out of the pipe right after the splice_to_pipe(). So set
Jens Axboeb92ce552006-04-11 13:52:07 +0200934 * PIPE_READERS appropriately.
935 */
936 pipe->readers = 1;
937
938 current->splice_pipe = pipe;
939 }
940
941 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200942 * Do the splice.
Jens Axboeb92ce552006-04-11 13:52:07 +0200943 */
944 ret = 0;
945 bytes = 0;
Jens Axboecbb7e572006-04-11 14:57:50 +0200946 out_off = 0;
Jens Axboeb92ce552006-04-11 13:52:07 +0200947
948 while (len) {
949 size_t read_len, max_read_len;
950
951 /*
952 * Do at most PIPE_BUFFERS pages worth of transfer:
953 */
954 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
955
Jens Axboecbb7e572006-04-11 14:57:50 +0200956 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
Jens Axboeb92ce552006-04-11 13:52:07 +0200957 if (unlikely(ret < 0))
958 goto out_release;
959
960 read_len = ret;
961
962 /*
963 * NOTE: nonblocking mode only applies to the input. We
964 * must not do the output in nonblocking mode as then we
965 * could get stuck data in the internal pipe:
966 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200967 ret = do_splice_from(pipe, out, &out_off, read_len,
Jens Axboeb92ce552006-04-11 13:52:07 +0200968 flags & ~SPLICE_F_NONBLOCK);
969 if (unlikely(ret < 0))
970 goto out_release;
971
972 bytes += ret;
973 len -= ret;
974
975 /*
976 * In nonblocking mode, if we got back a short read then
977 * that was due to either an IO error or due to the
978 * pagecache entry not being there. In the IO error case
979 * the _next_ splice attempt will produce a clean IO error
980 * return value (not a short read), so in both cases it's
981 * correct to break out of the loop here:
982 */
983 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
984 break;
985 }
986
987 pipe->nrbufs = pipe->curbuf = 0;
988
989 return bytes;
990
991out_release:
992 /*
993 * If we did an incomplete transfer we must release
994 * the pipe buffers in question:
995 */
996 for (i = 0; i < PIPE_BUFFERS; i++) {
997 struct pipe_buffer *buf = pipe->bufs + i;
998
999 if (buf->ops) {
1000 buf->ops->release(pipe, buf);
1001 buf->ops = NULL;
1002 }
1003 }
1004 pipe->nrbufs = pipe->curbuf = 0;
1005
1006 /*
1007 * If we transferred some data, return the number of bytes:
1008 */
1009 if (bytes > 0)
1010 return bytes;
1011
1012 return ret;
1013}
1014
1015EXPORT_SYMBOL(do_splice_direct);
1016
Jens Axboe83f91352006-04-02 23:05:09 +02001017/*
1018 * Determine where to splice to/from.
1019 */
Ingo Molnar529565dc2006-04-10 15:18:58 +02001020static long do_splice(struct file *in, loff_t __user *off_in,
1021 struct file *out, loff_t __user *off_out,
1022 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001023{
Ingo Molnar3a326a22006-04-10 15:18:35 +02001024 struct pipe_inode_info *pipe;
Jens Axboecbb7e572006-04-11 14:57:50 +02001025 loff_t offset, *off;
Jens Axboea4514eb2006-04-19 15:57:05 +02001026 long ret;
Jens Axboe5274f052006-03-30 15:15:30 +02001027
Ingo Molnar3a326a22006-04-10 15:18:35 +02001028 pipe = in->f_dentry->d_inode->i_pipe;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001029 if (pipe) {
1030 if (off_in)
1031 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001032 if (off_out) {
1033 if (out->f_op->llseek == no_llseek)
1034 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001035 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001036 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001037 off = &offset;
1038 } else
1039 off = &out->f_pos;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001040
Jens Axboea4514eb2006-04-19 15:57:05 +02001041 ret = do_splice_from(pipe, out, off, len, flags);
1042
1043 if (off_out && copy_to_user(off_out, off, sizeof(loff_t)))
1044 ret = -EFAULT;
1045
1046 return ret;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001047 }
Jens Axboe5274f052006-03-30 15:15:30 +02001048
Ingo Molnar3a326a22006-04-10 15:18:35 +02001049 pipe = out->f_dentry->d_inode->i_pipe;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001050 if (pipe) {
1051 if (off_out)
1052 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001053 if (off_in) {
1054 if (in->f_op->llseek == no_llseek)
1055 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001056 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001057 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001058 off = &offset;
1059 } else
1060 off = &in->f_pos;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001061
Jens Axboea4514eb2006-04-19 15:57:05 +02001062 ret = do_splice_to(in, off, pipe, len, flags);
1063
1064 if (off_in && copy_to_user(off_in, off, sizeof(loff_t)))
1065 ret = -EFAULT;
1066
1067 return ret;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001068 }
Jens Axboe5274f052006-03-30 15:15:30 +02001069
1070 return -EINVAL;
1071}
1072
Jens Axboe912d35f2006-04-26 10:59:21 +02001073/*
1074 * Map an iov into an array of pages and offset/length tupples. With the
1075 * partial_page structure, we can map several non-contiguous ranges into
1076 * our ones pages[] map instead of splitting that operation into pieces.
1077 * Could easily be exported as a generic helper for other users, in which
1078 * case one would probably want to add a 'max_nr_pages' parameter as well.
1079 */
1080static int get_iovec_page_array(const struct iovec __user *iov,
1081 unsigned int nr_vecs, struct page **pages,
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001082 struct partial_page *partial, int aligned)
Jens Axboe912d35f2006-04-26 10:59:21 +02001083{
1084 int buffers = 0, error = 0;
1085
1086 /*
1087 * It's ok to take the mmap_sem for reading, even
1088 * across a "get_user()".
1089 */
1090 down_read(&current->mm->mmap_sem);
1091
1092 while (nr_vecs) {
1093 unsigned long off, npages;
1094 void __user *base;
1095 size_t len;
1096 int i;
1097
1098 /*
1099 * Get user address base and length for this iovec.
1100 */
1101 error = get_user(base, &iov->iov_base);
1102 if (unlikely(error))
1103 break;
1104 error = get_user(len, &iov->iov_len);
1105 if (unlikely(error))
1106 break;
1107
1108 /*
1109 * Sanity check this iovec. 0 read succeeds.
1110 */
1111 if (unlikely(!len))
1112 break;
1113 error = -EFAULT;
1114 if (unlikely(!base))
1115 break;
1116
1117 /*
1118 * Get this base offset and number of pages, then map
1119 * in the user pages.
1120 */
1121 off = (unsigned long) base & ~PAGE_MASK;
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001122
1123 /*
1124 * If asked for alignment, the offset must be zero and the
1125 * length a multiple of the PAGE_SIZE.
1126 */
1127 error = -EINVAL;
1128 if (aligned && (off || len & ~PAGE_MASK))
1129 break;
1130
Jens Axboe912d35f2006-04-26 10:59:21 +02001131 npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1132 if (npages > PIPE_BUFFERS - buffers)
1133 npages = PIPE_BUFFERS - buffers;
1134
1135 error = get_user_pages(current, current->mm,
1136 (unsigned long) base, npages, 0, 0,
1137 &pages[buffers], NULL);
1138
1139 if (unlikely(error <= 0))
1140 break;
1141
1142 /*
1143 * Fill this contiguous range into the partial page map.
1144 */
1145 for (i = 0; i < error; i++) {
1146 const int plen = min_t(size_t, len, PAGE_SIZE) - off;
1147
1148 partial[buffers].offset = off;
1149 partial[buffers].len = plen;
1150
1151 off = 0;
1152 len -= plen;
1153 buffers++;
1154 }
1155
1156 /*
1157 * We didn't complete this iov, stop here since it probably
1158 * means we have to move some of this into a pipe to
1159 * be able to continue.
1160 */
1161 if (len)
1162 break;
1163
1164 /*
1165 * Don't continue if we mapped fewer pages than we asked for,
1166 * or if we mapped the max number of pages that we have
1167 * room for.
1168 */
1169 if (error < npages || buffers == PIPE_BUFFERS)
1170 break;
1171
1172 nr_vecs--;
1173 iov++;
1174 }
1175
1176 up_read(&current->mm->mmap_sem);
1177
1178 if (buffers)
1179 return buffers;
1180
1181 return error;
1182}
1183
1184/*
1185 * vmsplice splices a user address range into a pipe. It can be thought of
1186 * as splice-from-memory, where the regular splice is splice-from-file (or
1187 * to file). In both cases the output is a pipe, naturally.
1188 *
1189 * Note that vmsplice only supports splicing _from_ user memory to a pipe,
1190 * not the other way around. Splicing from user memory is a simple operation
1191 * that can be supported without any funky alignment restrictions or nasty
1192 * vm tricks. We simply map in the user memory and fill them into a pipe.
1193 * The reverse isn't quite as easy, though. There are two possible solutions
1194 * for that:
1195 *
1196 * - memcpy() the data internally, at which point we might as well just
1197 * do a regular read() on the buffer anyway.
1198 * - Lots of nasty vm tricks, that are neither fast nor flexible (it
1199 * has restriction limitations on both ends of the pipe).
1200 *
1201 * Alas, it isn't here.
1202 *
1203 */
1204static long do_vmsplice(struct file *file, const struct iovec __user *iov,
1205 unsigned long nr_segs, unsigned int flags)
1206{
1207 struct pipe_inode_info *pipe = file->f_dentry->d_inode->i_pipe;
1208 struct page *pages[PIPE_BUFFERS];
1209 struct partial_page partial[PIPE_BUFFERS];
1210 struct splice_pipe_desc spd = {
1211 .pages = pages,
1212 .partial = partial,
1213 .flags = flags,
1214 .ops = &user_page_pipe_buf_ops,
1215 };
1216
1217 if (unlikely(!pipe))
1218 return -EBADF;
1219 if (unlikely(nr_segs > UIO_MAXIOV))
1220 return -EINVAL;
1221 else if (unlikely(!nr_segs))
1222 return 0;
1223
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001224 spd.nr_pages = get_iovec_page_array(iov, nr_segs, pages, partial,
1225 flags & SPLICE_F_GIFT);
Jens Axboe912d35f2006-04-26 10:59:21 +02001226 if (spd.nr_pages <= 0)
1227 return spd.nr_pages;
1228
Jens Axboe00522fb2006-04-26 14:39:29 +02001229 return splice_to_pipe(pipe, &spd);
Jens Axboe912d35f2006-04-26 10:59:21 +02001230}
1231
1232asmlinkage long sys_vmsplice(int fd, const struct iovec __user *iov,
1233 unsigned long nr_segs, unsigned int flags)
1234{
1235 struct file *file;
1236 long error;
1237 int fput;
1238
1239 error = -EBADF;
1240 file = fget_light(fd, &fput);
1241 if (file) {
1242 if (file->f_mode & FMODE_WRITE)
1243 error = do_vmsplice(file, iov, nr_segs, flags);
1244
1245 fput_light(file, fput);
1246 }
1247
1248 return error;
1249}
1250
Ingo Molnar529565dc2006-04-10 15:18:58 +02001251asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
1252 int fd_out, loff_t __user *off_out,
1253 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001254{
1255 long error;
1256 struct file *in, *out;
1257 int fput_in, fput_out;
1258
1259 if (unlikely(!len))
1260 return 0;
1261
1262 error = -EBADF;
Ingo Molnar529565dc2006-04-10 15:18:58 +02001263 in = fget_light(fd_in, &fput_in);
Jens Axboe5274f052006-03-30 15:15:30 +02001264 if (in) {
1265 if (in->f_mode & FMODE_READ) {
Ingo Molnar529565dc2006-04-10 15:18:58 +02001266 out = fget_light(fd_out, &fput_out);
Jens Axboe5274f052006-03-30 15:15:30 +02001267 if (out) {
1268 if (out->f_mode & FMODE_WRITE)
Ingo Molnar529565dc2006-04-10 15:18:58 +02001269 error = do_splice(in, off_in,
1270 out, off_out,
1271 len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +02001272 fput_light(out, fput_out);
1273 }
1274 }
1275
1276 fput_light(in, fput_in);
1277 }
1278
1279 return error;
1280}
Jens Axboe70524492006-04-11 15:51:17 +02001281
1282/*
1283 * Link contents of ipipe to opipe.
1284 */
1285static int link_pipe(struct pipe_inode_info *ipipe,
1286 struct pipe_inode_info *opipe,
1287 size_t len, unsigned int flags)
1288{
1289 struct pipe_buffer *ibuf, *obuf;
Jens Axboe2a27250e2006-04-19 15:56:40 +02001290 int ret, do_wakeup, i, ipipe_first;
1291
1292 ret = do_wakeup = ipipe_first = 0;
Jens Axboe70524492006-04-11 15:51:17 +02001293
1294 /*
1295 * Potential ABBA deadlock, work around it by ordering lock
1296 * grabbing by inode address. Otherwise two different processes
1297 * could deadlock (one doing tee from A -> B, the other from B -> A).
1298 */
1299 if (ipipe->inode < opipe->inode) {
Jens Axboe2a27250e2006-04-19 15:56:40 +02001300 ipipe_first = 1;
Jens Axboe70524492006-04-11 15:51:17 +02001301 mutex_lock(&ipipe->inode->i_mutex);
1302 mutex_lock(&opipe->inode->i_mutex);
1303 } else {
1304 mutex_lock(&opipe->inode->i_mutex);
1305 mutex_lock(&ipipe->inode->i_mutex);
1306 }
1307
1308 for (i = 0;; i++) {
1309 if (!opipe->readers) {
1310 send_sig(SIGPIPE, current, 0);
1311 if (!ret)
1312 ret = -EPIPE;
1313 break;
1314 }
1315 if (ipipe->nrbufs - i) {
1316 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1317
1318 /*
1319 * If we have room, fill this buffer
1320 */
1321 if (opipe->nrbufs < PIPE_BUFFERS) {
1322 int nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1323
1324 /*
1325 * Get a reference to this pipe buffer,
1326 * so we can copy the contents over.
1327 */
1328 ibuf->ops->get(ipipe, ibuf);
1329
1330 obuf = opipe->bufs + nbuf;
1331 *obuf = *ibuf;
1332
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001333 /*
1334 * Don't inherit the gift flag, we need to
1335 * prevent multiple steals of this page.
1336 */
1337 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1338
Jens Axboe70524492006-04-11 15:51:17 +02001339 if (obuf->len > len)
1340 obuf->len = len;
1341
1342 opipe->nrbufs++;
1343 do_wakeup = 1;
1344 ret += obuf->len;
1345 len -= obuf->len;
1346
1347 if (!len)
1348 break;
1349 if (opipe->nrbufs < PIPE_BUFFERS)
1350 continue;
1351 }
1352
1353 /*
1354 * We have input available, but no output room.
Jens Axboe2a27250e2006-04-19 15:56:40 +02001355 * If we already copied data, return that. If we
1356 * need to drop the opipe lock, it must be ordered
1357 * last to avoid deadlocks.
Jens Axboe70524492006-04-11 15:51:17 +02001358 */
Jens Axboe2a27250e2006-04-19 15:56:40 +02001359 if ((flags & SPLICE_F_NONBLOCK) || !ipipe_first) {
Jens Axboe70524492006-04-11 15:51:17 +02001360 if (!ret)
1361 ret = -EAGAIN;
1362 break;
1363 }
1364 if (signal_pending(current)) {
1365 if (!ret)
1366 ret = -ERESTARTSYS;
1367 break;
1368 }
1369 if (do_wakeup) {
1370 smp_mb();
1371 if (waitqueue_active(&opipe->wait))
1372 wake_up_interruptible(&opipe->wait);
1373 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1374 do_wakeup = 0;
1375 }
1376
1377 opipe->waiting_writers++;
1378 pipe_wait(opipe);
1379 opipe->waiting_writers--;
1380 continue;
1381 }
1382
1383 /*
1384 * No input buffers, do the usual checks for available
1385 * writers and blocking and wait if necessary
1386 */
1387 if (!ipipe->writers)
1388 break;
1389 if (!ipipe->waiting_writers) {
1390 if (ret)
1391 break;
1392 }
Jens Axboe2a27250e2006-04-19 15:56:40 +02001393 /*
1394 * pipe_wait() drops the ipipe mutex. To avoid deadlocks
1395 * with another process, we can only safely do that if
1396 * the ipipe lock is ordered last.
1397 */
1398 if ((flags & SPLICE_F_NONBLOCK) || ipipe_first) {
Jens Axboe70524492006-04-11 15:51:17 +02001399 if (!ret)
1400 ret = -EAGAIN;
1401 break;
1402 }
1403 if (signal_pending(current)) {
1404 if (!ret)
1405 ret = -ERESTARTSYS;
1406 break;
1407 }
1408
1409 if (waitqueue_active(&ipipe->wait))
1410 wake_up_interruptible_sync(&ipipe->wait);
1411 kill_fasync(&ipipe->fasync_writers, SIGIO, POLL_OUT);
1412
1413 pipe_wait(ipipe);
1414 }
1415
1416 mutex_unlock(&ipipe->inode->i_mutex);
1417 mutex_unlock(&opipe->inode->i_mutex);
1418
1419 if (do_wakeup) {
1420 smp_mb();
1421 if (waitqueue_active(&opipe->wait))
1422 wake_up_interruptible(&opipe->wait);
1423 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1424 }
1425
1426 return ret;
1427}
1428
1429/*
1430 * This is a tee(1) implementation that works on pipes. It doesn't copy
1431 * any data, it simply references the 'in' pages on the 'out' pipe.
1432 * The 'flags' used are the SPLICE_F_* variants, currently the only
1433 * applicable one is SPLICE_F_NONBLOCK.
1434 */
1435static long do_tee(struct file *in, struct file *out, size_t len,
1436 unsigned int flags)
1437{
1438 struct pipe_inode_info *ipipe = in->f_dentry->d_inode->i_pipe;
1439 struct pipe_inode_info *opipe = out->f_dentry->d_inode->i_pipe;
1440
1441 /*
1442 * Link ipipe to the two output pipes, consuming as we go along.
1443 */
1444 if (ipipe && opipe)
1445 return link_pipe(ipipe, opipe, len, flags);
1446
1447 return -EINVAL;
1448}
1449
1450asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1451{
1452 struct file *in;
1453 int error, fput_in;
1454
1455 if (unlikely(!len))
1456 return 0;
1457
1458 error = -EBADF;
1459 in = fget_light(fdin, &fput_in);
1460 if (in) {
1461 if (in->f_mode & FMODE_READ) {
1462 int fput_out;
1463 struct file *out = fget_light(fdout, &fput_out);
1464
1465 if (out) {
1466 if (out->f_mode & FMODE_WRITE)
1467 error = do_tee(in, out, len, flags);
1468 fput_light(out, fput_out);
1469 }
1470 }
1471 fput_light(in, fput_in);
1472 }
1473
1474 return error;
1475}