]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/read_write.c | |
3 | * | |
4 | * Copyright (C) 1991, 1992 Linus Torvalds | |
5 | */ | |
6 | ||
7 | #include <linux/slab.h> | |
8 | #include <linux/stat.h> | |
9 | #include <linux/fcntl.h> | |
10 | #include <linux/file.h> | |
11 | #include <linux/uio.h> | |
a27bb332 | 12 | #include <linux/aio.h> |
0eeca283 | 13 | #include <linux/fsnotify.h> |
1da177e4 | 14 | #include <linux/security.h> |
630d9c47 | 15 | #include <linux/export.h> |
1da177e4 | 16 | #include <linux/syscalls.h> |
e28cc715 | 17 | #include <linux/pagemap.h> |
d6b29d7c | 18 | #include <linux/splice.h> |
561c6731 | 19 | #include <linux/compat.h> |
06ae43f3 | 20 | #include "internal.h" |
1da177e4 LT |
21 | |
22 | #include <asm/uaccess.h> | |
23 | #include <asm/unistd.h> | |
24 | ||
c0bd14af AV |
25 | typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *); |
26 | typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *, | |
27 | unsigned long, loff_t); | |
28 | ||
4b6f5d20 | 29 | const struct file_operations generic_ro_fops = { |
1da177e4 | 30 | .llseek = generic_file_llseek, |
543ade1f BP |
31 | .read = do_sync_read, |
32 | .aio_read = generic_file_aio_read, | |
1da177e4 | 33 | .mmap = generic_file_readonly_mmap, |
534f2aaa | 34 | .splice_read = generic_file_splice_read, |
1da177e4 LT |
35 | }; |
36 | ||
37 | EXPORT_SYMBOL(generic_ro_fops); | |
38 | ||
cccb5a1e | 39 | static inline int unsigned_offsets(struct file *file) |
4a3956c7 | 40 | { |
cccb5a1e | 41 | return file->f_mode & FMODE_UNSIGNED_OFFSET; |
4a3956c7 KH |
42 | } |
43 | ||
ef3d0fd2 AK |
44 | static loff_t lseek_execute(struct file *file, struct inode *inode, |
45 | loff_t offset, loff_t maxsize) | |
46 | { | |
47 | if (offset < 0 && !unsigned_offsets(file)) | |
48 | return -EINVAL; | |
49 | if (offset > maxsize) | |
50 | return -EINVAL; | |
51 | ||
52 | if (offset != file->f_pos) { | |
53 | file->f_pos = offset; | |
54 | file->f_version = 0; | |
55 | } | |
56 | return offset; | |
57 | } | |
58 | ||
3a8cff4f | 59 | /** |
5760495a | 60 | * generic_file_llseek_size - generic llseek implementation for regular files |
3a8cff4f CH |
61 | * @file: file structure to seek on |
62 | * @offset: file offset to seek to | |
965c8e59 | 63 | * @whence: type of seek |
e8b96eb5 ES |
64 | * @size: max size of this file in file system |
65 | * @eof: offset used for SEEK_END position | |
3a8cff4f | 66 | * |
5760495a | 67 | * This is a variant of generic_file_llseek that allows passing in a custom |
e8b96eb5 | 68 | * maximum file size and a custom EOF position, for e.g. hashed directories |
ef3d0fd2 AK |
69 | * |
70 | * Synchronization: | |
5760495a | 71 | * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms) |
ef3d0fd2 AK |
72 | * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes. |
73 | * read/writes behave like SEEK_SET against seeks. | |
3a8cff4f | 74 | */ |
9465efc9 | 75 | loff_t |
965c8e59 | 76 | generic_file_llseek_size(struct file *file, loff_t offset, int whence, |
e8b96eb5 | 77 | loff_t maxsize, loff_t eof) |
1da177e4 | 78 | { |
1da177e4 LT |
79 | struct inode *inode = file->f_mapping->host; |
80 | ||
965c8e59 | 81 | switch (whence) { |
3a8cff4f | 82 | case SEEK_END: |
e8b96eb5 | 83 | offset += eof; |
3a8cff4f CH |
84 | break; |
85 | case SEEK_CUR: | |
5b6f1eb9 AK |
86 | /* |
87 | * Here we special-case the lseek(fd, 0, SEEK_CUR) | |
88 | * position-querying operation. Avoid rewriting the "same" | |
89 | * f_pos value back to the file because a concurrent read(), | |
90 | * write() or lseek() might have altered it | |
91 | */ | |
92 | if (offset == 0) | |
93 | return file->f_pos; | |
ef3d0fd2 AK |
94 | /* |
95 | * f_lock protects against read/modify/write race with other | |
96 | * SEEK_CURs. Note that parallel writes and reads behave | |
97 | * like SEEK_SET. | |
98 | */ | |
99 | spin_lock(&file->f_lock); | |
100 | offset = lseek_execute(file, inode, file->f_pos + offset, | |
5760495a | 101 | maxsize); |
ef3d0fd2 AK |
102 | spin_unlock(&file->f_lock); |
103 | return offset; | |
982d8165 JB |
104 | case SEEK_DATA: |
105 | /* | |
106 | * In the generic case the entire file is data, so as long as | |
107 | * offset isn't at the end of the file then the offset is data. | |
108 | */ | |
e8b96eb5 | 109 | if (offset >= eof) |
982d8165 JB |
110 | return -ENXIO; |
111 | break; | |
112 | case SEEK_HOLE: | |
113 | /* | |
114 | * There is a virtual hole at the end of the file, so as long as | |
115 | * offset isn't i_size or larger, return i_size. | |
116 | */ | |
e8b96eb5 | 117 | if (offset >= eof) |
982d8165 | 118 | return -ENXIO; |
e8b96eb5 | 119 | offset = eof; |
982d8165 | 120 | break; |
1da177e4 | 121 | } |
3a8cff4f | 122 | |
5760495a AK |
123 | return lseek_execute(file, inode, offset, maxsize); |
124 | } | |
125 | EXPORT_SYMBOL(generic_file_llseek_size); | |
126 | ||
127 | /** | |
128 | * generic_file_llseek - generic llseek implementation for regular files | |
129 | * @file: file structure to seek on | |
130 | * @offset: file offset to seek to | |
965c8e59 | 131 | * @whence: type of seek |
5760495a AK |
132 | * |
133 | * This is a generic implemenation of ->llseek useable for all normal local | |
134 | * filesystems. It just updates the file offset to the value specified by | |
546ae2d2 | 135 | * @offset and @whence. |
5760495a | 136 | */ |
965c8e59 | 137 | loff_t generic_file_llseek(struct file *file, loff_t offset, int whence) |
5760495a AK |
138 | { |
139 | struct inode *inode = file->f_mapping->host; | |
140 | ||
965c8e59 | 141 | return generic_file_llseek_size(file, offset, whence, |
e8b96eb5 ES |
142 | inode->i_sb->s_maxbytes, |
143 | i_size_read(inode)); | |
1da177e4 | 144 | } |
9465efc9 | 145 | EXPORT_SYMBOL(generic_file_llseek); |
1da177e4 | 146 | |
ae6afc3f B |
147 | /** |
148 | * noop_llseek - No Operation Performed llseek implementation | |
149 | * @file: file structure to seek on | |
150 | * @offset: file offset to seek to | |
965c8e59 | 151 | * @whence: type of seek |
ae6afc3f B |
152 | * |
153 | * This is an implementation of ->llseek useable for the rare special case when | |
154 | * userspace expects the seek to succeed but the (device) file is actually not | |
155 | * able to perform the seek. In this case you use noop_llseek() instead of | |
156 | * falling back to the default implementation of ->llseek. | |
157 | */ | |
965c8e59 | 158 | loff_t noop_llseek(struct file *file, loff_t offset, int whence) |
ae6afc3f B |
159 | { |
160 | return file->f_pos; | |
161 | } | |
162 | EXPORT_SYMBOL(noop_llseek); | |
163 | ||
965c8e59 | 164 | loff_t no_llseek(struct file *file, loff_t offset, int whence) |
1da177e4 LT |
165 | { |
166 | return -ESPIPE; | |
167 | } | |
168 | EXPORT_SYMBOL(no_llseek); | |
169 | ||
965c8e59 | 170 | loff_t default_llseek(struct file *file, loff_t offset, int whence) |
1da177e4 | 171 | { |
496ad9aa | 172 | struct inode *inode = file_inode(file); |
16abef0e | 173 | loff_t retval; |
1da177e4 | 174 | |
982d8165 | 175 | mutex_lock(&inode->i_mutex); |
965c8e59 | 176 | switch (whence) { |
7b8e8924 | 177 | case SEEK_END: |
982d8165 | 178 | offset += i_size_read(inode); |
1da177e4 | 179 | break; |
7b8e8924 | 180 | case SEEK_CUR: |
5b6f1eb9 AK |
181 | if (offset == 0) { |
182 | retval = file->f_pos; | |
183 | goto out; | |
184 | } | |
1da177e4 | 185 | offset += file->f_pos; |
982d8165 JB |
186 | break; |
187 | case SEEK_DATA: | |
188 | /* | |
189 | * In the generic case the entire file is data, so as | |
190 | * long as offset isn't at the end of the file then the | |
191 | * offset is data. | |
192 | */ | |
bacb2d81 DC |
193 | if (offset >= inode->i_size) { |
194 | retval = -ENXIO; | |
195 | goto out; | |
196 | } | |
982d8165 JB |
197 | break; |
198 | case SEEK_HOLE: | |
199 | /* | |
200 | * There is a virtual hole at the end of the file, so | |
201 | * as long as offset isn't i_size or larger, return | |
202 | * i_size. | |
203 | */ | |
bacb2d81 DC |
204 | if (offset >= inode->i_size) { |
205 | retval = -ENXIO; | |
206 | goto out; | |
207 | } | |
982d8165 JB |
208 | offset = inode->i_size; |
209 | break; | |
1da177e4 LT |
210 | } |
211 | retval = -EINVAL; | |
cccb5a1e | 212 | if (offset >= 0 || unsigned_offsets(file)) { |
1da177e4 LT |
213 | if (offset != file->f_pos) { |
214 | file->f_pos = offset; | |
215 | file->f_version = 0; | |
216 | } | |
217 | retval = offset; | |
218 | } | |
5b6f1eb9 | 219 | out: |
982d8165 | 220 | mutex_unlock(&inode->i_mutex); |
1da177e4 LT |
221 | return retval; |
222 | } | |
223 | EXPORT_SYMBOL(default_llseek); | |
224 | ||
965c8e59 | 225 | loff_t vfs_llseek(struct file *file, loff_t offset, int whence) |
1da177e4 LT |
226 | { |
227 | loff_t (*fn)(struct file *, loff_t, int); | |
228 | ||
229 | fn = no_llseek; | |
230 | if (file->f_mode & FMODE_LSEEK) { | |
1da177e4 LT |
231 | if (file->f_op && file->f_op->llseek) |
232 | fn = file->f_op->llseek; | |
233 | } | |
965c8e59 | 234 | return fn(file, offset, whence); |
1da177e4 LT |
235 | } |
236 | EXPORT_SYMBOL(vfs_llseek); | |
237 | ||
965c8e59 | 238 | SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence) |
1da177e4 LT |
239 | { |
240 | off_t retval; | |
2903ff01 AV |
241 | struct fd f = fdget(fd); |
242 | if (!f.file) | |
243 | return -EBADF; | |
1da177e4 LT |
244 | |
245 | retval = -EINVAL; | |
965c8e59 AM |
246 | if (whence <= SEEK_MAX) { |
247 | loff_t res = vfs_llseek(f.file, offset, whence); | |
1da177e4 LT |
248 | retval = res; |
249 | if (res != (loff_t)retval) | |
250 | retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */ | |
251 | } | |
2903ff01 | 252 | fdput(f); |
1da177e4 LT |
253 | return retval; |
254 | } | |
255 | ||
561c6731 AV |
256 | #ifdef CONFIG_COMPAT |
257 | COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence) | |
258 | { | |
259 | return sys_lseek(fd, offset, whence); | |
260 | } | |
261 | #endif | |
262 | ||
1da177e4 | 263 | #ifdef __ARCH_WANT_SYS_LLSEEK |
003d7ab4 HC |
264 | SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high, |
265 | unsigned long, offset_low, loff_t __user *, result, | |
965c8e59 | 266 | unsigned int, whence) |
1da177e4 LT |
267 | { |
268 | int retval; | |
2903ff01 | 269 | struct fd f = fdget(fd); |
1da177e4 | 270 | loff_t offset; |
1da177e4 | 271 | |
2903ff01 AV |
272 | if (!f.file) |
273 | return -EBADF; | |
1da177e4 LT |
274 | |
275 | retval = -EINVAL; | |
965c8e59 | 276 | if (whence > SEEK_MAX) |
1da177e4 LT |
277 | goto out_putf; |
278 | ||
2903ff01 | 279 | offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low, |
965c8e59 | 280 | whence); |
1da177e4 LT |
281 | |
282 | retval = (int)offset; | |
283 | if (offset >= 0) { | |
284 | retval = -EFAULT; | |
285 | if (!copy_to_user(result, &offset, sizeof(offset))) | |
286 | retval = 0; | |
287 | } | |
288 | out_putf: | |
2903ff01 | 289 | fdput(f); |
1da177e4 LT |
290 | return retval; |
291 | } | |
292 | #endif | |
293 | ||
e28cc715 LT |
294 | /* |
295 | * rw_verify_area doesn't like huge counts. We limit | |
296 | * them to something that fits in "int" so that others | |
297 | * won't have to do range checks all the time. | |
298 | */ | |
1da177e4 LT |
299 | int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count) |
300 | { | |
301 | struct inode *inode; | |
302 | loff_t pos; | |
c43e259c | 303 | int retval = -EINVAL; |
1da177e4 | 304 | |
496ad9aa | 305 | inode = file_inode(file); |
e28cc715 | 306 | if (unlikely((ssize_t) count < 0)) |
c43e259c | 307 | return retval; |
1da177e4 | 308 | pos = *ppos; |
cccb5a1e AV |
309 | if (unlikely(pos < 0)) { |
310 | if (!unsigned_offsets(file)) | |
311 | return retval; | |
312 | if (count >= -pos) /* both values are in 0..LLONG_MAX */ | |
313 | return -EOVERFLOW; | |
314 | } else if (unlikely((loff_t) (pos + count) < 0)) { | |
315 | if (!unsigned_offsets(file)) | |
4a3956c7 KH |
316 | return retval; |
317 | } | |
1da177e4 | 318 | |
a16877ca | 319 | if (unlikely(inode->i_flock && mandatory_lock(inode))) { |
c43e259c | 320 | retval = locks_mandatory_area( |
e28cc715 LT |
321 | read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE, |
322 | inode, file, pos, count); | |
323 | if (retval < 0) | |
324 | return retval; | |
325 | } | |
c43e259c JM |
326 | retval = security_file_permission(file, |
327 | read_write == READ ? MAY_READ : MAY_WRITE); | |
328 | if (retval) | |
329 | return retval; | |
e28cc715 | 330 | return count > MAX_RW_COUNT ? MAX_RW_COUNT : count; |
1da177e4 LT |
331 | } |
332 | ||
333 | ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos) | |
334 | { | |
027445c3 | 335 | struct iovec iov = { .iov_base = buf, .iov_len = len }; |
1da177e4 LT |
336 | struct kiocb kiocb; |
337 | ssize_t ret; | |
338 | ||
339 | init_sync_kiocb(&kiocb, filp); | |
340 | kiocb.ki_pos = *ppos; | |
027445c3 | 341 | kiocb.ki_left = len; |
61964eba | 342 | kiocb.ki_nbytes = len; |
027445c3 | 343 | |
41003a7b | 344 | ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos); |
1da177e4 LT |
345 | if (-EIOCBQUEUED == ret) |
346 | ret = wait_on_sync_kiocb(&kiocb); | |
347 | *ppos = kiocb.ki_pos; | |
348 | return ret; | |
349 | } | |
350 | ||
351 | EXPORT_SYMBOL(do_sync_read); | |
352 | ||
353 | ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos) | |
354 | { | |
355 | ssize_t ret; | |
356 | ||
357 | if (!(file->f_mode & FMODE_READ)) | |
358 | return -EBADF; | |
359 | if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read)) | |
360 | return -EINVAL; | |
361 | if (unlikely(!access_ok(VERIFY_WRITE, buf, count))) | |
362 | return -EFAULT; | |
363 | ||
364 | ret = rw_verify_area(READ, file, pos, count); | |
e28cc715 LT |
365 | if (ret >= 0) { |
366 | count = ret; | |
c43e259c JM |
367 | if (file->f_op->read) |
368 | ret = file->f_op->read(file, buf, count, pos); | |
369 | else | |
370 | ret = do_sync_read(file, buf, count, pos); | |
371 | if (ret > 0) { | |
2a12a9d7 | 372 | fsnotify_access(file); |
c43e259c | 373 | add_rchar(current, ret); |
1da177e4 | 374 | } |
c43e259c | 375 | inc_syscr(current); |
1da177e4 LT |
376 | } |
377 | ||
378 | return ret; | |
379 | } | |
380 | ||
381 | EXPORT_SYMBOL(vfs_read); | |
382 | ||
383 | ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos) | |
384 | { | |
027445c3 | 385 | struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len }; |
1da177e4 LT |
386 | struct kiocb kiocb; |
387 | ssize_t ret; | |
388 | ||
389 | init_sync_kiocb(&kiocb, filp); | |
390 | kiocb.ki_pos = *ppos; | |
027445c3 | 391 | kiocb.ki_left = len; |
61964eba | 392 | kiocb.ki_nbytes = len; |
027445c3 | 393 | |
41003a7b | 394 | ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos); |
1da177e4 LT |
395 | if (-EIOCBQUEUED == ret) |
396 | ret = wait_on_sync_kiocb(&kiocb); | |
397 | *ppos = kiocb.ki_pos; | |
398 | return ret; | |
399 | } | |
400 | ||
401 | EXPORT_SYMBOL(do_sync_write); | |
402 | ||
06ae43f3 AV |
403 | ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos) |
404 | { | |
405 | mm_segment_t old_fs; | |
406 | const char __user *p; | |
407 | ssize_t ret; | |
408 | ||
3e84f48e AV |
409 | if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write)) |
410 | return -EINVAL; | |
411 | ||
06ae43f3 AV |
412 | old_fs = get_fs(); |
413 | set_fs(get_ds()); | |
414 | p = (__force const char __user *)buf; | |
415 | if (count > MAX_RW_COUNT) | |
416 | count = MAX_RW_COUNT; | |
417 | if (file->f_op->write) | |
418 | ret = file->f_op->write(file, p, count, pos); | |
419 | else | |
420 | ret = do_sync_write(file, p, count, pos); | |
421 | set_fs(old_fs); | |
422 | if (ret > 0) { | |
423 | fsnotify_modify(file); | |
424 | add_wchar(current, ret); | |
425 | } | |
426 | inc_syscw(current); | |
427 | return ret; | |
428 | } | |
429 | ||
1da177e4 LT |
430 | ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos) |
431 | { | |
432 | ssize_t ret; | |
433 | ||
434 | if (!(file->f_mode & FMODE_WRITE)) | |
435 | return -EBADF; | |
436 | if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write)) | |
437 | return -EINVAL; | |
438 | if (unlikely(!access_ok(VERIFY_READ, buf, count))) | |
439 | return -EFAULT; | |
440 | ||
441 | ret = rw_verify_area(WRITE, file, pos, count); | |
e28cc715 LT |
442 | if (ret >= 0) { |
443 | count = ret; | |
03d95eb2 | 444 | file_start_write(file); |
c43e259c JM |
445 | if (file->f_op->write) |
446 | ret = file->f_op->write(file, buf, count, pos); | |
447 | else | |
448 | ret = do_sync_write(file, buf, count, pos); | |
449 | if (ret > 0) { | |
2a12a9d7 | 450 | fsnotify_modify(file); |
c43e259c | 451 | add_wchar(current, ret); |
1da177e4 | 452 | } |
c43e259c | 453 | inc_syscw(current); |
03d95eb2 | 454 | file_end_write(file); |
1da177e4 LT |
455 | } |
456 | ||
457 | return ret; | |
458 | } | |
459 | ||
460 | EXPORT_SYMBOL(vfs_write); | |
461 | ||
462 | static inline loff_t file_pos_read(struct file *file) | |
463 | { | |
464 | return file->f_pos; | |
465 | } | |
466 | ||
467 | static inline void file_pos_write(struct file *file, loff_t pos) | |
468 | { | |
469 | file->f_pos = pos; | |
470 | } | |
471 | ||
3cdad428 | 472 | SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count) |
1da177e4 | 473 | { |
2903ff01 | 474 | struct fd f = fdget(fd); |
1da177e4 | 475 | ssize_t ret = -EBADF; |
1da177e4 | 476 | |
2903ff01 AV |
477 | if (f.file) { |
478 | loff_t pos = file_pos_read(f.file); | |
479 | ret = vfs_read(f.file, buf, count, &pos); | |
480 | file_pos_write(f.file, pos); | |
481 | fdput(f); | |
1da177e4 | 482 | } |
1da177e4 LT |
483 | return ret; |
484 | } | |
1da177e4 | 485 | |
3cdad428 HC |
486 | SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, |
487 | size_t, count) | |
1da177e4 | 488 | { |
2903ff01 | 489 | struct fd f = fdget(fd); |
1da177e4 | 490 | ssize_t ret = -EBADF; |
1da177e4 | 491 | |
2903ff01 AV |
492 | if (f.file) { |
493 | loff_t pos = file_pos_read(f.file); | |
494 | ret = vfs_write(f.file, buf, count, &pos); | |
495 | file_pos_write(f.file, pos); | |
496 | fdput(f); | |
1da177e4 LT |
497 | } |
498 | ||
499 | return ret; | |
500 | } | |
501 | ||
4a0fd5bf AV |
502 | SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf, |
503 | size_t, count, loff_t, pos) | |
1da177e4 | 504 | { |
2903ff01 | 505 | struct fd f; |
1da177e4 | 506 | ssize_t ret = -EBADF; |
1da177e4 LT |
507 | |
508 | if (pos < 0) | |
509 | return -EINVAL; | |
510 | ||
2903ff01 AV |
511 | f = fdget(fd); |
512 | if (f.file) { | |
1da177e4 | 513 | ret = -ESPIPE; |
2903ff01 AV |
514 | if (f.file->f_mode & FMODE_PREAD) |
515 | ret = vfs_read(f.file, buf, count, &pos); | |
516 | fdput(f); | |
1da177e4 LT |
517 | } |
518 | ||
519 | return ret; | |
520 | } | |
521 | ||
4a0fd5bf AV |
522 | SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf, |
523 | size_t, count, loff_t, pos) | |
1da177e4 | 524 | { |
2903ff01 | 525 | struct fd f; |
1da177e4 | 526 | ssize_t ret = -EBADF; |
1da177e4 LT |
527 | |
528 | if (pos < 0) | |
529 | return -EINVAL; | |
530 | ||
2903ff01 AV |
531 | f = fdget(fd); |
532 | if (f.file) { | |
1da177e4 | 533 | ret = -ESPIPE; |
2903ff01 AV |
534 | if (f.file->f_mode & FMODE_PWRITE) |
535 | ret = vfs_write(f.file, buf, count, &pos); | |
536 | fdput(f); | |
1da177e4 LT |
537 | } |
538 | ||
539 | return ret; | |
540 | } | |
541 | ||
542 | /* | |
543 | * Reduce an iovec's length in-place. Return the resulting number of segments | |
544 | */ | |
545 | unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to) | |
546 | { | |
547 | unsigned long seg = 0; | |
548 | size_t len = 0; | |
549 | ||
550 | while (seg < nr_segs) { | |
551 | seg++; | |
552 | if (len + iov->iov_len >= to) { | |
553 | iov->iov_len = to - len; | |
554 | break; | |
555 | } | |
556 | len += iov->iov_len; | |
557 | iov++; | |
558 | } | |
559 | return seg; | |
560 | } | |
19295529 | 561 | EXPORT_SYMBOL(iov_shorten); |
1da177e4 | 562 | |
72ec3516 | 563 | static ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov, |
ee0b3e67 BP |
564 | unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn) |
565 | { | |
566 | struct kiocb kiocb; | |
567 | ssize_t ret; | |
568 | ||
569 | init_sync_kiocb(&kiocb, filp); | |
570 | kiocb.ki_pos = *ppos; | |
571 | kiocb.ki_left = len; | |
572 | kiocb.ki_nbytes = len; | |
573 | ||
41003a7b | 574 | ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos); |
ee0b3e67 BP |
575 | if (ret == -EIOCBQUEUED) |
576 | ret = wait_on_sync_kiocb(&kiocb); | |
577 | *ppos = kiocb.ki_pos; | |
578 | return ret; | |
579 | } | |
580 | ||
581 | /* Do it by hand, with file-ops */ | |
72ec3516 | 582 | static ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov, |
ee0b3e67 BP |
583 | unsigned long nr_segs, loff_t *ppos, io_fn_t fn) |
584 | { | |
585 | struct iovec *vector = iov; | |
586 | ssize_t ret = 0; | |
587 | ||
588 | while (nr_segs > 0) { | |
589 | void __user *base; | |
590 | size_t len; | |
591 | ssize_t nr; | |
592 | ||
593 | base = vector->iov_base; | |
594 | len = vector->iov_len; | |
595 | vector++; | |
596 | nr_segs--; | |
597 | ||
598 | nr = fn(filp, base, len, ppos); | |
599 | ||
600 | if (nr < 0) { | |
601 | if (!ret) | |
602 | ret = nr; | |
603 | break; | |
604 | } | |
605 | ret += nr; | |
606 | if (nr != len) | |
607 | break; | |
608 | } | |
609 | ||
610 | return ret; | |
611 | } | |
612 | ||
1da177e4 LT |
613 | /* A write operation does a read from user space and vice versa */ |
614 | #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ) | |
615 | ||
eed4e51f BP |
616 | ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector, |
617 | unsigned long nr_segs, unsigned long fast_segs, | |
618 | struct iovec *fast_pointer, | |
ac34ebb3 | 619 | struct iovec **ret_pointer) |
435f49a5 | 620 | { |
eed4e51f | 621 | unsigned long seg; |
435f49a5 | 622 | ssize_t ret; |
eed4e51f BP |
623 | struct iovec *iov = fast_pointer; |
624 | ||
435f49a5 LT |
625 | /* |
626 | * SuS says "The readv() function *may* fail if the iovcnt argument | |
627 | * was less than or equal to 0, or greater than {IOV_MAX}. Linux has | |
628 | * traditionally returned zero for zero segments, so... | |
629 | */ | |
eed4e51f BP |
630 | if (nr_segs == 0) { |
631 | ret = 0; | |
435f49a5 | 632 | goto out; |
eed4e51f BP |
633 | } |
634 | ||
435f49a5 LT |
635 | /* |
636 | * First get the "struct iovec" from user memory and | |
637 | * verify all the pointers | |
638 | */ | |
eed4e51f BP |
639 | if (nr_segs > UIO_MAXIOV) { |
640 | ret = -EINVAL; | |
435f49a5 | 641 | goto out; |
eed4e51f BP |
642 | } |
643 | if (nr_segs > fast_segs) { | |
435f49a5 | 644 | iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL); |
eed4e51f BP |
645 | if (iov == NULL) { |
646 | ret = -ENOMEM; | |
435f49a5 | 647 | goto out; |
eed4e51f | 648 | } |
435f49a5 | 649 | } |
eed4e51f BP |
650 | if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) { |
651 | ret = -EFAULT; | |
435f49a5 | 652 | goto out; |
eed4e51f BP |
653 | } |
654 | ||
435f49a5 | 655 | /* |
eed4e51f BP |
656 | * According to the Single Unix Specification we should return EINVAL |
657 | * if an element length is < 0 when cast to ssize_t or if the | |
658 | * total length would overflow the ssize_t return value of the | |
659 | * system call. | |
435f49a5 LT |
660 | * |
661 | * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the | |
662 | * overflow case. | |
663 | */ | |
eed4e51f | 664 | ret = 0; |
435f49a5 LT |
665 | for (seg = 0; seg < nr_segs; seg++) { |
666 | void __user *buf = iov[seg].iov_base; | |
667 | ssize_t len = (ssize_t)iov[seg].iov_len; | |
eed4e51f BP |
668 | |
669 | /* see if we we're about to use an invalid len or if | |
670 | * it's about to overflow ssize_t */ | |
435f49a5 | 671 | if (len < 0) { |
eed4e51f | 672 | ret = -EINVAL; |
435f49a5 | 673 | goto out; |
eed4e51f | 674 | } |
ac34ebb3 | 675 | if (type >= 0 |
fcf63409 | 676 | && unlikely(!access_ok(vrfy_dir(type), buf, len))) { |
eed4e51f | 677 | ret = -EFAULT; |
435f49a5 LT |
678 | goto out; |
679 | } | |
680 | if (len > MAX_RW_COUNT - ret) { | |
681 | len = MAX_RW_COUNT - ret; | |
682 | iov[seg].iov_len = len; | |
eed4e51f | 683 | } |
eed4e51f | 684 | ret += len; |
435f49a5 | 685 | } |
eed4e51f BP |
686 | out: |
687 | *ret_pointer = iov; | |
688 | return ret; | |
689 | } | |
690 | ||
1da177e4 LT |
691 | static ssize_t do_readv_writev(int type, struct file *file, |
692 | const struct iovec __user * uvector, | |
693 | unsigned long nr_segs, loff_t *pos) | |
694 | { | |
1da177e4 LT |
695 | size_t tot_len; |
696 | struct iovec iovstack[UIO_FASTIOV]; | |
ee0b3e67 | 697 | struct iovec *iov = iovstack; |
1da177e4 | 698 | ssize_t ret; |
1da177e4 LT |
699 | io_fn_t fn; |
700 | iov_fn_t fnv; | |
701 | ||
eed4e51f BP |
702 | if (!file->f_op) { |
703 | ret = -EINVAL; | |
1da177e4 | 704 | goto out; |
1da177e4 | 705 | } |
1da177e4 | 706 | |
eed4e51f | 707 | ret = rw_copy_check_uvector(type, uvector, nr_segs, |
ac34ebb3 | 708 | ARRAY_SIZE(iovstack), iovstack, &iov); |
eed4e51f | 709 | if (ret <= 0) |
1da177e4 | 710 | goto out; |
1da177e4 | 711 | |
eed4e51f | 712 | tot_len = ret; |
1da177e4 | 713 | ret = rw_verify_area(type, file, pos, tot_len); |
e28cc715 | 714 | if (ret < 0) |
411b67b4 | 715 | goto out; |
1da177e4 LT |
716 | |
717 | fnv = NULL; | |
718 | if (type == READ) { | |
719 | fn = file->f_op->read; | |
ee0b3e67 | 720 | fnv = file->f_op->aio_read; |
1da177e4 LT |
721 | } else { |
722 | fn = (io_fn_t)file->f_op->write; | |
ee0b3e67 | 723 | fnv = file->f_op->aio_write; |
03d95eb2 | 724 | file_start_write(file); |
1da177e4 LT |
725 | } |
726 | ||
ee0b3e67 BP |
727 | if (fnv) |
728 | ret = do_sync_readv_writev(file, iov, nr_segs, tot_len, | |
729 | pos, fnv); | |
730 | else | |
731 | ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn); | |
1da177e4 | 732 | |
03d95eb2 AV |
733 | if (type != READ) |
734 | file_end_write(file); | |
735 | ||
1da177e4 LT |
736 | out: |
737 | if (iov != iovstack) | |
738 | kfree(iov); | |
0eeca283 RL |
739 | if ((ret + (type == READ)) > 0) { |
740 | if (type == READ) | |
2a12a9d7 | 741 | fsnotify_access(file); |
0eeca283 | 742 | else |
2a12a9d7 | 743 | fsnotify_modify(file); |
0eeca283 | 744 | } |
1da177e4 | 745 | return ret; |
1da177e4 LT |
746 | } |
747 | ||
748 | ssize_t vfs_readv(struct file *file, const struct iovec __user *vec, | |
749 | unsigned long vlen, loff_t *pos) | |
750 | { | |
751 | if (!(file->f_mode & FMODE_READ)) | |
752 | return -EBADF; | |
ee0b3e67 | 753 | if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read)) |
1da177e4 LT |
754 | return -EINVAL; |
755 | ||
756 | return do_readv_writev(READ, file, vec, vlen, pos); | |
757 | } | |
758 | ||
759 | EXPORT_SYMBOL(vfs_readv); | |
760 | ||
761 | ssize_t vfs_writev(struct file *file, const struct iovec __user *vec, | |
762 | unsigned long vlen, loff_t *pos) | |
763 | { | |
764 | if (!(file->f_mode & FMODE_WRITE)) | |
765 | return -EBADF; | |
ee0b3e67 | 766 | if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write)) |
1da177e4 LT |
767 | return -EINVAL; |
768 | ||
769 | return do_readv_writev(WRITE, file, vec, vlen, pos); | |
770 | } | |
771 | ||
772 | EXPORT_SYMBOL(vfs_writev); | |
773 | ||
3cdad428 HC |
774 | SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec, |
775 | unsigned long, vlen) | |
1da177e4 | 776 | { |
2903ff01 | 777 | struct fd f = fdget(fd); |
1da177e4 | 778 | ssize_t ret = -EBADF; |
1da177e4 | 779 | |
2903ff01 AV |
780 | if (f.file) { |
781 | loff_t pos = file_pos_read(f.file); | |
782 | ret = vfs_readv(f.file, vec, vlen, &pos); | |
783 | file_pos_write(f.file, pos); | |
784 | fdput(f); | |
1da177e4 LT |
785 | } |
786 | ||
787 | if (ret > 0) | |
4b98d11b AD |
788 | add_rchar(current, ret); |
789 | inc_syscr(current); | |
1da177e4 LT |
790 | return ret; |
791 | } | |
792 | ||
3cdad428 HC |
793 | SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec, |
794 | unsigned long, vlen) | |
1da177e4 | 795 | { |
2903ff01 | 796 | struct fd f = fdget(fd); |
1da177e4 | 797 | ssize_t ret = -EBADF; |
1da177e4 | 798 | |
2903ff01 AV |
799 | if (f.file) { |
800 | loff_t pos = file_pos_read(f.file); | |
801 | ret = vfs_writev(f.file, vec, vlen, &pos); | |
802 | file_pos_write(f.file, pos); | |
803 | fdput(f); | |
1da177e4 LT |
804 | } |
805 | ||
806 | if (ret > 0) | |
4b98d11b AD |
807 | add_wchar(current, ret); |
808 | inc_syscw(current); | |
1da177e4 LT |
809 | return ret; |
810 | } | |
811 | ||
601cc11d LT |
812 | static inline loff_t pos_from_hilo(unsigned long high, unsigned long low) |
813 | { | |
814 | #define HALF_LONG_BITS (BITS_PER_LONG / 2) | |
815 | return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low; | |
816 | } | |
817 | ||
f3554f4b | 818 | SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec, |
601cc11d | 819 | unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h) |
f3554f4b | 820 | { |
601cc11d | 821 | loff_t pos = pos_from_hilo(pos_h, pos_l); |
2903ff01 | 822 | struct fd f; |
f3554f4b | 823 | ssize_t ret = -EBADF; |
f3554f4b GH |
824 | |
825 | if (pos < 0) | |
826 | return -EINVAL; | |
827 | ||
2903ff01 AV |
828 | f = fdget(fd); |
829 | if (f.file) { | |
f3554f4b | 830 | ret = -ESPIPE; |
2903ff01 AV |
831 | if (f.file->f_mode & FMODE_PREAD) |
832 | ret = vfs_readv(f.file, vec, vlen, &pos); | |
833 | fdput(f); | |
f3554f4b GH |
834 | } |
835 | ||
836 | if (ret > 0) | |
837 | add_rchar(current, ret); | |
838 | inc_syscr(current); | |
839 | return ret; | |
840 | } | |
841 | ||
842 | SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec, | |
601cc11d | 843 | unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h) |
f3554f4b | 844 | { |
601cc11d | 845 | loff_t pos = pos_from_hilo(pos_h, pos_l); |
2903ff01 | 846 | struct fd f; |
f3554f4b | 847 | ssize_t ret = -EBADF; |
f3554f4b GH |
848 | |
849 | if (pos < 0) | |
850 | return -EINVAL; | |
851 | ||
2903ff01 AV |
852 | f = fdget(fd); |
853 | if (f.file) { | |
f3554f4b | 854 | ret = -ESPIPE; |
2903ff01 AV |
855 | if (f.file->f_mode & FMODE_PWRITE) |
856 | ret = vfs_writev(f.file, vec, vlen, &pos); | |
857 | fdput(f); | |
f3554f4b GH |
858 | } |
859 | ||
860 | if (ret > 0) | |
861 | add_wchar(current, ret); | |
862 | inc_syscw(current); | |
863 | return ret; | |
864 | } | |
865 | ||
72ec3516 AV |
866 | #ifdef CONFIG_COMPAT |
867 | ||
868 | static ssize_t compat_do_readv_writev(int type, struct file *file, | |
869 | const struct compat_iovec __user *uvector, | |
870 | unsigned long nr_segs, loff_t *pos) | |
871 | { | |
872 | compat_ssize_t tot_len; | |
873 | struct iovec iovstack[UIO_FASTIOV]; | |
874 | struct iovec *iov = iovstack; | |
875 | ssize_t ret; | |
876 | io_fn_t fn; | |
877 | iov_fn_t fnv; | |
878 | ||
879 | ret = -EINVAL; | |
880 | if (!file->f_op) | |
881 | goto out; | |
882 | ||
883 | ret = -EFAULT; | |
884 | if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector))) | |
885 | goto out; | |
886 | ||
887 | ret = compat_rw_copy_check_uvector(type, uvector, nr_segs, | |
888 | UIO_FASTIOV, iovstack, &iov); | |
889 | if (ret <= 0) | |
890 | goto out; | |
891 | ||
892 | tot_len = ret; | |
893 | ret = rw_verify_area(type, file, pos, tot_len); | |
894 | if (ret < 0) | |
895 | goto out; | |
896 | ||
897 | fnv = NULL; | |
898 | if (type == READ) { | |
899 | fn = file->f_op->read; | |
900 | fnv = file->f_op->aio_read; | |
901 | } else { | |
902 | fn = (io_fn_t)file->f_op->write; | |
903 | fnv = file->f_op->aio_write; | |
03d95eb2 | 904 | file_start_write(file); |
72ec3516 AV |
905 | } |
906 | ||
03d95eb2 | 907 | if (fnv) |
72ec3516 AV |
908 | ret = do_sync_readv_writev(file, iov, nr_segs, tot_len, |
909 | pos, fnv); | |
03d95eb2 | 910 | else |
72ec3516 AV |
911 | ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn); |
912 | ||
03d95eb2 AV |
913 | if (type != READ) |
914 | file_end_write(file); | |
915 | ||
72ec3516 AV |
916 | out: |
917 | if (iov != iovstack) | |
918 | kfree(iov); | |
919 | if ((ret + (type == READ)) > 0) { | |
920 | if (type == READ) | |
921 | fsnotify_access(file); | |
922 | else | |
923 | fsnotify_modify(file); | |
924 | } | |
925 | return ret; | |
926 | } | |
927 | ||
928 | static size_t compat_readv(struct file *file, | |
929 | const struct compat_iovec __user *vec, | |
930 | unsigned long vlen, loff_t *pos) | |
931 | { | |
932 | ssize_t ret = -EBADF; | |
933 | ||
934 | if (!(file->f_mode & FMODE_READ)) | |
935 | goto out; | |
936 | ||
937 | ret = -EINVAL; | |
938 | if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read)) | |
939 | goto out; | |
940 | ||
941 | ret = compat_do_readv_writev(READ, file, vec, vlen, pos); | |
942 | ||
943 | out: | |
944 | if (ret > 0) | |
945 | add_rchar(current, ret); | |
946 | inc_syscr(current); | |
947 | return ret; | |
948 | } | |
949 | ||
950 | COMPAT_SYSCALL_DEFINE3(readv, unsigned long, fd, | |
951 | const struct compat_iovec __user *,vec, | |
952 | unsigned long, vlen) | |
953 | { | |
954 | struct fd f = fdget(fd); | |
955 | ssize_t ret; | |
956 | loff_t pos; | |
957 | ||
958 | if (!f.file) | |
959 | return -EBADF; | |
960 | pos = f.file->f_pos; | |
961 | ret = compat_readv(f.file, vec, vlen, &pos); | |
962 | f.file->f_pos = pos; | |
963 | fdput(f); | |
964 | return ret; | |
965 | } | |
966 | ||
967 | COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd, | |
968 | const struct compat_iovec __user *,vec, | |
969 | unsigned long, vlen, loff_t, pos) | |
970 | { | |
971 | struct fd f; | |
972 | ssize_t ret; | |
973 | ||
974 | if (pos < 0) | |
975 | return -EINVAL; | |
976 | f = fdget(fd); | |
977 | if (!f.file) | |
978 | return -EBADF; | |
979 | ret = -ESPIPE; | |
980 | if (f.file->f_mode & FMODE_PREAD) | |
981 | ret = compat_readv(f.file, vec, vlen, &pos); | |
982 | fdput(f); | |
983 | return ret; | |
984 | } | |
985 | ||
986 | COMPAT_SYSCALL_DEFINE5(preadv, unsigned long, fd, | |
987 | const struct compat_iovec __user *,vec, | |
988 | unsigned long, vlen, u32, pos_low, u32, pos_high) | |
989 | { | |
990 | loff_t pos = ((loff_t)pos_high << 32) | pos_low; | |
991 | return compat_sys_preadv64(fd, vec, vlen, pos); | |
992 | } | |
993 | ||
994 | static size_t compat_writev(struct file *file, | |
995 | const struct compat_iovec __user *vec, | |
996 | unsigned long vlen, loff_t *pos) | |
997 | { | |
998 | ssize_t ret = -EBADF; | |
999 | ||
1000 | if (!(file->f_mode & FMODE_WRITE)) | |
1001 | goto out; | |
1002 | ||
1003 | ret = -EINVAL; | |
1004 | if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write)) | |
1005 | goto out; | |
1006 | ||
1007 | ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos); | |
1008 | ||
1009 | out: | |
1010 | if (ret > 0) | |
1011 | add_wchar(current, ret); | |
1012 | inc_syscw(current); | |
1013 | return ret; | |
1014 | } | |
1015 | ||
1016 | COMPAT_SYSCALL_DEFINE3(writev, unsigned long, fd, | |
1017 | const struct compat_iovec __user *, vec, | |
1018 | unsigned long, vlen) | |
1019 | { | |
1020 | struct fd f = fdget(fd); | |
1021 | ssize_t ret; | |
1022 | loff_t pos; | |
1023 | ||
1024 | if (!f.file) | |
1025 | return -EBADF; | |
1026 | pos = f.file->f_pos; | |
1027 | ret = compat_writev(f.file, vec, vlen, &pos); | |
1028 | f.file->f_pos = pos; | |
1029 | fdput(f); | |
1030 | return ret; | |
1031 | } | |
1032 | ||
1033 | COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd, | |
1034 | const struct compat_iovec __user *,vec, | |
1035 | unsigned long, vlen, loff_t, pos) | |
1036 | { | |
1037 | struct fd f; | |
1038 | ssize_t ret; | |
1039 | ||
1040 | if (pos < 0) | |
1041 | return -EINVAL; | |
1042 | f = fdget(fd); | |
1043 | if (!f.file) | |
1044 | return -EBADF; | |
1045 | ret = -ESPIPE; | |
1046 | if (f.file->f_mode & FMODE_PWRITE) | |
1047 | ret = compat_writev(f.file, vec, vlen, &pos); | |
1048 | fdput(f); | |
1049 | return ret; | |
1050 | } | |
1051 | ||
1052 | COMPAT_SYSCALL_DEFINE5(pwritev, unsigned long, fd, | |
1053 | const struct compat_iovec __user *,vec, | |
1054 | unsigned long, vlen, u32, pos_low, u32, pos_high) | |
1055 | { | |
1056 | loff_t pos = ((loff_t)pos_high << 32) | pos_low; | |
1057 | return compat_sys_pwritev64(fd, vec, vlen, pos); | |
1058 | } | |
1059 | #endif | |
1060 | ||
19f4fc3a AV |
1061 | static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, |
1062 | size_t count, loff_t max) | |
1da177e4 | 1063 | { |
2903ff01 AV |
1064 | struct fd in, out; |
1065 | struct inode *in_inode, *out_inode; | |
1da177e4 LT |
1066 | loff_t pos; |
1067 | ssize_t retval; | |
2903ff01 | 1068 | int fl; |
1da177e4 LT |
1069 | |
1070 | /* | |
1071 | * Get input file, and verify that it is ok.. | |
1072 | */ | |
1073 | retval = -EBADF; | |
2903ff01 AV |
1074 | in = fdget(in_fd); |
1075 | if (!in.file) | |
1da177e4 | 1076 | goto out; |
2903ff01 | 1077 | if (!(in.file->f_mode & FMODE_READ)) |
1da177e4 | 1078 | goto fput_in; |
1da177e4 LT |
1079 | retval = -ESPIPE; |
1080 | if (!ppos) | |
2903ff01 | 1081 | ppos = &in.file->f_pos; |
1da177e4 | 1082 | else |
2903ff01 | 1083 | if (!(in.file->f_mode & FMODE_PREAD)) |
1da177e4 | 1084 | goto fput_in; |
2903ff01 | 1085 | retval = rw_verify_area(READ, in.file, ppos, count); |
e28cc715 | 1086 | if (retval < 0) |
1da177e4 | 1087 | goto fput_in; |
e28cc715 | 1088 | count = retval; |
1da177e4 | 1089 | |
1da177e4 LT |
1090 | /* |
1091 | * Get output file, and verify that it is ok.. | |
1092 | */ | |
1093 | retval = -EBADF; | |
2903ff01 AV |
1094 | out = fdget(out_fd); |
1095 | if (!out.file) | |
1da177e4 | 1096 | goto fput_in; |
2903ff01 | 1097 | if (!(out.file->f_mode & FMODE_WRITE)) |
1da177e4 LT |
1098 | goto fput_out; |
1099 | retval = -EINVAL; | |
496ad9aa AV |
1100 | in_inode = file_inode(in.file); |
1101 | out_inode = file_inode(out.file); | |
2903ff01 | 1102 | retval = rw_verify_area(WRITE, out.file, &out.file->f_pos, count); |
e28cc715 | 1103 | if (retval < 0) |
1da177e4 | 1104 | goto fput_out; |
e28cc715 | 1105 | count = retval; |
1da177e4 | 1106 | |
1da177e4 LT |
1107 | if (!max) |
1108 | max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes); | |
1109 | ||
1110 | pos = *ppos; | |
1da177e4 LT |
1111 | if (unlikely(pos + count > max)) { |
1112 | retval = -EOVERFLOW; | |
1113 | if (pos >= max) | |
1114 | goto fput_out; | |
1115 | count = max - pos; | |
1116 | } | |
1117 | ||
d96e6e71 | 1118 | fl = 0; |
534f2aaa | 1119 | #if 0 |
d96e6e71 JA |
1120 | /* |
1121 | * We need to debate whether we can enable this or not. The | |
1122 | * man page documents EAGAIN return for the output at least, | |
1123 | * and the application is arguably buggy if it doesn't expect | |
1124 | * EAGAIN on a non-blocking file descriptor. | |
1125 | */ | |
2903ff01 | 1126 | if (in.file->f_flags & O_NONBLOCK) |
d96e6e71 | 1127 | fl = SPLICE_F_NONBLOCK; |
534f2aaa | 1128 | #endif |
2903ff01 | 1129 | retval = do_splice_direct(in.file, ppos, out.file, count, fl); |
1da177e4 LT |
1130 | |
1131 | if (retval > 0) { | |
4b98d11b AD |
1132 | add_rchar(current, retval); |
1133 | add_wchar(current, retval); | |
a68c2f12 SW |
1134 | fsnotify_access(in.file); |
1135 | fsnotify_modify(out.file); | |
1da177e4 | 1136 | } |
1da177e4 | 1137 | |
4b98d11b AD |
1138 | inc_syscr(current); |
1139 | inc_syscw(current); | |
1da177e4 LT |
1140 | if (*ppos > max) |
1141 | retval = -EOVERFLOW; | |
1142 | ||
1143 | fput_out: | |
2903ff01 | 1144 | fdput(out); |
1da177e4 | 1145 | fput_in: |
2903ff01 | 1146 | fdput(in); |
1da177e4 LT |
1147 | out: |
1148 | return retval; | |
1149 | } | |
1150 | ||
002c8976 | 1151 | SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count) |
1da177e4 LT |
1152 | { |
1153 | loff_t pos; | |
1154 | off_t off; | |
1155 | ssize_t ret; | |
1156 | ||
1157 | if (offset) { | |
1158 | if (unlikely(get_user(off, offset))) | |
1159 | return -EFAULT; | |
1160 | pos = off; | |
1161 | ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS); | |
1162 | if (unlikely(put_user(pos, offset))) | |
1163 | return -EFAULT; | |
1164 | return ret; | |
1165 | } | |
1166 | ||
1167 | return do_sendfile(out_fd, in_fd, NULL, count, 0); | |
1168 | } | |
1169 | ||
002c8976 | 1170 | SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count) |
1da177e4 LT |
1171 | { |
1172 | loff_t pos; | |
1173 | ssize_t ret; | |
1174 | ||
1175 | if (offset) { | |
1176 | if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t)))) | |
1177 | return -EFAULT; | |
1178 | ret = do_sendfile(out_fd, in_fd, &pos, count, 0); | |
1179 | if (unlikely(put_user(pos, offset))) | |
1180 | return -EFAULT; | |
1181 | return ret; | |
1182 | } | |
1183 | ||
1184 | return do_sendfile(out_fd, in_fd, NULL, count, 0); | |
1185 | } | |
19f4fc3a AV |
1186 | |
1187 | #ifdef CONFIG_COMPAT | |
1188 | COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, | |
1189 | compat_off_t __user *, offset, compat_size_t, count) | |
1190 | { | |
1191 | loff_t pos; | |
1192 | off_t off; | |
1193 | ssize_t ret; | |
1194 | ||
1195 | if (offset) { | |
1196 | if (unlikely(get_user(off, offset))) | |
1197 | return -EFAULT; | |
1198 | pos = off; | |
1199 | ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS); | |
1200 | if (unlikely(put_user(pos, offset))) | |
1201 | return -EFAULT; | |
1202 | return ret; | |
1203 | } | |
1204 | ||
1205 | return do_sendfile(out_fd, in_fd, NULL, count, 0); | |
1206 | } | |
1207 | ||
1208 | COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, | |
1209 | compat_loff_t __user *, offset, compat_size_t, count) | |
1210 | { | |
1211 | loff_t pos; | |
1212 | ssize_t ret; | |
1213 | ||
1214 | if (offset) { | |
1215 | if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t)))) | |
1216 | return -EFAULT; | |
1217 | ret = do_sendfile(out_fd, in_fd, &pos, count, 0); | |
1218 | if (unlikely(put_user(pos, offset))) | |
1219 | return -EFAULT; | |
1220 | return ret; | |
1221 | } | |
1222 | ||
1223 | return do_sendfile(out_fd, in_fd, NULL, count, 0); | |
1224 | } | |
1225 | #endif |