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