blob: 13846f723d729995bea420cd7e07d30f67494470 [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 Axboe0fe23472006-09-04 15:41:16 +020015 * Copyright (C) 2005-2006 Jens Axboe <axboe@kernel.dk>
Jens Axboec2058e02006-04-11 13:56:34 +020016 * 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 */
Eric Dumazetd4c3cca2006-12-13 00:34:04 -080045 const struct pipe_buf_operations *ops;/* ops associated with output pipe */
Jens Axboe912d35f2006-04-26 10:59:21 +020046};
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 Axboe76ad4d12006-05-03 10:41:33 +020054static int page_cache_pipe_buf_steal(struct pipe_inode_info *pipe,
Jens Axboe5abc97a2006-03-30 15:16:46 +020055 struct pipe_buffer *buf)
56{
57 struct page *page = buf->page;
Jens Axboe9e94cd42006-06-20 15:01:12 +020058 struct address_space *mapping;
Jens Axboe5abc97a2006-03-30 15:16:46 +020059
Jens Axboe9e0267c2006-04-19 15:57:31 +020060 lock_page(page);
61
Jens Axboe9e94cd42006-06-20 15:01:12 +020062 mapping = page_mapping(page);
63 if (mapping) {
64 WARN_ON(!PageUptodate(page));
Jens Axboe5abc97a2006-03-30 15:16:46 +020065
Jens Axboe9e94cd42006-06-20 15:01:12 +020066 /*
67 * At least for ext2 with nobh option, we need to wait on
68 * writeback completing on this page, since we'll remove it
69 * from the pagecache. Otherwise truncate wont wait on the
70 * page, allowing the disk blocks to be reused by someone else
71 * before we actually wrote our data to them. fs corruption
72 * ensues.
73 */
74 wait_on_page_writeback(page);
Jens Axboead8d6f02006-04-02 23:10:32 +020075
Jens Axboe9e94cd42006-06-20 15:01:12 +020076 if (PagePrivate(page))
Nick Piggin2ae88142006-10-28 10:38:23 -070077 try_to_release_page(page, GFP_KERNEL);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020078
Jens Axboe9e94cd42006-06-20 15:01:12 +020079 /*
80 * If we succeeded in removing the mapping, set LRU flag
81 * and return good.
82 */
83 if (remove_mapping(mapping, page)) {
84 buf->flags |= PIPE_BUF_FLAG_LRU;
85 return 0;
86 }
Jens Axboe9e0267c2006-04-19 15:57:31 +020087 }
Jens Axboe5abc97a2006-03-30 15:16:46 +020088
Jens Axboe9e94cd42006-06-20 15:01:12 +020089 /*
90 * Raced with truncate or failed to remove page from current
91 * address space, unlock and return failure.
92 */
93 unlock_page(page);
94 return 1;
Jens Axboe5abc97a2006-03-30 15:16:46 +020095}
96
Jens Axboe76ad4d12006-05-03 10:41:33 +020097static void page_cache_pipe_buf_release(struct pipe_inode_info *pipe,
Jens Axboe5274f052006-03-30 15:15:30 +020098 struct pipe_buffer *buf)
99{
100 page_cache_release(buf->page);
Jens Axboe14328732006-05-03 10:35:26 +0200101 buf->flags &= ~PIPE_BUF_FLAG_LRU;
Jens Axboe5274f052006-03-30 15:15:30 +0200102}
103
Jens Axboe76ad4d12006-05-03 10:41:33 +0200104static int page_cache_pipe_buf_pin(struct pipe_inode_info *pipe,
Jens Axboef84d7512006-05-01 19:59:03 +0200105 struct pipe_buffer *buf)
Jens Axboe5274f052006-03-30 15:15:30 +0200106{
107 struct page *page = buf->page;
Jens Axboe49d0b212006-04-10 09:04:41 +0200108 int err;
Jens Axboe5274f052006-03-30 15:15:30 +0200109
110 if (!PageUptodate(page)) {
Jens Axboe49d0b212006-04-10 09:04:41 +0200111 lock_page(page);
112
113 /*
114 * Page got truncated/unhashed. This will cause a 0-byte
Ingo Molnar73d62d82006-04-11 13:57:21 +0200115 * splice, if this is the first page.
Jens Axboe49d0b212006-04-10 09:04:41 +0200116 */
117 if (!page->mapping) {
118 err = -ENODATA;
119 goto error;
120 }
121
122 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200123 * Uh oh, read-error from disk.
Jens Axboe49d0b212006-04-10 09:04:41 +0200124 */
125 if (!PageUptodate(page)) {
126 err = -EIO;
127 goto error;
128 }
129
130 /*
Jens Axboef84d7512006-05-01 19:59:03 +0200131 * Page is ok afterall, we are done.
Jens Axboe49d0b212006-04-10 09:04:41 +0200132 */
Jens Axboe5274f052006-03-30 15:15:30 +0200133 unlock_page(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200134 }
135
Jens Axboef84d7512006-05-01 19:59:03 +0200136 return 0;
Jens Axboe49d0b212006-04-10 09:04:41 +0200137error:
138 unlock_page(page);
Jens Axboef84d7512006-05-01 19:59:03 +0200139 return err;
Jens Axboe70524492006-04-11 15:51:17 +0200140}
141
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800142static const struct pipe_buf_operations page_cache_pipe_buf_ops = {
Jens Axboe5274f052006-03-30 15:15:30 +0200143 .can_merge = 0,
Jens Axboef84d7512006-05-01 19:59:03 +0200144 .map = generic_pipe_buf_map,
145 .unmap = generic_pipe_buf_unmap,
146 .pin = page_cache_pipe_buf_pin,
Jens Axboe5274f052006-03-30 15:15:30 +0200147 .release = page_cache_pipe_buf_release,
Jens Axboe5abc97a2006-03-30 15:16:46 +0200148 .steal = page_cache_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200149 .get = generic_pipe_buf_get,
Jens Axboe5274f052006-03-30 15:15:30 +0200150};
151
Jens Axboe912d35f2006-04-26 10:59:21 +0200152static int user_page_pipe_buf_steal(struct pipe_inode_info *pipe,
153 struct pipe_buffer *buf)
154{
Jens Axboe7afa6fd2006-05-01 20:02:33 +0200155 if (!(buf->flags & PIPE_BUF_FLAG_GIFT))
156 return 1;
157
Jens Axboe14328732006-05-03 10:35:26 +0200158 buf->flags |= PIPE_BUF_FLAG_LRU;
Jens Axboe330ab712006-05-02 15:29:57 +0200159 return generic_pipe_buf_steal(pipe, buf);
Jens Axboe912d35f2006-04-26 10:59:21 +0200160}
161
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800162static const struct pipe_buf_operations user_page_pipe_buf_ops = {
Jens Axboe912d35f2006-04-26 10:59:21 +0200163 .can_merge = 0,
Jens Axboef84d7512006-05-01 19:59:03 +0200164 .map = generic_pipe_buf_map,
165 .unmap = generic_pipe_buf_unmap,
166 .pin = generic_pipe_buf_pin,
Jens Axboe912d35f2006-04-26 10:59:21 +0200167 .release = page_cache_pipe_buf_release,
168 .steal = user_page_pipe_buf_steal,
Jens Axboef84d7512006-05-01 19:59:03 +0200169 .get = generic_pipe_buf_get,
Jens Axboe912d35f2006-04-26 10:59:21 +0200170};
171
Jens Axboe83f91352006-04-02 23:05:09 +0200172/*
173 * Pipe output worker. This sets up our pipe format with the page cache
174 * pipe buffer operations. Otherwise very similar to the regular pipe_writev().
175 */
Jens Axboe00522fb2006-04-26 14:39:29 +0200176static ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
177 struct splice_pipe_desc *spd)
Jens Axboe5274f052006-03-30 15:15:30 +0200178{
Jens Axboe00de00b2007-06-15 13:14:22 +0200179 unsigned int spd_pages = spd->nr_pages;
Jens Axboe912d35f2006-04-26 10:59:21 +0200180 int ret, do_wakeup, page_nr;
Jens Axboe5274f052006-03-30 15:15:30 +0200181
182 ret = 0;
183 do_wakeup = 0;
Jens Axboe912d35f2006-04-26 10:59:21 +0200184 page_nr = 0;
Jens Axboe5274f052006-03-30 15:15:30 +0200185
Ingo Molnar3a326a22006-04-10 15:18:35 +0200186 if (pipe->inode)
187 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200188
Jens Axboe5274f052006-03-30 15:15:30 +0200189 for (;;) {
Ingo Molnar3a326a22006-04-10 15:18:35 +0200190 if (!pipe->readers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200191 send_sig(SIGPIPE, current, 0);
192 if (!ret)
193 ret = -EPIPE;
194 break;
195 }
196
Jens Axboe6f767b02006-04-11 13:53:56 +0200197 if (pipe->nrbufs < PIPE_BUFFERS) {
198 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200199 struct pipe_buffer *buf = pipe->bufs + newbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200200
Jens Axboe912d35f2006-04-26 10:59:21 +0200201 buf->page = spd->pages[page_nr];
202 buf->offset = spd->partial[page_nr].offset;
203 buf->len = spd->partial[page_nr].len;
204 buf->ops = spd->ops;
Jens Axboe7afa6fd2006-05-01 20:02:33 +0200205 if (spd->flags & SPLICE_F_GIFT)
206 buf->flags |= PIPE_BUF_FLAG_GIFT;
207
Jens Axboe6f767b02006-04-11 13:53:56 +0200208 pipe->nrbufs++;
Jens Axboe912d35f2006-04-26 10:59:21 +0200209 page_nr++;
210 ret += buf->len;
211
Jens Axboe6f767b02006-04-11 13:53:56 +0200212 if (pipe->inode)
213 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200214
Jens Axboe912d35f2006-04-26 10:59:21 +0200215 if (!--spd->nr_pages)
Jens Axboe5274f052006-03-30 15:15:30 +0200216 break;
Jens Axboe6f767b02006-04-11 13:53:56 +0200217 if (pipe->nrbufs < PIPE_BUFFERS)
Jens Axboe5274f052006-03-30 15:15:30 +0200218 continue;
219
220 break;
221 }
222
Jens Axboe912d35f2006-04-26 10:59:21 +0200223 if (spd->flags & SPLICE_F_NONBLOCK) {
Linus Torvalds29e35092006-04-02 12:46:35 -0700224 if (!ret)
225 ret = -EAGAIN;
226 break;
227 }
228
Jens Axboe5274f052006-03-30 15:15:30 +0200229 if (signal_pending(current)) {
230 if (!ret)
231 ret = -ERESTARTSYS;
232 break;
233 }
234
235 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200236 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200237 if (waitqueue_active(&pipe->wait))
238 wake_up_interruptible_sync(&pipe->wait);
239 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200240 do_wakeup = 0;
241 }
242
Ingo Molnar3a326a22006-04-10 15:18:35 +0200243 pipe->waiting_writers++;
244 pipe_wait(pipe);
245 pipe->waiting_writers--;
Jens Axboe5274f052006-03-30 15:15:30 +0200246 }
247
Jens Axboe02676e52007-06-15 13:16:13 +0200248 if (pipe->inode) {
Ingo Molnar3a326a22006-04-10 15:18:35 +0200249 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200250
Jens Axboe02676e52007-06-15 13:16:13 +0200251 if (do_wakeup) {
252 smp_mb();
253 if (waitqueue_active(&pipe->wait))
254 wake_up_interruptible(&pipe->wait);
255 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
256 }
Jens Axboe5274f052006-03-30 15:15:30 +0200257 }
258
Jens Axboe00de00b2007-06-15 13:14:22 +0200259 while (page_nr < spd_pages)
Jens Axboe912d35f2006-04-26 10:59:21 +0200260 page_cache_release(spd->pages[page_nr++]);
Jens Axboe5274f052006-03-30 15:15:30 +0200261
262 return ret;
263}
264
Ingo Molnar3a326a22006-04-10 15:18:35 +0200265static int
Jens Axboecbb7e572006-04-11 14:57:50 +0200266__generic_file_splice_read(struct file *in, loff_t *ppos,
267 struct pipe_inode_info *pipe, size_t len,
268 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200269{
270 struct address_space *mapping = in->f_mapping;
Jens Axboe912d35f2006-04-26 10:59:21 +0200271 unsigned int loff, nr_pages;
Jens Axboe16c523d2006-04-10 09:03:58 +0200272 struct page *pages[PIPE_BUFFERS];
Jens Axboe912d35f2006-04-26 10:59:21 +0200273 struct partial_page partial[PIPE_BUFFERS];
Jens Axboe5274f052006-03-30 15:15:30 +0200274 struct page *page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200275 pgoff_t index, end_index;
276 loff_t isize;
Jens Axboeeb207962006-04-27 11:05:22 +0200277 int error, page_nr;
Jens Axboe912d35f2006-04-26 10:59:21 +0200278 struct splice_pipe_desc spd = {
279 .pages = pages,
280 .partial = partial,
281 .flags = flags,
282 .ops = &page_cache_pipe_buf_ops,
283 };
Jens Axboe5274f052006-03-30 15:15:30 +0200284
Jens Axboecbb7e572006-04-11 14:57:50 +0200285 index = *ppos >> PAGE_CACHE_SHIFT;
Jens Axboe912d35f2006-04-26 10:59:21 +0200286 loff = *ppos & ~PAGE_CACHE_MASK;
287 nr_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Jens Axboe5274f052006-03-30 15:15:30 +0200288
289 if (nr_pages > PIPE_BUFFERS)
290 nr_pages = PIPE_BUFFERS;
291
292 /*
Jens Axboe86aa5ac2007-05-08 08:46:19 +0200293 * Don't try to 2nd guess the read-ahead logic, call into
294 * page_cache_readahead() like the page cache reads would do.
Jens Axboe5274f052006-03-30 15:15:30 +0200295 */
Jens Axboe86aa5ac2007-05-08 08:46:19 +0200296 page_cache_readahead(mapping, &in->f_ra, in, index, nr_pages);
Jens Axboe5274f052006-03-30 15:15:30 +0200297
298 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200299 * Now fill in the holes:
Jens Axboe5274f052006-03-30 15:15:30 +0200300 */
Jens Axboe7480a902006-04-11 13:52:47 +0200301 error = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200302
303 /*
304 * Lookup the (hopefully) full range of pages we need.
305 */
306 spd.nr_pages = find_get_pages_contig(mapping, index, nr_pages, pages);
307
308 /*
309 * If find_get_pages_contig() returned fewer pages than we needed,
310 * allocate the rest.
311 */
312 index += spd.nr_pages;
313 while (spd.nr_pages < nr_pages) {
314 /*
315 * Page could be there, find_get_pages_contig() breaks on
316 * the first hole.
317 */
318 page = find_get_page(mapping, index);
319 if (!page) {
320 /*
Jens Axboee27dedd2006-05-01 19:59:54 +0200321 * Make sure the read-ahead engine is notified
322 * about this failure.
323 */
324 handle_ra_miss(mapping, &in->f_ra, index);
325
326 /*
Jens Axboeeb207962006-04-27 11:05:22 +0200327 * page didn't exist, allocate one.
328 */
329 page = page_cache_alloc_cold(mapping);
330 if (!page)
331 break;
332
333 error = add_to_page_cache_lru(page, mapping, index,
Nick Piggin2ae88142006-10-28 10:38:23 -0700334 GFP_KERNEL);
Jens Axboeeb207962006-04-27 11:05:22 +0200335 if (unlikely(error)) {
336 page_cache_release(page);
Jens Axboea0548872006-05-03 10:58:22 +0200337 if (error == -EEXIST)
338 continue;
Jens Axboeeb207962006-04-27 11:05:22 +0200339 break;
340 }
341 /*
342 * add_to_page_cache() locks the page, unlock it
343 * to avoid convoluting the logic below even more.
344 */
345 unlock_page(page);
346 }
347
348 pages[spd.nr_pages++] = page;
349 index++;
350 }
351
352 /*
353 * Now loop over the map and see if we need to start IO on any
354 * pages, fill in the partial map, etc.
355 */
356 index = *ppos >> PAGE_CACHE_SHIFT;
357 nr_pages = spd.nr_pages;
358 spd.nr_pages = 0;
359 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
Jens Axboe82aa5d62006-04-20 13:05:48 +0200360 unsigned int this_len;
361
362 if (!len)
363 break;
364
365 /*
366 * this_len is the max we'll use from this page
367 */
Andrew Mortonba5f5d92006-04-25 15:33:34 +0200368 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
Jens Axboeeb207962006-04-27 11:05:22 +0200369 page = pages[page_nr];
Jens Axboe7480a902006-04-11 13:52:47 +0200370
371 /*
372 * If the page isn't uptodate, we may need to start io on it
373 */
374 if (!PageUptodate(page)) {
Jens Axboec4f895c2006-04-19 15:56:12 +0200375 /*
376 * If in nonblock mode then dont block on waiting
377 * for an in-flight io page
378 */
Fengguang Wu9ae9d682007-05-08 08:44:36 +0200379 if (flags & SPLICE_F_NONBLOCK) {
380 if (TestSetPageLocked(page))
381 break;
382 } else
383 lock_page(page);
Jens Axboe7480a902006-04-11 13:52:47 +0200384
385 /*
386 * page was truncated, stop here. if this isn't the
387 * first page, we'll just complete what we already
388 * added
389 */
390 if (!page->mapping) {
391 unlock_page(page);
Jens Axboe7480a902006-04-11 13:52:47 +0200392 break;
393 }
394 /*
395 * page was already under io and is now done, great
396 */
397 if (PageUptodate(page)) {
398 unlock_page(page);
399 goto fill_it;
400 }
401
Jens Axboe7480a902006-04-11 13:52:47 +0200402 /*
403 * need to read in the page
404 */
405 error = mapping->a_ops->readpage(in, page);
Jens Axboe7480a902006-04-11 13:52:47 +0200406 if (unlikely(error)) {
Jens Axboeeb207962006-04-27 11:05:22 +0200407 /*
408 * We really should re-lookup the page here,
409 * but it complicates things a lot. Instead
410 * lets just do what we already stored, and
411 * we'll get it the next time we are called.
412 */
Jens Axboe7480a902006-04-11 13:52:47 +0200413 if (error == AOP_TRUNCATED_PAGE)
Jens Axboeeb207962006-04-27 11:05:22 +0200414 error = 0;
415
Jens Axboe7480a902006-04-11 13:52:47 +0200416 break;
417 }
Jens Axboe620a3242007-06-07 09:39:42 +0200418 }
419fill_it:
420 /*
421 * i_size must be checked after PageUptodate.
422 */
423 isize = i_size_read(mapping->host);
424 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
425 if (unlikely(!isize || index > end_index))
426 break;
427
428 /*
429 * if this is the last page, see if we need to shrink
430 * the length and stop
431 */
432 if (end_index == index) {
433 unsigned int plen;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200434
435 /*
Jens Axboe620a3242007-06-07 09:39:42 +0200436 * max good bytes in this page
Jens Axboe91ad66e2006-04-19 15:55:10 +0200437 */
Jens Axboe620a3242007-06-07 09:39:42 +0200438 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
439 if (plen <= loff)
Jens Axboe91ad66e2006-04-19 15:55:10 +0200440 break;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200441
442 /*
Jens Axboe620a3242007-06-07 09:39:42 +0200443 * force quit after adding this page
Jens Axboe91ad66e2006-04-19 15:55:10 +0200444 */
Jens Axboe620a3242007-06-07 09:39:42 +0200445 this_len = min(this_len, plen - loff);
446 len = this_len;
Jens Axboe7480a902006-04-11 13:52:47 +0200447 }
Jens Axboe620a3242007-06-07 09:39:42 +0200448
Jens Axboeeb207962006-04-27 11:05:22 +0200449 partial[page_nr].offset = loff;
450 partial[page_nr].len = this_len;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200451 len -= this_len;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200452 loff = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200453 spd.nr_pages++;
454 index++;
Jens Axboe5274f052006-03-30 15:15:30 +0200455 }
456
Jens Axboeeb207962006-04-27 11:05:22 +0200457 /*
Hugh Dickins475ecad2007-06-07 09:36:00 +0200458 * Release any pages at the end, if we quit early. 'page_nr' is how far
Jens Axboeeb207962006-04-27 11:05:22 +0200459 * we got, 'nr_pages' is how many pages are in the map.
460 */
461 while (page_nr < nr_pages)
462 page_cache_release(pages[page_nr++]);
463
Jens Axboe912d35f2006-04-26 10:59:21 +0200464 if (spd.nr_pages)
Jens Axboe00522fb2006-04-26 14:39:29 +0200465 return splice_to_pipe(pipe, &spd);
Jens Axboe5274f052006-03-30 15:15:30 +0200466
Jens Axboe7480a902006-04-11 13:52:47 +0200467 return error;
Jens Axboe5274f052006-03-30 15:15:30 +0200468}
469
Jens Axboe83f91352006-04-02 23:05:09 +0200470/**
471 * generic_file_splice_read - splice data from file to a pipe
472 * @in: file to splice from
473 * @pipe: pipe to splice to
474 * @len: number of bytes to splice
475 * @flags: splice modifier flags
476 *
477 * Will read pages from given file and fill them into a pipe.
Jens Axboe83f91352006-04-02 23:05:09 +0200478 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200479ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
480 struct pipe_inode_info *pipe, size_t len,
481 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200482{
483 ssize_t spliced;
484 int ret;
Jens Axboed366d3982007-06-01 14:54:11 +0200485 loff_t isize, left;
486
487 isize = i_size_read(in->f_mapping->host);
488 if (unlikely(*ppos >= isize))
489 return 0;
490
491 left = isize - *ppos;
492 if (unlikely(left < len))
493 len = left;
Jens Axboe5274f052006-03-30 15:15:30 +0200494
495 ret = 0;
496 spliced = 0;
497 while (len) {
Jens Axboecbb7e572006-04-11 14:57:50 +0200498 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200499
Jens Axboec4f895c2006-04-19 15:56:12 +0200500 if (ret < 0)
Jens Axboe5274f052006-03-30 15:15:30 +0200501 break;
Jens Axboec4f895c2006-04-19 15:56:12 +0200502 else if (!ret) {
503 if (spliced)
504 break;
505 if (flags & SPLICE_F_NONBLOCK) {
506 ret = -EAGAIN;
507 break;
508 }
509 }
Jens Axboe5274f052006-03-30 15:15:30 +0200510
Jens Axboecbb7e572006-04-11 14:57:50 +0200511 *ppos += ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200512 len -= ret;
513 spliced += ret;
514 }
515
516 if (spliced)
517 return spliced;
518
519 return ret;
520}
521
Jens Axboe059a8f32006-04-02 23:06:05 +0200522EXPORT_SYMBOL(generic_file_splice_read);
523
Jens Axboe5274f052006-03-30 15:15:30 +0200524/*
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200525 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
Jens Axboe016b6612006-04-25 15:42:00 +0200526 * using sendpage(). Return the number of bytes sent.
Jens Axboe5274f052006-03-30 15:15:30 +0200527 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200528static int pipe_to_sendpage(struct pipe_inode_info *pipe,
Jens Axboe5274f052006-03-30 15:15:30 +0200529 struct pipe_buffer *buf, struct splice_desc *sd)
530{
Jens Axboe6a14b902007-06-14 13:08:55 +0200531 struct file *file = sd->u.file;
Jens Axboe5274f052006-03-30 15:15:30 +0200532 loff_t pos = sd->pos;
Jens Axboef84d7512006-05-01 19:59:03 +0200533 int ret, more;
Jens Axboe5274f052006-03-30 15:15:30 +0200534
Jens Axboe76ad4d12006-05-03 10:41:33 +0200535 ret = buf->ops->pin(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200536 if (!ret) {
537 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200538
Jens Axboef84d7512006-05-01 19:59:03 +0200539 ret = file->f_op->sendpage(file, buf->page, buf->offset,
540 sd->len, &pos, more);
541 }
Jens Axboe5274f052006-03-30 15:15:30 +0200542
Jens Axboe016b6612006-04-25 15:42:00 +0200543 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200544}
545
546/*
547 * This is a little more tricky than the file -> pipe splicing. There are
548 * basically three cases:
549 *
550 * - Destination page already exists in the address space and there
551 * are users of it. For that case we have no other option that
552 * copying the data. Tough luck.
553 * - Destination page already exists in the address space, but there
554 * are no users of it. Make sure it's uptodate, then drop it. Fall
555 * through to last case.
556 * - Destination page does not exist, we can add the pipe page to
557 * the page cache and avoid the copy.
558 *
Jens Axboe83f91352006-04-02 23:05:09 +0200559 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
560 * sd->flags), we attempt to migrate pages from the pipe to the output
561 * file address space page cache. This is possible if no one else has
562 * the pipe page referenced outside of the pipe and page cache. If
563 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
564 * a new page in the output file page cache and fill/dirty that.
Jens Axboe5274f052006-03-30 15:15:30 +0200565 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200566static int pipe_to_file(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
Jens Axboe5274f052006-03-30 15:15:30 +0200567 struct splice_desc *sd)
568{
Jens Axboe6a14b902007-06-14 13:08:55 +0200569 struct file *file = sd->u.file;
Jens Axboe5274f052006-03-30 15:15:30 +0200570 struct address_space *mapping = file->f_mapping;
Jens Axboe016b6612006-04-25 15:42:00 +0200571 unsigned int offset, this_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200572 struct page *page;
Jens Axboe5274f052006-03-30 15:15:30 +0200573 pgoff_t index;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200574 int ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200575
576 /*
Jens Axboe49d0b212006-04-10 09:04:41 +0200577 * make sure the data in this buffer is uptodate
Jens Axboe5274f052006-03-30 15:15:30 +0200578 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200579 ret = buf->ops->pin(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200580 if (unlikely(ret))
581 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200582
583 index = sd->pos >> PAGE_CACHE_SHIFT;
584 offset = sd->pos & ~PAGE_CACHE_MASK;
585
Jens Axboe016b6612006-04-25 15:42:00 +0200586 this_len = sd->len;
587 if (this_len + offset > PAGE_CACHE_SIZE)
588 this_len = PAGE_CACHE_SIZE - offset;
589
Jens Axboe5abc97a2006-03-30 15:16:46 +0200590find_page:
Nick Piggin485ddb42007-03-27 08:55:08 +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_ret;
Jens Axboe9e0267c2006-04-19 15:57:31 +0200597
Nick Piggin485ddb42007-03-27 08:55:08 +0200598 /*
599 * This will also lock the page
600 */
601 ret = add_to_page_cache_lru(page, mapping, index,
602 GFP_KERNEL);
603 if (unlikely(ret))
604 goto out;
605 }
606
Jens Axboe016b6612006-04-25 15:42:00 +0200607 ret = mapping->a_ops->prepare_write(file, page, offset, offset+this_len);
Jens Axboebfc4ee32006-05-03 10:35:10 +0200608 if (unlikely(ret)) {
609 loff_t isize = i_size_read(mapping->host);
610
611 if (ret != AOP_TRUNCATED_PAGE)
612 unlock_page(page);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200613 page_cache_release(page);
Jens Axboebfc4ee32006-05-03 10:35:10 +0200614 if (ret == AOP_TRUNCATED_PAGE)
615 goto find_page;
616
617 /*
618 * prepare_write() may have instantiated a few blocks
619 * outside i_size. Trim these off again.
620 */
621 if (sd->pos + this_len > isize)
622 vmtruncate(mapping->host, isize);
623
Jens Axboee6e80f22006-10-11 10:03:09 +0200624 goto out_ret;
Jens Axboebfc4ee32006-05-03 10:35:10 +0200625 }
Jens Axboe5274f052006-03-30 15:15:30 +0200626
Jens Axboe0568b402006-05-01 19:50:48 +0200627 if (buf->page != page) {
Jens Axboef84d7512006-05-01 19:59:03 +0200628 /*
629 * Careful, ->map() uses KM_USER0!
630 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200631 char *src = buf->ops->map(pipe, buf, 1);
Jens Axboef84d7512006-05-01 19:59:03 +0200632 char *dst = kmap_atomic(page, KM_USER1);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200633
Jens Axboe016b6612006-04-25 15:42:00 +0200634 memcpy(dst + offset, src + buf->offset, this_len);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200635 flush_dcache_page(page);
Jens Axboef84d7512006-05-01 19:59:03 +0200636 kunmap_atomic(dst, KM_USER1);
Jens Axboe76ad4d12006-05-03 10:41:33 +0200637 buf->ops->unmap(pipe, buf, src);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200638 }
Jens Axboe5274f052006-03-30 15:15:30 +0200639
Jens Axboe016b6612006-04-25 15:42:00 +0200640 ret = mapping->a_ops->commit_write(file, page, offset, offset+this_len);
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200641 if (ret) {
642 if (ret == AOP_TRUNCATED_PAGE) {
643 page_cache_release(page);
644 goto find_page;
645 }
646 if (ret < 0)
647 goto out;
Jens Axboe0568b402006-05-01 19:50:48 +0200648 /*
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200649 * Partial write has happened, so 'ret' already initialized by
650 * number of bytes written, Where is nothing we have to do here.
Jens Axboe0568b402006-05-01 19:50:48 +0200651 */
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200652 } else
Jens Axboe0568b402006-05-01 19:50:48 +0200653 ret = this_len;
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200654 /*
655 * Return the number of bytes written and mark page as
656 * accessed, we are now done!
657 */
658 mark_page_accessed(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200659out:
Jens Axboe0568b402006-05-01 19:50:48 +0200660 page_cache_release(page);
Jens Axboe9e0267c2006-04-19 15:57:31 +0200661 unlock_page(page);
Jens Axboee6e80f22006-10-11 10:03:09 +0200662out_ret:
Jens Axboe5274f052006-03-30 15:15:30 +0200663 return ret;
664}
665
Jens Axboe83f91352006-04-02 23:05:09 +0200666/*
667 * Pipe input worker. Most of this logic works like a regular pipe, the
668 * key here is the 'actor' worker passed in that actually moves the data
669 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
670 */
Jens Axboec66ab6f2007-06-12 21:17:17 +0200671ssize_t __splice_from_pipe(struct pipe_inode_info *pipe, struct splice_desc *sd,
672 splice_actor *actor)
Jens Axboe5274f052006-03-30 15:15:30 +0200673{
Jens Axboe5274f052006-03-30 15:15:30 +0200674 int ret, do_wakeup, err;
Jens Axboe5274f052006-03-30 15:15:30 +0200675
676 ret = 0;
677 do_wakeup = 0;
678
Jens Axboe5274f052006-03-30 15:15:30 +0200679 for (;;) {
Jens Axboe6f767b02006-04-11 13:53:56 +0200680 if (pipe->nrbufs) {
681 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800682 const struct pipe_buf_operations *ops = buf->ops;
Jens Axboe5274f052006-03-30 15:15:30 +0200683
Jens Axboec66ab6f2007-06-12 21:17:17 +0200684 sd->len = buf->len;
685 if (sd->len > sd->total_len)
686 sd->len = sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200687
Jens Axboec66ab6f2007-06-12 21:17:17 +0200688 err = actor(pipe, buf, sd);
Jens Axboe016b6612006-04-25 15:42:00 +0200689 if (err <= 0) {
Jens Axboe5274f052006-03-30 15:15:30 +0200690 if (!ret && err != -ENODATA)
691 ret = err;
692
693 break;
694 }
695
Jens Axboe016b6612006-04-25 15:42:00 +0200696 ret += err;
697 buf->offset += err;
698 buf->len -= err;
699
Jens Axboec66ab6f2007-06-12 21:17:17 +0200700 sd->len -= err;
701 sd->pos += err;
702 sd->total_len -= err;
703 if (sd->len)
Jens Axboe016b6612006-04-25 15:42:00 +0200704 continue;
Ingo Molnar73d62d82006-04-11 13:57:21 +0200705
Jens Axboe5274f052006-03-30 15:15:30 +0200706 if (!buf->len) {
707 buf->ops = NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200708 ops->release(pipe, buf);
Jens Axboe6f767b02006-04-11 13:53:56 +0200709 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
710 pipe->nrbufs--;
711 if (pipe->inode)
712 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200713 }
714
Jens Axboec66ab6f2007-06-12 21:17:17 +0200715 if (!sd->total_len)
Jens Axboe5274f052006-03-30 15:15:30 +0200716 break;
717 }
718
Jens Axboe6f767b02006-04-11 13:53:56 +0200719 if (pipe->nrbufs)
Jens Axboe5274f052006-03-30 15:15:30 +0200720 continue;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200721 if (!pipe->writers)
Jens Axboe5274f052006-03-30 15:15:30 +0200722 break;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200723 if (!pipe->waiting_writers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200724 if (ret)
725 break;
726 }
727
Jens Axboec66ab6f2007-06-12 21:17:17 +0200728 if (sd->flags & SPLICE_F_NONBLOCK) {
Linus Torvalds29e35092006-04-02 12:46:35 -0700729 if (!ret)
730 ret = -EAGAIN;
731 break;
732 }
733
Jens Axboe5274f052006-03-30 15:15:30 +0200734 if (signal_pending(current)) {
735 if (!ret)
736 ret = -ERESTARTSYS;
737 break;
738 }
739
740 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200741 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200742 if (waitqueue_active(&pipe->wait))
743 wake_up_interruptible_sync(&pipe->wait);
744 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200745 do_wakeup = 0;
746 }
747
Ingo Molnar3a326a22006-04-10 15:18:35 +0200748 pipe_wait(pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200749 }
750
Jens Axboe5274f052006-03-30 15:15:30 +0200751 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200752 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200753 if (waitqueue_active(&pipe->wait))
754 wake_up_interruptible(&pipe->wait);
755 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200756 }
757
Jens Axboe5274f052006-03-30 15:15:30 +0200758 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200759}
Mark Fasheh40bee442007-03-21 13:11:02 +0100760EXPORT_SYMBOL(__splice_from_pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200761
Mark Fasheh6da61802006-10-17 18:43:07 +0200762ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
763 loff_t *ppos, size_t len, unsigned int flags,
764 splice_actor *actor)
765{
766 ssize_t ret;
767 struct inode *inode = out->f_mapping->host;
Jens Axboec66ab6f2007-06-12 21:17:17 +0200768 struct splice_desc sd = {
769 .total_len = len,
770 .flags = flags,
771 .pos = *ppos,
Jens Axboe6a14b902007-06-14 13:08:55 +0200772 .u.file = out,
Jens Axboec66ab6f2007-06-12 21:17:17 +0200773 };
Mark Fasheh6da61802006-10-17 18:43:07 +0200774
775 /*
776 * The actor worker might be calling ->prepare_write and
777 * ->commit_write. Most of the time, these expect i_mutex to
778 * be held. Since this may result in an ABBA deadlock with
779 * pipe->inode, we have to order lock acquiry here.
780 */
781 inode_double_lock(inode, pipe->inode);
Jens Axboec66ab6f2007-06-12 21:17:17 +0200782 ret = __splice_from_pipe(pipe, &sd, actor);
Mark Fasheh6da61802006-10-17 18:43:07 +0200783 inode_double_unlock(inode, pipe->inode);
784
785 return ret;
786}
787
788/**
789 * generic_file_splice_write_nolock - generic_file_splice_write without mutexes
790 * @pipe: pipe info
791 * @out: file to write to
792 * @len: number of bytes to splice
793 * @flags: splice modifier flags
794 *
795 * Will either move or copy pages (determined by @flags options) from
796 * the given pipe inode to the given file. The caller is responsible
797 * for acquiring i_mutex on both inodes.
798 *
799 */
800ssize_t
801generic_file_splice_write_nolock(struct pipe_inode_info *pipe, struct file *out,
802 loff_t *ppos, size_t len, unsigned int flags)
803{
804 struct address_space *mapping = out->f_mapping;
805 struct inode *inode = mapping->host;
Jens Axboec66ab6f2007-06-12 21:17:17 +0200806 struct splice_desc sd = {
807 .total_len = len,
808 .flags = flags,
809 .pos = *ppos,
Jens Axboe6a14b902007-06-14 13:08:55 +0200810 .u.file = out,
Jens Axboec66ab6f2007-06-12 21:17:17 +0200811 };
Mark Fasheh6da61802006-10-17 18:43:07 +0200812 ssize_t ret;
813 int err;
814
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800815 err = remove_suid(out->f_path.dentry);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200816 if (unlikely(err))
817 return err;
818
Jens Axboec66ab6f2007-06-12 21:17:17 +0200819 ret = __splice_from_pipe(pipe, &sd, pipe_to_file);
Mark Fasheh6da61802006-10-17 18:43:07 +0200820 if (ret > 0) {
Jens Axboe17ee4f42007-06-15 13:10:37 +0200821 unsigned long nr_pages;
822
Mark Fasheh6da61802006-10-17 18:43:07 +0200823 *ppos += ret;
Jens Axboe17ee4f42007-06-15 13:10:37 +0200824 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Mark Fasheh6da61802006-10-17 18:43:07 +0200825
826 /*
827 * If file or inode is SYNC and we actually wrote some data,
828 * sync it.
829 */
830 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
831 err = generic_osync_inode(inode, mapping,
832 OSYNC_METADATA|OSYNC_DATA);
833
834 if (err)
835 ret = err;
836 }
Jens Axboe17ee4f42007-06-15 13:10:37 +0200837 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
Mark Fasheh6da61802006-10-17 18:43:07 +0200838 }
839
840 return ret;
841}
842
843EXPORT_SYMBOL(generic_file_splice_write_nolock);
844
Jens Axboe83f91352006-04-02 23:05:09 +0200845/**
846 * generic_file_splice_write - splice data from a pipe to a file
Ingo Molnar3a326a22006-04-10 15:18:35 +0200847 * @pipe: pipe info
Jens Axboe83f91352006-04-02 23:05:09 +0200848 * @out: file to write to
849 * @len: number of bytes to splice
850 * @flags: splice modifier flags
851 *
852 * Will either move or copy pages (determined by @flags options) from
853 * the given pipe inode to the given file.
854 *
855 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200856ssize_t
857generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200858 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200859{
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200860 struct address_space *mapping = out->f_mapping;
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200861 struct inode *inode = mapping->host;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200862 ssize_t ret;
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200863 int err;
864
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800865 err = should_remove_suid(out->f_path.dentry);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200866 if (unlikely(err)) {
867 mutex_lock(&inode->i_mutex);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800868 err = __remove_suid(out->f_path.dentry, err);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200869 mutex_unlock(&inode->i_mutex);
870 if (err)
871 return err;
872 }
Ingo Molnar3a326a22006-04-10 15:18:35 +0200873
Jens Axboe00522fb2006-04-26 14:39:29 +0200874 ret = splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
Jens Axboea4514eb2006-04-19 15:57:05 +0200875 if (ret > 0) {
Jens Axboe17ee4f42007-06-15 13:10:37 +0200876 unsigned long nr_pages;
877
Jens Axboea4514eb2006-04-19 15:57:05 +0200878 *ppos += ret;
Jens Axboe17ee4f42007-06-15 13:10:37 +0200879 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200880
Jens Axboea4514eb2006-04-19 15:57:05 +0200881 /*
882 * If file or inode is SYNC and we actually wrote some data,
883 * sync it.
884 */
885 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
Jens Axboea4514eb2006-04-19 15:57:05 +0200886 mutex_lock(&inode->i_mutex);
887 err = generic_osync_inode(inode, mapping,
888 OSYNC_METADATA|OSYNC_DATA);
889 mutex_unlock(&inode->i_mutex);
890
891 if (err)
892 ret = err;
893 }
Jens Axboe17ee4f42007-06-15 13:10:37 +0200894 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200895 }
896
897 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200898}
899
Jens Axboe059a8f32006-04-02 23:06:05 +0200900EXPORT_SYMBOL(generic_file_splice_write);
901
Jens Axboe83f91352006-04-02 23:05:09 +0200902/**
903 * generic_splice_sendpage - splice data from a pipe to a socket
904 * @inode: pipe inode
905 * @out: socket to write to
906 * @len: number of bytes to splice
907 * @flags: splice modifier flags
908 *
909 * Will send @len bytes from the pipe to a network socket. No data copying
910 * is involved.
911 *
912 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200913ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200914 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200915{
Jens Axboe00522fb2006-04-26 14:39:29 +0200916 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
Jens Axboe5274f052006-03-30 15:15:30 +0200917}
918
Jens Axboe059a8f32006-04-02 23:06:05 +0200919EXPORT_SYMBOL(generic_splice_sendpage);
Jeff Garzika0f06782006-03-30 23:06:13 -0500920
Jens Axboe83f91352006-04-02 23:05:09 +0200921/*
922 * Attempt to initiate a splice from pipe to file.
923 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200924static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200925 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200926{
Jens Axboe5274f052006-03-30 15:15:30 +0200927 int ret;
928
Jens Axboe49570e92006-04-11 13:56:09 +0200929 if (unlikely(!out->f_op || !out->f_op->splice_write))
Jens Axboe5274f052006-03-30 15:15:30 +0200930 return -EINVAL;
931
Jens Axboe49570e92006-04-11 13:56:09 +0200932 if (unlikely(!(out->f_mode & FMODE_WRITE)))
Jens Axboe5274f052006-03-30 15:15:30 +0200933 return -EBADF;
934
Jens Axboecbb7e572006-04-11 14:57:50 +0200935 ret = rw_verify_area(WRITE, out, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200936 if (unlikely(ret < 0))
937 return ret;
938
Jens Axboecbb7e572006-04-11 14:57:50 +0200939 return out->f_op->splice_write(pipe, out, ppos, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200940}
941
Jens Axboe83f91352006-04-02 23:05:09 +0200942/*
943 * Attempt to initiate a splice from a file to a pipe.
944 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200945static long do_splice_to(struct file *in, loff_t *ppos,
946 struct pipe_inode_info *pipe, size_t len,
947 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200948{
Jens Axboe5274f052006-03-30 15:15:30 +0200949 int ret;
950
Jens Axboe49570e92006-04-11 13:56:09 +0200951 if (unlikely(!in->f_op || !in->f_op->splice_read))
Jens Axboe5274f052006-03-30 15:15:30 +0200952 return -EINVAL;
953
Jens Axboe49570e92006-04-11 13:56:09 +0200954 if (unlikely(!(in->f_mode & FMODE_READ)))
Jens Axboe5274f052006-03-30 15:15:30 +0200955 return -EBADF;
956
Jens Axboecbb7e572006-04-11 14:57:50 +0200957 ret = rw_verify_area(READ, in, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200958 if (unlikely(ret < 0))
959 return ret;
960
Jens Axboecbb7e572006-04-11 14:57:50 +0200961 return in->f_op->splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200962}
963
Jens Axboec66ab6f2007-06-12 21:17:17 +0200964/*
965 * Splices from an input file to an actor, using a 'direct' pipe.
966 */
967ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
968 splice_direct_actor *actor)
Jens Axboeb92ce552006-04-11 13:52:07 +0200969{
970 struct pipe_inode_info *pipe;
971 long ret, bytes;
972 umode_t i_mode;
Jens Axboec66ab6f2007-06-12 21:17:17 +0200973 size_t len;
974 int i, flags;
Jens Axboeb92ce552006-04-11 13:52:07 +0200975
976 /*
977 * We require the input being a regular file, as we don't want to
978 * randomly drop data for eg socket -> socket splicing. Use the
979 * piped splicing for that!
980 */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800981 i_mode = in->f_path.dentry->d_inode->i_mode;
Jens Axboeb92ce552006-04-11 13:52:07 +0200982 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
983 return -EINVAL;
984
985 /*
986 * neither in nor out is a pipe, setup an internal pipe attached to
987 * 'out' and transfer the wanted data from 'in' to 'out' through that
988 */
989 pipe = current->splice_pipe;
Jens Axboe49570e92006-04-11 13:56:09 +0200990 if (unlikely(!pipe)) {
Jens Axboeb92ce552006-04-11 13:52:07 +0200991 pipe = alloc_pipe_info(NULL);
992 if (!pipe)
993 return -ENOMEM;
994
995 /*
996 * We don't have an immediate reader, but we'll read the stuff
Jens Axboe00522fb2006-04-26 14:39:29 +0200997 * out of the pipe right after the splice_to_pipe(). So set
Jens Axboeb92ce552006-04-11 13:52:07 +0200998 * PIPE_READERS appropriately.
999 */
1000 pipe->readers = 1;
1001
1002 current->splice_pipe = pipe;
1003 }
1004
1005 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +02001006 * Do the splice.
Jens Axboeb92ce552006-04-11 13:52:07 +02001007 */
1008 ret = 0;
1009 bytes = 0;
Jens Axboec66ab6f2007-06-12 21:17:17 +02001010 len = sd->total_len;
1011 flags = sd->flags;
1012
1013 /*
1014 * Don't block on output, we have to drain the direct pipe.
1015 */
1016 sd->flags &= ~SPLICE_F_NONBLOCK;
Jens Axboeb92ce552006-04-11 13:52:07 +02001017
1018 while (len) {
1019 size_t read_len, max_read_len;
1020
1021 /*
1022 * Do at most PIPE_BUFFERS pages worth of transfer:
1023 */
1024 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
1025
Jens Axboec66ab6f2007-06-12 21:17:17 +02001026 ret = do_splice_to(in, &sd->pos, pipe, max_read_len, flags);
Jens Axboeb92ce552006-04-11 13:52:07 +02001027 if (unlikely(ret < 0))
1028 goto out_release;
1029
1030 read_len = ret;
Jens Axboec66ab6f2007-06-12 21:17:17 +02001031 sd->total_len = read_len;
Jens Axboeb92ce552006-04-11 13:52:07 +02001032
1033 /*
1034 * NOTE: nonblocking mode only applies to the input. We
1035 * must not do the output in nonblocking mode as then we
1036 * could get stuck data in the internal pipe:
1037 */
Jens Axboec66ab6f2007-06-12 21:17:17 +02001038 ret = actor(pipe, sd);
Jens Axboeb92ce552006-04-11 13:52:07 +02001039 if (unlikely(ret < 0))
1040 goto out_release;
1041
1042 bytes += ret;
1043 len -= ret;
1044
1045 /*
1046 * In nonblocking mode, if we got back a short read then
1047 * that was due to either an IO error or due to the
1048 * pagecache entry not being there. In the IO error case
1049 * the _next_ splice attempt will produce a clean IO error
1050 * return value (not a short read), so in both cases it's
1051 * correct to break out of the loop here:
1052 */
1053 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
1054 break;
1055 }
1056
1057 pipe->nrbufs = pipe->curbuf = 0;
1058
1059 return bytes;
1060
1061out_release:
1062 /*
1063 * If we did an incomplete transfer we must release
1064 * the pipe buffers in question:
1065 */
1066 for (i = 0; i < PIPE_BUFFERS; i++) {
1067 struct pipe_buffer *buf = pipe->bufs + i;
1068
1069 if (buf->ops) {
1070 buf->ops->release(pipe, buf);
1071 buf->ops = NULL;
1072 }
1073 }
1074 pipe->nrbufs = pipe->curbuf = 0;
1075
1076 /*
1077 * If we transferred some data, return the number of bytes:
1078 */
1079 if (bytes > 0)
1080 return bytes;
1081
1082 return ret;
Jens Axboec66ab6f2007-06-12 21:17:17 +02001083
1084}
1085EXPORT_SYMBOL(splice_direct_to_actor);
1086
1087static int direct_splice_actor(struct pipe_inode_info *pipe,
1088 struct splice_desc *sd)
1089{
Jens Axboe6a14b902007-06-14 13:08:55 +02001090 struct file *file = sd->u.file;
Jens Axboec66ab6f2007-06-12 21:17:17 +02001091
1092 return do_splice_from(pipe, file, &sd->pos, sd->total_len, sd->flags);
1093}
1094
1095long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1096 size_t len, unsigned int flags)
1097{
1098 struct splice_desc sd = {
1099 .len = len,
1100 .total_len = len,
1101 .flags = flags,
1102 .pos = *ppos,
Jens Axboe6a14b902007-06-14 13:08:55 +02001103 .u.file = out,
Jens Axboec66ab6f2007-06-12 21:17:17 +02001104 };
1105 size_t ret;
1106
1107 ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
1108 *ppos = sd.pos;
1109 return ret;
Jens Axboeb92ce552006-04-11 13:52:07 +02001110}
1111
Jens Axboe83f91352006-04-02 23:05:09 +02001112/*
Jens Axboeddac0d32006-11-04 12:49:32 +01001113 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1114 * location, so checking ->i_pipe is not enough to verify that this is a
1115 * pipe.
1116 */
1117static inline struct pipe_inode_info *pipe_info(struct inode *inode)
1118{
1119 if (S_ISFIFO(inode->i_mode))
1120 return inode->i_pipe;
1121
1122 return NULL;
1123}
1124
1125/*
Jens Axboe83f91352006-04-02 23:05:09 +02001126 * Determine where to splice to/from.
1127 */
Ingo Molnar529565d2006-04-10 15:18:58 +02001128static long do_splice(struct file *in, loff_t __user *off_in,
1129 struct file *out, loff_t __user *off_out,
1130 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001131{
Ingo Molnar3a326a22006-04-10 15:18:35 +02001132 struct pipe_inode_info *pipe;
Jens Axboecbb7e572006-04-11 14:57:50 +02001133 loff_t offset, *off;
Jens Axboea4514eb2006-04-19 15:57:05 +02001134 long ret;
Jens Axboe5274f052006-03-30 15:15:30 +02001135
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001136 pipe = pipe_info(in->f_path.dentry->d_inode);
Ingo Molnar529565d2006-04-10 15:18:58 +02001137 if (pipe) {
1138 if (off_in)
1139 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001140 if (off_out) {
1141 if (out->f_op->llseek == no_llseek)
1142 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001143 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001144 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001145 off = &offset;
1146 } else
1147 off = &out->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +02001148
Jens Axboea4514eb2006-04-19 15:57:05 +02001149 ret = do_splice_from(pipe, out, off, len, flags);
1150
1151 if (off_out && copy_to_user(off_out, off, sizeof(loff_t)))
1152 ret = -EFAULT;
1153
1154 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +02001155 }
Jens Axboe5274f052006-03-30 15:15:30 +02001156
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001157 pipe = pipe_info(out->f_path.dentry->d_inode);
Ingo Molnar529565d2006-04-10 15:18:58 +02001158 if (pipe) {
1159 if (off_out)
1160 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001161 if (off_in) {
1162 if (in->f_op->llseek == no_llseek)
1163 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001164 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001165 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001166 off = &offset;
1167 } else
1168 off = &in->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +02001169
Jens Axboea4514eb2006-04-19 15:57:05 +02001170 ret = do_splice_to(in, off, pipe, len, flags);
1171
1172 if (off_in && copy_to_user(off_in, off, sizeof(loff_t)))
1173 ret = -EFAULT;
1174
1175 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +02001176 }
Jens Axboe5274f052006-03-30 15:15:30 +02001177
1178 return -EINVAL;
1179}
1180
Jens Axboe912d35f2006-04-26 10:59:21 +02001181/*
1182 * Map an iov into an array of pages and offset/length tupples. With the
1183 * partial_page structure, we can map several non-contiguous ranges into
1184 * our ones pages[] map instead of splitting that operation into pieces.
1185 * Could easily be exported as a generic helper for other users, in which
1186 * case one would probably want to add a 'max_nr_pages' parameter as well.
1187 */
1188static int get_iovec_page_array(const struct iovec __user *iov,
1189 unsigned int nr_vecs, struct page **pages,
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001190 struct partial_page *partial, int aligned)
Jens Axboe912d35f2006-04-26 10:59:21 +02001191{
1192 int buffers = 0, error = 0;
1193
1194 /*
1195 * It's ok to take the mmap_sem for reading, even
1196 * across a "get_user()".
1197 */
1198 down_read(&current->mm->mmap_sem);
1199
1200 while (nr_vecs) {
1201 unsigned long off, npages;
1202 void __user *base;
1203 size_t len;
1204 int i;
1205
1206 /*
1207 * Get user address base and length for this iovec.
1208 */
1209 error = get_user(base, &iov->iov_base);
1210 if (unlikely(error))
1211 break;
1212 error = get_user(len, &iov->iov_len);
1213 if (unlikely(error))
1214 break;
1215
1216 /*
1217 * Sanity check this iovec. 0 read succeeds.
1218 */
1219 if (unlikely(!len))
1220 break;
1221 error = -EFAULT;
1222 if (unlikely(!base))
1223 break;
1224
1225 /*
1226 * Get this base offset and number of pages, then map
1227 * in the user pages.
1228 */
1229 off = (unsigned long) base & ~PAGE_MASK;
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001230
1231 /*
1232 * If asked for alignment, the offset must be zero and the
1233 * length a multiple of the PAGE_SIZE.
1234 */
1235 error = -EINVAL;
1236 if (aligned && (off || len & ~PAGE_MASK))
1237 break;
1238
Jens Axboe912d35f2006-04-26 10:59:21 +02001239 npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1240 if (npages > PIPE_BUFFERS - buffers)
1241 npages = PIPE_BUFFERS - buffers;
1242
1243 error = get_user_pages(current, current->mm,
1244 (unsigned long) base, npages, 0, 0,
1245 &pages[buffers], NULL);
1246
1247 if (unlikely(error <= 0))
1248 break;
1249
1250 /*
1251 * Fill this contiguous range into the partial page map.
1252 */
1253 for (i = 0; i < error; i++) {
Jens Axboe75914892006-05-02 12:57:18 +02001254 const int plen = min_t(size_t, len, PAGE_SIZE - off);
Jens Axboe912d35f2006-04-26 10:59:21 +02001255
1256 partial[buffers].offset = off;
1257 partial[buffers].len = plen;
1258
1259 off = 0;
1260 len -= plen;
1261 buffers++;
1262 }
1263
1264 /*
1265 * We didn't complete this iov, stop here since it probably
1266 * means we have to move some of this into a pipe to
1267 * be able to continue.
1268 */
1269 if (len)
1270 break;
1271
1272 /*
1273 * Don't continue if we mapped fewer pages than we asked for,
1274 * or if we mapped the max number of pages that we have
1275 * room for.
1276 */
1277 if (error < npages || buffers == PIPE_BUFFERS)
1278 break;
1279
1280 nr_vecs--;
1281 iov++;
1282 }
1283
1284 up_read(&current->mm->mmap_sem);
1285
1286 if (buffers)
1287 return buffers;
1288
1289 return error;
1290}
1291
Jens Axboe6a14b902007-06-14 13:08:55 +02001292static int pipe_to_user(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
1293 struct splice_desc *sd)
1294{
1295 char *src;
1296 int ret;
1297
1298 ret = buf->ops->pin(pipe, buf);
1299 if (unlikely(ret))
1300 return ret;
1301
1302 /*
1303 * See if we can use the atomic maps, by prefaulting in the
1304 * pages and doing an atomic copy
1305 */
1306 if (!fault_in_pages_writeable(sd->u.userptr, sd->len)) {
1307 src = buf->ops->map(pipe, buf, 1);
1308 ret = __copy_to_user_inatomic(sd->u.userptr, src + buf->offset,
1309 sd->len);
1310 buf->ops->unmap(pipe, buf, src);
1311 if (!ret) {
1312 ret = sd->len;
1313 goto out;
1314 }
1315 }
1316
1317 /*
1318 * No dice, use slow non-atomic map and copy
1319 */
1320 src = buf->ops->map(pipe, buf, 0);
1321
1322 ret = sd->len;
1323 if (copy_to_user(sd->u.userptr, src + buf->offset, sd->len))
1324 ret = -EFAULT;
1325
1326out:
1327 if (ret > 0)
1328 sd->u.userptr += ret;
1329 buf->ops->unmap(pipe, buf, src);
1330 return ret;
1331}
1332
1333/*
1334 * For lack of a better implementation, implement vmsplice() to userspace
1335 * as a simple copy of the pipes pages to the user iov.
1336 */
1337static long vmsplice_to_user(struct file *file, const struct iovec __user *iov,
1338 unsigned long nr_segs, unsigned int flags)
1339{
1340 struct pipe_inode_info *pipe;
1341 struct splice_desc sd;
1342 ssize_t size;
1343 int error;
1344 long ret;
1345
1346 pipe = pipe_info(file->f_path.dentry->d_inode);
1347 if (!pipe)
1348 return -EBADF;
1349
1350 if (pipe->inode)
1351 mutex_lock(&pipe->inode->i_mutex);
1352
1353 error = ret = 0;
1354 while (nr_segs) {
1355 void __user *base;
1356 size_t len;
1357
1358 /*
1359 * Get user address base and length for this iovec.
1360 */
1361 error = get_user(base, &iov->iov_base);
1362 if (unlikely(error))
1363 break;
1364 error = get_user(len, &iov->iov_len);
1365 if (unlikely(error))
1366 break;
1367
1368 /*
1369 * Sanity check this iovec. 0 read succeeds.
1370 */
1371 if (unlikely(!len))
1372 break;
1373 if (unlikely(!base)) {
1374 error = -EFAULT;
1375 break;
1376 }
1377
1378 sd.len = 0;
1379 sd.total_len = len;
1380 sd.flags = flags;
1381 sd.u.userptr = base;
1382 sd.pos = 0;
1383
1384 size = __splice_from_pipe(pipe, &sd, pipe_to_user);
1385 if (size < 0) {
1386 if (!ret)
1387 ret = size;
1388
1389 break;
1390 }
1391
1392 ret += size;
1393
1394 if (size < len)
1395 break;
1396
1397 nr_segs--;
1398 iov++;
1399 }
1400
1401 if (pipe->inode)
1402 mutex_unlock(&pipe->inode->i_mutex);
1403
1404 if (!ret)
1405 ret = error;
1406
1407 return ret;
1408}
1409
Jens Axboe912d35f2006-04-26 10:59:21 +02001410/*
1411 * vmsplice splices a user address range into a pipe. It can be thought of
1412 * as splice-from-memory, where the regular splice is splice-from-file (or
1413 * to file). In both cases the output is a pipe, naturally.
Jens Axboe912d35f2006-04-26 10:59:21 +02001414 */
Jens Axboe6a14b902007-06-14 13:08:55 +02001415static long vmsplice_to_pipe(struct file *file, const struct iovec __user *iov,
1416 unsigned long nr_segs, unsigned int flags)
Jens Axboe912d35f2006-04-26 10:59:21 +02001417{
Jens Axboeddac0d32006-11-04 12:49:32 +01001418 struct pipe_inode_info *pipe;
Jens Axboe912d35f2006-04-26 10:59:21 +02001419 struct page *pages[PIPE_BUFFERS];
1420 struct partial_page partial[PIPE_BUFFERS];
1421 struct splice_pipe_desc spd = {
1422 .pages = pages,
1423 .partial = partial,
1424 .flags = flags,
1425 .ops = &user_page_pipe_buf_ops,
1426 };
1427
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001428 pipe = pipe_info(file->f_path.dentry->d_inode);
Jens Axboeddac0d32006-11-04 12:49:32 +01001429 if (!pipe)
Jens Axboe912d35f2006-04-26 10:59:21 +02001430 return -EBADF;
Jens Axboe912d35f2006-04-26 10:59:21 +02001431
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001432 spd.nr_pages = get_iovec_page_array(iov, nr_segs, pages, partial,
1433 flags & SPLICE_F_GIFT);
Jens Axboe912d35f2006-04-26 10:59:21 +02001434 if (spd.nr_pages <= 0)
1435 return spd.nr_pages;
1436
Jens Axboe00522fb2006-04-26 14:39:29 +02001437 return splice_to_pipe(pipe, &spd);
Jens Axboe912d35f2006-04-26 10:59:21 +02001438}
1439
Jens Axboe6a14b902007-06-14 13:08:55 +02001440/*
1441 * Note that vmsplice only really supports true splicing _from_ user memory
1442 * to a pipe, not the other way around. Splicing from user memory is a simple
1443 * operation that can be supported without any funky alignment restrictions
1444 * or nasty vm tricks. We simply map in the user memory and fill them into
1445 * a pipe. The reverse isn't quite as easy, though. There are two possible
1446 * solutions for that:
1447 *
1448 * - memcpy() the data internally, at which point we might as well just
1449 * do a regular read() on the buffer anyway.
1450 * - Lots of nasty vm tricks, that are neither fast nor flexible (it
1451 * has restriction limitations on both ends of the pipe).
1452 *
1453 * Currently we punt and implement it as a normal copy, see pipe_to_user().
1454 *
1455 */
Jens Axboe912d35f2006-04-26 10:59:21 +02001456asmlinkage long sys_vmsplice(int fd, const struct iovec __user *iov,
1457 unsigned long nr_segs, unsigned int flags)
1458{
1459 struct file *file;
1460 long error;
1461 int fput;
1462
Jens Axboe6a14b902007-06-14 13:08:55 +02001463 if (unlikely(nr_segs > UIO_MAXIOV))
1464 return -EINVAL;
1465 else if (unlikely(!nr_segs))
1466 return 0;
1467
Jens Axboe912d35f2006-04-26 10:59:21 +02001468 error = -EBADF;
1469 file = fget_light(fd, &fput);
1470 if (file) {
1471 if (file->f_mode & FMODE_WRITE)
Jens Axboe6a14b902007-06-14 13:08:55 +02001472 error = vmsplice_to_pipe(file, iov, nr_segs, flags);
1473 else if (file->f_mode & FMODE_READ)
1474 error = vmsplice_to_user(file, iov, nr_segs, flags);
Jens Axboe912d35f2006-04-26 10:59:21 +02001475
1476 fput_light(file, fput);
1477 }
1478
1479 return error;
1480}
1481
Ingo Molnar529565d2006-04-10 15:18:58 +02001482asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
1483 int fd_out, loff_t __user *off_out,
1484 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001485{
1486 long error;
1487 struct file *in, *out;
1488 int fput_in, fput_out;
1489
1490 if (unlikely(!len))
1491 return 0;
1492
1493 error = -EBADF;
Ingo Molnar529565d2006-04-10 15:18:58 +02001494 in = fget_light(fd_in, &fput_in);
Jens Axboe5274f052006-03-30 15:15:30 +02001495 if (in) {
1496 if (in->f_mode & FMODE_READ) {
Ingo Molnar529565d2006-04-10 15:18:58 +02001497 out = fget_light(fd_out, &fput_out);
Jens Axboe5274f052006-03-30 15:15:30 +02001498 if (out) {
1499 if (out->f_mode & FMODE_WRITE)
Ingo Molnar529565d2006-04-10 15:18:58 +02001500 error = do_splice(in, off_in,
1501 out, off_out,
1502 len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +02001503 fput_light(out, fput_out);
1504 }
1505 }
1506
1507 fput_light(in, fput_in);
1508 }
1509
1510 return error;
1511}
Jens Axboe70524492006-04-11 15:51:17 +02001512
1513/*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001514 * Make sure there's data to read. Wait for input if we can, otherwise
1515 * return an appropriate error.
1516 */
1517static int link_ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1518{
1519 int ret;
1520
1521 /*
1522 * Check ->nrbufs without the inode lock first. This function
1523 * is speculative anyways, so missing one is ok.
1524 */
1525 if (pipe->nrbufs)
1526 return 0;
1527
1528 ret = 0;
1529 mutex_lock(&pipe->inode->i_mutex);
1530
1531 while (!pipe->nrbufs) {
1532 if (signal_pending(current)) {
1533 ret = -ERESTARTSYS;
1534 break;
1535 }
1536 if (!pipe->writers)
1537 break;
1538 if (!pipe->waiting_writers) {
1539 if (flags & SPLICE_F_NONBLOCK) {
1540 ret = -EAGAIN;
1541 break;
1542 }
1543 }
1544 pipe_wait(pipe);
1545 }
1546
1547 mutex_unlock(&pipe->inode->i_mutex);
1548 return ret;
1549}
1550
1551/*
1552 * Make sure there's writeable room. Wait for room if we can, otherwise
1553 * return an appropriate error.
1554 */
1555static int link_opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1556{
1557 int ret;
1558
1559 /*
1560 * Check ->nrbufs without the inode lock first. This function
1561 * is speculative anyways, so missing one is ok.
1562 */
1563 if (pipe->nrbufs < PIPE_BUFFERS)
1564 return 0;
1565
1566 ret = 0;
1567 mutex_lock(&pipe->inode->i_mutex);
1568
1569 while (pipe->nrbufs >= PIPE_BUFFERS) {
1570 if (!pipe->readers) {
1571 send_sig(SIGPIPE, current, 0);
1572 ret = -EPIPE;
1573 break;
1574 }
1575 if (flags & SPLICE_F_NONBLOCK) {
1576 ret = -EAGAIN;
1577 break;
1578 }
1579 if (signal_pending(current)) {
1580 ret = -ERESTARTSYS;
1581 break;
1582 }
1583 pipe->waiting_writers++;
1584 pipe_wait(pipe);
1585 pipe->waiting_writers--;
1586 }
1587
1588 mutex_unlock(&pipe->inode->i_mutex);
1589 return ret;
1590}
1591
1592/*
Jens Axboe70524492006-04-11 15:51:17 +02001593 * Link contents of ipipe to opipe.
1594 */
1595static int link_pipe(struct pipe_inode_info *ipipe,
1596 struct pipe_inode_info *opipe,
1597 size_t len, unsigned int flags)
1598{
1599 struct pipe_buffer *ibuf, *obuf;
Jens Axboeaadd06e2006-07-10 11:00:01 +02001600 int ret = 0, i = 0, nbuf;
Jens Axboe70524492006-04-11 15:51:17 +02001601
1602 /*
1603 * Potential ABBA deadlock, work around it by ordering lock
1604 * grabbing by inode address. Otherwise two different processes
1605 * could deadlock (one doing tee from A -> B, the other from B -> A).
1606 */
Mark Fasheh62752ee2006-10-17 10:31:38 +02001607 inode_double_lock(ipipe->inode, opipe->inode);
Jens Axboe70524492006-04-11 15:51:17 +02001608
Jens Axboeaadd06e2006-07-10 11:00:01 +02001609 do {
Jens Axboe70524492006-04-11 15:51:17 +02001610 if (!opipe->readers) {
1611 send_sig(SIGPIPE, current, 0);
1612 if (!ret)
1613 ret = -EPIPE;
1614 break;
1615 }
Jens Axboe70524492006-04-11 15:51:17 +02001616
1617 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001618 * If we have iterated all input buffers or ran out of
1619 * output room, break.
Jens Axboe70524492006-04-11 15:51:17 +02001620 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001621 if (i >= ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS)
Jens Axboe70524492006-04-11 15:51:17 +02001622 break;
Jens Axboeaadd06e2006-07-10 11:00:01 +02001623
1624 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1625 nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1626
Jens Axboe2a272502006-04-19 15:56:40 +02001627 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001628 * Get a reference to this pipe buffer,
1629 * so we can copy the contents over.
Jens Axboe2a272502006-04-19 15:56:40 +02001630 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001631 ibuf->ops->get(ipipe, ibuf);
Jens Axboe70524492006-04-11 15:51:17 +02001632
Jens Axboeaadd06e2006-07-10 11:00:01 +02001633 obuf = opipe->bufs + nbuf;
1634 *obuf = *ibuf;
Jens Axboe70524492006-04-11 15:51:17 +02001635
Jens Axboeaadd06e2006-07-10 11:00:01 +02001636 /*
1637 * Don't inherit the gift flag, we need to
1638 * prevent multiple steals of this page.
1639 */
1640 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1641
1642 if (obuf->len > len)
1643 obuf->len = len;
1644
1645 opipe->nrbufs++;
1646 ret += obuf->len;
1647 len -= obuf->len;
1648 i++;
1649 } while (len);
Jens Axboe70524492006-04-11 15:51:17 +02001650
Mark Fasheh62752ee2006-10-17 10:31:38 +02001651 inode_double_unlock(ipipe->inode, opipe->inode);
Jens Axboe70524492006-04-11 15:51:17 +02001652
Jens Axboeaadd06e2006-07-10 11:00:01 +02001653 /*
1654 * If we put data in the output pipe, wakeup any potential readers.
1655 */
1656 if (ret > 0) {
Jens Axboe70524492006-04-11 15:51:17 +02001657 smp_mb();
1658 if (waitqueue_active(&opipe->wait))
1659 wake_up_interruptible(&opipe->wait);
1660 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1661 }
1662
1663 return ret;
1664}
1665
1666/*
1667 * This is a tee(1) implementation that works on pipes. It doesn't copy
1668 * any data, it simply references the 'in' pages on the 'out' pipe.
1669 * The 'flags' used are the SPLICE_F_* variants, currently the only
1670 * applicable one is SPLICE_F_NONBLOCK.
1671 */
1672static long do_tee(struct file *in, struct file *out, size_t len,
1673 unsigned int flags)
1674{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001675 struct pipe_inode_info *ipipe = pipe_info(in->f_path.dentry->d_inode);
1676 struct pipe_inode_info *opipe = pipe_info(out->f_path.dentry->d_inode);
Jens Axboeaadd06e2006-07-10 11:00:01 +02001677 int ret = -EINVAL;
Jens Axboe70524492006-04-11 15:51:17 +02001678
1679 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001680 * Duplicate the contents of ipipe to opipe without actually
1681 * copying the data.
Jens Axboe70524492006-04-11 15:51:17 +02001682 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001683 if (ipipe && opipe && ipipe != opipe) {
1684 /*
1685 * Keep going, unless we encounter an error. The ipipe/opipe
1686 * ordering doesn't really matter.
1687 */
1688 ret = link_ipipe_prep(ipipe, flags);
1689 if (!ret) {
1690 ret = link_opipe_prep(opipe, flags);
1691 if (!ret) {
1692 ret = link_pipe(ipipe, opipe, len, flags);
1693 if (!ret && (flags & SPLICE_F_NONBLOCK))
1694 ret = -EAGAIN;
1695 }
1696 }
1697 }
Jens Axboe70524492006-04-11 15:51:17 +02001698
Jens Axboeaadd06e2006-07-10 11:00:01 +02001699 return ret;
Jens Axboe70524492006-04-11 15:51:17 +02001700}
1701
1702asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1703{
1704 struct file *in;
1705 int error, fput_in;
1706
1707 if (unlikely(!len))
1708 return 0;
1709
1710 error = -EBADF;
1711 in = fget_light(fdin, &fput_in);
1712 if (in) {
1713 if (in->f_mode & FMODE_READ) {
1714 int fput_out;
1715 struct file *out = fget_light(fdout, &fput_out);
1716
1717 if (out) {
1718 if (out->f_mode & FMODE_WRITE)
1719 error = do_tee(in, out, len, flags);
1720 fput_light(out, fput_out);
1721 }
1722 }
1723 fput_light(in, fput_in);
1724 }
1725
1726 return error;
1727}