blob: 186fad463c4379280dcfbbd2c5422f5188f46c69 [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
Ingo Molnar3a326a22006-04-10 15:18:35 +0200248 if (pipe->inode)
249 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200250
251 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200252 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200253 if (waitqueue_active(&pipe->wait))
254 wake_up_interruptible(&pipe->wait);
255 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200256 }
257
Jens Axboe00de00b2007-06-15 13:14:22 +0200258 while (page_nr < spd_pages)
Jens Axboe912d35f2006-04-26 10:59:21 +0200259 page_cache_release(spd->pages[page_nr++]);
Jens Axboe5274f052006-03-30 15:15:30 +0200260
261 return ret;
262}
263
Ingo Molnar3a326a22006-04-10 15:18:35 +0200264static int
Jens Axboecbb7e572006-04-11 14:57:50 +0200265__generic_file_splice_read(struct file *in, loff_t *ppos,
266 struct pipe_inode_info *pipe, size_t len,
267 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200268{
269 struct address_space *mapping = in->f_mapping;
Jens Axboe912d35f2006-04-26 10:59:21 +0200270 unsigned int loff, nr_pages;
Jens Axboe16c523d2006-04-10 09:03:58 +0200271 struct page *pages[PIPE_BUFFERS];
Jens Axboe912d35f2006-04-26 10:59:21 +0200272 struct partial_page partial[PIPE_BUFFERS];
Jens Axboe5274f052006-03-30 15:15:30 +0200273 struct page *page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200274 pgoff_t index, end_index;
275 loff_t isize;
Jens Axboeeb207962006-04-27 11:05:22 +0200276 int error, page_nr;
Jens Axboe912d35f2006-04-26 10:59:21 +0200277 struct splice_pipe_desc spd = {
278 .pages = pages,
279 .partial = partial,
280 .flags = flags,
281 .ops = &page_cache_pipe_buf_ops,
282 };
Jens Axboe5274f052006-03-30 15:15:30 +0200283
Jens Axboecbb7e572006-04-11 14:57:50 +0200284 index = *ppos >> PAGE_CACHE_SHIFT;
Jens Axboe912d35f2006-04-26 10:59:21 +0200285 loff = *ppos & ~PAGE_CACHE_MASK;
286 nr_pages = (len + loff + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Jens Axboe5274f052006-03-30 15:15:30 +0200287
288 if (nr_pages > PIPE_BUFFERS)
289 nr_pages = PIPE_BUFFERS;
290
291 /*
Jens Axboe86aa5ac2007-05-08 08:46:19 +0200292 * Don't try to 2nd guess the read-ahead logic, call into
293 * page_cache_readahead() like the page cache reads would do.
Jens Axboe5274f052006-03-30 15:15:30 +0200294 */
Jens Axboe86aa5ac2007-05-08 08:46:19 +0200295 page_cache_readahead(mapping, &in->f_ra, in, index, nr_pages);
Jens Axboe5274f052006-03-30 15:15:30 +0200296
297 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200298 * Now fill in the holes:
Jens Axboe5274f052006-03-30 15:15:30 +0200299 */
Jens Axboe7480a902006-04-11 13:52:47 +0200300 error = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200301
302 /*
303 * Lookup the (hopefully) full range of pages we need.
304 */
305 spd.nr_pages = find_get_pages_contig(mapping, index, nr_pages, pages);
306
307 /*
308 * If find_get_pages_contig() returned fewer pages than we needed,
309 * allocate the rest.
310 */
311 index += spd.nr_pages;
312 while (spd.nr_pages < nr_pages) {
313 /*
314 * Page could be there, find_get_pages_contig() breaks on
315 * the first hole.
316 */
317 page = find_get_page(mapping, index);
318 if (!page) {
319 /*
Jens Axboee27dedd2006-05-01 19:59:54 +0200320 * Make sure the read-ahead engine is notified
321 * about this failure.
322 */
323 handle_ra_miss(mapping, &in->f_ra, index);
324
325 /*
Jens Axboeeb207962006-04-27 11:05:22 +0200326 * page didn't exist, allocate one.
327 */
328 page = page_cache_alloc_cold(mapping);
329 if (!page)
330 break;
331
332 error = add_to_page_cache_lru(page, mapping, index,
Nick Piggin2ae88142006-10-28 10:38:23 -0700333 GFP_KERNEL);
Jens Axboeeb207962006-04-27 11:05:22 +0200334 if (unlikely(error)) {
335 page_cache_release(page);
Jens Axboea0548872006-05-03 10:58:22 +0200336 if (error == -EEXIST)
337 continue;
Jens Axboeeb207962006-04-27 11:05:22 +0200338 break;
339 }
340 /*
341 * add_to_page_cache() locks the page, unlock it
342 * to avoid convoluting the logic below even more.
343 */
344 unlock_page(page);
345 }
346
347 pages[spd.nr_pages++] = page;
348 index++;
349 }
350
351 /*
352 * Now loop over the map and see if we need to start IO on any
353 * pages, fill in the partial map, etc.
354 */
355 index = *ppos >> PAGE_CACHE_SHIFT;
356 nr_pages = spd.nr_pages;
357 spd.nr_pages = 0;
358 for (page_nr = 0; page_nr < nr_pages; page_nr++) {
Jens Axboe82aa5d62006-04-20 13:05:48 +0200359 unsigned int this_len;
360
361 if (!len)
362 break;
363
364 /*
365 * this_len is the max we'll use from this page
366 */
Andrew Mortonba5f5d92006-04-25 15:33:34 +0200367 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
Jens Axboeeb207962006-04-27 11:05:22 +0200368 page = pages[page_nr];
Jens Axboe7480a902006-04-11 13:52:47 +0200369
370 /*
371 * If the page isn't uptodate, we may need to start io on it
372 */
373 if (!PageUptodate(page)) {
Jens Axboec4f895c2006-04-19 15:56:12 +0200374 /*
375 * If in nonblock mode then dont block on waiting
376 * for an in-flight io page
377 */
Fengguang Wu9ae9d682007-05-08 08:44:36 +0200378 if (flags & SPLICE_F_NONBLOCK) {
379 if (TestSetPageLocked(page))
380 break;
381 } else
382 lock_page(page);
Jens Axboe7480a902006-04-11 13:52:47 +0200383
384 /*
385 * page was truncated, stop here. if this isn't the
386 * first page, we'll just complete what we already
387 * added
388 */
389 if (!page->mapping) {
390 unlock_page(page);
Jens Axboe7480a902006-04-11 13:52:47 +0200391 break;
392 }
393 /*
394 * page was already under io and is now done, great
395 */
396 if (PageUptodate(page)) {
397 unlock_page(page);
398 goto fill_it;
399 }
400
Jens Axboe7480a902006-04-11 13:52:47 +0200401 /*
402 * need to read in the page
403 */
404 error = mapping->a_ops->readpage(in, page);
Jens Axboe7480a902006-04-11 13:52:47 +0200405 if (unlikely(error)) {
Jens Axboeeb207962006-04-27 11:05:22 +0200406 /*
407 * We really should re-lookup the page here,
408 * but it complicates things a lot. Instead
409 * lets just do what we already stored, and
410 * we'll get it the next time we are called.
411 */
Jens Axboe7480a902006-04-11 13:52:47 +0200412 if (error == AOP_TRUNCATED_PAGE)
Jens Axboeeb207962006-04-27 11:05:22 +0200413 error = 0;
414
Jens Axboe7480a902006-04-11 13:52:47 +0200415 break;
416 }
Jens Axboe620a3242007-06-07 09:39:42 +0200417 }
418fill_it:
419 /*
420 * i_size must be checked after PageUptodate.
421 */
422 isize = i_size_read(mapping->host);
423 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
424 if (unlikely(!isize || index > end_index))
425 break;
426
427 /*
428 * if this is the last page, see if we need to shrink
429 * the length and stop
430 */
431 if (end_index == index) {
432 unsigned int plen;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200433
434 /*
Jens Axboe620a3242007-06-07 09:39:42 +0200435 * max good bytes in this page
Jens Axboe91ad66e2006-04-19 15:55:10 +0200436 */
Jens Axboe620a3242007-06-07 09:39:42 +0200437 plen = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
438 if (plen <= loff)
Jens Axboe91ad66e2006-04-19 15:55:10 +0200439 break;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200440
441 /*
Jens Axboe620a3242007-06-07 09:39:42 +0200442 * force quit after adding this page
Jens Axboe91ad66e2006-04-19 15:55:10 +0200443 */
Jens Axboe620a3242007-06-07 09:39:42 +0200444 this_len = min(this_len, plen - loff);
445 len = this_len;
Jens Axboe7480a902006-04-11 13:52:47 +0200446 }
Jens Axboe620a3242007-06-07 09:39:42 +0200447
Jens Axboeeb207962006-04-27 11:05:22 +0200448 partial[page_nr].offset = loff;
449 partial[page_nr].len = this_len;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200450 len -= this_len;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200451 loff = 0;
Jens Axboeeb207962006-04-27 11:05:22 +0200452 spd.nr_pages++;
453 index++;
Jens Axboe5274f052006-03-30 15:15:30 +0200454 }
455
Jens Axboeeb207962006-04-27 11:05:22 +0200456 /*
Hugh Dickins475ecad2007-06-07 09:36:00 +0200457 * Release any pages at the end, if we quit early. 'page_nr' is how far
Jens Axboeeb207962006-04-27 11:05:22 +0200458 * we got, 'nr_pages' is how many pages are in the map.
459 */
460 while (page_nr < nr_pages)
461 page_cache_release(pages[page_nr++]);
462
Jens Axboe912d35f2006-04-26 10:59:21 +0200463 if (spd.nr_pages)
Jens Axboe00522fb2006-04-26 14:39:29 +0200464 return splice_to_pipe(pipe, &spd);
Jens Axboe5274f052006-03-30 15:15:30 +0200465
Jens Axboe7480a902006-04-11 13:52:47 +0200466 return error;
Jens Axboe5274f052006-03-30 15:15:30 +0200467}
468
Jens Axboe83f91352006-04-02 23:05:09 +0200469/**
470 * generic_file_splice_read - splice data from file to a pipe
471 * @in: file to splice from
472 * @pipe: pipe to splice to
473 * @len: number of bytes to splice
474 * @flags: splice modifier flags
475 *
476 * Will read pages from given file and fill them into a pipe.
Jens Axboe83f91352006-04-02 23:05:09 +0200477 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200478ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
479 struct pipe_inode_info *pipe, size_t len,
480 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200481{
482 ssize_t spliced;
483 int ret;
Jens Axboed366d3982007-06-01 14:54:11 +0200484 loff_t isize, left;
485
486 isize = i_size_read(in->f_mapping->host);
487 if (unlikely(*ppos >= isize))
488 return 0;
489
490 left = isize - *ppos;
491 if (unlikely(left < len))
492 len = left;
Jens Axboe5274f052006-03-30 15:15:30 +0200493
494 ret = 0;
495 spliced = 0;
496 while (len) {
Jens Axboecbb7e572006-04-11 14:57:50 +0200497 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200498
Jens Axboec4f895c2006-04-19 15:56:12 +0200499 if (ret < 0)
Jens Axboe5274f052006-03-30 15:15:30 +0200500 break;
Jens Axboec4f895c2006-04-19 15:56:12 +0200501 else if (!ret) {
502 if (spliced)
503 break;
504 if (flags & SPLICE_F_NONBLOCK) {
505 ret = -EAGAIN;
506 break;
507 }
508 }
Jens Axboe5274f052006-03-30 15:15:30 +0200509
Jens Axboecbb7e572006-04-11 14:57:50 +0200510 *ppos += ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200511 len -= ret;
512 spliced += ret;
513 }
514
515 if (spliced)
516 return spliced;
517
518 return ret;
519}
520
Jens Axboe059a8f32006-04-02 23:06:05 +0200521EXPORT_SYMBOL(generic_file_splice_read);
522
Jens Axboe5274f052006-03-30 15:15:30 +0200523/*
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200524 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
Jens Axboe016b6612006-04-25 15:42:00 +0200525 * using sendpage(). Return the number of bytes sent.
Jens Axboe5274f052006-03-30 15:15:30 +0200526 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200527static int pipe_to_sendpage(struct pipe_inode_info *pipe,
Jens Axboe5274f052006-03-30 15:15:30 +0200528 struct pipe_buffer *buf, struct splice_desc *sd)
529{
530 struct file *file = sd->file;
531 loff_t pos = sd->pos;
Jens Axboef84d7512006-05-01 19:59:03 +0200532 int ret, more;
Jens Axboe5274f052006-03-30 15:15:30 +0200533
Jens Axboe76ad4d12006-05-03 10:41:33 +0200534 ret = buf->ops->pin(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200535 if (!ret) {
536 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200537
Jens Axboef84d7512006-05-01 19:59:03 +0200538 ret = file->f_op->sendpage(file, buf->page, buf->offset,
539 sd->len, &pos, more);
540 }
Jens Axboe5274f052006-03-30 15:15:30 +0200541
Jens Axboe016b6612006-04-25 15:42:00 +0200542 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200543}
544
545/*
546 * This is a little more tricky than the file -> pipe splicing. There are
547 * basically three cases:
548 *
549 * - Destination page already exists in the address space and there
550 * are users of it. For that case we have no other option that
551 * copying the data. Tough luck.
552 * - Destination page already exists in the address space, but there
553 * are no users of it. Make sure it's uptodate, then drop it. Fall
554 * through to last case.
555 * - Destination page does not exist, we can add the pipe page to
556 * the page cache and avoid the copy.
557 *
Jens Axboe83f91352006-04-02 23:05:09 +0200558 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
559 * sd->flags), we attempt to migrate pages from the pipe to the output
560 * file address space page cache. This is possible if no one else has
561 * the pipe page referenced outside of the pipe and page cache. If
562 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
563 * a new page in the output file page cache and fill/dirty that.
Jens Axboe5274f052006-03-30 15:15:30 +0200564 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200565static int pipe_to_file(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
Jens Axboe5274f052006-03-30 15:15:30 +0200566 struct splice_desc *sd)
567{
568 struct file *file = sd->file;
569 struct address_space *mapping = file->f_mapping;
Jens Axboe016b6612006-04-25 15:42:00 +0200570 unsigned int offset, this_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200571 struct page *page;
Jens Axboe5274f052006-03-30 15:15:30 +0200572 pgoff_t index;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200573 int ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200574
575 /*
Jens Axboe49d0b212006-04-10 09:04:41 +0200576 * make sure the data in this buffer is uptodate
Jens Axboe5274f052006-03-30 15:15:30 +0200577 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200578 ret = buf->ops->pin(pipe, buf);
Jens Axboef84d7512006-05-01 19:59:03 +0200579 if (unlikely(ret))
580 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200581
582 index = sd->pos >> PAGE_CACHE_SHIFT;
583 offset = sd->pos & ~PAGE_CACHE_MASK;
584
Jens Axboe016b6612006-04-25 15:42:00 +0200585 this_len = sd->len;
586 if (this_len + offset > PAGE_CACHE_SIZE)
587 this_len = PAGE_CACHE_SIZE - offset;
588
Jens Axboe5abc97a2006-03-30 15:16:46 +0200589find_page:
Nick Piggin485ddb42007-03-27 08:55:08 +0200590 page = find_lock_page(mapping, index);
591 if (!page) {
592 ret = -ENOMEM;
593 page = page_cache_alloc_cold(mapping);
594 if (unlikely(!page))
595 goto out_ret;
Jens Axboe9e0267c2006-04-19 15:57:31 +0200596
Nick Piggin485ddb42007-03-27 08:55:08 +0200597 /*
598 * This will also lock the page
599 */
600 ret = add_to_page_cache_lru(page, mapping, index,
601 GFP_KERNEL);
602 if (unlikely(ret))
603 goto out;
604 }
605
Jens Axboe016b6612006-04-25 15:42:00 +0200606 ret = mapping->a_ops->prepare_write(file, page, offset, offset+this_len);
Jens Axboebfc4ee32006-05-03 10:35:10 +0200607 if (unlikely(ret)) {
608 loff_t isize = i_size_read(mapping->host);
609
610 if (ret != AOP_TRUNCATED_PAGE)
611 unlock_page(page);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200612 page_cache_release(page);
Jens Axboebfc4ee32006-05-03 10:35:10 +0200613 if (ret == AOP_TRUNCATED_PAGE)
614 goto find_page;
615
616 /*
617 * prepare_write() may have instantiated a few blocks
618 * outside i_size. Trim these off again.
619 */
620 if (sd->pos + this_len > isize)
621 vmtruncate(mapping->host, isize);
622
Jens Axboee6e80f22006-10-11 10:03:09 +0200623 goto out_ret;
Jens Axboebfc4ee32006-05-03 10:35:10 +0200624 }
Jens Axboe5274f052006-03-30 15:15:30 +0200625
Jens Axboe0568b402006-05-01 19:50:48 +0200626 if (buf->page != page) {
Jens Axboef84d7512006-05-01 19:59:03 +0200627 /*
628 * Careful, ->map() uses KM_USER0!
629 */
Jens Axboe76ad4d12006-05-03 10:41:33 +0200630 char *src = buf->ops->map(pipe, buf, 1);
Jens Axboef84d7512006-05-01 19:59:03 +0200631 char *dst = kmap_atomic(page, KM_USER1);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200632
Jens Axboe016b6612006-04-25 15:42:00 +0200633 memcpy(dst + offset, src + buf->offset, this_len);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200634 flush_dcache_page(page);
Jens Axboef84d7512006-05-01 19:59:03 +0200635 kunmap_atomic(dst, KM_USER1);
Jens Axboe76ad4d12006-05-03 10:41:33 +0200636 buf->ops->unmap(pipe, buf, src);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200637 }
Jens Axboe5274f052006-03-30 15:15:30 +0200638
Jens Axboe016b6612006-04-25 15:42:00 +0200639 ret = mapping->a_ops->commit_write(file, page, offset, offset+this_len);
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200640 if (ret) {
641 if (ret == AOP_TRUNCATED_PAGE) {
642 page_cache_release(page);
643 goto find_page;
644 }
645 if (ret < 0)
646 goto out;
Jens Axboe0568b402006-05-01 19:50:48 +0200647 /*
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200648 * Partial write has happened, so 'ret' already initialized by
649 * number of bytes written, Where is nothing we have to do here.
Jens Axboe0568b402006-05-01 19:50:48 +0200650 */
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200651 } else
Jens Axboe0568b402006-05-01 19:50:48 +0200652 ret = this_len;
Dmitriy Monakhovd9993c32007-03-29 14:24:09 +0200653 /*
654 * Return the number of bytes written and mark page as
655 * accessed, we are now done!
656 */
657 mark_page_accessed(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200658out:
Jens Axboe0568b402006-05-01 19:50:48 +0200659 page_cache_release(page);
Jens Axboe9e0267c2006-04-19 15:57:31 +0200660 unlock_page(page);
Jens Axboee6e80f22006-10-11 10:03:09 +0200661out_ret:
Jens Axboe5274f052006-03-30 15:15:30 +0200662 return ret;
663}
664
Jens Axboe83f91352006-04-02 23:05:09 +0200665/*
666 * Pipe input worker. Most of this logic works like a regular pipe, the
667 * key here is the 'actor' worker passed in that actually moves the data
668 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
669 */
Mark Fasheh40bee44e2007-03-21 13:11:02 +0100670ssize_t __splice_from_pipe(struct pipe_inode_info *pipe,
671 struct file *out, loff_t *ppos, size_t len,
672 unsigned int flags, splice_actor *actor)
Jens Axboe5274f052006-03-30 15:15:30 +0200673{
Jens Axboe5274f052006-03-30 15:15:30 +0200674 int ret, do_wakeup, err;
675 struct splice_desc sd;
676
677 ret = 0;
678 do_wakeup = 0;
679
680 sd.total_len = len;
681 sd.flags = flags;
682 sd.file = out;
Jens Axboecbb7e572006-04-11 14:57:50 +0200683 sd.pos = *ppos;
Jens Axboe5274f052006-03-30 15:15:30 +0200684
Jens Axboe5274f052006-03-30 15:15:30 +0200685 for (;;) {
Jens Axboe6f767b02006-04-11 13:53:56 +0200686 if (pipe->nrbufs) {
687 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
Eric Dumazetd4c3cca2006-12-13 00:34:04 -0800688 const struct pipe_buf_operations *ops = buf->ops;
Jens Axboe5274f052006-03-30 15:15:30 +0200689
690 sd.len = buf->len;
691 if (sd.len > sd.total_len)
692 sd.len = sd.total_len;
693
Ingo Molnar3a326a22006-04-10 15:18:35 +0200694 err = actor(pipe, buf, &sd);
Jens Axboe016b6612006-04-25 15:42:00 +0200695 if (err <= 0) {
Jens Axboe5274f052006-03-30 15:15:30 +0200696 if (!ret && err != -ENODATA)
697 ret = err;
698
699 break;
700 }
701
Jens Axboe016b6612006-04-25 15:42:00 +0200702 ret += err;
703 buf->offset += err;
704 buf->len -= err;
705
706 sd.len -= err;
707 sd.pos += err;
708 sd.total_len -= err;
709 if (sd.len)
710 continue;
Ingo Molnar73d62d82006-04-11 13:57:21 +0200711
Jens Axboe5274f052006-03-30 15:15:30 +0200712 if (!buf->len) {
713 buf->ops = NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200714 ops->release(pipe, buf);
Jens Axboe6f767b02006-04-11 13:53:56 +0200715 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
716 pipe->nrbufs--;
717 if (pipe->inode)
718 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200719 }
720
Jens Axboe5274f052006-03-30 15:15:30 +0200721 if (!sd.total_len)
722 break;
723 }
724
Jens Axboe6f767b02006-04-11 13:53:56 +0200725 if (pipe->nrbufs)
Jens Axboe5274f052006-03-30 15:15:30 +0200726 continue;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200727 if (!pipe->writers)
Jens Axboe5274f052006-03-30 15:15:30 +0200728 break;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200729 if (!pipe->waiting_writers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200730 if (ret)
731 break;
732 }
733
Linus Torvalds29e35092006-04-02 12:46:35 -0700734 if (flags & SPLICE_F_NONBLOCK) {
735 if (!ret)
736 ret = -EAGAIN;
737 break;
738 }
739
Jens Axboe5274f052006-03-30 15:15:30 +0200740 if (signal_pending(current)) {
741 if (!ret)
742 ret = -ERESTARTSYS;
743 break;
744 }
745
746 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200747 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200748 if (waitqueue_active(&pipe->wait))
749 wake_up_interruptible_sync(&pipe->wait);
750 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200751 do_wakeup = 0;
752 }
753
Ingo Molnar3a326a22006-04-10 15:18:35 +0200754 pipe_wait(pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200755 }
756
Jens Axboe5274f052006-03-30 15:15:30 +0200757 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200758 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200759 if (waitqueue_active(&pipe->wait))
760 wake_up_interruptible(&pipe->wait);
761 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200762 }
763
Jens Axboe5274f052006-03-30 15:15:30 +0200764 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200765}
Mark Fasheh40bee44e2007-03-21 13:11:02 +0100766EXPORT_SYMBOL(__splice_from_pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200767
Mark Fasheh6da61802006-10-17 18:43:07 +0200768ssize_t splice_from_pipe(struct pipe_inode_info *pipe, struct file *out,
769 loff_t *ppos, size_t len, unsigned int flags,
770 splice_actor *actor)
771{
772 ssize_t ret;
773 struct inode *inode = out->f_mapping->host;
774
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);
782 ret = __splice_from_pipe(pipe, out, ppos, len, flags, actor);
783 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;
806 ssize_t ret;
807 int err;
808
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800809 err = remove_suid(out->f_path.dentry);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200810 if (unlikely(err))
811 return err;
812
Mark Fasheh6da61802006-10-17 18:43:07 +0200813 ret = __splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
814 if (ret > 0) {
Jens Axboe17ee4f42007-06-15 13:10:37 +0200815 unsigned long nr_pages;
816
Mark Fasheh6da61802006-10-17 18:43:07 +0200817 *ppos += ret;
Jens Axboe17ee4f42007-06-15 13:10:37 +0200818 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Mark Fasheh6da61802006-10-17 18:43:07 +0200819
820 /*
821 * If file or inode is SYNC and we actually wrote some data,
822 * sync it.
823 */
824 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
825 err = generic_osync_inode(inode, mapping,
826 OSYNC_METADATA|OSYNC_DATA);
827
828 if (err)
829 ret = err;
830 }
Jens Axboe17ee4f42007-06-15 13:10:37 +0200831 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
Mark Fasheh6da61802006-10-17 18:43:07 +0200832 }
833
834 return ret;
835}
836
837EXPORT_SYMBOL(generic_file_splice_write_nolock);
838
Jens Axboe83f91352006-04-02 23:05:09 +0200839/**
840 * generic_file_splice_write - splice data from a pipe to a file
Ingo Molnar3a326a22006-04-10 15:18:35 +0200841 * @pipe: pipe info
Jens Axboe83f91352006-04-02 23:05:09 +0200842 * @out: file to write to
843 * @len: number of bytes to splice
844 * @flags: splice modifier flags
845 *
846 * Will either move or copy pages (determined by @flags options) from
847 * the given pipe inode to the given file.
848 *
849 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200850ssize_t
851generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200852 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200853{
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200854 struct address_space *mapping = out->f_mapping;
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200855 struct inode *inode = mapping->host;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200856 ssize_t ret;
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200857 int err;
858
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800859 err = should_remove_suid(out->f_path.dentry);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200860 if (unlikely(err)) {
861 mutex_lock(&inode->i_mutex);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800862 err = __remove_suid(out->f_path.dentry, err);
Jens Axboe8c34e2d2006-10-17 19:43:22 +0200863 mutex_unlock(&inode->i_mutex);
864 if (err)
865 return err;
866 }
Ingo Molnar3a326a22006-04-10 15:18:35 +0200867
Jens Axboe00522fb2006-04-26 14:39:29 +0200868 ret = splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
Jens Axboea4514eb2006-04-19 15:57:05 +0200869 if (ret > 0) {
Jens Axboe17ee4f42007-06-15 13:10:37 +0200870 unsigned long nr_pages;
871
Jens Axboea4514eb2006-04-19 15:57:05 +0200872 *ppos += ret;
Jens Axboe17ee4f42007-06-15 13:10:37 +0200873 nr_pages = (ret + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200874
Jens Axboea4514eb2006-04-19 15:57:05 +0200875 /*
876 * If file or inode is SYNC and we actually wrote some data,
877 * sync it.
878 */
879 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
Jens Axboea4514eb2006-04-19 15:57:05 +0200880 mutex_lock(&inode->i_mutex);
881 err = generic_osync_inode(inode, mapping,
882 OSYNC_METADATA|OSYNC_DATA);
883 mutex_unlock(&inode->i_mutex);
884
885 if (err)
886 ret = err;
887 }
Jens Axboe17ee4f42007-06-15 13:10:37 +0200888 balance_dirty_pages_ratelimited_nr(mapping, nr_pages);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200889 }
890
891 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200892}
893
Jens Axboe059a8f32006-04-02 23:06:05 +0200894EXPORT_SYMBOL(generic_file_splice_write);
895
Jens Axboe83f91352006-04-02 23:05:09 +0200896/**
897 * generic_splice_sendpage - splice data from a pipe to a socket
898 * @inode: pipe inode
899 * @out: socket to write to
900 * @len: number of bytes to splice
901 * @flags: splice modifier flags
902 *
903 * Will send @len bytes from the pipe to a network socket. No data copying
904 * is involved.
905 *
906 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200907ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200908 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200909{
Jens Axboe00522fb2006-04-26 14:39:29 +0200910 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
Jens Axboe5274f052006-03-30 15:15:30 +0200911}
912
Jens Axboe059a8f32006-04-02 23:06:05 +0200913EXPORT_SYMBOL(generic_splice_sendpage);
Jeff Garzika0f06782006-03-30 23:06:13 -0500914
Jens Axboe83f91352006-04-02 23:05:09 +0200915/*
916 * Attempt to initiate a splice from pipe to file.
917 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200918static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200919 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200920{
Jens Axboe5274f052006-03-30 15:15:30 +0200921 int ret;
922
Jens Axboe49570e92006-04-11 13:56:09 +0200923 if (unlikely(!out->f_op || !out->f_op->splice_write))
Jens Axboe5274f052006-03-30 15:15:30 +0200924 return -EINVAL;
925
Jens Axboe49570e92006-04-11 13:56:09 +0200926 if (unlikely(!(out->f_mode & FMODE_WRITE)))
Jens Axboe5274f052006-03-30 15:15:30 +0200927 return -EBADF;
928
Jens Axboecbb7e572006-04-11 14:57:50 +0200929 ret = rw_verify_area(WRITE, out, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200930 if (unlikely(ret < 0))
931 return ret;
932
Jens Axboecbb7e572006-04-11 14:57:50 +0200933 return out->f_op->splice_write(pipe, out, ppos, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200934}
935
Jens Axboe83f91352006-04-02 23:05:09 +0200936/*
937 * Attempt to initiate a splice from a file to a pipe.
938 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200939static long do_splice_to(struct file *in, loff_t *ppos,
940 struct pipe_inode_info *pipe, size_t len,
941 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200942{
Jens Axboe5274f052006-03-30 15:15:30 +0200943 int ret;
944
Jens Axboe49570e92006-04-11 13:56:09 +0200945 if (unlikely(!in->f_op || !in->f_op->splice_read))
Jens Axboe5274f052006-03-30 15:15:30 +0200946 return -EINVAL;
947
Jens Axboe49570e92006-04-11 13:56:09 +0200948 if (unlikely(!(in->f_mode & FMODE_READ)))
Jens Axboe5274f052006-03-30 15:15:30 +0200949 return -EBADF;
950
Jens Axboecbb7e572006-04-11 14:57:50 +0200951 ret = rw_verify_area(READ, in, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200952 if (unlikely(ret < 0))
953 return ret;
954
Jens Axboecbb7e572006-04-11 14:57:50 +0200955 return in->f_op->splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200956}
957
Jens Axboecbb7e572006-04-11 14:57:50 +0200958long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
959 size_t len, unsigned int flags)
Jens Axboeb92ce552006-04-11 13:52:07 +0200960{
961 struct pipe_inode_info *pipe;
962 long ret, bytes;
Jens Axboecbb7e572006-04-11 14:57:50 +0200963 loff_t out_off;
Jens Axboeb92ce552006-04-11 13:52:07 +0200964 umode_t i_mode;
965 int i;
966
967 /*
968 * We require the input being a regular file, as we don't want to
969 * randomly drop data for eg socket -> socket splicing. Use the
970 * piped splicing for that!
971 */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800972 i_mode = in->f_path.dentry->d_inode->i_mode;
Jens Axboeb92ce552006-04-11 13:52:07 +0200973 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
974 return -EINVAL;
975
976 /*
977 * neither in nor out is a pipe, setup an internal pipe attached to
978 * 'out' and transfer the wanted data from 'in' to 'out' through that
979 */
980 pipe = current->splice_pipe;
Jens Axboe49570e92006-04-11 13:56:09 +0200981 if (unlikely(!pipe)) {
Jens Axboeb92ce552006-04-11 13:52:07 +0200982 pipe = alloc_pipe_info(NULL);
983 if (!pipe)
984 return -ENOMEM;
985
986 /*
987 * We don't have an immediate reader, but we'll read the stuff
Jens Axboe00522fb2006-04-26 14:39:29 +0200988 * out of the pipe right after the splice_to_pipe(). So set
Jens Axboeb92ce552006-04-11 13:52:07 +0200989 * PIPE_READERS appropriately.
990 */
991 pipe->readers = 1;
992
993 current->splice_pipe = pipe;
994 }
995
996 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200997 * Do the splice.
Jens Axboeb92ce552006-04-11 13:52:07 +0200998 */
999 ret = 0;
1000 bytes = 0;
Jens Axboecbb7e572006-04-11 14:57:50 +02001001 out_off = 0;
Jens Axboeb92ce552006-04-11 13:52:07 +02001002
1003 while (len) {
1004 size_t read_len, max_read_len;
1005
1006 /*
1007 * Do at most PIPE_BUFFERS pages worth of transfer:
1008 */
1009 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
1010
Jens Axboecbb7e572006-04-11 14:57:50 +02001011 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
Jens Axboeb92ce552006-04-11 13:52:07 +02001012 if (unlikely(ret < 0))
1013 goto out_release;
1014
1015 read_len = ret;
1016
1017 /*
1018 * NOTE: nonblocking mode only applies to the input. We
1019 * must not do the output in nonblocking mode as then we
1020 * could get stuck data in the internal pipe:
1021 */
Jens Axboecbb7e572006-04-11 14:57:50 +02001022 ret = do_splice_from(pipe, out, &out_off, read_len,
Jens Axboeb92ce552006-04-11 13:52:07 +02001023 flags & ~SPLICE_F_NONBLOCK);
1024 if (unlikely(ret < 0))
1025 goto out_release;
1026
1027 bytes += ret;
1028 len -= ret;
1029
1030 /*
1031 * In nonblocking mode, if we got back a short read then
1032 * that was due to either an IO error or due to the
1033 * pagecache entry not being there. In the IO error case
1034 * the _next_ splice attempt will produce a clean IO error
1035 * return value (not a short read), so in both cases it's
1036 * correct to break out of the loop here:
1037 */
1038 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
1039 break;
1040 }
1041
1042 pipe->nrbufs = pipe->curbuf = 0;
1043
1044 return bytes;
1045
1046out_release:
1047 /*
1048 * If we did an incomplete transfer we must release
1049 * the pipe buffers in question:
1050 */
1051 for (i = 0; i < PIPE_BUFFERS; i++) {
1052 struct pipe_buffer *buf = pipe->bufs + i;
1053
1054 if (buf->ops) {
1055 buf->ops->release(pipe, buf);
1056 buf->ops = NULL;
1057 }
1058 }
1059 pipe->nrbufs = pipe->curbuf = 0;
1060
1061 /*
1062 * If we transferred some data, return the number of bytes:
1063 */
1064 if (bytes > 0)
1065 return bytes;
1066
1067 return ret;
1068}
1069
Jens Axboe83f91352006-04-02 23:05:09 +02001070/*
Jens Axboeddac0d32006-11-04 12:49:32 +01001071 * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1072 * location, so checking ->i_pipe is not enough to verify that this is a
1073 * pipe.
1074 */
1075static inline struct pipe_inode_info *pipe_info(struct inode *inode)
1076{
1077 if (S_ISFIFO(inode->i_mode))
1078 return inode->i_pipe;
1079
1080 return NULL;
1081}
1082
1083/*
Jens Axboe83f91352006-04-02 23:05:09 +02001084 * Determine where to splice to/from.
1085 */
Ingo Molnar529565d2006-04-10 15:18:58 +02001086static long do_splice(struct file *in, loff_t __user *off_in,
1087 struct file *out, loff_t __user *off_out,
1088 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001089{
Ingo Molnar3a326a22006-04-10 15:18:35 +02001090 struct pipe_inode_info *pipe;
Jens Axboecbb7e572006-04-11 14:57:50 +02001091 loff_t offset, *off;
Jens Axboea4514eb2006-04-19 15:57:05 +02001092 long ret;
Jens Axboe5274f052006-03-30 15:15:30 +02001093
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001094 pipe = pipe_info(in->f_path.dentry->d_inode);
Ingo Molnar529565d2006-04-10 15:18:58 +02001095 if (pipe) {
1096 if (off_in)
1097 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001098 if (off_out) {
1099 if (out->f_op->llseek == no_llseek)
1100 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001101 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001102 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001103 off = &offset;
1104 } else
1105 off = &out->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +02001106
Jens Axboea4514eb2006-04-19 15:57:05 +02001107 ret = do_splice_from(pipe, out, off, len, flags);
1108
1109 if (off_out && copy_to_user(off_out, off, sizeof(loff_t)))
1110 ret = -EFAULT;
1111
1112 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +02001113 }
Jens Axboe5274f052006-03-30 15:15:30 +02001114
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001115 pipe = pipe_info(out->f_path.dentry->d_inode);
Ingo Molnar529565d2006-04-10 15:18:58 +02001116 if (pipe) {
1117 if (off_out)
1118 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001119 if (off_in) {
1120 if (in->f_op->llseek == no_llseek)
1121 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001122 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001123 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001124 off = &offset;
1125 } else
1126 off = &in->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +02001127
Jens Axboea4514eb2006-04-19 15:57:05 +02001128 ret = do_splice_to(in, off, pipe, len, flags);
1129
1130 if (off_in && copy_to_user(off_in, off, sizeof(loff_t)))
1131 ret = -EFAULT;
1132
1133 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +02001134 }
Jens Axboe5274f052006-03-30 15:15:30 +02001135
1136 return -EINVAL;
1137}
1138
Jens Axboe912d35f2006-04-26 10:59:21 +02001139/*
1140 * Map an iov into an array of pages and offset/length tupples. With the
1141 * partial_page structure, we can map several non-contiguous ranges into
1142 * our ones pages[] map instead of splitting that operation into pieces.
1143 * Could easily be exported as a generic helper for other users, in which
1144 * case one would probably want to add a 'max_nr_pages' parameter as well.
1145 */
1146static int get_iovec_page_array(const struct iovec __user *iov,
1147 unsigned int nr_vecs, struct page **pages,
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001148 struct partial_page *partial, int aligned)
Jens Axboe912d35f2006-04-26 10:59:21 +02001149{
1150 int buffers = 0, error = 0;
1151
1152 /*
1153 * It's ok to take the mmap_sem for reading, even
1154 * across a "get_user()".
1155 */
1156 down_read(&current->mm->mmap_sem);
1157
1158 while (nr_vecs) {
1159 unsigned long off, npages;
1160 void __user *base;
1161 size_t len;
1162 int i;
1163
1164 /*
1165 * Get user address base and length for this iovec.
1166 */
1167 error = get_user(base, &iov->iov_base);
1168 if (unlikely(error))
1169 break;
1170 error = get_user(len, &iov->iov_len);
1171 if (unlikely(error))
1172 break;
1173
1174 /*
1175 * Sanity check this iovec. 0 read succeeds.
1176 */
1177 if (unlikely(!len))
1178 break;
1179 error = -EFAULT;
1180 if (unlikely(!base))
1181 break;
1182
1183 /*
1184 * Get this base offset and number of pages, then map
1185 * in the user pages.
1186 */
1187 off = (unsigned long) base & ~PAGE_MASK;
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001188
1189 /*
1190 * If asked for alignment, the offset must be zero and the
1191 * length a multiple of the PAGE_SIZE.
1192 */
1193 error = -EINVAL;
1194 if (aligned && (off || len & ~PAGE_MASK))
1195 break;
1196
Jens Axboe912d35f2006-04-26 10:59:21 +02001197 npages = (off + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1198 if (npages > PIPE_BUFFERS - buffers)
1199 npages = PIPE_BUFFERS - buffers;
1200
1201 error = get_user_pages(current, current->mm,
1202 (unsigned long) base, npages, 0, 0,
1203 &pages[buffers], NULL);
1204
1205 if (unlikely(error <= 0))
1206 break;
1207
1208 /*
1209 * Fill this contiguous range into the partial page map.
1210 */
1211 for (i = 0; i < error; i++) {
Jens Axboe75914892006-05-02 12:57:18 +02001212 const int plen = min_t(size_t, len, PAGE_SIZE - off);
Jens Axboe912d35f2006-04-26 10:59:21 +02001213
1214 partial[buffers].offset = off;
1215 partial[buffers].len = plen;
1216
1217 off = 0;
1218 len -= plen;
1219 buffers++;
1220 }
1221
1222 /*
1223 * We didn't complete this iov, stop here since it probably
1224 * means we have to move some of this into a pipe to
1225 * be able to continue.
1226 */
1227 if (len)
1228 break;
1229
1230 /*
1231 * Don't continue if we mapped fewer pages than we asked for,
1232 * or if we mapped the max number of pages that we have
1233 * room for.
1234 */
1235 if (error < npages || buffers == PIPE_BUFFERS)
1236 break;
1237
1238 nr_vecs--;
1239 iov++;
1240 }
1241
1242 up_read(&current->mm->mmap_sem);
1243
1244 if (buffers)
1245 return buffers;
1246
1247 return error;
1248}
1249
1250/*
1251 * vmsplice splices a user address range into a pipe. It can be thought of
1252 * as splice-from-memory, where the regular splice is splice-from-file (or
1253 * to file). In both cases the output is a pipe, naturally.
1254 *
1255 * Note that vmsplice only supports splicing _from_ user memory to a pipe,
1256 * not the other way around. Splicing from user memory is a simple operation
1257 * that can be supported without any funky alignment restrictions or nasty
1258 * vm tricks. We simply map in the user memory and fill them into a pipe.
1259 * The reverse isn't quite as easy, though. There are two possible solutions
1260 * for that:
1261 *
1262 * - memcpy() the data internally, at which point we might as well just
1263 * do a regular read() on the buffer anyway.
1264 * - Lots of nasty vm tricks, that are neither fast nor flexible (it
1265 * has restriction limitations on both ends of the pipe).
1266 *
1267 * Alas, it isn't here.
1268 *
1269 */
1270static long do_vmsplice(struct file *file, const struct iovec __user *iov,
1271 unsigned long nr_segs, unsigned int flags)
1272{
Jens Axboeddac0d32006-11-04 12:49:32 +01001273 struct pipe_inode_info *pipe;
Jens Axboe912d35f2006-04-26 10:59:21 +02001274 struct page *pages[PIPE_BUFFERS];
1275 struct partial_page partial[PIPE_BUFFERS];
1276 struct splice_pipe_desc spd = {
1277 .pages = pages,
1278 .partial = partial,
1279 .flags = flags,
1280 .ops = &user_page_pipe_buf_ops,
1281 };
1282
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001283 pipe = pipe_info(file->f_path.dentry->d_inode);
Jens Axboeddac0d32006-11-04 12:49:32 +01001284 if (!pipe)
Jens Axboe912d35f2006-04-26 10:59:21 +02001285 return -EBADF;
1286 if (unlikely(nr_segs > UIO_MAXIOV))
1287 return -EINVAL;
1288 else if (unlikely(!nr_segs))
1289 return 0;
1290
Jens Axboe7afa6fd2006-05-01 20:02:33 +02001291 spd.nr_pages = get_iovec_page_array(iov, nr_segs, pages, partial,
1292 flags & SPLICE_F_GIFT);
Jens Axboe912d35f2006-04-26 10:59:21 +02001293 if (spd.nr_pages <= 0)
1294 return spd.nr_pages;
1295
Jens Axboe00522fb2006-04-26 14:39:29 +02001296 return splice_to_pipe(pipe, &spd);
Jens Axboe912d35f2006-04-26 10:59:21 +02001297}
1298
1299asmlinkage long sys_vmsplice(int fd, const struct iovec __user *iov,
1300 unsigned long nr_segs, unsigned int flags)
1301{
1302 struct file *file;
1303 long error;
1304 int fput;
1305
1306 error = -EBADF;
1307 file = fget_light(fd, &fput);
1308 if (file) {
1309 if (file->f_mode & FMODE_WRITE)
1310 error = do_vmsplice(file, iov, nr_segs, flags);
1311
1312 fput_light(file, fput);
1313 }
1314
1315 return error;
1316}
1317
Ingo Molnar529565d2006-04-10 15:18:58 +02001318asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
1319 int fd_out, loff_t __user *off_out,
1320 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001321{
1322 long error;
1323 struct file *in, *out;
1324 int fput_in, fput_out;
1325
1326 if (unlikely(!len))
1327 return 0;
1328
1329 error = -EBADF;
Ingo Molnar529565d2006-04-10 15:18:58 +02001330 in = fget_light(fd_in, &fput_in);
Jens Axboe5274f052006-03-30 15:15:30 +02001331 if (in) {
1332 if (in->f_mode & FMODE_READ) {
Ingo Molnar529565d2006-04-10 15:18:58 +02001333 out = fget_light(fd_out, &fput_out);
Jens Axboe5274f052006-03-30 15:15:30 +02001334 if (out) {
1335 if (out->f_mode & FMODE_WRITE)
Ingo Molnar529565d2006-04-10 15:18:58 +02001336 error = do_splice(in, off_in,
1337 out, off_out,
1338 len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +02001339 fput_light(out, fput_out);
1340 }
1341 }
1342
1343 fput_light(in, fput_in);
1344 }
1345
1346 return error;
1347}
Jens Axboe70524492006-04-11 15:51:17 +02001348
1349/*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001350 * Make sure there's data to read. Wait for input if we can, otherwise
1351 * return an appropriate error.
1352 */
1353static int link_ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1354{
1355 int ret;
1356
1357 /*
1358 * Check ->nrbufs without the inode lock first. This function
1359 * is speculative anyways, so missing one is ok.
1360 */
1361 if (pipe->nrbufs)
1362 return 0;
1363
1364 ret = 0;
1365 mutex_lock(&pipe->inode->i_mutex);
1366
1367 while (!pipe->nrbufs) {
1368 if (signal_pending(current)) {
1369 ret = -ERESTARTSYS;
1370 break;
1371 }
1372 if (!pipe->writers)
1373 break;
1374 if (!pipe->waiting_writers) {
1375 if (flags & SPLICE_F_NONBLOCK) {
1376 ret = -EAGAIN;
1377 break;
1378 }
1379 }
1380 pipe_wait(pipe);
1381 }
1382
1383 mutex_unlock(&pipe->inode->i_mutex);
1384 return ret;
1385}
1386
1387/*
1388 * Make sure there's writeable room. Wait for room if we can, otherwise
1389 * return an appropriate error.
1390 */
1391static int link_opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
1392{
1393 int ret;
1394
1395 /*
1396 * Check ->nrbufs without the inode lock first. This function
1397 * is speculative anyways, so missing one is ok.
1398 */
1399 if (pipe->nrbufs < PIPE_BUFFERS)
1400 return 0;
1401
1402 ret = 0;
1403 mutex_lock(&pipe->inode->i_mutex);
1404
1405 while (pipe->nrbufs >= PIPE_BUFFERS) {
1406 if (!pipe->readers) {
1407 send_sig(SIGPIPE, current, 0);
1408 ret = -EPIPE;
1409 break;
1410 }
1411 if (flags & SPLICE_F_NONBLOCK) {
1412 ret = -EAGAIN;
1413 break;
1414 }
1415 if (signal_pending(current)) {
1416 ret = -ERESTARTSYS;
1417 break;
1418 }
1419 pipe->waiting_writers++;
1420 pipe_wait(pipe);
1421 pipe->waiting_writers--;
1422 }
1423
1424 mutex_unlock(&pipe->inode->i_mutex);
1425 return ret;
1426}
1427
1428/*
Jens Axboe70524492006-04-11 15:51:17 +02001429 * Link contents of ipipe to opipe.
1430 */
1431static int link_pipe(struct pipe_inode_info *ipipe,
1432 struct pipe_inode_info *opipe,
1433 size_t len, unsigned int flags)
1434{
1435 struct pipe_buffer *ibuf, *obuf;
Jens Axboeaadd06e2006-07-10 11:00:01 +02001436 int ret = 0, i = 0, nbuf;
Jens Axboe70524492006-04-11 15:51:17 +02001437
1438 /*
1439 * Potential ABBA deadlock, work around it by ordering lock
1440 * grabbing by inode address. Otherwise two different processes
1441 * could deadlock (one doing tee from A -> B, the other from B -> A).
1442 */
Mark Fasheh62752ee2006-10-17 10:31:38 +02001443 inode_double_lock(ipipe->inode, opipe->inode);
Jens Axboe70524492006-04-11 15:51:17 +02001444
Jens Axboeaadd06e2006-07-10 11:00:01 +02001445 do {
Jens Axboe70524492006-04-11 15:51:17 +02001446 if (!opipe->readers) {
1447 send_sig(SIGPIPE, current, 0);
1448 if (!ret)
1449 ret = -EPIPE;
1450 break;
1451 }
Jens Axboe70524492006-04-11 15:51:17 +02001452
1453 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001454 * If we have iterated all input buffers or ran out of
1455 * output room, break.
Jens Axboe70524492006-04-11 15:51:17 +02001456 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001457 if (i >= ipipe->nrbufs || opipe->nrbufs >= PIPE_BUFFERS)
Jens Axboe70524492006-04-11 15:51:17 +02001458 break;
Jens Axboeaadd06e2006-07-10 11:00:01 +02001459
1460 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1461 nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1462
Jens Axboe2a27250e2006-04-19 15:56:40 +02001463 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001464 * Get a reference to this pipe buffer,
1465 * so we can copy the contents over.
Jens Axboe2a27250e2006-04-19 15:56:40 +02001466 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001467 ibuf->ops->get(ipipe, ibuf);
Jens Axboe70524492006-04-11 15:51:17 +02001468
Jens Axboeaadd06e2006-07-10 11:00:01 +02001469 obuf = opipe->bufs + nbuf;
1470 *obuf = *ibuf;
Jens Axboe70524492006-04-11 15:51:17 +02001471
Jens Axboeaadd06e2006-07-10 11:00:01 +02001472 /*
1473 * Don't inherit the gift flag, we need to
1474 * prevent multiple steals of this page.
1475 */
1476 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1477
1478 if (obuf->len > len)
1479 obuf->len = len;
1480
1481 opipe->nrbufs++;
1482 ret += obuf->len;
1483 len -= obuf->len;
1484 i++;
1485 } while (len);
Jens Axboe70524492006-04-11 15:51:17 +02001486
Mark Fasheh62752ee2006-10-17 10:31:38 +02001487 inode_double_unlock(ipipe->inode, opipe->inode);
Jens Axboe70524492006-04-11 15:51:17 +02001488
Jens Axboeaadd06e2006-07-10 11:00:01 +02001489 /*
1490 * If we put data in the output pipe, wakeup any potential readers.
1491 */
1492 if (ret > 0) {
Jens Axboe70524492006-04-11 15:51:17 +02001493 smp_mb();
1494 if (waitqueue_active(&opipe->wait))
1495 wake_up_interruptible(&opipe->wait);
1496 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1497 }
1498
1499 return ret;
1500}
1501
1502/*
1503 * This is a tee(1) implementation that works on pipes. It doesn't copy
1504 * any data, it simply references the 'in' pages on the 'out' pipe.
1505 * The 'flags' used are the SPLICE_F_* variants, currently the only
1506 * applicable one is SPLICE_F_NONBLOCK.
1507 */
1508static long do_tee(struct file *in, struct file *out, size_t len,
1509 unsigned int flags)
1510{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001511 struct pipe_inode_info *ipipe = pipe_info(in->f_path.dentry->d_inode);
1512 struct pipe_inode_info *opipe = pipe_info(out->f_path.dentry->d_inode);
Jens Axboeaadd06e2006-07-10 11:00:01 +02001513 int ret = -EINVAL;
Jens Axboe70524492006-04-11 15:51:17 +02001514
1515 /*
Jens Axboeaadd06e2006-07-10 11:00:01 +02001516 * Duplicate the contents of ipipe to opipe without actually
1517 * copying the data.
Jens Axboe70524492006-04-11 15:51:17 +02001518 */
Jens Axboeaadd06e2006-07-10 11:00:01 +02001519 if (ipipe && opipe && ipipe != opipe) {
1520 /*
1521 * Keep going, unless we encounter an error. The ipipe/opipe
1522 * ordering doesn't really matter.
1523 */
1524 ret = link_ipipe_prep(ipipe, flags);
1525 if (!ret) {
1526 ret = link_opipe_prep(opipe, flags);
1527 if (!ret) {
1528 ret = link_pipe(ipipe, opipe, len, flags);
1529 if (!ret && (flags & SPLICE_F_NONBLOCK))
1530 ret = -EAGAIN;
1531 }
1532 }
1533 }
Jens Axboe70524492006-04-11 15:51:17 +02001534
Jens Axboeaadd06e2006-07-10 11:00:01 +02001535 return ret;
Jens Axboe70524492006-04-11 15:51:17 +02001536}
1537
1538asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1539{
1540 struct file *in;
1541 int error, fput_in;
1542
1543 if (unlikely(!len))
1544 return 0;
1545
1546 error = -EBADF;
1547 in = fget_light(fdin, &fput_in);
1548 if (in) {
1549 if (in->f_mode & FMODE_READ) {
1550 int fput_out;
1551 struct file *out = fget_light(fdout, &fput_out);
1552
1553 if (out) {
1554 if (out->f_mode & FMODE_WRITE)
1555 error = do_tee(in, out, len, flags);
1556 fput_light(out, fput_out);
1557 }
1558 }
1559 fput_light(in, fput_in);
1560 }
1561
1562 return error;
1563}