blob: 7e8585574726ecd7a8a7074cce54f554c55b7901 [file] [log] [blame]
Jens Axboe5274f052006-03-30 15:15:30 +02001/*
2 * "splice": joining two ropes together by interweaving their strands.
3 *
4 * This is the "extended pipe" functionality, where a pipe is used as
5 * an arbitrary in-memory buffer. Think of a pipe as a small kernel
6 * buffer that you can use to transfer data from one end to the other.
7 *
8 * The traditional unix read/write is extended with a "splice()" operation
9 * that transfers data buffers to or from a pipe buffer.
10 *
11 * Named by Larry McVoy, original implementation from Linus, extended by
Jens Axboec2058e02006-04-11 13:56:34 +020012 * Jens to support splicing to files, network, direct splicing, etc and
13 * fixing lots of bugs.
Jens Axboe5274f052006-03-30 15:15:30 +020014 *
Jens Axboec2058e02006-04-11 13:56:34 +020015 * Copyright (C) 2005-2006 Jens Axboe <axboe@suse.de>
16 * Copyright (C) 2005-2006 Linus Torvalds <torvalds@osdl.org>
17 * Copyright (C) 2006 Ingo Molnar <mingo@elte.hu>
Jens Axboe5274f052006-03-30 15:15:30 +020018 *
19 */
20#include <linux/fs.h>
21#include <linux/file.h>
22#include <linux/pagemap.h>
23#include <linux/pipe_fs_i.h>
24#include <linux/mm_inline.h>
Jens Axboe5abc97a2006-03-30 15:16:46 +020025#include <linux/swap.h>
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020026#include <linux/writeback.h>
27#include <linux/buffer_head.h>
Jeff Garzika0f06782006-03-30 23:06:13 -050028#include <linux/module.h>
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020029#include <linux/syscalls.h>
Jens Axboe5274f052006-03-30 15:15:30 +020030
31/*
32 * Passed to the actors
33 */
34struct splice_desc {
35 unsigned int len, total_len; /* current and remaining length */
36 unsigned int flags; /* splice flags */
37 struct file *file; /* file to read/write */
38 loff_t pos; /* file position */
39};
40
Jens Axboe83f91352006-04-02 23:05:09 +020041/*
42 * Attempt to steal a page from a pipe buffer. This should perhaps go into
43 * a vm helper function, it's already simplified quite a bit by the
44 * addition of remove_mapping(). If success is returned, the caller may
45 * attempt to reuse this page for another destination.
46 */
Jens Axboe5abc97a2006-03-30 15:16:46 +020047static int page_cache_pipe_buf_steal(struct pipe_inode_info *info,
48 struct pipe_buffer *buf)
49{
50 struct page *page = buf->page;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020051 struct address_space *mapping = page_mapping(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +020052
53 WARN_ON(!PageLocked(page));
54 WARN_ON(!PageUptodate(page));
55
Jens Axboead8d6f02006-04-02 23:10:32 +020056 /*
57 * At least for ext2 with nobh option, we need to wait on writeback
58 * completing on this page, since we'll remove it from the pagecache.
59 * Otherwise truncate wont wait on the page, allowing the disk
60 * blocks to be reused by someone else before we actually wrote our
61 * data to them. fs corruption ensues.
62 */
63 wait_on_page_writeback(page);
64
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020065 if (PagePrivate(page))
66 try_to_release_page(page, mapping_gfp_mask(mapping));
67
68 if (!remove_mapping(mapping, page))
Jens Axboe5abc97a2006-03-30 15:16:46 +020069 return 1;
70
Jens Axboe3e7ee3e2006-04-02 23:11:04 +020071 buf->flags |= PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU;
Jens Axboe5abc97a2006-03-30 15:16:46 +020072 return 0;
73}
74
Jens Axboe5274f052006-03-30 15:15:30 +020075static void page_cache_pipe_buf_release(struct pipe_inode_info *info,
76 struct pipe_buffer *buf)
77{
78 page_cache_release(buf->page);
79 buf->page = NULL;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +020080 buf->flags &= ~(PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU);
Jens Axboe5274f052006-03-30 15:15:30 +020081}
82
83static void *page_cache_pipe_buf_map(struct file *file,
84 struct pipe_inode_info *info,
85 struct pipe_buffer *buf)
86{
87 struct page *page = buf->page;
Jens Axboe49d0b212006-04-10 09:04:41 +020088 int err;
Jens Axboe5274f052006-03-30 15:15:30 +020089
90 if (!PageUptodate(page)) {
Jens Axboe49d0b212006-04-10 09:04:41 +020091 lock_page(page);
92
93 /*
94 * Page got truncated/unhashed. This will cause a 0-byte
Ingo Molnar73d62d82006-04-11 13:57:21 +020095 * splice, if this is the first page.
Jens Axboe49d0b212006-04-10 09:04:41 +020096 */
97 if (!page->mapping) {
98 err = -ENODATA;
99 goto error;
100 }
101
102 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200103 * Uh oh, read-error from disk.
Jens Axboe49d0b212006-04-10 09:04:41 +0200104 */
105 if (!PageUptodate(page)) {
106 err = -EIO;
107 goto error;
108 }
109
110 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200111 * Page is ok afterall, fall through to mapping.
Jens Axboe49d0b212006-04-10 09:04:41 +0200112 */
Jens Axboe5274f052006-03-30 15:15:30 +0200113 unlock_page(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200114 }
115
Jens Axboe49d0b212006-04-10 09:04:41 +0200116 return kmap(page);
117error:
118 unlock_page(page);
119 return ERR_PTR(err);
Jens Axboe5274f052006-03-30 15:15:30 +0200120}
121
122static void page_cache_pipe_buf_unmap(struct pipe_inode_info *info,
123 struct pipe_buffer *buf)
124{
Jens Axboe5274f052006-03-30 15:15:30 +0200125 kunmap(buf->page);
126}
127
Jens Axboe70524492006-04-11 15:51:17 +0200128static void page_cache_pipe_buf_get(struct pipe_inode_info *info,
129 struct pipe_buffer *buf)
130{
131 page_cache_get(buf->page);
132}
133
Jens Axboe5274f052006-03-30 15:15:30 +0200134static struct pipe_buf_operations page_cache_pipe_buf_ops = {
135 .can_merge = 0,
136 .map = page_cache_pipe_buf_map,
137 .unmap = page_cache_pipe_buf_unmap,
138 .release = page_cache_pipe_buf_release,
Jens Axboe5abc97a2006-03-30 15:16:46 +0200139 .steal = page_cache_pipe_buf_steal,
Jens Axboe70524492006-04-11 15:51:17 +0200140 .get = page_cache_pipe_buf_get,
Jens Axboe5274f052006-03-30 15:15:30 +0200141};
142
Jens Axboe83f91352006-04-02 23:05:09 +0200143/*
144 * Pipe output worker. This sets up our pipe format with the page cache
145 * pipe buffer operations. Otherwise very similar to the regular pipe_writev().
146 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200147static ssize_t move_to_pipe(struct pipe_inode_info *pipe, struct page **pages,
Jens Axboe91ad66e2006-04-19 15:55:10 +0200148 int nr_pages, unsigned long len,
149 unsigned int offset, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200150{
Jens Axboe5274f052006-03-30 15:15:30 +0200151 int ret, do_wakeup, i;
152
153 ret = 0;
154 do_wakeup = 0;
155 i = 0;
156
Ingo Molnar3a326a22006-04-10 15:18:35 +0200157 if (pipe->inode)
158 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200159
Jens Axboe5274f052006-03-30 15:15:30 +0200160 for (;;) {
Ingo Molnar3a326a22006-04-10 15:18:35 +0200161 if (!pipe->readers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200162 send_sig(SIGPIPE, current, 0);
163 if (!ret)
164 ret = -EPIPE;
165 break;
166 }
167
Jens Axboe6f767b02006-04-11 13:53:56 +0200168 if (pipe->nrbufs < PIPE_BUFFERS) {
169 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200170 struct pipe_buffer *buf = pipe->bufs + newbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200171 struct page *page = pages[i++];
172 unsigned long this_len;
173
174 this_len = PAGE_CACHE_SIZE - offset;
175 if (this_len > len)
176 this_len = len;
177
178 buf->page = page;
179 buf->offset = offset;
180 buf->len = this_len;
181 buf->ops = &page_cache_pipe_buf_ops;
Jens Axboe6f767b02006-04-11 13:53:56 +0200182 pipe->nrbufs++;
183 if (pipe->inode)
184 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200185
186 ret += this_len;
187 len -= this_len;
188 offset = 0;
189 if (!--nr_pages)
190 break;
191 if (!len)
192 break;
Jens Axboe6f767b02006-04-11 13:53:56 +0200193 if (pipe->nrbufs < PIPE_BUFFERS)
Jens Axboe5274f052006-03-30 15:15:30 +0200194 continue;
195
196 break;
197 }
198
Linus Torvalds29e35092006-04-02 12:46:35 -0700199 if (flags & SPLICE_F_NONBLOCK) {
200 if (!ret)
201 ret = -EAGAIN;
202 break;
203 }
204
Jens Axboe5274f052006-03-30 15:15:30 +0200205 if (signal_pending(current)) {
206 if (!ret)
207 ret = -ERESTARTSYS;
208 break;
209 }
210
211 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200212 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200213 if (waitqueue_active(&pipe->wait))
214 wake_up_interruptible_sync(&pipe->wait);
215 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200216 do_wakeup = 0;
217 }
218
Ingo Molnar3a326a22006-04-10 15:18:35 +0200219 pipe->waiting_writers++;
220 pipe_wait(pipe);
221 pipe->waiting_writers--;
Jens Axboe5274f052006-03-30 15:15:30 +0200222 }
223
Ingo Molnar3a326a22006-04-10 15:18:35 +0200224 if (pipe->inode)
225 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200226
227 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200228 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200229 if (waitqueue_active(&pipe->wait))
230 wake_up_interruptible(&pipe->wait);
231 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200232 }
233
234 while (i < nr_pages)
235 page_cache_release(pages[i++]);
236
237 return ret;
238}
239
Ingo Molnar3a326a22006-04-10 15:18:35 +0200240static int
Jens Axboecbb7e572006-04-11 14:57:50 +0200241__generic_file_splice_read(struct file *in, loff_t *ppos,
242 struct pipe_inode_info *pipe, size_t len,
243 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200244{
245 struct address_space *mapping = in->f_mapping;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200246 unsigned int loff, offset, nr_pages;
Jens Axboe16c523d2006-04-10 09:03:58 +0200247 struct page *pages[PIPE_BUFFERS];
Jens Axboe5274f052006-03-30 15:15:30 +0200248 struct page *page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200249 pgoff_t index, end_index;
250 loff_t isize;
251 size_t bytes;
Jens Axboe7480a902006-04-11 13:52:47 +0200252 int i, error;
Jens Axboe5274f052006-03-30 15:15:30 +0200253
Jens Axboecbb7e572006-04-11 14:57:50 +0200254 index = *ppos >> PAGE_CACHE_SHIFT;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200255 loff = offset = *ppos & ~PAGE_CACHE_MASK;
Jens Axboe5274f052006-03-30 15:15:30 +0200256 nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
257
258 if (nr_pages > PIPE_BUFFERS)
259 nr_pages = PIPE_BUFFERS;
260
261 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200262 * Initiate read-ahead on this page range. however, don't call into
Jens Axboe0b749ce2006-04-10 09:05:04 +0200263 * read-ahead if this is a non-zero offset (we are likely doing small
264 * chunk splice and the page is already there) for a single page.
Jens Axboe5274f052006-03-30 15:15:30 +0200265 */
Jens Axboe0b749ce2006-04-10 09:05:04 +0200266 if (!offset || nr_pages > 1)
267 do_page_cache_readahead(mapping, in, index, nr_pages);
Jens Axboe5274f052006-03-30 15:15:30 +0200268
269 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200270 * Now fill in the holes:
Jens Axboe5274f052006-03-30 15:15:30 +0200271 */
Jens Axboe7480a902006-04-11 13:52:47 +0200272 error = 0;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200273 bytes = 0;
Jens Axboe16c523d2006-04-10 09:03:58 +0200274 for (i = 0; i < nr_pages; i++, index++) {
Jens Axboe7480a902006-04-11 13:52:47 +0200275find_page:
Jens Axboe5274f052006-03-30 15:15:30 +0200276 /*
Jens Axboe7480a902006-04-11 13:52:47 +0200277 * lookup the page for this index
Jens Axboe5274f052006-03-30 15:15:30 +0200278 */
Jens Axboe7480a902006-04-11 13:52:47 +0200279 page = find_get_page(mapping, index);
280 if (!page) {
281 /*
282 * If in nonblock mode then dont block on
283 * readpage (we've kicked readahead so there
284 * will be asynchronous progress):
285 */
286 if (flags & SPLICE_F_NONBLOCK)
287 break;
Jens Axboe5274f052006-03-30 15:15:30 +0200288
Jens Axboe7480a902006-04-11 13:52:47 +0200289 /*
290 * page didn't exist, allocate one
291 */
292 page = page_cache_alloc_cold(mapping);
293 if (!page)
294 break;
Jens Axboe5274f052006-03-30 15:15:30 +0200295
Jens Axboe7480a902006-04-11 13:52:47 +0200296 error = add_to_page_cache_lru(page, mapping, index,
297 mapping_gfp_mask(mapping));
Jens Axboe5274f052006-03-30 15:15:30 +0200298 if (unlikely(error)) {
299 page_cache_release(page);
300 break;
301 }
Jens Axboe7480a902006-04-11 13:52:47 +0200302
303 goto readpage;
Jens Axboe5274f052006-03-30 15:15:30 +0200304 }
Jens Axboe7480a902006-04-11 13:52:47 +0200305
306 /*
307 * If the page isn't uptodate, we may need to start io on it
308 */
309 if (!PageUptodate(page)) {
310 lock_page(page);
311
312 /*
313 * page was truncated, stop here. if this isn't the
314 * first page, we'll just complete what we already
315 * added
316 */
317 if (!page->mapping) {
318 unlock_page(page);
319 page_cache_release(page);
320 break;
321 }
322 /*
323 * page was already under io and is now done, great
324 */
325 if (PageUptodate(page)) {
326 unlock_page(page);
327 goto fill_it;
328 }
329
330readpage:
331 /*
332 * need to read in the page
333 */
334 error = mapping->a_ops->readpage(in, page);
335
336 if (unlikely(error)) {
337 page_cache_release(page);
338 if (error == AOP_TRUNCATED_PAGE)
339 goto find_page;
340 break;
341 }
Jens Axboe91ad66e2006-04-19 15:55:10 +0200342
343 /*
344 * i_size must be checked after ->readpage().
345 */
346 isize = i_size_read(mapping->host);
347 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
348 if (unlikely(!isize || index > end_index)) {
349 page_cache_release(page);
350 break;
351 }
352
353 /*
354 * if this is the last page, see if we need to shrink
355 * the length and stop
356 */
357 if (end_index == index) {
358 loff = PAGE_CACHE_SIZE - (isize & ~PAGE_CACHE_MASK);
359 if (bytes + loff > isize) {
360 page_cache_release(page);
361 break;
362 }
363 /*
364 * force quit after adding this page
365 */
366 nr_pages = i;
367 }
Jens Axboe7480a902006-04-11 13:52:47 +0200368 }
369fill_it:
Jens Axboe16c523d2006-04-10 09:03:58 +0200370 pages[i] = page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200371 bytes += PAGE_CACHE_SIZE - loff;
372 loff = 0;
Jens Axboe5274f052006-03-30 15:15:30 +0200373 }
374
Jens Axboe16c523d2006-04-10 09:03:58 +0200375 if (i)
Jens Axboe91ad66e2006-04-19 15:55:10 +0200376 return move_to_pipe(pipe, pages, i, bytes, offset, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200377
Jens Axboe7480a902006-04-11 13:52:47 +0200378 return error;
Jens Axboe5274f052006-03-30 15:15:30 +0200379}
380
Jens Axboe83f91352006-04-02 23:05:09 +0200381/**
382 * generic_file_splice_read - splice data from file to a pipe
383 * @in: file to splice from
384 * @pipe: pipe to splice to
385 * @len: number of bytes to splice
386 * @flags: splice modifier flags
387 *
388 * Will read pages from given file and fill them into a pipe.
Jens Axboe83f91352006-04-02 23:05:09 +0200389 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200390ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
391 struct pipe_inode_info *pipe, size_t len,
392 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200393{
394 ssize_t spliced;
395 int ret;
396
397 ret = 0;
398 spliced = 0;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200399
Jens Axboe5274f052006-03-30 15:15:30 +0200400 while (len) {
Jens Axboecbb7e572006-04-11 14:57:50 +0200401 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200402
403 if (ret <= 0)
404 break;
405
Jens Axboecbb7e572006-04-11 14:57:50 +0200406 *ppos += ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200407 len -= ret;
408 spliced += ret;
Linus Torvalds29e35092006-04-02 12:46:35 -0700409
410 if (!(flags & SPLICE_F_NONBLOCK))
411 continue;
412 ret = -EAGAIN;
413 break;
Jens Axboe5274f052006-03-30 15:15:30 +0200414 }
415
416 if (spliced)
417 return spliced;
418
419 return ret;
420}
421
Jens Axboe059a8f32006-04-02 23:06:05 +0200422EXPORT_SYMBOL(generic_file_splice_read);
423
Jens Axboe5274f052006-03-30 15:15:30 +0200424/*
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200425 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
426 * using sendpage().
Jens Axboe5274f052006-03-30 15:15:30 +0200427 */
428static int pipe_to_sendpage(struct pipe_inode_info *info,
429 struct pipe_buffer *buf, struct splice_desc *sd)
430{
431 struct file *file = sd->file;
432 loff_t pos = sd->pos;
433 unsigned int offset;
434 ssize_t ret;
435 void *ptr;
Jens Axboeb2b39fa2006-04-02 23:05:41 +0200436 int more;
Jens Axboe5274f052006-03-30 15:15:30 +0200437
438 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200439 * Sub-optimal, but we are limited by the pipe ->map. We don't
Jens Axboe5274f052006-03-30 15:15:30 +0200440 * need a kmap'ed buffer here, we just want to make sure we
441 * have the page pinned if the pipe page originates from the
Ingo Molnar73d62d82006-04-11 13:57:21 +0200442 * page cache.
Jens Axboe5274f052006-03-30 15:15:30 +0200443 */
444 ptr = buf->ops->map(file, info, buf);
445 if (IS_ERR(ptr))
446 return PTR_ERR(ptr);
447
448 offset = pos & ~PAGE_CACHE_MASK;
Jens Axboeb2b39fa2006-04-02 23:05:41 +0200449 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200450
Jens Axboeb2b39fa2006-04-02 23:05:41 +0200451 ret = file->f_op->sendpage(file, buf->page, offset, sd->len, &pos,more);
Jens Axboe5274f052006-03-30 15:15:30 +0200452
453 buf->ops->unmap(info, buf);
454 if (ret == sd->len)
455 return 0;
456
457 return -EIO;
458}
459
460/*
461 * This is a little more tricky than the file -> pipe splicing. There are
462 * basically three cases:
463 *
464 * - Destination page already exists in the address space and there
465 * are users of it. For that case we have no other option that
466 * copying the data. Tough luck.
467 * - Destination page already exists in the address space, but there
468 * are no users of it. Make sure it's uptodate, then drop it. Fall
469 * through to last case.
470 * - Destination page does not exist, we can add the pipe page to
471 * the page cache and avoid the copy.
472 *
Jens Axboe83f91352006-04-02 23:05:09 +0200473 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
474 * sd->flags), we attempt to migrate pages from the pipe to the output
475 * file address space page cache. This is possible if no one else has
476 * the pipe page referenced outside of the pipe and page cache. If
477 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
478 * a new page in the output file page cache and fill/dirty that.
Jens Axboe5274f052006-03-30 15:15:30 +0200479 */
480static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
481 struct splice_desc *sd)
482{
483 struct file *file = sd->file;
484 struct address_space *mapping = file->f_mapping;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200485 gfp_t gfp_mask = mapping_gfp_mask(mapping);
Jens Axboe5274f052006-03-30 15:15:30 +0200486 unsigned int offset;
487 struct page *page;
Jens Axboe5274f052006-03-30 15:15:30 +0200488 pgoff_t index;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200489 char *src;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200490 int ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200491
492 /*
Jens Axboe49d0b212006-04-10 09:04:41 +0200493 * make sure the data in this buffer is uptodate
Jens Axboe5274f052006-03-30 15:15:30 +0200494 */
495 src = buf->ops->map(file, info, buf);
496 if (IS_ERR(src))
497 return PTR_ERR(src);
498
499 index = sd->pos >> PAGE_CACHE_SHIFT;
500 offset = sd->pos & ~PAGE_CACHE_MASK;
501
Jens Axboe5274f052006-03-30 15:15:30 +0200502 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200503 * Reuse buf page, if SPLICE_F_MOVE is set.
Jens Axboe5274f052006-03-30 15:15:30 +0200504 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200505 if (sd->flags & SPLICE_F_MOVE) {
Jens Axboe83f91352006-04-02 23:05:09 +0200506 /*
507 * If steal succeeds, buf->page is now pruned from the vm
508 * side (LRU and page cache) and we can reuse it.
509 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200510 if (buf->ops->steal(info, buf))
511 goto find_page;
Jens Axboe5274f052006-03-30 15:15:30 +0200512
Jens Axboe49d0b212006-04-10 09:04:41 +0200513 /*
514 * this will also set the page locked
515 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200516 page = buf->page;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200517 if (add_to_page_cache(page, mapping, index, gfp_mask))
Jens Axboe5abc97a2006-03-30 15:16:46 +0200518 goto find_page;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200519
520 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
521 lru_cache_add(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200522 } else {
523find_page:
524 ret = -ENOMEM;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200525 page = find_or_create_page(mapping, index, gfp_mask);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200526 if (!page)
Dave Jones9aefe432006-04-10 09:02:40 +0200527 goto out_nomem;
Jens Axboe5274f052006-03-30 15:15:30 +0200528
Jens Axboe5abc97a2006-03-30 15:16:46 +0200529 /*
530 * If the page is uptodate, it is also locked. If it isn't
531 * uptodate, we can mark it uptodate if we are filling the
532 * full page. Otherwise we need to read it in first...
533 */
534 if (!PageUptodate(page)) {
535 if (sd->len < PAGE_CACHE_SIZE) {
536 ret = mapping->a_ops->readpage(file, page);
537 if (unlikely(ret))
538 goto out;
539
540 lock_page(page);
541
542 if (!PageUptodate(page)) {
543 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200544 * Page got invalidated, repeat.
Jens Axboe5abc97a2006-03-30 15:16:46 +0200545 */
546 if (!page->mapping) {
547 unlock_page(page);
548 page_cache_release(page);
549 goto find_page;
550 }
551 ret = -EIO;
552 goto out;
Jens Axboe5274f052006-03-30 15:15:30 +0200553 }
Jens Axboe5abc97a2006-03-30 15:16:46 +0200554 } else {
555 WARN_ON(!PageLocked(page));
556 SetPageUptodate(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200557 }
Jens Axboe5274f052006-03-30 15:15:30 +0200558 }
559 }
560
561 ret = mapping->a_ops->prepare_write(file, page, 0, sd->len);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200562 if (ret == AOP_TRUNCATED_PAGE) {
563 page_cache_release(page);
564 goto find_page;
565 } else if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200566 goto out;
567
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200568 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
Jens Axboe5abc97a2006-03-30 15:16:46 +0200569 char *dst = kmap_atomic(page, KM_USER0);
570
571 memcpy(dst + offset, src + buf->offset, sd->len);
572 flush_dcache_page(page);
573 kunmap_atomic(dst, KM_USER0);
574 }
Jens Axboe5274f052006-03-30 15:15:30 +0200575
576 ret = mapping->a_ops->commit_write(file, page, 0, sd->len);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200577 if (ret == AOP_TRUNCATED_PAGE) {
578 page_cache_release(page);
579 goto find_page;
580 } else if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200581 goto out;
582
Jens Axboec7f21e42006-04-10 09:01:01 +0200583 mark_page_accessed(page);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200584 balance_dirty_pages_ratelimited(mapping);
Jens Axboe5274f052006-03-30 15:15:30 +0200585out:
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200586 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
Jens Axboe5abc97a2006-03-30 15:16:46 +0200587 page_cache_release(page);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200588 unlock_page(page);
589 }
Dave Jones9aefe432006-04-10 09:02:40 +0200590out_nomem:
Jens Axboe5274f052006-03-30 15:15:30 +0200591 buf->ops->unmap(info, buf);
592 return ret;
593}
594
595typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
596 struct splice_desc *);
597
Jens Axboe83f91352006-04-02 23:05:09 +0200598/*
599 * Pipe input worker. Most of this logic works like a regular pipe, the
600 * key here is the 'actor' worker passed in that actually moves the data
601 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
602 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200603static ssize_t move_from_pipe(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200604 loff_t *ppos, size_t len, unsigned int flags,
Jens Axboe5274f052006-03-30 15:15:30 +0200605 splice_actor *actor)
606{
Jens Axboe5274f052006-03-30 15:15:30 +0200607 int ret, do_wakeup, err;
608 struct splice_desc sd;
609
610 ret = 0;
611 do_wakeup = 0;
612
613 sd.total_len = len;
614 sd.flags = flags;
615 sd.file = out;
Jens Axboecbb7e572006-04-11 14:57:50 +0200616 sd.pos = *ppos;
Jens Axboe5274f052006-03-30 15:15:30 +0200617
Ingo Molnar3a326a22006-04-10 15:18:35 +0200618 if (pipe->inode)
619 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200620
Jens Axboe5274f052006-03-30 15:15:30 +0200621 for (;;) {
Jens Axboe6f767b02006-04-11 13:53:56 +0200622 if (pipe->nrbufs) {
623 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200624 struct pipe_buf_operations *ops = buf->ops;
625
626 sd.len = buf->len;
627 if (sd.len > sd.total_len)
628 sd.len = sd.total_len;
629
Ingo Molnar3a326a22006-04-10 15:18:35 +0200630 err = actor(pipe, buf, &sd);
Jens Axboe5274f052006-03-30 15:15:30 +0200631 if (err) {
632 if (!ret && err != -ENODATA)
633 ret = err;
634
635 break;
636 }
637
638 ret += sd.len;
639 buf->offset += sd.len;
640 buf->len -= sd.len;
Ingo Molnar73d62d82006-04-11 13:57:21 +0200641
Jens Axboe5274f052006-03-30 15:15:30 +0200642 if (!buf->len) {
643 buf->ops = NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200644 ops->release(pipe, buf);
Jens Axboe6f767b02006-04-11 13:53:56 +0200645 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
646 pipe->nrbufs--;
647 if (pipe->inode)
648 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200649 }
650
651 sd.pos += sd.len;
652 sd.total_len -= sd.len;
653 if (!sd.total_len)
654 break;
655 }
656
Jens Axboe6f767b02006-04-11 13:53:56 +0200657 if (pipe->nrbufs)
Jens Axboe5274f052006-03-30 15:15:30 +0200658 continue;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200659 if (!pipe->writers)
Jens Axboe5274f052006-03-30 15:15:30 +0200660 break;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200661 if (!pipe->waiting_writers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200662 if (ret)
663 break;
664 }
665
Linus Torvalds29e35092006-04-02 12:46:35 -0700666 if (flags & SPLICE_F_NONBLOCK) {
667 if (!ret)
668 ret = -EAGAIN;
669 break;
670 }
671
Jens Axboe5274f052006-03-30 15:15:30 +0200672 if (signal_pending(current)) {
673 if (!ret)
674 ret = -ERESTARTSYS;
675 break;
676 }
677
678 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200679 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200680 if (waitqueue_active(&pipe->wait))
681 wake_up_interruptible_sync(&pipe->wait);
682 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200683 do_wakeup = 0;
684 }
685
Ingo Molnar3a326a22006-04-10 15:18:35 +0200686 pipe_wait(pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200687 }
688
Ingo Molnar3a326a22006-04-10 15:18:35 +0200689 if (pipe->inode)
690 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200691
692 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200693 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200694 if (waitqueue_active(&pipe->wait))
695 wake_up_interruptible(&pipe->wait);
696 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200697 }
698
Jens Axboe5274f052006-03-30 15:15:30 +0200699 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200700}
701
Jens Axboe83f91352006-04-02 23:05:09 +0200702/**
703 * generic_file_splice_write - splice data from a pipe to a file
Ingo Molnar3a326a22006-04-10 15:18:35 +0200704 * @pipe: pipe info
Jens Axboe83f91352006-04-02 23:05:09 +0200705 * @out: file to write to
706 * @len: number of bytes to splice
707 * @flags: splice modifier flags
708 *
709 * Will either move or copy pages (determined by @flags options) from
710 * the given pipe inode to the given file.
711 *
712 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200713ssize_t
714generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200715 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200716{
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200717 struct address_space *mapping = out->f_mapping;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200718 ssize_t ret;
719
Jens Axboecbb7e572006-04-11 14:57:50 +0200720 ret = move_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200721
722 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200723 * If file or inode is SYNC and we actually wrote some data, sync it.
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200724 */
725 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(mapping->host))
726 && ret > 0) {
727 struct inode *inode = mapping->host;
728 int err;
729
730 mutex_lock(&inode->i_mutex);
731 err = generic_osync_inode(mapping->host, mapping,
Jens Axboe49570e92006-04-11 13:56:09 +0200732 OSYNC_METADATA|OSYNC_DATA);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200733 mutex_unlock(&inode->i_mutex);
734
735 if (err)
736 ret = err;
737 }
738
739 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200740}
741
Jens Axboe059a8f32006-04-02 23:06:05 +0200742EXPORT_SYMBOL(generic_file_splice_write);
743
Jens Axboe83f91352006-04-02 23:05:09 +0200744/**
745 * generic_splice_sendpage - splice data from a pipe to a socket
746 * @inode: pipe inode
747 * @out: socket to write to
748 * @len: number of bytes to splice
749 * @flags: splice modifier flags
750 *
751 * Will send @len bytes from the pipe to a network socket. No data copying
752 * is involved.
753 *
754 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200755ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200756 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200757{
Jens Axboecbb7e572006-04-11 14:57:50 +0200758 return move_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
Jens Axboe5274f052006-03-30 15:15:30 +0200759}
760
Jens Axboe059a8f32006-04-02 23:06:05 +0200761EXPORT_SYMBOL(generic_splice_sendpage);
Jeff Garzika0f06782006-03-30 23:06:13 -0500762
Jens Axboe83f91352006-04-02 23:05:09 +0200763/*
764 * Attempt to initiate a splice from pipe to file.
765 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200766static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200767 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200768{
Jens Axboe5274f052006-03-30 15:15:30 +0200769 int ret;
770
Jens Axboe49570e92006-04-11 13:56:09 +0200771 if (unlikely(!out->f_op || !out->f_op->splice_write))
Jens Axboe5274f052006-03-30 15:15:30 +0200772 return -EINVAL;
773
Jens Axboe49570e92006-04-11 13:56:09 +0200774 if (unlikely(!(out->f_mode & FMODE_WRITE)))
Jens Axboe5274f052006-03-30 15:15:30 +0200775 return -EBADF;
776
Jens Axboecbb7e572006-04-11 14:57:50 +0200777 ret = rw_verify_area(WRITE, out, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200778 if (unlikely(ret < 0))
779 return ret;
780
Jens Axboecbb7e572006-04-11 14:57:50 +0200781 return out->f_op->splice_write(pipe, out, ppos, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200782}
783
Jens Axboe83f91352006-04-02 23:05:09 +0200784/*
785 * Attempt to initiate a splice from a file to a pipe.
786 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200787static long do_splice_to(struct file *in, loff_t *ppos,
788 struct pipe_inode_info *pipe, size_t len,
789 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200790{
Jens Axboecbb7e572006-04-11 14:57:50 +0200791 loff_t isize, left;
Jens Axboe5274f052006-03-30 15:15:30 +0200792 int ret;
793
Jens Axboe49570e92006-04-11 13:56:09 +0200794 if (unlikely(!in->f_op || !in->f_op->splice_read))
Jens Axboe5274f052006-03-30 15:15:30 +0200795 return -EINVAL;
796
Jens Axboe49570e92006-04-11 13:56:09 +0200797 if (unlikely(!(in->f_mode & FMODE_READ)))
Jens Axboe5274f052006-03-30 15:15:30 +0200798 return -EBADF;
799
Jens Axboecbb7e572006-04-11 14:57:50 +0200800 ret = rw_verify_area(READ, in, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200801 if (unlikely(ret < 0))
802 return ret;
803
804 isize = i_size_read(in->f_mapping->host);
Jens Axboecbb7e572006-04-11 14:57:50 +0200805 if (unlikely(*ppos >= isize))
Jens Axboe5274f052006-03-30 15:15:30 +0200806 return 0;
807
Jens Axboecbb7e572006-04-11 14:57:50 +0200808 left = isize - *ppos;
Jens Axboe49570e92006-04-11 13:56:09 +0200809 if (unlikely(left < len))
Jens Axboe5274f052006-03-30 15:15:30 +0200810 len = left;
811
Jens Axboecbb7e572006-04-11 14:57:50 +0200812 return in->f_op->splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200813}
814
Jens Axboecbb7e572006-04-11 14:57:50 +0200815long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
816 size_t len, unsigned int flags)
Jens Axboeb92ce552006-04-11 13:52:07 +0200817{
818 struct pipe_inode_info *pipe;
819 long ret, bytes;
Jens Axboecbb7e572006-04-11 14:57:50 +0200820 loff_t out_off;
Jens Axboeb92ce552006-04-11 13:52:07 +0200821 umode_t i_mode;
822 int i;
823
824 /*
825 * We require the input being a regular file, as we don't want to
826 * randomly drop data for eg socket -> socket splicing. Use the
827 * piped splicing for that!
828 */
829 i_mode = in->f_dentry->d_inode->i_mode;
830 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
831 return -EINVAL;
832
833 /*
834 * neither in nor out is a pipe, setup an internal pipe attached to
835 * 'out' and transfer the wanted data from 'in' to 'out' through that
836 */
837 pipe = current->splice_pipe;
Jens Axboe49570e92006-04-11 13:56:09 +0200838 if (unlikely(!pipe)) {
Jens Axboeb92ce552006-04-11 13:52:07 +0200839 pipe = alloc_pipe_info(NULL);
840 if (!pipe)
841 return -ENOMEM;
842
843 /*
844 * We don't have an immediate reader, but we'll read the stuff
845 * out of the pipe right after the move_to_pipe(). So set
846 * PIPE_READERS appropriately.
847 */
848 pipe->readers = 1;
849
850 current->splice_pipe = pipe;
851 }
852
853 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200854 * Do the splice.
Jens Axboeb92ce552006-04-11 13:52:07 +0200855 */
856 ret = 0;
857 bytes = 0;
Jens Axboecbb7e572006-04-11 14:57:50 +0200858 out_off = 0;
Jens Axboeb92ce552006-04-11 13:52:07 +0200859
860 while (len) {
861 size_t read_len, max_read_len;
862
863 /*
864 * Do at most PIPE_BUFFERS pages worth of transfer:
865 */
866 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
867
Jens Axboecbb7e572006-04-11 14:57:50 +0200868 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
Jens Axboeb92ce552006-04-11 13:52:07 +0200869 if (unlikely(ret < 0))
870 goto out_release;
871
872 read_len = ret;
873
874 /*
875 * NOTE: nonblocking mode only applies to the input. We
876 * must not do the output in nonblocking mode as then we
877 * could get stuck data in the internal pipe:
878 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200879 ret = do_splice_from(pipe, out, &out_off, read_len,
Jens Axboeb92ce552006-04-11 13:52:07 +0200880 flags & ~SPLICE_F_NONBLOCK);
881 if (unlikely(ret < 0))
882 goto out_release;
883
884 bytes += ret;
885 len -= ret;
886
887 /*
888 * In nonblocking mode, if we got back a short read then
889 * that was due to either an IO error or due to the
890 * pagecache entry not being there. In the IO error case
891 * the _next_ splice attempt will produce a clean IO error
892 * return value (not a short read), so in both cases it's
893 * correct to break out of the loop here:
894 */
895 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
896 break;
897 }
898
899 pipe->nrbufs = pipe->curbuf = 0;
900
901 return bytes;
902
903out_release:
904 /*
905 * If we did an incomplete transfer we must release
906 * the pipe buffers in question:
907 */
908 for (i = 0; i < PIPE_BUFFERS; i++) {
909 struct pipe_buffer *buf = pipe->bufs + i;
910
911 if (buf->ops) {
912 buf->ops->release(pipe, buf);
913 buf->ops = NULL;
914 }
915 }
916 pipe->nrbufs = pipe->curbuf = 0;
917
918 /*
919 * If we transferred some data, return the number of bytes:
920 */
921 if (bytes > 0)
922 return bytes;
923
924 return ret;
925}
926
927EXPORT_SYMBOL(do_splice_direct);
928
Jens Axboe83f91352006-04-02 23:05:09 +0200929/*
930 * Determine where to splice to/from.
931 */
Ingo Molnar529565d2006-04-10 15:18:58 +0200932static long do_splice(struct file *in, loff_t __user *off_in,
933 struct file *out, loff_t __user *off_out,
934 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200935{
Ingo Molnar3a326a22006-04-10 15:18:35 +0200936 struct pipe_inode_info *pipe;
Jens Axboecbb7e572006-04-11 14:57:50 +0200937 loff_t offset, *off;
Jens Axboe5274f052006-03-30 15:15:30 +0200938
Ingo Molnar3a326a22006-04-10 15:18:35 +0200939 pipe = in->f_dentry->d_inode->i_pipe;
Ingo Molnar529565d2006-04-10 15:18:58 +0200940 if (pipe) {
941 if (off_in)
942 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +0200943 if (off_out) {
944 if (out->f_op->llseek == no_llseek)
945 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +0200946 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +0200947 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +0200948 off = &offset;
949 } else
950 off = &out->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +0200951
Jens Axboecbb7e572006-04-11 14:57:50 +0200952 return do_splice_from(pipe, out, off, len, flags);
Ingo Molnar529565d2006-04-10 15:18:58 +0200953 }
Jens Axboe5274f052006-03-30 15:15:30 +0200954
Ingo Molnar3a326a22006-04-10 15:18:35 +0200955 pipe = out->f_dentry->d_inode->i_pipe;
Ingo Molnar529565d2006-04-10 15:18:58 +0200956 if (pipe) {
957 if (off_out)
958 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +0200959 if (off_in) {
960 if (in->f_op->llseek == no_llseek)
961 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +0200962 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +0200963 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +0200964 off = &offset;
965 } else
966 off = &in->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +0200967
Jens Axboecbb7e572006-04-11 14:57:50 +0200968 return do_splice_to(in, off, pipe, len, flags);
Ingo Molnar529565d2006-04-10 15:18:58 +0200969 }
Jens Axboe5274f052006-03-30 15:15:30 +0200970
971 return -EINVAL;
972}
973
Ingo Molnar529565d2006-04-10 15:18:58 +0200974asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
975 int fd_out, loff_t __user *off_out,
976 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200977{
978 long error;
979 struct file *in, *out;
980 int fput_in, fput_out;
981
982 if (unlikely(!len))
983 return 0;
984
985 error = -EBADF;
Ingo Molnar529565d2006-04-10 15:18:58 +0200986 in = fget_light(fd_in, &fput_in);
Jens Axboe5274f052006-03-30 15:15:30 +0200987 if (in) {
988 if (in->f_mode & FMODE_READ) {
Ingo Molnar529565d2006-04-10 15:18:58 +0200989 out = fget_light(fd_out, &fput_out);
Jens Axboe5274f052006-03-30 15:15:30 +0200990 if (out) {
991 if (out->f_mode & FMODE_WRITE)
Ingo Molnar529565d2006-04-10 15:18:58 +0200992 error = do_splice(in, off_in,
993 out, off_out,
994 len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200995 fput_light(out, fput_out);
996 }
997 }
998
999 fput_light(in, fput_in);
1000 }
1001
1002 return error;
1003}
Jens Axboe70524492006-04-11 15:51:17 +02001004
1005/*
1006 * Link contents of ipipe to opipe.
1007 */
1008static int link_pipe(struct pipe_inode_info *ipipe,
1009 struct pipe_inode_info *opipe,
1010 size_t len, unsigned int flags)
1011{
1012 struct pipe_buffer *ibuf, *obuf;
1013 int ret = 0, do_wakeup = 0, i;
1014
1015 /*
1016 * Potential ABBA deadlock, work around it by ordering lock
1017 * grabbing by inode address. Otherwise two different processes
1018 * could deadlock (one doing tee from A -> B, the other from B -> A).
1019 */
1020 if (ipipe->inode < opipe->inode) {
1021 mutex_lock(&ipipe->inode->i_mutex);
1022 mutex_lock(&opipe->inode->i_mutex);
1023 } else {
1024 mutex_lock(&opipe->inode->i_mutex);
1025 mutex_lock(&ipipe->inode->i_mutex);
1026 }
1027
1028 for (i = 0;; i++) {
1029 if (!opipe->readers) {
1030 send_sig(SIGPIPE, current, 0);
1031 if (!ret)
1032 ret = -EPIPE;
1033 break;
1034 }
1035 if (ipipe->nrbufs - i) {
1036 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1037
1038 /*
1039 * If we have room, fill this buffer
1040 */
1041 if (opipe->nrbufs < PIPE_BUFFERS) {
1042 int nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1043
1044 /*
1045 * Get a reference to this pipe buffer,
1046 * so we can copy the contents over.
1047 */
1048 ibuf->ops->get(ipipe, ibuf);
1049
1050 obuf = opipe->bufs + nbuf;
1051 *obuf = *ibuf;
1052
1053 if (obuf->len > len)
1054 obuf->len = len;
1055
1056 opipe->nrbufs++;
1057 do_wakeup = 1;
1058 ret += obuf->len;
1059 len -= obuf->len;
1060
1061 if (!len)
1062 break;
1063 if (opipe->nrbufs < PIPE_BUFFERS)
1064 continue;
1065 }
1066
1067 /*
1068 * We have input available, but no output room.
1069 * If we already copied data, return that.
1070 */
1071 if (flags & SPLICE_F_NONBLOCK) {
1072 if (!ret)
1073 ret = -EAGAIN;
1074 break;
1075 }
1076 if (signal_pending(current)) {
1077 if (!ret)
1078 ret = -ERESTARTSYS;
1079 break;
1080 }
1081 if (do_wakeup) {
1082 smp_mb();
1083 if (waitqueue_active(&opipe->wait))
1084 wake_up_interruptible(&opipe->wait);
1085 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1086 do_wakeup = 0;
1087 }
1088
1089 opipe->waiting_writers++;
1090 pipe_wait(opipe);
1091 opipe->waiting_writers--;
1092 continue;
1093 }
1094
1095 /*
1096 * No input buffers, do the usual checks for available
1097 * writers and blocking and wait if necessary
1098 */
1099 if (!ipipe->writers)
1100 break;
1101 if (!ipipe->waiting_writers) {
1102 if (ret)
1103 break;
1104 }
1105 if (flags & SPLICE_F_NONBLOCK) {
1106 if (!ret)
1107 ret = -EAGAIN;
1108 break;
1109 }
1110 if (signal_pending(current)) {
1111 if (!ret)
1112 ret = -ERESTARTSYS;
1113 break;
1114 }
1115
1116 if (waitqueue_active(&ipipe->wait))
1117 wake_up_interruptible_sync(&ipipe->wait);
1118 kill_fasync(&ipipe->fasync_writers, SIGIO, POLL_OUT);
1119
1120 pipe_wait(ipipe);
1121 }
1122
1123 mutex_unlock(&ipipe->inode->i_mutex);
1124 mutex_unlock(&opipe->inode->i_mutex);
1125
1126 if (do_wakeup) {
1127 smp_mb();
1128 if (waitqueue_active(&opipe->wait))
1129 wake_up_interruptible(&opipe->wait);
1130 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1131 }
1132
1133 return ret;
1134}
1135
1136/*
1137 * This is a tee(1) implementation that works on pipes. It doesn't copy
1138 * any data, it simply references the 'in' pages on the 'out' pipe.
1139 * The 'flags' used are the SPLICE_F_* variants, currently the only
1140 * applicable one is SPLICE_F_NONBLOCK.
1141 */
1142static long do_tee(struct file *in, struct file *out, size_t len,
1143 unsigned int flags)
1144{
1145 struct pipe_inode_info *ipipe = in->f_dentry->d_inode->i_pipe;
1146 struct pipe_inode_info *opipe = out->f_dentry->d_inode->i_pipe;
1147
1148 /*
1149 * Link ipipe to the two output pipes, consuming as we go along.
1150 */
1151 if (ipipe && opipe)
1152 return link_pipe(ipipe, opipe, len, flags);
1153
1154 return -EINVAL;
1155}
1156
1157asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1158{
1159 struct file *in;
1160 int error, fput_in;
1161
1162 if (unlikely(!len))
1163 return 0;
1164
1165 error = -EBADF;
1166 in = fget_light(fdin, &fput_in);
1167 if (in) {
1168 if (in->f_mode & FMODE_READ) {
1169 int fput_out;
1170 struct file *out = fget_light(fdout, &fput_out);
1171
1172 if (out) {
1173 if (out->f_mode & FMODE_WRITE)
1174 error = do_tee(in, out, len, flags);
1175 fput_light(out, fput_out);
1176 }
1177 }
1178 fput_light(in, fput_in);
1179 }
1180
1181 return error;
1182}