blob: 8c6030c762e2ecc8ee22f3e6c9adf3e1195ed85f [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
Jens Axboe9e0267c2006-04-19 15:57:31 +020053 lock_page(page);
54
Jens Axboe5abc97a2006-03-30 15:16:46 +020055 WARN_ON(!PageUptodate(page));
56
Jens Axboead8d6f02006-04-02 23:10:32 +020057 /*
58 * At least for ext2 with nobh option, we need to wait on writeback
59 * completing on this page, since we'll remove it from the pagecache.
60 * Otherwise truncate wont wait on the page, allowing the disk
61 * blocks to be reused by someone else before we actually wrote our
62 * data to them. fs corruption ensues.
63 */
64 wait_on_page_writeback(page);
65
Jens Axboe4f6f0bd2006-04-02 23:04:46 +020066 if (PagePrivate(page))
67 try_to_release_page(page, mapping_gfp_mask(mapping));
68
Jens Axboe9e0267c2006-04-19 15:57:31 +020069 if (!remove_mapping(mapping, page)) {
70 unlock_page(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +020071 return 1;
Jens Axboe9e0267c2006-04-19 15:57:31 +020072 }
Jens Axboe5abc97a2006-03-30 15:16:46 +020073
Jens Axboe3e7ee3e2006-04-02 23:11:04 +020074 buf->flags |= PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU;
Jens Axboe5abc97a2006-03-30 15:16:46 +020075 return 0;
76}
77
Jens Axboe5274f052006-03-30 15:15:30 +020078static void page_cache_pipe_buf_release(struct pipe_inode_info *info,
79 struct pipe_buffer *buf)
80{
81 page_cache_release(buf->page);
82 buf->page = NULL;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +020083 buf->flags &= ~(PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU);
Jens Axboe5274f052006-03-30 15:15:30 +020084}
85
86static void *page_cache_pipe_buf_map(struct file *file,
87 struct pipe_inode_info *info,
88 struct pipe_buffer *buf)
89{
90 struct page *page = buf->page;
Jens Axboe49d0b212006-04-10 09:04:41 +020091 int err;
Jens Axboe5274f052006-03-30 15:15:30 +020092
93 if (!PageUptodate(page)) {
Jens Axboe49d0b212006-04-10 09:04:41 +020094 lock_page(page);
95
96 /*
97 * Page got truncated/unhashed. This will cause a 0-byte
Ingo Molnar73d62d82006-04-11 13:57:21 +020098 * splice, if this is the first page.
Jens Axboe49d0b212006-04-10 09:04:41 +020099 */
100 if (!page->mapping) {
101 err = -ENODATA;
102 goto error;
103 }
104
105 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200106 * Uh oh, read-error from disk.
Jens Axboe49d0b212006-04-10 09:04:41 +0200107 */
108 if (!PageUptodate(page)) {
109 err = -EIO;
110 goto error;
111 }
112
113 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200114 * Page is ok afterall, fall through to mapping.
Jens Axboe49d0b212006-04-10 09:04:41 +0200115 */
Jens Axboe5274f052006-03-30 15:15:30 +0200116 unlock_page(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200117 }
118
Jens Axboe49d0b212006-04-10 09:04:41 +0200119 return kmap(page);
120error:
121 unlock_page(page);
122 return ERR_PTR(err);
Jens Axboe5274f052006-03-30 15:15:30 +0200123}
124
125static void page_cache_pipe_buf_unmap(struct pipe_inode_info *info,
126 struct pipe_buffer *buf)
127{
Jens Axboe5274f052006-03-30 15:15:30 +0200128 kunmap(buf->page);
129}
130
Jens Axboe70524492006-04-11 15:51:17 +0200131static void page_cache_pipe_buf_get(struct pipe_inode_info *info,
132 struct pipe_buffer *buf)
133{
134 page_cache_get(buf->page);
135}
136
Jens Axboe5274f052006-03-30 15:15:30 +0200137static struct pipe_buf_operations page_cache_pipe_buf_ops = {
138 .can_merge = 0,
139 .map = page_cache_pipe_buf_map,
140 .unmap = page_cache_pipe_buf_unmap,
141 .release = page_cache_pipe_buf_release,
Jens Axboe5abc97a2006-03-30 15:16:46 +0200142 .steal = page_cache_pipe_buf_steal,
Jens Axboe70524492006-04-11 15:51:17 +0200143 .get = page_cache_pipe_buf_get,
Jens Axboe5274f052006-03-30 15:15:30 +0200144};
145
Jens Axboe83f91352006-04-02 23:05:09 +0200146/*
147 * Pipe output worker. This sets up our pipe format with the page cache
148 * pipe buffer operations. Otherwise very similar to the regular pipe_writev().
149 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200150static ssize_t move_to_pipe(struct pipe_inode_info *pipe, struct page **pages,
Jens Axboe91ad66e2006-04-19 15:55:10 +0200151 int nr_pages, unsigned long len,
152 unsigned int offset, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200153{
Jens Axboe5274f052006-03-30 15:15:30 +0200154 int ret, do_wakeup, i;
155
156 ret = 0;
157 do_wakeup = 0;
158 i = 0;
159
Ingo Molnar3a326a22006-04-10 15:18:35 +0200160 if (pipe->inode)
161 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200162
Jens Axboe5274f052006-03-30 15:15:30 +0200163 for (;;) {
Ingo Molnar3a326a22006-04-10 15:18:35 +0200164 if (!pipe->readers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200165 send_sig(SIGPIPE, current, 0);
166 if (!ret)
167 ret = -EPIPE;
168 break;
169 }
170
Jens Axboe6f767b02006-04-11 13:53:56 +0200171 if (pipe->nrbufs < PIPE_BUFFERS) {
172 int newbuf = (pipe->curbuf + pipe->nrbufs) & (PIPE_BUFFERS - 1);
Ingo Molnar3a326a22006-04-10 15:18:35 +0200173 struct pipe_buffer *buf = pipe->bufs + newbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200174 struct page *page = pages[i++];
175 unsigned long this_len;
176
177 this_len = PAGE_CACHE_SIZE - offset;
178 if (this_len > len)
179 this_len = len;
180
181 buf->page = page;
182 buf->offset = offset;
183 buf->len = this_len;
184 buf->ops = &page_cache_pipe_buf_ops;
Jens Axboe6f767b02006-04-11 13:53:56 +0200185 pipe->nrbufs++;
186 if (pipe->inode)
187 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200188
189 ret += this_len;
190 len -= this_len;
191 offset = 0;
192 if (!--nr_pages)
193 break;
194 if (!len)
195 break;
Jens Axboe6f767b02006-04-11 13:53:56 +0200196 if (pipe->nrbufs < PIPE_BUFFERS)
Jens Axboe5274f052006-03-30 15:15:30 +0200197 continue;
198
199 break;
200 }
201
Linus Torvalds29e35092006-04-02 12:46:35 -0700202 if (flags & SPLICE_F_NONBLOCK) {
203 if (!ret)
204 ret = -EAGAIN;
205 break;
206 }
207
Jens Axboe5274f052006-03-30 15:15:30 +0200208 if (signal_pending(current)) {
209 if (!ret)
210 ret = -ERESTARTSYS;
211 break;
212 }
213
214 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200215 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200216 if (waitqueue_active(&pipe->wait))
217 wake_up_interruptible_sync(&pipe->wait);
218 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200219 do_wakeup = 0;
220 }
221
Ingo Molnar3a326a22006-04-10 15:18:35 +0200222 pipe->waiting_writers++;
223 pipe_wait(pipe);
224 pipe->waiting_writers--;
Jens Axboe5274f052006-03-30 15:15:30 +0200225 }
226
Ingo Molnar3a326a22006-04-10 15:18:35 +0200227 if (pipe->inode)
228 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200229
230 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200231 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200232 if (waitqueue_active(&pipe->wait))
233 wake_up_interruptible(&pipe->wait);
234 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
Jens Axboe5274f052006-03-30 15:15:30 +0200235 }
236
237 while (i < nr_pages)
238 page_cache_release(pages[i++]);
239
240 return ret;
241}
242
Ingo Molnar3a326a22006-04-10 15:18:35 +0200243static int
Jens Axboecbb7e572006-04-11 14:57:50 +0200244__generic_file_splice_read(struct file *in, loff_t *ppos,
245 struct pipe_inode_info *pipe, size_t len,
246 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200247{
248 struct address_space *mapping = in->f_mapping;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200249 unsigned int loff, offset, nr_pages;
Jens Axboe16c523d2006-04-10 09:03:58 +0200250 struct page *pages[PIPE_BUFFERS];
Jens Axboe5274f052006-03-30 15:15:30 +0200251 struct page *page;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200252 pgoff_t index, end_index;
253 loff_t isize;
254 size_t bytes;
Jens Axboe7480a902006-04-11 13:52:47 +0200255 int i, error;
Jens Axboe5274f052006-03-30 15:15:30 +0200256
Jens Axboecbb7e572006-04-11 14:57:50 +0200257 index = *ppos >> PAGE_CACHE_SHIFT;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200258 loff = offset = *ppos & ~PAGE_CACHE_MASK;
Jens Axboe5274f052006-03-30 15:15:30 +0200259 nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
260
261 if (nr_pages > PIPE_BUFFERS)
262 nr_pages = PIPE_BUFFERS;
263
264 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200265 * Initiate read-ahead on this page range. however, don't call into
Jens Axboe0b749ce2006-04-10 09:05:04 +0200266 * read-ahead if this is a non-zero offset (we are likely doing small
267 * chunk splice and the page is already there) for a single page.
Jens Axboe5274f052006-03-30 15:15:30 +0200268 */
Jens Axboe0b749ce2006-04-10 09:05:04 +0200269 if (!offset || nr_pages > 1)
270 do_page_cache_readahead(mapping, in, index, nr_pages);
Jens Axboe5274f052006-03-30 15:15:30 +0200271
272 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200273 * Now fill in the holes:
Jens Axboe5274f052006-03-30 15:15:30 +0200274 */
Jens Axboe7480a902006-04-11 13:52:47 +0200275 error = 0;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200276 bytes = 0;
Jens Axboe16c523d2006-04-10 09:03:58 +0200277 for (i = 0; i < nr_pages; i++, index++) {
Jens Axboe82aa5d62006-04-20 13:05:48 +0200278 unsigned int this_len;
279
280 if (!len)
281 break;
282
283 /*
284 * this_len is the max we'll use from this page
285 */
Andrew Mortonba5f5d92006-04-25 15:33:34 +0200286 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
Jens Axboe7480a902006-04-11 13:52:47 +0200287find_page:
Jens Axboe5274f052006-03-30 15:15:30 +0200288 /*
Jens Axboe7480a902006-04-11 13:52:47 +0200289 * lookup the page for this index
Jens Axboe5274f052006-03-30 15:15:30 +0200290 */
Jens Axboe7480a902006-04-11 13:52:47 +0200291 page = find_get_page(mapping, index);
292 if (!page) {
293 /*
Jens Axboe7480a902006-04-11 13:52:47 +0200294 * page didn't exist, allocate one
295 */
296 page = page_cache_alloc_cold(mapping);
297 if (!page)
298 break;
Jens Axboe5274f052006-03-30 15:15:30 +0200299
Jens Axboe7480a902006-04-11 13:52:47 +0200300 error = add_to_page_cache_lru(page, mapping, index,
301 mapping_gfp_mask(mapping));
Jens Axboe5274f052006-03-30 15:15:30 +0200302 if (unlikely(error)) {
303 page_cache_release(page);
304 break;
305 }
Jens Axboe7480a902006-04-11 13:52:47 +0200306
307 goto readpage;
Jens Axboe5274f052006-03-30 15:15:30 +0200308 }
Jens Axboe7480a902006-04-11 13:52:47 +0200309
310 /*
311 * If the page isn't uptodate, we may need to start io on it
312 */
313 if (!PageUptodate(page)) {
Jens Axboec4f895c2006-04-19 15:56:12 +0200314 /*
315 * If in nonblock mode then dont block on waiting
316 * for an in-flight io page
317 */
318 if (flags & SPLICE_F_NONBLOCK)
319 break;
320
Jens Axboe7480a902006-04-11 13:52:47 +0200321 lock_page(page);
322
323 /*
324 * page was truncated, stop here. if this isn't the
325 * first page, we'll just complete what we already
326 * added
327 */
328 if (!page->mapping) {
329 unlock_page(page);
330 page_cache_release(page);
331 break;
332 }
333 /*
334 * page was already under io and is now done, great
335 */
336 if (PageUptodate(page)) {
337 unlock_page(page);
338 goto fill_it;
339 }
340
341readpage:
342 /*
343 * need to read in the page
344 */
345 error = mapping->a_ops->readpage(in, page);
346
347 if (unlikely(error)) {
348 page_cache_release(page);
349 if (error == AOP_TRUNCATED_PAGE)
350 goto find_page;
351 break;
352 }
Jens Axboe91ad66e2006-04-19 15:55:10 +0200353
354 /*
355 * i_size must be checked after ->readpage().
356 */
357 isize = i_size_read(mapping->host);
358 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
359 if (unlikely(!isize || index > end_index)) {
360 page_cache_release(page);
361 break;
362 }
363
364 /*
365 * if this is the last page, see if we need to shrink
366 * the length and stop
367 */
368 if (end_index == index) {
369 loff = PAGE_CACHE_SIZE - (isize & ~PAGE_CACHE_MASK);
370 if (bytes + loff > isize) {
371 page_cache_release(page);
372 break;
373 }
374 /*
375 * force quit after adding this page
376 */
377 nr_pages = i;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200378 this_len = min(this_len, loff);
Jens Axboe91ad66e2006-04-19 15:55:10 +0200379 }
Jens Axboe7480a902006-04-11 13:52:47 +0200380 }
381fill_it:
Jens Axboe16c523d2006-04-10 09:03:58 +0200382 pages[i] = page;
Jens Axboe82aa5d62006-04-20 13:05:48 +0200383 bytes += this_len;
384 len -= this_len;
Jens Axboe91ad66e2006-04-19 15:55:10 +0200385 loff = 0;
Jens Axboe5274f052006-03-30 15:15:30 +0200386 }
387
Jens Axboe16c523d2006-04-10 09:03:58 +0200388 if (i)
Jens Axboe91ad66e2006-04-19 15:55:10 +0200389 return move_to_pipe(pipe, pages, i, bytes, offset, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200390
Jens Axboe7480a902006-04-11 13:52:47 +0200391 return error;
Jens Axboe5274f052006-03-30 15:15:30 +0200392}
393
Jens Axboe83f91352006-04-02 23:05:09 +0200394/**
395 * generic_file_splice_read - splice data from file to a pipe
396 * @in: file to splice from
397 * @pipe: pipe to splice to
398 * @len: number of bytes to splice
399 * @flags: splice modifier flags
400 *
401 * Will read pages from given file and fill them into a pipe.
Jens Axboe83f91352006-04-02 23:05:09 +0200402 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200403ssize_t generic_file_splice_read(struct file *in, loff_t *ppos,
404 struct pipe_inode_info *pipe, size_t len,
405 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200406{
407 ssize_t spliced;
408 int ret;
409
410 ret = 0;
411 spliced = 0;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200412
Jens Axboe5274f052006-03-30 15:15:30 +0200413 while (len) {
Jens Axboecbb7e572006-04-11 14:57:50 +0200414 ret = __generic_file_splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200415
Jens Axboec4f895c2006-04-19 15:56:12 +0200416 if (ret < 0)
Jens Axboe5274f052006-03-30 15:15:30 +0200417 break;
Jens Axboec4f895c2006-04-19 15:56:12 +0200418 else if (!ret) {
419 if (spliced)
420 break;
421 if (flags & SPLICE_F_NONBLOCK) {
422 ret = -EAGAIN;
423 break;
424 }
425 }
Jens Axboe5274f052006-03-30 15:15:30 +0200426
Jens Axboecbb7e572006-04-11 14:57:50 +0200427 *ppos += ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200428 len -= ret;
429 spliced += ret;
430 }
431
432 if (spliced)
433 return spliced;
434
435 return ret;
436}
437
Jens Axboe059a8f32006-04-02 23:06:05 +0200438EXPORT_SYMBOL(generic_file_splice_read);
439
Jens Axboe5274f052006-03-30 15:15:30 +0200440/*
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200441 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
Jens Axboe016b6612006-04-25 15:42:00 +0200442 * using sendpage(). Return the number of bytes sent.
Jens Axboe5274f052006-03-30 15:15:30 +0200443 */
444static int pipe_to_sendpage(struct pipe_inode_info *info,
445 struct pipe_buffer *buf, struct splice_desc *sd)
446{
447 struct file *file = sd->file;
448 loff_t pos = sd->pos;
Jens Axboe5274f052006-03-30 15:15:30 +0200449 ssize_t ret;
450 void *ptr;
Jens Axboeb2b39fa2006-04-02 23:05:41 +0200451 int more;
Jens Axboe5274f052006-03-30 15:15:30 +0200452
453 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200454 * Sub-optimal, but we are limited by the pipe ->map. We don't
Jens Axboe5274f052006-03-30 15:15:30 +0200455 * need a kmap'ed buffer here, we just want to make sure we
456 * have the page pinned if the pipe page originates from the
Ingo Molnar73d62d82006-04-11 13:57:21 +0200457 * page cache.
Jens Axboe5274f052006-03-30 15:15:30 +0200458 */
459 ptr = buf->ops->map(file, info, buf);
460 if (IS_ERR(ptr))
461 return PTR_ERR(ptr);
462
Jens Axboeb2b39fa2006-04-02 23:05:41 +0200463 more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200464
Jens Axboe016b6612006-04-25 15:42:00 +0200465 ret = file->f_op->sendpage(file, buf->page, buf->offset, sd->len,
466 &pos, more);
Jens Axboe5274f052006-03-30 15:15:30 +0200467
468 buf->ops->unmap(info, buf);
Jens Axboe016b6612006-04-25 15:42:00 +0200469 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200470}
471
472/*
473 * This is a little more tricky than the file -> pipe splicing. There are
474 * basically three cases:
475 *
476 * - Destination page already exists in the address space and there
477 * are users of it. For that case we have no other option that
478 * copying the data. Tough luck.
479 * - Destination page already exists in the address space, but there
480 * are no users of it. Make sure it's uptodate, then drop it. Fall
481 * through to last case.
482 * - Destination page does not exist, we can add the pipe page to
483 * the page cache and avoid the copy.
484 *
Jens Axboe83f91352006-04-02 23:05:09 +0200485 * If asked to move pages to the output file (SPLICE_F_MOVE is set in
486 * sd->flags), we attempt to migrate pages from the pipe to the output
487 * file address space page cache. This is possible if no one else has
488 * the pipe page referenced outside of the pipe and page cache. If
489 * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create
490 * a new page in the output file page cache and fill/dirty that.
Jens Axboe5274f052006-03-30 15:15:30 +0200491 */
492static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf,
493 struct splice_desc *sd)
494{
495 struct file *file = sd->file;
496 struct address_space *mapping = file->f_mapping;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200497 gfp_t gfp_mask = mapping_gfp_mask(mapping);
Jens Axboe016b6612006-04-25 15:42:00 +0200498 unsigned int offset, this_len;
Jens Axboe5274f052006-03-30 15:15:30 +0200499 struct page *page;
Jens Axboe5274f052006-03-30 15:15:30 +0200500 pgoff_t index;
Jens Axboe5abc97a2006-03-30 15:16:46 +0200501 char *src;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200502 int ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200503
504 /*
Jens Axboe49d0b212006-04-10 09:04:41 +0200505 * make sure the data in this buffer is uptodate
Jens Axboe5274f052006-03-30 15:15:30 +0200506 */
507 src = buf->ops->map(file, info, buf);
508 if (IS_ERR(src))
509 return PTR_ERR(src);
510
511 index = sd->pos >> PAGE_CACHE_SHIFT;
512 offset = sd->pos & ~PAGE_CACHE_MASK;
513
Jens Axboe016b6612006-04-25 15:42:00 +0200514 this_len = sd->len;
515 if (this_len + offset > PAGE_CACHE_SIZE)
516 this_len = PAGE_CACHE_SIZE - offset;
517
Jens Axboe5274f052006-03-30 15:15:30 +0200518 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200519 * Reuse buf page, if SPLICE_F_MOVE is set.
Jens Axboe5274f052006-03-30 15:15:30 +0200520 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200521 if (sd->flags & SPLICE_F_MOVE) {
Jens Axboe83f91352006-04-02 23:05:09 +0200522 /*
523 * If steal succeeds, buf->page is now pruned from the vm
Jens Axboe9e0267c2006-04-19 15:57:31 +0200524 * side (LRU and page cache) and we can reuse it. The page
525 * will also be looked on successful return.
Jens Axboe83f91352006-04-02 23:05:09 +0200526 */
Jens Axboe5abc97a2006-03-30 15:16:46 +0200527 if (buf->ops->steal(info, buf))
528 goto find_page;
Jens Axboe5274f052006-03-30 15:15:30 +0200529
Jens Axboe5abc97a2006-03-30 15:16:46 +0200530 page = buf->page;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200531 if (add_to_page_cache(page, mapping, index, gfp_mask))
Jens Axboe5abc97a2006-03-30 15:16:46 +0200532 goto find_page;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200533
534 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
535 lru_cache_add(page);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200536 } else {
537find_page:
Jens Axboe9e0267c2006-04-19 15:57:31 +0200538 page = find_lock_page(mapping, index);
539 if (!page) {
540 ret = -ENOMEM;
541 page = page_cache_alloc_cold(mapping);
542 if (unlikely(!page))
543 goto out_nomem;
544
545 /*
546 * This will also lock the page
547 */
548 ret = add_to_page_cache_lru(page, mapping, index,
549 gfp_mask);
550 if (unlikely(ret))
551 goto out;
552 }
Jens Axboe5274f052006-03-30 15:15:30 +0200553
Jens Axboe5abc97a2006-03-30 15:16:46 +0200554 /*
Jens Axboe9e0267c2006-04-19 15:57:31 +0200555 * We get here with the page locked. If the page is also
556 * uptodate, we don't need to do more. If it isn't, we
557 * may need to bring it in if we are not going to overwrite
558 * the full page.
Jens Axboe5abc97a2006-03-30 15:16:46 +0200559 */
560 if (!PageUptodate(page)) {
Jens Axboe016b6612006-04-25 15:42:00 +0200561 if (this_len < PAGE_CACHE_SIZE) {
Jens Axboe5abc97a2006-03-30 15:16:46 +0200562 ret = mapping->a_ops->readpage(file, page);
563 if (unlikely(ret))
564 goto out;
565
566 lock_page(page);
567
568 if (!PageUptodate(page)) {
569 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200570 * Page got invalidated, repeat.
Jens Axboe5abc97a2006-03-30 15:16:46 +0200571 */
572 if (!page->mapping) {
573 unlock_page(page);
574 page_cache_release(page);
575 goto find_page;
576 }
577 ret = -EIO;
578 goto out;
Jens Axboe5274f052006-03-30 15:15:30 +0200579 }
Jens Axboe9e0267c2006-04-19 15:57:31 +0200580 } else
Jens Axboe5abc97a2006-03-30 15:16:46 +0200581 SetPageUptodate(page);
Jens Axboe5274f052006-03-30 15:15:30 +0200582 }
583 }
584
Jens Axboe016b6612006-04-25 15:42:00 +0200585 ret = mapping->a_ops->prepare_write(file, page, offset, offset+this_len);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200586 if (ret == AOP_TRUNCATED_PAGE) {
587 page_cache_release(page);
588 goto find_page;
589 } else if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200590 goto out;
591
Jens Axboe3e7ee3e2006-04-02 23:11:04 +0200592 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) {
Jens Axboe5abc97a2006-03-30 15:16:46 +0200593 char *dst = kmap_atomic(page, KM_USER0);
594
Jens Axboe016b6612006-04-25 15:42:00 +0200595 memcpy(dst + offset, src + buf->offset, this_len);
Jens Axboe5abc97a2006-03-30 15:16:46 +0200596 flush_dcache_page(page);
597 kunmap_atomic(dst, KM_USER0);
598 }
Jens Axboe5274f052006-03-30 15:15:30 +0200599
Jens Axboe016b6612006-04-25 15:42:00 +0200600 ret = mapping->a_ops->commit_write(file, page, offset, offset+this_len);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200601 if (ret == AOP_TRUNCATED_PAGE) {
602 page_cache_release(page);
603 goto find_page;
604 } else if (ret)
Jens Axboe5274f052006-03-30 15:15:30 +0200605 goto out;
606
Jens Axboe016b6612006-04-25 15:42:00 +0200607 /*
608 * Return the number of bytes written.
609 */
610 ret = this_len;
Jens Axboec7f21e42006-04-10 09:01:01 +0200611 mark_page_accessed(page);
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200612 balance_dirty_pages_ratelimited(mapping);
Jens Axboe5274f052006-03-30 15:15:30 +0200613out:
Jens Axboe9e0267c2006-04-19 15:57:31 +0200614 if (!(buf->flags & PIPE_BUF_FLAG_STOLEN))
Jens Axboe5abc97a2006-03-30 15:16:46 +0200615 page_cache_release(page);
Jens Axboe9e0267c2006-04-19 15:57:31 +0200616
617 unlock_page(page);
Dave Jones9aefe432006-04-10 09:02:40 +0200618out_nomem:
Jens Axboe5274f052006-03-30 15:15:30 +0200619 buf->ops->unmap(info, buf);
620 return ret;
621}
622
623typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
624 struct splice_desc *);
625
Jens Axboe83f91352006-04-02 23:05:09 +0200626/*
627 * Pipe input worker. Most of this logic works like a regular pipe, the
628 * key here is the 'actor' worker passed in that actually moves the data
629 * to the wanted destination. See pipe_to_file/pipe_to_sendpage above.
630 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200631static ssize_t move_from_pipe(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200632 loff_t *ppos, size_t len, unsigned int flags,
Jens Axboe5274f052006-03-30 15:15:30 +0200633 splice_actor *actor)
634{
Jens Axboe5274f052006-03-30 15:15:30 +0200635 int ret, do_wakeup, err;
636 struct splice_desc sd;
637
638 ret = 0;
639 do_wakeup = 0;
640
641 sd.total_len = len;
642 sd.flags = flags;
643 sd.file = out;
Jens Axboecbb7e572006-04-11 14:57:50 +0200644 sd.pos = *ppos;
Jens Axboe5274f052006-03-30 15:15:30 +0200645
Ingo Molnar3a326a22006-04-10 15:18:35 +0200646 if (pipe->inode)
647 mutex_lock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200648
Jens Axboe5274f052006-03-30 15:15:30 +0200649 for (;;) {
Jens Axboe6f767b02006-04-11 13:53:56 +0200650 if (pipe->nrbufs) {
651 struct pipe_buffer *buf = pipe->bufs + pipe->curbuf;
Jens Axboe5274f052006-03-30 15:15:30 +0200652 struct pipe_buf_operations *ops = buf->ops;
653
654 sd.len = buf->len;
655 if (sd.len > sd.total_len)
656 sd.len = sd.total_len;
657
Ingo Molnar3a326a22006-04-10 15:18:35 +0200658 err = actor(pipe, buf, &sd);
Jens Axboe016b6612006-04-25 15:42:00 +0200659 if (err <= 0) {
Jens Axboe5274f052006-03-30 15:15:30 +0200660 if (!ret && err != -ENODATA)
661 ret = err;
662
663 break;
664 }
665
Jens Axboe016b6612006-04-25 15:42:00 +0200666 ret += err;
667 buf->offset += err;
668 buf->len -= err;
669
670 sd.len -= err;
671 sd.pos += err;
672 sd.total_len -= err;
673 if (sd.len)
674 continue;
Ingo Molnar73d62d82006-04-11 13:57:21 +0200675
Jens Axboe5274f052006-03-30 15:15:30 +0200676 if (!buf->len) {
677 buf->ops = NULL;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200678 ops->release(pipe, buf);
Jens Axboe6f767b02006-04-11 13:53:56 +0200679 pipe->curbuf = (pipe->curbuf + 1) & (PIPE_BUFFERS - 1);
680 pipe->nrbufs--;
681 if (pipe->inode)
682 do_wakeup = 1;
Jens Axboe5274f052006-03-30 15:15:30 +0200683 }
684
Jens Axboe5274f052006-03-30 15:15:30 +0200685 if (!sd.total_len)
686 break;
687 }
688
Jens Axboe6f767b02006-04-11 13:53:56 +0200689 if (pipe->nrbufs)
Jens Axboe5274f052006-03-30 15:15:30 +0200690 continue;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200691 if (!pipe->writers)
Jens Axboe5274f052006-03-30 15:15:30 +0200692 break;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200693 if (!pipe->waiting_writers) {
Jens Axboe5274f052006-03-30 15:15:30 +0200694 if (ret)
695 break;
696 }
697
Linus Torvalds29e35092006-04-02 12:46:35 -0700698 if (flags & SPLICE_F_NONBLOCK) {
699 if (!ret)
700 ret = -EAGAIN;
701 break;
702 }
703
Jens Axboe5274f052006-03-30 15:15:30 +0200704 if (signal_pending(current)) {
705 if (!ret)
706 ret = -ERESTARTSYS;
707 break;
708 }
709
710 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200711 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200712 if (waitqueue_active(&pipe->wait))
713 wake_up_interruptible_sync(&pipe->wait);
714 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200715 do_wakeup = 0;
716 }
717
Ingo Molnar3a326a22006-04-10 15:18:35 +0200718 pipe_wait(pipe);
Jens Axboe5274f052006-03-30 15:15:30 +0200719 }
720
Ingo Molnar3a326a22006-04-10 15:18:35 +0200721 if (pipe->inode)
722 mutex_unlock(&pipe->inode->i_mutex);
Jens Axboe5274f052006-03-30 15:15:30 +0200723
724 if (do_wakeup) {
Jens Axboec0bd1f62006-04-10 09:03:32 +0200725 smp_mb();
Ingo Molnar3a326a22006-04-10 15:18:35 +0200726 if (waitqueue_active(&pipe->wait))
727 wake_up_interruptible(&pipe->wait);
728 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
Jens Axboe5274f052006-03-30 15:15:30 +0200729 }
730
Jens Axboe5274f052006-03-30 15:15:30 +0200731 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200732}
733
Jens Axboe83f91352006-04-02 23:05:09 +0200734/**
735 * generic_file_splice_write - splice data from a pipe to a file
Ingo Molnar3a326a22006-04-10 15:18:35 +0200736 * @pipe: pipe info
Jens Axboe83f91352006-04-02 23:05:09 +0200737 * @out: file to write to
738 * @len: number of bytes to splice
739 * @flags: splice modifier flags
740 *
741 * Will either move or copy pages (determined by @flags options) from
742 * the given pipe inode to the given file.
743 *
744 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200745ssize_t
746generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200747 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200748{
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200749 struct address_space *mapping = out->f_mapping;
Ingo Molnar3a326a22006-04-10 15:18:35 +0200750 ssize_t ret;
751
Jens Axboecbb7e572006-04-11 14:57:50 +0200752 ret = move_from_pipe(pipe, out, ppos, len, flags, pipe_to_file);
Jens Axboea4514eb2006-04-19 15:57:05 +0200753 if (ret > 0) {
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200754 struct inode *inode = mapping->host;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200755
Jens Axboea4514eb2006-04-19 15:57:05 +0200756 *ppos += ret;
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200757
Jens Axboea4514eb2006-04-19 15:57:05 +0200758 /*
759 * If file or inode is SYNC and we actually wrote some data,
760 * sync it.
761 */
762 if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(inode))) {
763 int err;
764
765 mutex_lock(&inode->i_mutex);
766 err = generic_osync_inode(inode, mapping,
767 OSYNC_METADATA|OSYNC_DATA);
768 mutex_unlock(&inode->i_mutex);
769
770 if (err)
771 ret = err;
772 }
Jens Axboe4f6f0bd2006-04-02 23:04:46 +0200773 }
774
775 return ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200776}
777
Jens Axboe059a8f32006-04-02 23:06:05 +0200778EXPORT_SYMBOL(generic_file_splice_write);
779
Jens Axboe83f91352006-04-02 23:05:09 +0200780/**
781 * generic_splice_sendpage - splice data from a pipe to a socket
782 * @inode: pipe inode
783 * @out: socket to write to
784 * @len: number of bytes to splice
785 * @flags: splice modifier flags
786 *
787 * Will send @len bytes from the pipe to a network socket. No data copying
788 * is involved.
789 *
790 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200791ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200792 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200793{
Jens Axboecbb7e572006-04-11 14:57:50 +0200794 return move_from_pipe(pipe, out, ppos, len, flags, pipe_to_sendpage);
Jens Axboe5274f052006-03-30 15:15:30 +0200795}
796
Jens Axboe059a8f32006-04-02 23:06:05 +0200797EXPORT_SYMBOL(generic_splice_sendpage);
Jeff Garzika0f06782006-03-30 23:06:13 -0500798
Jens Axboe83f91352006-04-02 23:05:09 +0200799/*
800 * Attempt to initiate a splice from pipe to file.
801 */
Ingo Molnar3a326a22006-04-10 15:18:35 +0200802static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
Jens Axboecbb7e572006-04-11 14:57:50 +0200803 loff_t *ppos, size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200804{
Jens Axboe5274f052006-03-30 15:15:30 +0200805 int ret;
806
Jens Axboe49570e92006-04-11 13:56:09 +0200807 if (unlikely(!out->f_op || !out->f_op->splice_write))
Jens Axboe5274f052006-03-30 15:15:30 +0200808 return -EINVAL;
809
Jens Axboe49570e92006-04-11 13:56:09 +0200810 if (unlikely(!(out->f_mode & FMODE_WRITE)))
Jens Axboe5274f052006-03-30 15:15:30 +0200811 return -EBADF;
812
Jens Axboecbb7e572006-04-11 14:57:50 +0200813 ret = rw_verify_area(WRITE, out, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200814 if (unlikely(ret < 0))
815 return ret;
816
Jens Axboecbb7e572006-04-11 14:57:50 +0200817 return out->f_op->splice_write(pipe, out, ppos, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200818}
819
Jens Axboe83f91352006-04-02 23:05:09 +0200820/*
821 * Attempt to initiate a splice from a file to a pipe.
822 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200823static long do_splice_to(struct file *in, loff_t *ppos,
824 struct pipe_inode_info *pipe, size_t len,
825 unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200826{
Jens Axboecbb7e572006-04-11 14:57:50 +0200827 loff_t isize, left;
Jens Axboe5274f052006-03-30 15:15:30 +0200828 int ret;
829
Jens Axboe49570e92006-04-11 13:56:09 +0200830 if (unlikely(!in->f_op || !in->f_op->splice_read))
Jens Axboe5274f052006-03-30 15:15:30 +0200831 return -EINVAL;
832
Jens Axboe49570e92006-04-11 13:56:09 +0200833 if (unlikely(!(in->f_mode & FMODE_READ)))
Jens Axboe5274f052006-03-30 15:15:30 +0200834 return -EBADF;
835
Jens Axboecbb7e572006-04-11 14:57:50 +0200836 ret = rw_verify_area(READ, in, ppos, len);
Jens Axboe5274f052006-03-30 15:15:30 +0200837 if (unlikely(ret < 0))
838 return ret;
839
840 isize = i_size_read(in->f_mapping->host);
Jens Axboecbb7e572006-04-11 14:57:50 +0200841 if (unlikely(*ppos >= isize))
Jens Axboe5274f052006-03-30 15:15:30 +0200842 return 0;
843
Jens Axboecbb7e572006-04-11 14:57:50 +0200844 left = isize - *ppos;
Jens Axboe49570e92006-04-11 13:56:09 +0200845 if (unlikely(left < len))
Jens Axboe5274f052006-03-30 15:15:30 +0200846 len = left;
847
Jens Axboecbb7e572006-04-11 14:57:50 +0200848 return in->f_op->splice_read(in, ppos, pipe, len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +0200849}
850
Jens Axboecbb7e572006-04-11 14:57:50 +0200851long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
852 size_t len, unsigned int flags)
Jens Axboeb92ce552006-04-11 13:52:07 +0200853{
854 struct pipe_inode_info *pipe;
855 long ret, bytes;
Jens Axboecbb7e572006-04-11 14:57:50 +0200856 loff_t out_off;
Jens Axboeb92ce552006-04-11 13:52:07 +0200857 umode_t i_mode;
858 int i;
859
860 /*
861 * We require the input being a regular file, as we don't want to
862 * randomly drop data for eg socket -> socket splicing. Use the
863 * piped splicing for that!
864 */
865 i_mode = in->f_dentry->d_inode->i_mode;
866 if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode)))
867 return -EINVAL;
868
869 /*
870 * neither in nor out is a pipe, setup an internal pipe attached to
871 * 'out' and transfer the wanted data from 'in' to 'out' through that
872 */
873 pipe = current->splice_pipe;
Jens Axboe49570e92006-04-11 13:56:09 +0200874 if (unlikely(!pipe)) {
Jens Axboeb92ce552006-04-11 13:52:07 +0200875 pipe = alloc_pipe_info(NULL);
876 if (!pipe)
877 return -ENOMEM;
878
879 /*
880 * We don't have an immediate reader, but we'll read the stuff
881 * out of the pipe right after the move_to_pipe(). So set
882 * PIPE_READERS appropriately.
883 */
884 pipe->readers = 1;
885
886 current->splice_pipe = pipe;
887 }
888
889 /*
Ingo Molnar73d62d82006-04-11 13:57:21 +0200890 * Do the splice.
Jens Axboeb92ce552006-04-11 13:52:07 +0200891 */
892 ret = 0;
893 bytes = 0;
Jens Axboecbb7e572006-04-11 14:57:50 +0200894 out_off = 0;
Jens Axboeb92ce552006-04-11 13:52:07 +0200895
896 while (len) {
897 size_t read_len, max_read_len;
898
899 /*
900 * Do at most PIPE_BUFFERS pages worth of transfer:
901 */
902 max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE));
903
Jens Axboecbb7e572006-04-11 14:57:50 +0200904 ret = do_splice_to(in, ppos, pipe, max_read_len, flags);
Jens Axboeb92ce552006-04-11 13:52:07 +0200905 if (unlikely(ret < 0))
906 goto out_release;
907
908 read_len = ret;
909
910 /*
911 * NOTE: nonblocking mode only applies to the input. We
912 * must not do the output in nonblocking mode as then we
913 * could get stuck data in the internal pipe:
914 */
Jens Axboecbb7e572006-04-11 14:57:50 +0200915 ret = do_splice_from(pipe, out, &out_off, read_len,
Jens Axboeb92ce552006-04-11 13:52:07 +0200916 flags & ~SPLICE_F_NONBLOCK);
917 if (unlikely(ret < 0))
918 goto out_release;
919
920 bytes += ret;
921 len -= ret;
922
923 /*
924 * In nonblocking mode, if we got back a short read then
925 * that was due to either an IO error or due to the
926 * pagecache entry not being there. In the IO error case
927 * the _next_ splice attempt will produce a clean IO error
928 * return value (not a short read), so in both cases it's
929 * correct to break out of the loop here:
930 */
931 if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len))
932 break;
933 }
934
935 pipe->nrbufs = pipe->curbuf = 0;
936
937 return bytes;
938
939out_release:
940 /*
941 * If we did an incomplete transfer we must release
942 * the pipe buffers in question:
943 */
944 for (i = 0; i < PIPE_BUFFERS; i++) {
945 struct pipe_buffer *buf = pipe->bufs + i;
946
947 if (buf->ops) {
948 buf->ops->release(pipe, buf);
949 buf->ops = NULL;
950 }
951 }
952 pipe->nrbufs = pipe->curbuf = 0;
953
954 /*
955 * If we transferred some data, return the number of bytes:
956 */
957 if (bytes > 0)
958 return bytes;
959
960 return ret;
961}
962
963EXPORT_SYMBOL(do_splice_direct);
964
Jens Axboe83f91352006-04-02 23:05:09 +0200965/*
966 * Determine where to splice to/from.
967 */
Ingo Molnar529565d2006-04-10 15:18:58 +0200968static long do_splice(struct file *in, loff_t __user *off_in,
969 struct file *out, loff_t __user *off_out,
970 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +0200971{
Ingo Molnar3a326a22006-04-10 15:18:35 +0200972 struct pipe_inode_info *pipe;
Jens Axboecbb7e572006-04-11 14:57:50 +0200973 loff_t offset, *off;
Jens Axboea4514eb2006-04-19 15:57:05 +0200974 long ret;
Jens Axboe5274f052006-03-30 15:15:30 +0200975
Ingo Molnar3a326a22006-04-10 15:18:35 +0200976 pipe = in->f_dentry->d_inode->i_pipe;
Ingo Molnar529565d2006-04-10 15:18:58 +0200977 if (pipe) {
978 if (off_in)
979 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +0200980 if (off_out) {
981 if (out->f_op->llseek == no_llseek)
982 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +0200983 if (copy_from_user(&offset, off_out, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +0200984 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +0200985 off = &offset;
986 } else
987 off = &out->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +0200988
Jens Axboea4514eb2006-04-19 15:57:05 +0200989 ret = do_splice_from(pipe, out, off, len, flags);
990
991 if (off_out && copy_to_user(off_out, off, sizeof(loff_t)))
992 ret = -EFAULT;
993
994 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +0200995 }
Jens Axboe5274f052006-03-30 15:15:30 +0200996
Ingo Molnar3a326a22006-04-10 15:18:35 +0200997 pipe = out->f_dentry->d_inode->i_pipe;
Ingo Molnar529565d2006-04-10 15:18:58 +0200998 if (pipe) {
999 if (off_out)
1000 return -ESPIPE;
Jens Axboeb92ce552006-04-11 13:52:07 +02001001 if (off_in) {
1002 if (in->f_op->llseek == no_llseek)
1003 return -EINVAL;
Jens Axboecbb7e572006-04-11 14:57:50 +02001004 if (copy_from_user(&offset, off_in, sizeof(loff_t)))
Jens Axboeb92ce552006-04-11 13:52:07 +02001005 return -EFAULT;
Jens Axboecbb7e572006-04-11 14:57:50 +02001006 off = &offset;
1007 } else
1008 off = &in->f_pos;
Ingo Molnar529565d2006-04-10 15:18:58 +02001009
Jens Axboea4514eb2006-04-19 15:57:05 +02001010 ret = do_splice_to(in, off, pipe, len, flags);
1011
1012 if (off_in && copy_to_user(off_in, off, sizeof(loff_t)))
1013 ret = -EFAULT;
1014
1015 return ret;
Ingo Molnar529565d2006-04-10 15:18:58 +02001016 }
Jens Axboe5274f052006-03-30 15:15:30 +02001017
1018 return -EINVAL;
1019}
1020
Ingo Molnar529565d2006-04-10 15:18:58 +02001021asmlinkage long sys_splice(int fd_in, loff_t __user *off_in,
1022 int fd_out, loff_t __user *off_out,
1023 size_t len, unsigned int flags)
Jens Axboe5274f052006-03-30 15:15:30 +02001024{
1025 long error;
1026 struct file *in, *out;
1027 int fput_in, fput_out;
1028
1029 if (unlikely(!len))
1030 return 0;
1031
1032 error = -EBADF;
Ingo Molnar529565d2006-04-10 15:18:58 +02001033 in = fget_light(fd_in, &fput_in);
Jens Axboe5274f052006-03-30 15:15:30 +02001034 if (in) {
1035 if (in->f_mode & FMODE_READ) {
Ingo Molnar529565d2006-04-10 15:18:58 +02001036 out = fget_light(fd_out, &fput_out);
Jens Axboe5274f052006-03-30 15:15:30 +02001037 if (out) {
1038 if (out->f_mode & FMODE_WRITE)
Ingo Molnar529565d2006-04-10 15:18:58 +02001039 error = do_splice(in, off_in,
1040 out, off_out,
1041 len, flags);
Jens Axboe5274f052006-03-30 15:15:30 +02001042 fput_light(out, fput_out);
1043 }
1044 }
1045
1046 fput_light(in, fput_in);
1047 }
1048
1049 return error;
1050}
Jens Axboe70524492006-04-11 15:51:17 +02001051
1052/*
1053 * Link contents of ipipe to opipe.
1054 */
1055static int link_pipe(struct pipe_inode_info *ipipe,
1056 struct pipe_inode_info *opipe,
1057 size_t len, unsigned int flags)
1058{
1059 struct pipe_buffer *ibuf, *obuf;
Jens Axboe2a27250e2006-04-19 15:56:40 +02001060 int ret, do_wakeup, i, ipipe_first;
1061
1062 ret = do_wakeup = ipipe_first = 0;
Jens Axboe70524492006-04-11 15:51:17 +02001063
1064 /*
1065 * Potential ABBA deadlock, work around it by ordering lock
1066 * grabbing by inode address. Otherwise two different processes
1067 * could deadlock (one doing tee from A -> B, the other from B -> A).
1068 */
1069 if (ipipe->inode < opipe->inode) {
Jens Axboe2a27250e2006-04-19 15:56:40 +02001070 ipipe_first = 1;
Jens Axboe70524492006-04-11 15:51:17 +02001071 mutex_lock(&ipipe->inode->i_mutex);
1072 mutex_lock(&opipe->inode->i_mutex);
1073 } else {
1074 mutex_lock(&opipe->inode->i_mutex);
1075 mutex_lock(&ipipe->inode->i_mutex);
1076 }
1077
1078 for (i = 0;; i++) {
1079 if (!opipe->readers) {
1080 send_sig(SIGPIPE, current, 0);
1081 if (!ret)
1082 ret = -EPIPE;
1083 break;
1084 }
1085 if (ipipe->nrbufs - i) {
1086 ibuf = ipipe->bufs + ((ipipe->curbuf + i) & (PIPE_BUFFERS - 1));
1087
1088 /*
1089 * If we have room, fill this buffer
1090 */
1091 if (opipe->nrbufs < PIPE_BUFFERS) {
1092 int nbuf = (opipe->curbuf + opipe->nrbufs) & (PIPE_BUFFERS - 1);
1093
1094 /*
1095 * Get a reference to this pipe buffer,
1096 * so we can copy the contents over.
1097 */
1098 ibuf->ops->get(ipipe, ibuf);
1099
1100 obuf = opipe->bufs + nbuf;
1101 *obuf = *ibuf;
1102
1103 if (obuf->len > len)
1104 obuf->len = len;
1105
1106 opipe->nrbufs++;
1107 do_wakeup = 1;
1108 ret += obuf->len;
1109 len -= obuf->len;
1110
1111 if (!len)
1112 break;
1113 if (opipe->nrbufs < PIPE_BUFFERS)
1114 continue;
1115 }
1116
1117 /*
1118 * We have input available, but no output room.
Jens Axboe2a27250e2006-04-19 15:56:40 +02001119 * If we already copied data, return that. If we
1120 * need to drop the opipe lock, it must be ordered
1121 * last to avoid deadlocks.
Jens Axboe70524492006-04-11 15:51:17 +02001122 */
Jens Axboe2a27250e2006-04-19 15:56:40 +02001123 if ((flags & SPLICE_F_NONBLOCK) || !ipipe_first) {
Jens Axboe70524492006-04-11 15:51:17 +02001124 if (!ret)
1125 ret = -EAGAIN;
1126 break;
1127 }
1128 if (signal_pending(current)) {
1129 if (!ret)
1130 ret = -ERESTARTSYS;
1131 break;
1132 }
1133 if (do_wakeup) {
1134 smp_mb();
1135 if (waitqueue_active(&opipe->wait))
1136 wake_up_interruptible(&opipe->wait);
1137 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1138 do_wakeup = 0;
1139 }
1140
1141 opipe->waiting_writers++;
1142 pipe_wait(opipe);
1143 opipe->waiting_writers--;
1144 continue;
1145 }
1146
1147 /*
1148 * No input buffers, do the usual checks for available
1149 * writers and blocking and wait if necessary
1150 */
1151 if (!ipipe->writers)
1152 break;
1153 if (!ipipe->waiting_writers) {
1154 if (ret)
1155 break;
1156 }
Jens Axboe2a27250e2006-04-19 15:56:40 +02001157 /*
1158 * pipe_wait() drops the ipipe mutex. To avoid deadlocks
1159 * with another process, we can only safely do that if
1160 * the ipipe lock is ordered last.
1161 */
1162 if ((flags & SPLICE_F_NONBLOCK) || ipipe_first) {
Jens Axboe70524492006-04-11 15:51:17 +02001163 if (!ret)
1164 ret = -EAGAIN;
1165 break;
1166 }
1167 if (signal_pending(current)) {
1168 if (!ret)
1169 ret = -ERESTARTSYS;
1170 break;
1171 }
1172
1173 if (waitqueue_active(&ipipe->wait))
1174 wake_up_interruptible_sync(&ipipe->wait);
1175 kill_fasync(&ipipe->fasync_writers, SIGIO, POLL_OUT);
1176
1177 pipe_wait(ipipe);
1178 }
1179
1180 mutex_unlock(&ipipe->inode->i_mutex);
1181 mutex_unlock(&opipe->inode->i_mutex);
1182
1183 if (do_wakeup) {
1184 smp_mb();
1185 if (waitqueue_active(&opipe->wait))
1186 wake_up_interruptible(&opipe->wait);
1187 kill_fasync(&opipe->fasync_readers, SIGIO, POLL_IN);
1188 }
1189
1190 return ret;
1191}
1192
1193/*
1194 * This is a tee(1) implementation that works on pipes. It doesn't copy
1195 * any data, it simply references the 'in' pages on the 'out' pipe.
1196 * The 'flags' used are the SPLICE_F_* variants, currently the only
1197 * applicable one is SPLICE_F_NONBLOCK.
1198 */
1199static long do_tee(struct file *in, struct file *out, size_t len,
1200 unsigned int flags)
1201{
1202 struct pipe_inode_info *ipipe = in->f_dentry->d_inode->i_pipe;
1203 struct pipe_inode_info *opipe = out->f_dentry->d_inode->i_pipe;
1204
1205 /*
1206 * Link ipipe to the two output pipes, consuming as we go along.
1207 */
1208 if (ipipe && opipe)
1209 return link_pipe(ipipe, opipe, len, flags);
1210
1211 return -EINVAL;
1212}
1213
1214asmlinkage long sys_tee(int fdin, int fdout, size_t len, unsigned int flags)
1215{
1216 struct file *in;
1217 int error, fput_in;
1218
1219 if (unlikely(!len))
1220 return 0;
1221
1222 error = -EBADF;
1223 in = fget_light(fdin, &fput_in);
1224 if (in) {
1225 if (in->f_mode & FMODE_READ) {
1226 int fput_out;
1227 struct file *out = fget_light(fdout, &fput_out);
1228
1229 if (out) {
1230 if (out->f_mode & FMODE_WRITE)
1231 error = do_tee(in, out, len, flags);
1232 fput_light(out, fput_out);
1233 }
1234 }
1235 fput_light(in, fput_in);
1236 }
1237
1238 return error;
1239}