Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 1 | /* |
| 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 |
| 12 | * Jens to support splicing to files and fixing the initial implementation |
| 13 | * bugs. |
| 14 | * |
| 15 | * Copyright (C) 2005 Jens Axboe <axboe@suse.de> |
| 16 | * Copyright (C) 2005 Linus Torvalds <torvalds@osdl.org> |
| 17 | * |
| 18 | */ |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/file.h> |
| 21 | #include <linux/pagemap.h> |
| 22 | #include <linux/pipe_fs_i.h> |
| 23 | #include <linux/mm_inline.h> |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 24 | #include <linux/swap.h> |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 25 | #include <linux/writeback.h> |
| 26 | #include <linux/buffer_head.h> |
Jeff Garzik | a0f0678 | 2006-03-30 23:06:13 -0500 | [diff] [blame] | 27 | #include <linux/module.h> |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 28 | #include <linux/syscalls.h> |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | * Passed to the actors |
| 32 | */ |
| 33 | struct splice_desc { |
| 34 | unsigned int len, total_len; /* current and remaining length */ |
| 35 | unsigned int flags; /* splice flags */ |
| 36 | struct file *file; /* file to read/write */ |
| 37 | loff_t pos; /* file position */ |
| 38 | }; |
| 39 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 40 | /* |
| 41 | * Attempt to steal a page from a pipe buffer. This should perhaps go into |
| 42 | * a vm helper function, it's already simplified quite a bit by the |
| 43 | * addition of remove_mapping(). If success is returned, the caller may |
| 44 | * attempt to reuse this page for another destination. |
| 45 | */ |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 46 | static int page_cache_pipe_buf_steal(struct pipe_inode_info *info, |
| 47 | struct pipe_buffer *buf) |
| 48 | { |
| 49 | struct page *page = buf->page; |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 50 | struct address_space *mapping = page_mapping(page); |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 51 | |
| 52 | WARN_ON(!PageLocked(page)); |
| 53 | WARN_ON(!PageUptodate(page)); |
| 54 | |
Jens Axboe | ad8d6f0 | 2006-04-02 23:10:32 +0200 | [diff] [blame] | 55 | /* |
| 56 | * At least for ext2 with nobh option, we need to wait on writeback |
| 57 | * completing on this page, since we'll remove it from the pagecache. |
| 58 | * Otherwise truncate wont wait on the page, allowing the disk |
| 59 | * blocks to be reused by someone else before we actually wrote our |
| 60 | * data to them. fs corruption ensues. |
| 61 | */ |
| 62 | wait_on_page_writeback(page); |
| 63 | |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 64 | if (PagePrivate(page)) |
| 65 | try_to_release_page(page, mapping_gfp_mask(mapping)); |
| 66 | |
| 67 | if (!remove_mapping(mapping, page)) |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 68 | return 1; |
| 69 | |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 70 | buf->flags |= PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU; |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 74 | static void page_cache_pipe_buf_release(struct pipe_inode_info *info, |
| 75 | struct pipe_buffer *buf) |
| 76 | { |
| 77 | page_cache_release(buf->page); |
| 78 | buf->page = NULL; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 79 | buf->flags &= ~(PIPE_BUF_FLAG_STOLEN | PIPE_BUF_FLAG_LRU); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | static void *page_cache_pipe_buf_map(struct file *file, |
| 83 | struct pipe_inode_info *info, |
| 84 | struct pipe_buffer *buf) |
| 85 | { |
| 86 | struct page *page = buf->page; |
Jens Axboe | 49d0b21 | 2006-04-10 09:04:41 +0200 | [diff] [blame] | 87 | int err; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 88 | |
| 89 | if (!PageUptodate(page)) { |
Jens Axboe | 49d0b21 | 2006-04-10 09:04:41 +0200 | [diff] [blame] | 90 | lock_page(page); |
| 91 | |
| 92 | /* |
| 93 | * Page got truncated/unhashed. This will cause a 0-byte |
| 94 | * splice, if this is the first page |
| 95 | */ |
| 96 | if (!page->mapping) { |
| 97 | err = -ENODATA; |
| 98 | goto error; |
| 99 | } |
| 100 | |
| 101 | /* |
| 102 | * uh oh, read-error from disk |
| 103 | */ |
| 104 | if (!PageUptodate(page)) { |
| 105 | err = -EIO; |
| 106 | goto error; |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * page is ok afterall, fall through to mapping |
| 111 | */ |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 112 | unlock_page(page); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Jens Axboe | 49d0b21 | 2006-04-10 09:04:41 +0200 | [diff] [blame] | 115 | return kmap(page); |
| 116 | error: |
| 117 | unlock_page(page); |
| 118 | return ERR_PTR(err); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static void page_cache_pipe_buf_unmap(struct pipe_inode_info *info, |
| 122 | struct pipe_buffer *buf) |
| 123 | { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 124 | kunmap(buf->page); |
| 125 | } |
| 126 | |
| 127 | static struct pipe_buf_operations page_cache_pipe_buf_ops = { |
| 128 | .can_merge = 0, |
| 129 | .map = page_cache_pipe_buf_map, |
| 130 | .unmap = page_cache_pipe_buf_unmap, |
| 131 | .release = page_cache_pipe_buf_release, |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 132 | .steal = page_cache_pipe_buf_steal, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 133 | }; |
| 134 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 135 | /* |
| 136 | * Pipe output worker. This sets up our pipe format with the page cache |
| 137 | * pipe buffer operations. Otherwise very similar to the regular pipe_writev(). |
| 138 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 139 | static ssize_t move_to_pipe(struct pipe_inode_info *pipe, struct page **pages, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 140 | int nr_pages, unsigned long offset, |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 141 | unsigned long len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 142 | { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 143 | int ret, do_wakeup, i; |
| 144 | |
| 145 | ret = 0; |
| 146 | do_wakeup = 0; |
| 147 | i = 0; |
| 148 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 149 | if (pipe->inode) |
| 150 | mutex_lock(&pipe->inode->i_mutex); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 151 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 152 | for (;;) { |
| 153 | int bufs; |
| 154 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 155 | if (!pipe->readers) { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 156 | send_sig(SIGPIPE, current, 0); |
| 157 | if (!ret) |
| 158 | ret = -EPIPE; |
| 159 | break; |
| 160 | } |
| 161 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 162 | bufs = pipe->nrbufs; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 163 | if (bufs < PIPE_BUFFERS) { |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 164 | int newbuf = (pipe->curbuf + bufs) & (PIPE_BUFFERS - 1); |
| 165 | struct pipe_buffer *buf = pipe->bufs + newbuf; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 166 | struct page *page = pages[i++]; |
| 167 | unsigned long this_len; |
| 168 | |
| 169 | this_len = PAGE_CACHE_SIZE - offset; |
| 170 | if (this_len > len) |
| 171 | this_len = len; |
| 172 | |
| 173 | buf->page = page; |
| 174 | buf->offset = offset; |
| 175 | buf->len = this_len; |
| 176 | buf->ops = &page_cache_pipe_buf_ops; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 177 | pipe->nrbufs = ++bufs; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 178 | do_wakeup = 1; |
| 179 | |
| 180 | ret += this_len; |
| 181 | len -= this_len; |
| 182 | offset = 0; |
| 183 | if (!--nr_pages) |
| 184 | break; |
| 185 | if (!len) |
| 186 | break; |
| 187 | if (bufs < PIPE_BUFFERS) |
| 188 | continue; |
| 189 | |
| 190 | break; |
| 191 | } |
| 192 | |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 193 | if (flags & SPLICE_F_NONBLOCK) { |
| 194 | if (!ret) |
| 195 | ret = -EAGAIN; |
| 196 | break; |
| 197 | } |
| 198 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 199 | if (signal_pending(current)) { |
| 200 | if (!ret) |
| 201 | ret = -ERESTARTSYS; |
| 202 | break; |
| 203 | } |
| 204 | |
| 205 | if (do_wakeup) { |
Jens Axboe | c0bd1f6 | 2006-04-10 09:03:32 +0200 | [diff] [blame] | 206 | smp_mb(); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 207 | if (waitqueue_active(&pipe->wait)) |
| 208 | wake_up_interruptible_sync(&pipe->wait); |
| 209 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 210 | do_wakeup = 0; |
| 211 | } |
| 212 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 213 | pipe->waiting_writers++; |
| 214 | pipe_wait(pipe); |
| 215 | pipe->waiting_writers--; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 216 | } |
| 217 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 218 | if (pipe->inode) |
| 219 | mutex_unlock(&pipe->inode->i_mutex); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 220 | |
| 221 | if (do_wakeup) { |
Jens Axboe | c0bd1f6 | 2006-04-10 09:03:32 +0200 | [diff] [blame] | 222 | smp_mb(); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 223 | if (waitqueue_active(&pipe->wait)) |
| 224 | wake_up_interruptible(&pipe->wait); |
| 225 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | while (i < nr_pages) |
| 229 | page_cache_release(pages[i++]); |
| 230 | |
| 231 | return ret; |
| 232 | } |
| 233 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 234 | static int |
| 235 | __generic_file_splice_read(struct file *in, struct pipe_inode_info *pipe, |
| 236 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 237 | { |
| 238 | struct address_space *mapping = in->f_mapping; |
| 239 | unsigned int offset, nr_pages; |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 240 | struct page *pages[PIPE_BUFFERS]; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 241 | struct page *page; |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 242 | pgoff_t index; |
| 243 | int i; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 244 | |
| 245 | index = in->f_pos >> PAGE_CACHE_SHIFT; |
| 246 | offset = in->f_pos & ~PAGE_CACHE_MASK; |
| 247 | nr_pages = (len + offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
| 248 | |
| 249 | if (nr_pages > PIPE_BUFFERS) |
| 250 | nr_pages = PIPE_BUFFERS; |
| 251 | |
| 252 | /* |
Jens Axboe | 0b749ce | 2006-04-10 09:05:04 +0200 | [diff] [blame] | 253 | * initiate read-ahead on this page range. however, don't call into |
| 254 | * read-ahead if this is a non-zero offset (we are likely doing small |
| 255 | * chunk splice and the page is already there) for a single page. |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 256 | */ |
Jens Axboe | 0b749ce | 2006-04-10 09:05:04 +0200 | [diff] [blame] | 257 | if (!offset || nr_pages > 1) |
| 258 | do_page_cache_readahead(mapping, in, index, nr_pages); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 259 | |
| 260 | /* |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 261 | * now fill in the holes |
| 262 | */ |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 263 | for (i = 0; i < nr_pages; i++, index++) { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 264 | /* |
| 265 | * no page there, look one up / create it |
| 266 | */ |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 267 | page = find_or_create_page(mapping, index, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 268 | mapping_gfp_mask(mapping)); |
| 269 | if (!page) |
| 270 | break; |
| 271 | |
| 272 | if (PageUptodate(page)) |
| 273 | unlock_page(page); |
| 274 | else { |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 275 | int error = mapping->a_ops->readpage(in, page); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 276 | |
| 277 | if (unlikely(error)) { |
| 278 | page_cache_release(page); |
| 279 | break; |
| 280 | } |
| 281 | } |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 282 | pages[i] = page; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 283 | } |
| 284 | |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 285 | if (i) |
| 286 | return move_to_pipe(pipe, pages, i, offset, len, flags); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 287 | |
Jens Axboe | 16c523d | 2006-04-10 09:03:58 +0200 | [diff] [blame] | 288 | return 0; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 291 | /** |
| 292 | * generic_file_splice_read - splice data from file to a pipe |
| 293 | * @in: file to splice from |
| 294 | * @pipe: pipe to splice to |
| 295 | * @len: number of bytes to splice |
| 296 | * @flags: splice modifier flags |
| 297 | * |
| 298 | * Will read pages from given file and fill them into a pipe. |
| 299 | * |
| 300 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 301 | ssize_t generic_file_splice_read(struct file *in, struct pipe_inode_info *pipe, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 302 | size_t len, unsigned int flags) |
| 303 | { |
| 304 | ssize_t spliced; |
| 305 | int ret; |
| 306 | |
| 307 | ret = 0; |
| 308 | spliced = 0; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 309 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 310 | while (len) { |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 311 | ret = __generic_file_splice_read(in, pipe, len, flags); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 312 | |
| 313 | if (ret <= 0) |
| 314 | break; |
| 315 | |
| 316 | in->f_pos += ret; |
| 317 | len -= ret; |
| 318 | spliced += ret; |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 319 | |
| 320 | if (!(flags & SPLICE_F_NONBLOCK)) |
| 321 | continue; |
| 322 | ret = -EAGAIN; |
| 323 | break; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | if (spliced) |
| 327 | return spliced; |
| 328 | |
| 329 | return ret; |
| 330 | } |
| 331 | |
Jens Axboe | 059a8f3 | 2006-04-02 23:06:05 +0200 | [diff] [blame] | 332 | EXPORT_SYMBOL(generic_file_splice_read); |
| 333 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 334 | /* |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 335 | * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos' |
| 336 | * using sendpage(). |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 337 | */ |
| 338 | static int pipe_to_sendpage(struct pipe_inode_info *info, |
| 339 | struct pipe_buffer *buf, struct splice_desc *sd) |
| 340 | { |
| 341 | struct file *file = sd->file; |
| 342 | loff_t pos = sd->pos; |
| 343 | unsigned int offset; |
| 344 | ssize_t ret; |
| 345 | void *ptr; |
Jens Axboe | b2b39fa | 2006-04-02 23:05:41 +0200 | [diff] [blame] | 346 | int more; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * sub-optimal, but we are limited by the pipe ->map. we don't |
| 350 | * need a kmap'ed buffer here, we just want to make sure we |
| 351 | * have the page pinned if the pipe page originates from the |
| 352 | * page cache |
| 353 | */ |
| 354 | ptr = buf->ops->map(file, info, buf); |
| 355 | if (IS_ERR(ptr)) |
| 356 | return PTR_ERR(ptr); |
| 357 | |
| 358 | offset = pos & ~PAGE_CACHE_MASK; |
Jens Axboe | b2b39fa | 2006-04-02 23:05:41 +0200 | [diff] [blame] | 359 | more = (sd->flags & SPLICE_F_MORE) || sd->len < sd->total_len; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 360 | |
Jens Axboe | b2b39fa | 2006-04-02 23:05:41 +0200 | [diff] [blame] | 361 | ret = file->f_op->sendpage(file, buf->page, offset, sd->len, &pos,more); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 362 | |
| 363 | buf->ops->unmap(info, buf); |
| 364 | if (ret == sd->len) |
| 365 | return 0; |
| 366 | |
| 367 | return -EIO; |
| 368 | } |
| 369 | |
| 370 | /* |
| 371 | * This is a little more tricky than the file -> pipe splicing. There are |
| 372 | * basically three cases: |
| 373 | * |
| 374 | * - Destination page already exists in the address space and there |
| 375 | * are users of it. For that case we have no other option that |
| 376 | * copying the data. Tough luck. |
| 377 | * - Destination page already exists in the address space, but there |
| 378 | * are no users of it. Make sure it's uptodate, then drop it. Fall |
| 379 | * through to last case. |
| 380 | * - Destination page does not exist, we can add the pipe page to |
| 381 | * the page cache and avoid the copy. |
| 382 | * |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 383 | * If asked to move pages to the output file (SPLICE_F_MOVE is set in |
| 384 | * sd->flags), we attempt to migrate pages from the pipe to the output |
| 385 | * file address space page cache. This is possible if no one else has |
| 386 | * the pipe page referenced outside of the pipe and page cache. If |
| 387 | * SPLICE_F_MOVE isn't set, or we cannot move the page, we simply create |
| 388 | * a new page in the output file page cache and fill/dirty that. |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 389 | */ |
| 390 | static int pipe_to_file(struct pipe_inode_info *info, struct pipe_buffer *buf, |
| 391 | struct splice_desc *sd) |
| 392 | { |
| 393 | struct file *file = sd->file; |
| 394 | struct address_space *mapping = file->f_mapping; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 395 | gfp_t gfp_mask = mapping_gfp_mask(mapping); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 396 | unsigned int offset; |
| 397 | struct page *page; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 398 | pgoff_t index; |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 399 | char *src; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 400 | int ret; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 401 | |
| 402 | /* |
Jens Axboe | 49d0b21 | 2006-04-10 09:04:41 +0200 | [diff] [blame] | 403 | * make sure the data in this buffer is uptodate |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 404 | */ |
| 405 | src = buf->ops->map(file, info, buf); |
| 406 | if (IS_ERR(src)) |
| 407 | return PTR_ERR(src); |
| 408 | |
| 409 | index = sd->pos >> PAGE_CACHE_SHIFT; |
| 410 | offset = sd->pos & ~PAGE_CACHE_MASK; |
| 411 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 412 | /* |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 413 | * reuse buf page, if SPLICE_F_MOVE is set |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 414 | */ |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 415 | if (sd->flags & SPLICE_F_MOVE) { |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 416 | /* |
| 417 | * If steal succeeds, buf->page is now pruned from the vm |
| 418 | * side (LRU and page cache) and we can reuse it. |
| 419 | */ |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 420 | if (buf->ops->steal(info, buf)) |
| 421 | goto find_page; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 422 | |
Jens Axboe | 49d0b21 | 2006-04-10 09:04:41 +0200 | [diff] [blame] | 423 | /* |
| 424 | * this will also set the page locked |
| 425 | */ |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 426 | page = buf->page; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 427 | if (add_to_page_cache(page, mapping, index, gfp_mask)) |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 428 | goto find_page; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 429 | |
| 430 | if (!(buf->flags & PIPE_BUF_FLAG_LRU)) |
| 431 | lru_cache_add(page); |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 432 | } else { |
| 433 | find_page: |
| 434 | ret = -ENOMEM; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 435 | page = find_or_create_page(mapping, index, gfp_mask); |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 436 | if (!page) |
Dave Jones | 9aefe43 | 2006-04-10 09:02:40 +0200 | [diff] [blame] | 437 | goto out_nomem; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 438 | |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 439 | /* |
| 440 | * If the page is uptodate, it is also locked. If it isn't |
| 441 | * uptodate, we can mark it uptodate if we are filling the |
| 442 | * full page. Otherwise we need to read it in first... |
| 443 | */ |
| 444 | if (!PageUptodate(page)) { |
| 445 | if (sd->len < PAGE_CACHE_SIZE) { |
| 446 | ret = mapping->a_ops->readpage(file, page); |
| 447 | if (unlikely(ret)) |
| 448 | goto out; |
| 449 | |
| 450 | lock_page(page); |
| 451 | |
| 452 | if (!PageUptodate(page)) { |
| 453 | /* |
| 454 | * page got invalidated, repeat |
| 455 | */ |
| 456 | if (!page->mapping) { |
| 457 | unlock_page(page); |
| 458 | page_cache_release(page); |
| 459 | goto find_page; |
| 460 | } |
| 461 | ret = -EIO; |
| 462 | goto out; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 463 | } |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 464 | } else { |
| 465 | WARN_ON(!PageLocked(page)); |
| 466 | SetPageUptodate(page); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 467 | } |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
| 471 | ret = mapping->a_ops->prepare_write(file, page, 0, sd->len); |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 472 | if (ret == AOP_TRUNCATED_PAGE) { |
| 473 | page_cache_release(page); |
| 474 | goto find_page; |
| 475 | } else if (ret) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 476 | goto out; |
| 477 | |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 478 | if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) { |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 479 | char *dst = kmap_atomic(page, KM_USER0); |
| 480 | |
| 481 | memcpy(dst + offset, src + buf->offset, sd->len); |
| 482 | flush_dcache_page(page); |
| 483 | kunmap_atomic(dst, KM_USER0); |
| 484 | } |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 485 | |
| 486 | ret = mapping->a_ops->commit_write(file, page, 0, sd->len); |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 487 | if (ret == AOP_TRUNCATED_PAGE) { |
| 488 | page_cache_release(page); |
| 489 | goto find_page; |
| 490 | } else if (ret) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 491 | goto out; |
| 492 | |
Jens Axboe | c7f21e4 | 2006-04-10 09:01:01 +0200 | [diff] [blame] | 493 | mark_page_accessed(page); |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 494 | balance_dirty_pages_ratelimited(mapping); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 495 | out: |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 496 | if (!(buf->flags & PIPE_BUF_FLAG_STOLEN)) { |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 497 | page_cache_release(page); |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 498 | unlock_page(page); |
| 499 | } |
Dave Jones | 9aefe43 | 2006-04-10 09:02:40 +0200 | [diff] [blame] | 500 | out_nomem: |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 501 | buf->ops->unmap(info, buf); |
| 502 | return ret; |
| 503 | } |
| 504 | |
| 505 | typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *, |
| 506 | struct splice_desc *); |
| 507 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 508 | /* |
| 509 | * Pipe input worker. Most of this logic works like a regular pipe, the |
| 510 | * key here is the 'actor' worker passed in that actually moves the data |
| 511 | * to the wanted destination. See pipe_to_file/pipe_to_sendpage above. |
| 512 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 513 | static ssize_t move_from_pipe(struct pipe_inode_info *pipe, struct file *out, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 514 | size_t len, unsigned int flags, |
| 515 | splice_actor *actor) |
| 516 | { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 517 | int ret, do_wakeup, err; |
| 518 | struct splice_desc sd; |
| 519 | |
| 520 | ret = 0; |
| 521 | do_wakeup = 0; |
| 522 | |
| 523 | sd.total_len = len; |
| 524 | sd.flags = flags; |
| 525 | sd.file = out; |
| 526 | sd.pos = out->f_pos; |
| 527 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 528 | if (pipe->inode) |
| 529 | mutex_lock(&pipe->inode->i_mutex); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 530 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 531 | for (;;) { |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 532 | int bufs = pipe->nrbufs; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 533 | |
| 534 | if (bufs) { |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 535 | int curbuf = pipe->curbuf; |
| 536 | struct pipe_buffer *buf = pipe->bufs + curbuf; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 537 | struct pipe_buf_operations *ops = buf->ops; |
| 538 | |
| 539 | sd.len = buf->len; |
| 540 | if (sd.len > sd.total_len) |
| 541 | sd.len = sd.total_len; |
| 542 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 543 | err = actor(pipe, buf, &sd); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 544 | if (err) { |
| 545 | if (!ret && err != -ENODATA) |
| 546 | ret = err; |
| 547 | |
| 548 | break; |
| 549 | } |
| 550 | |
| 551 | ret += sd.len; |
| 552 | buf->offset += sd.len; |
| 553 | buf->len -= sd.len; |
| 554 | if (!buf->len) { |
| 555 | buf->ops = NULL; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 556 | ops->release(pipe, buf); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 557 | curbuf = (curbuf + 1) & (PIPE_BUFFERS - 1); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 558 | pipe->curbuf = curbuf; |
| 559 | pipe->nrbufs = --bufs; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 560 | do_wakeup = 1; |
| 561 | } |
| 562 | |
| 563 | sd.pos += sd.len; |
| 564 | sd.total_len -= sd.len; |
| 565 | if (!sd.total_len) |
| 566 | break; |
| 567 | } |
| 568 | |
| 569 | if (bufs) |
| 570 | continue; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 571 | if (!pipe->writers) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 572 | break; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 573 | if (!pipe->waiting_writers) { |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 574 | if (ret) |
| 575 | break; |
| 576 | } |
| 577 | |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 578 | if (flags & SPLICE_F_NONBLOCK) { |
| 579 | if (!ret) |
| 580 | ret = -EAGAIN; |
| 581 | break; |
| 582 | } |
| 583 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 584 | if (signal_pending(current)) { |
| 585 | if (!ret) |
| 586 | ret = -ERESTARTSYS; |
| 587 | break; |
| 588 | } |
| 589 | |
| 590 | if (do_wakeup) { |
Jens Axboe | c0bd1f6 | 2006-04-10 09:03:32 +0200 | [diff] [blame] | 591 | smp_mb(); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 592 | if (waitqueue_active(&pipe->wait)) |
| 593 | wake_up_interruptible_sync(&pipe->wait); |
| 594 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 595 | do_wakeup = 0; |
| 596 | } |
| 597 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 598 | pipe_wait(pipe); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 599 | } |
| 600 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 601 | if (pipe->inode) |
| 602 | mutex_unlock(&pipe->inode->i_mutex); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 603 | |
| 604 | if (do_wakeup) { |
Jens Axboe | c0bd1f6 | 2006-04-10 09:03:32 +0200 | [diff] [blame] | 605 | smp_mb(); |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 606 | if (waitqueue_active(&pipe->wait)) |
| 607 | wake_up_interruptible(&pipe->wait); |
| 608 | kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | mutex_lock(&out->f_mapping->host->i_mutex); |
| 612 | out->f_pos = sd.pos; |
| 613 | mutex_unlock(&out->f_mapping->host->i_mutex); |
| 614 | return ret; |
| 615 | |
| 616 | } |
| 617 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 618 | /** |
| 619 | * generic_file_splice_write - splice data from a pipe to a file |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 620 | * @pipe: pipe info |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 621 | * @out: file to write to |
| 622 | * @len: number of bytes to splice |
| 623 | * @flags: splice modifier flags |
| 624 | * |
| 625 | * Will either move or copy pages (determined by @flags options) from |
| 626 | * the given pipe inode to the given file. |
| 627 | * |
| 628 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 629 | ssize_t |
| 630 | generic_file_splice_write(struct pipe_inode_info *pipe, struct file *out, |
| 631 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 632 | { |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 633 | struct address_space *mapping = out->f_mapping; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 634 | ssize_t ret; |
| 635 | |
| 636 | ret = move_from_pipe(pipe, out, len, flags, pipe_to_file); |
Jens Axboe | 4f6f0bd | 2006-04-02 23:04:46 +0200 | [diff] [blame] | 637 | |
| 638 | /* |
| 639 | * if file or inode is SYNC and we actually wrote some data, sync it |
| 640 | */ |
| 641 | if (unlikely((out->f_flags & O_SYNC) || IS_SYNC(mapping->host)) |
| 642 | && ret > 0) { |
| 643 | struct inode *inode = mapping->host; |
| 644 | int err; |
| 645 | |
| 646 | mutex_lock(&inode->i_mutex); |
| 647 | err = generic_osync_inode(mapping->host, mapping, |
| 648 | OSYNC_METADATA|OSYNC_DATA); |
| 649 | mutex_unlock(&inode->i_mutex); |
| 650 | |
| 651 | if (err) |
| 652 | ret = err; |
| 653 | } |
| 654 | |
| 655 | return ret; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 656 | } |
| 657 | |
Jens Axboe | 059a8f3 | 2006-04-02 23:06:05 +0200 | [diff] [blame] | 658 | EXPORT_SYMBOL(generic_file_splice_write); |
| 659 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 660 | /** |
| 661 | * generic_splice_sendpage - splice data from a pipe to a socket |
| 662 | * @inode: pipe inode |
| 663 | * @out: socket to write to |
| 664 | * @len: number of bytes to splice |
| 665 | * @flags: splice modifier flags |
| 666 | * |
| 667 | * Will send @len bytes from the pipe to a network socket. No data copying |
| 668 | * is involved. |
| 669 | * |
| 670 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 671 | ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe, struct file *out, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 672 | size_t len, unsigned int flags) |
| 673 | { |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 674 | return move_from_pipe(pipe, out, len, flags, pipe_to_sendpage); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 675 | } |
| 676 | |
Jens Axboe | 059a8f3 | 2006-04-02 23:06:05 +0200 | [diff] [blame] | 677 | EXPORT_SYMBOL(generic_splice_sendpage); |
Jeff Garzik | a0f0678 | 2006-03-30 23:06:13 -0500 | [diff] [blame] | 678 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 679 | /* |
| 680 | * Attempt to initiate a splice from pipe to file. |
| 681 | */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 682 | static long do_splice_from(struct pipe_inode_info *pipe, struct file *out, |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 683 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 684 | { |
| 685 | loff_t pos; |
| 686 | int ret; |
| 687 | |
| 688 | if (!out->f_op || !out->f_op->splice_write) |
| 689 | return -EINVAL; |
| 690 | |
| 691 | if (!(out->f_mode & FMODE_WRITE)) |
| 692 | return -EBADF; |
| 693 | |
| 694 | pos = out->f_pos; |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 695 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 696 | ret = rw_verify_area(WRITE, out, &pos, len); |
| 697 | if (unlikely(ret < 0)) |
| 698 | return ret; |
| 699 | |
| 700 | return out->f_op->splice_write(pipe, out, len, flags); |
| 701 | } |
| 702 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 703 | /* |
| 704 | * Attempt to initiate a splice from a file to a pipe. |
| 705 | */ |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 706 | static long do_splice_to(struct file *in, struct pipe_inode_info *pipe, |
| 707 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 708 | { |
| 709 | loff_t pos, isize, left; |
| 710 | int ret; |
| 711 | |
| 712 | if (!in->f_op || !in->f_op->splice_read) |
| 713 | return -EINVAL; |
| 714 | |
| 715 | if (!(in->f_mode & FMODE_READ)) |
| 716 | return -EBADF; |
| 717 | |
| 718 | pos = in->f_pos; |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 719 | |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 720 | ret = rw_verify_area(READ, in, &pos, len); |
| 721 | if (unlikely(ret < 0)) |
| 722 | return ret; |
| 723 | |
| 724 | isize = i_size_read(in->f_mapping->host); |
| 725 | if (unlikely(in->f_pos >= isize)) |
| 726 | return 0; |
| 727 | |
| 728 | left = isize - in->f_pos; |
| 729 | if (left < len) |
| 730 | len = left; |
| 731 | |
| 732 | return in->f_op->splice_read(in, pipe, len, flags); |
| 733 | } |
| 734 | |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 735 | long do_splice_direct(struct file *in, struct file *out, size_t len, |
| 736 | unsigned int flags) |
| 737 | { |
| 738 | struct pipe_inode_info *pipe; |
| 739 | long ret, bytes; |
| 740 | umode_t i_mode; |
| 741 | int i; |
| 742 | |
| 743 | /* |
| 744 | * We require the input being a regular file, as we don't want to |
| 745 | * randomly drop data for eg socket -> socket splicing. Use the |
| 746 | * piped splicing for that! |
| 747 | */ |
| 748 | i_mode = in->f_dentry->d_inode->i_mode; |
| 749 | if (unlikely(!S_ISREG(i_mode) && !S_ISBLK(i_mode))) |
| 750 | return -EINVAL; |
| 751 | |
| 752 | /* |
| 753 | * neither in nor out is a pipe, setup an internal pipe attached to |
| 754 | * 'out' and transfer the wanted data from 'in' to 'out' through that |
| 755 | */ |
| 756 | pipe = current->splice_pipe; |
| 757 | if (!pipe) { |
| 758 | pipe = alloc_pipe_info(NULL); |
| 759 | if (!pipe) |
| 760 | return -ENOMEM; |
| 761 | |
| 762 | /* |
| 763 | * We don't have an immediate reader, but we'll read the stuff |
| 764 | * out of the pipe right after the move_to_pipe(). So set |
| 765 | * PIPE_READERS appropriately. |
| 766 | */ |
| 767 | pipe->readers = 1; |
| 768 | |
| 769 | current->splice_pipe = pipe; |
| 770 | } |
| 771 | |
| 772 | /* |
| 773 | * do the splice |
| 774 | */ |
| 775 | ret = 0; |
| 776 | bytes = 0; |
| 777 | |
| 778 | while (len) { |
| 779 | size_t read_len, max_read_len; |
| 780 | |
| 781 | /* |
| 782 | * Do at most PIPE_BUFFERS pages worth of transfer: |
| 783 | */ |
| 784 | max_read_len = min(len, (size_t)(PIPE_BUFFERS*PAGE_SIZE)); |
| 785 | |
| 786 | ret = do_splice_to(in, pipe, max_read_len, flags); |
| 787 | if (unlikely(ret < 0)) |
| 788 | goto out_release; |
| 789 | |
| 790 | read_len = ret; |
| 791 | |
| 792 | /* |
| 793 | * NOTE: nonblocking mode only applies to the input. We |
| 794 | * must not do the output in nonblocking mode as then we |
| 795 | * could get stuck data in the internal pipe: |
| 796 | */ |
| 797 | ret = do_splice_from(pipe, out, read_len, |
| 798 | flags & ~SPLICE_F_NONBLOCK); |
| 799 | if (unlikely(ret < 0)) |
| 800 | goto out_release; |
| 801 | |
| 802 | bytes += ret; |
| 803 | len -= ret; |
| 804 | |
| 805 | /* |
| 806 | * In nonblocking mode, if we got back a short read then |
| 807 | * that was due to either an IO error or due to the |
| 808 | * pagecache entry not being there. In the IO error case |
| 809 | * the _next_ splice attempt will produce a clean IO error |
| 810 | * return value (not a short read), so in both cases it's |
| 811 | * correct to break out of the loop here: |
| 812 | */ |
| 813 | if ((flags & SPLICE_F_NONBLOCK) && (read_len < max_read_len)) |
| 814 | break; |
| 815 | } |
| 816 | |
| 817 | pipe->nrbufs = pipe->curbuf = 0; |
| 818 | |
| 819 | return bytes; |
| 820 | |
| 821 | out_release: |
| 822 | /* |
| 823 | * If we did an incomplete transfer we must release |
| 824 | * the pipe buffers in question: |
| 825 | */ |
| 826 | for (i = 0; i < PIPE_BUFFERS; i++) { |
| 827 | struct pipe_buffer *buf = pipe->bufs + i; |
| 828 | |
| 829 | if (buf->ops) { |
| 830 | buf->ops->release(pipe, buf); |
| 831 | buf->ops = NULL; |
| 832 | } |
| 833 | } |
| 834 | pipe->nrbufs = pipe->curbuf = 0; |
| 835 | |
| 836 | /* |
| 837 | * If we transferred some data, return the number of bytes: |
| 838 | */ |
| 839 | if (bytes > 0) |
| 840 | return bytes; |
| 841 | |
| 842 | return ret; |
| 843 | } |
| 844 | |
| 845 | EXPORT_SYMBOL(do_splice_direct); |
| 846 | |
Jens Axboe | 83f9135 | 2006-04-02 23:05:09 +0200 | [diff] [blame] | 847 | /* |
| 848 | * Determine where to splice to/from. |
| 849 | */ |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 850 | static long do_splice(struct file *in, loff_t __user *off_in, |
| 851 | struct file *out, loff_t __user *off_out, |
| 852 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 853 | { |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 854 | struct pipe_inode_info *pipe; |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 855 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 856 | pipe = in->f_dentry->d_inode->i_pipe; |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 857 | if (pipe) { |
| 858 | if (off_in) |
| 859 | return -ESPIPE; |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 860 | if (off_out) { |
| 861 | if (out->f_op->llseek == no_llseek) |
| 862 | return -EINVAL; |
| 863 | if (copy_from_user(&out->f_pos, off_out, |
| 864 | sizeof(loff_t))) |
| 865 | return -EFAULT; |
| 866 | } |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 867 | |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 868 | return do_splice_from(pipe, out, len, flags); |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 869 | } |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 870 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 871 | pipe = out->f_dentry->d_inode->i_pipe; |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 872 | if (pipe) { |
| 873 | if (off_out) |
| 874 | return -ESPIPE; |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 875 | if (off_in) { |
| 876 | if (in->f_op->llseek == no_llseek) |
| 877 | return -EINVAL; |
| 878 | if (copy_from_user(&in->f_pos, off_in, sizeof(loff_t))) |
| 879 | return -EFAULT; |
| 880 | } |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 881 | |
Jens Axboe | b92ce55 | 2006-04-11 13:52:07 +0200 | [diff] [blame^] | 882 | return do_splice_to(in, pipe, len, flags); |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 883 | } |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 884 | |
| 885 | return -EINVAL; |
| 886 | } |
| 887 | |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 888 | asmlinkage long sys_splice(int fd_in, loff_t __user *off_in, |
| 889 | int fd_out, loff_t __user *off_out, |
| 890 | size_t len, unsigned int flags) |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 891 | { |
| 892 | long error; |
| 893 | struct file *in, *out; |
| 894 | int fput_in, fput_out; |
| 895 | |
| 896 | if (unlikely(!len)) |
| 897 | return 0; |
| 898 | |
| 899 | error = -EBADF; |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 900 | in = fget_light(fd_in, &fput_in); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 901 | if (in) { |
| 902 | if (in->f_mode & FMODE_READ) { |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 903 | out = fget_light(fd_out, &fput_out); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 904 | if (out) { |
| 905 | if (out->f_mode & FMODE_WRITE) |
Ingo Molnar | 529565d | 2006-04-10 15:18:58 +0200 | [diff] [blame] | 906 | error = do_splice(in, off_in, |
| 907 | out, off_out, |
| 908 | len, flags); |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 909 | fput_light(out, fput_out); |
| 910 | } |
| 911 | } |
| 912 | |
| 913 | fput_light(in, fput_in); |
| 914 | } |
| 915 | |
| 916 | return error; |
| 917 | } |