NVMe: Reduce driver log spamming
[linux-2.6-block.git] / fs / read_write.c
CommitLineData
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>
29732938 19#include <linux/mount.h>
2feb55f8 20#include <linux/fs.h>
06ae43f3 21#include "internal.h"
1da177e4
LT
22
23#include <asm/uaccess.h>
24#include <asm/unistd.h>
25
c0bd14af 26typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
293bc982 27typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
c0bd14af 28
4b6f5d20 29const struct file_operations generic_ro_fops = {
1da177e4 30 .llseek = generic_file_llseek,
aad4f8bb 31 .read_iter = generic_file_read_iter,
1da177e4 32 .mmap = generic_file_readonly_mmap,
534f2aaa 33 .splice_read = generic_file_splice_read,
1da177e4
LT
34};
35
36EXPORT_SYMBOL(generic_ro_fops);
37
cccb5a1e 38static inline int unsigned_offsets(struct file *file)
4a3956c7 39{
cccb5a1e 40 return file->f_mode & FMODE_UNSIGNED_OFFSET;
4a3956c7
KH
41}
42
46a1c2c7
JL
43/**
44 * vfs_setpos - update the file offset for lseek
45 * @file: file structure in question
46 * @offset: file offset to seek to
47 * @maxsize: maximum file size
48 *
49 * This is a low-level filesystem helper for updating the file offset to
50 * the value specified by @offset if the given offset is valid and it is
51 * not equal to the current file offset.
52 *
53 * Return the specified offset on success and -EINVAL on invalid offset.
54 */
55loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
ef3d0fd2
AK
56{
57 if (offset < 0 && !unsigned_offsets(file))
58 return -EINVAL;
59 if (offset > maxsize)
60 return -EINVAL;
61
62 if (offset != file->f_pos) {
63 file->f_pos = offset;
64 file->f_version = 0;
65 }
66 return offset;
67}
46a1c2c7 68EXPORT_SYMBOL(vfs_setpos);
ef3d0fd2 69
3a8cff4f 70/**
5760495a 71 * generic_file_llseek_size - generic llseek implementation for regular files
3a8cff4f
CH
72 * @file: file structure to seek on
73 * @offset: file offset to seek to
965c8e59 74 * @whence: type of seek
e8b96eb5
ES
75 * @size: max size of this file in file system
76 * @eof: offset used for SEEK_END position
3a8cff4f 77 *
5760495a 78 * This is a variant of generic_file_llseek that allows passing in a custom
e8b96eb5 79 * maximum file size and a custom EOF position, for e.g. hashed directories
ef3d0fd2
AK
80 *
81 * Synchronization:
5760495a 82 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
ef3d0fd2
AK
83 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
84 * read/writes behave like SEEK_SET against seeks.
3a8cff4f 85 */
9465efc9 86loff_t
965c8e59 87generic_file_llseek_size(struct file *file, loff_t offset, int whence,
e8b96eb5 88 loff_t maxsize, loff_t eof)
1da177e4 89{
965c8e59 90 switch (whence) {
3a8cff4f 91 case SEEK_END:
e8b96eb5 92 offset += eof;
3a8cff4f
CH
93 break;
94 case SEEK_CUR:
5b6f1eb9
AK
95 /*
96 * Here we special-case the lseek(fd, 0, SEEK_CUR)
97 * position-querying operation. Avoid rewriting the "same"
98 * f_pos value back to the file because a concurrent read(),
99 * write() or lseek() might have altered it
100 */
101 if (offset == 0)
102 return file->f_pos;
ef3d0fd2
AK
103 /*
104 * f_lock protects against read/modify/write race with other
105 * SEEK_CURs. Note that parallel writes and reads behave
106 * like SEEK_SET.
107 */
108 spin_lock(&file->f_lock);
46a1c2c7 109 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
ef3d0fd2
AK
110 spin_unlock(&file->f_lock);
111 return offset;
982d8165
JB
112 case SEEK_DATA:
113 /*
114 * In the generic case the entire file is data, so as long as
115 * offset isn't at the end of the file then the offset is data.
116 */
e8b96eb5 117 if (offset >= eof)
982d8165
JB
118 return -ENXIO;
119 break;
120 case SEEK_HOLE:
121 /*
122 * There is a virtual hole at the end of the file, so as long as
123 * offset isn't i_size or larger, return i_size.
124 */
e8b96eb5 125 if (offset >= eof)
982d8165 126 return -ENXIO;
e8b96eb5 127 offset = eof;
982d8165 128 break;
1da177e4 129 }
3a8cff4f 130
46a1c2c7 131 return vfs_setpos(file, offset, maxsize);
5760495a
AK
132}
133EXPORT_SYMBOL(generic_file_llseek_size);
134
135/**
136 * generic_file_llseek - generic llseek implementation for regular files
137 * @file: file structure to seek on
138 * @offset: file offset to seek to
965c8e59 139 * @whence: type of seek
5760495a
AK
140 *
141 * This is a generic implemenation of ->llseek useable for all normal local
142 * filesystems. It just updates the file offset to the value specified by
546ae2d2 143 * @offset and @whence.
5760495a 144 */
965c8e59 145loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
5760495a
AK
146{
147 struct inode *inode = file->f_mapping->host;
148
965c8e59 149 return generic_file_llseek_size(file, offset, whence,
e8b96eb5
ES
150 inode->i_sb->s_maxbytes,
151 i_size_read(inode));
1da177e4 152}
9465efc9 153EXPORT_SYMBOL(generic_file_llseek);
1da177e4 154
1bf9d14d
AV
155/**
156 * fixed_size_llseek - llseek implementation for fixed-sized devices
157 * @file: file structure to seek on
158 * @offset: file offset to seek to
159 * @whence: type of seek
160 * @size: size of the file
161 *
162 */
163loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
164{
165 switch (whence) {
166 case SEEK_SET: case SEEK_CUR: case SEEK_END:
167 return generic_file_llseek_size(file, offset, whence,
168 size, size);
169 default:
170 return -EINVAL;
171 }
172}
173EXPORT_SYMBOL(fixed_size_llseek);
174
b25472f9
AV
175/**
176 * no_seek_end_llseek - llseek implementation for fixed-sized devices
177 * @file: file structure to seek on
178 * @offset: file offset to seek to
179 * @whence: type of seek
180 *
181 */
182loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
183{
184 switch (whence) {
185 case SEEK_SET: case SEEK_CUR:
186 return generic_file_llseek_size(file, offset, whence,
2feb55f8 187 OFFSET_MAX, 0);
b25472f9
AV
188 default:
189 return -EINVAL;
190 }
191}
192EXPORT_SYMBOL(no_seek_end_llseek);
193
194/**
195 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
196 * @file: file structure to seek on
197 * @offset: file offset to seek to
198 * @whence: type of seek
199 * @size: maximal offset allowed
200 *
201 */
202loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
203{
204 switch (whence) {
205 case SEEK_SET: case SEEK_CUR:
206 return generic_file_llseek_size(file, offset, whence,
207 size, 0);
208 default:
209 return -EINVAL;
210 }
211}
212EXPORT_SYMBOL(no_seek_end_llseek_size);
213
ae6afc3f
B
214/**
215 * noop_llseek - No Operation Performed llseek implementation
216 * @file: file structure to seek on
217 * @offset: file offset to seek to
965c8e59 218 * @whence: type of seek
ae6afc3f
B
219 *
220 * This is an implementation of ->llseek useable for the rare special case when
221 * userspace expects the seek to succeed but the (device) file is actually not
222 * able to perform the seek. In this case you use noop_llseek() instead of
223 * falling back to the default implementation of ->llseek.
224 */
965c8e59 225loff_t noop_llseek(struct file *file, loff_t offset, int whence)
ae6afc3f
B
226{
227 return file->f_pos;
228}
229EXPORT_SYMBOL(noop_llseek);
230
965c8e59 231loff_t no_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
232{
233 return -ESPIPE;
234}
235EXPORT_SYMBOL(no_llseek);
236
965c8e59 237loff_t default_llseek(struct file *file, loff_t offset, int whence)
1da177e4 238{
496ad9aa 239 struct inode *inode = file_inode(file);
16abef0e 240 loff_t retval;
1da177e4 241
5955102c 242 inode_lock(inode);
965c8e59 243 switch (whence) {
7b8e8924 244 case SEEK_END:
982d8165 245 offset += i_size_read(inode);
1da177e4 246 break;
7b8e8924 247 case SEEK_CUR:
5b6f1eb9
AK
248 if (offset == 0) {
249 retval = file->f_pos;
250 goto out;
251 }
1da177e4 252 offset += file->f_pos;
982d8165
JB
253 break;
254 case SEEK_DATA:
255 /*
256 * In the generic case the entire file is data, so as
257 * long as offset isn't at the end of the file then the
258 * offset is data.
259 */
bacb2d81
DC
260 if (offset >= inode->i_size) {
261 retval = -ENXIO;
262 goto out;
263 }
982d8165
JB
264 break;
265 case SEEK_HOLE:
266 /*
267 * There is a virtual hole at the end of the file, so
268 * as long as offset isn't i_size or larger, return
269 * i_size.
270 */
bacb2d81
DC
271 if (offset >= inode->i_size) {
272 retval = -ENXIO;
273 goto out;
274 }
982d8165
JB
275 offset = inode->i_size;
276 break;
1da177e4
LT
277 }
278 retval = -EINVAL;
cccb5a1e 279 if (offset >= 0 || unsigned_offsets(file)) {
1da177e4
LT
280 if (offset != file->f_pos) {
281 file->f_pos = offset;
282 file->f_version = 0;
283 }
284 retval = offset;
285 }
5b6f1eb9 286out:
5955102c 287 inode_unlock(inode);
1da177e4
LT
288 return retval;
289}
290EXPORT_SYMBOL(default_llseek);
291
965c8e59 292loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
293{
294 loff_t (*fn)(struct file *, loff_t, int);
295
296 fn = no_llseek;
297 if (file->f_mode & FMODE_LSEEK) {
72c2d531 298 if (file->f_op->llseek)
1da177e4
LT
299 fn = file->f_op->llseek;
300 }
965c8e59 301 return fn(file, offset, whence);
1da177e4
LT
302}
303EXPORT_SYMBOL(vfs_llseek);
304
965c8e59 305SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
1da177e4
LT
306{
307 off_t retval;
9c225f26 308 struct fd f = fdget_pos(fd);
2903ff01
AV
309 if (!f.file)
310 return -EBADF;
1da177e4
LT
311
312 retval = -EINVAL;
965c8e59
AM
313 if (whence <= SEEK_MAX) {
314 loff_t res = vfs_llseek(f.file, offset, whence);
1da177e4
LT
315 retval = res;
316 if (res != (loff_t)retval)
317 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
318 }
9c225f26 319 fdput_pos(f);
1da177e4
LT
320 return retval;
321}
322
561c6731
AV
323#ifdef CONFIG_COMPAT
324COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
325{
326 return sys_lseek(fd, offset, whence);
327}
328#endif
329
1da177e4 330#ifdef __ARCH_WANT_SYS_LLSEEK
003d7ab4
HC
331SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
332 unsigned long, offset_low, loff_t __user *, result,
965c8e59 333 unsigned int, whence)
1da177e4
LT
334{
335 int retval;
d7a15f8d 336 struct fd f = fdget_pos(fd);
1da177e4 337 loff_t offset;
1da177e4 338
2903ff01
AV
339 if (!f.file)
340 return -EBADF;
1da177e4
LT
341
342 retval = -EINVAL;
965c8e59 343 if (whence > SEEK_MAX)
1da177e4
LT
344 goto out_putf;
345
2903ff01 346 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 347 whence);
1da177e4
LT
348
349 retval = (int)offset;
350 if (offset >= 0) {
351 retval = -EFAULT;
352 if (!copy_to_user(result, &offset, sizeof(offset)))
353 retval = 0;
354 }
355out_putf:
d7a15f8d 356 fdput_pos(f);
1da177e4
LT
357 return retval;
358}
359#endif
360
dbe4e192
CH
361ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
362{
363 struct kiocb kiocb;
364 ssize_t ret;
365
366 if (!file->f_op->read_iter)
367 return -EINVAL;
368
369 init_sync_kiocb(&kiocb, file);
370 kiocb.ki_pos = *ppos;
dbe4e192
CH
371
372 iter->type |= READ;
373 ret = file->f_op->read_iter(&kiocb, iter);
599bd19b 374 BUG_ON(ret == -EIOCBQUEUED);
dbe4e192
CH
375 if (ret > 0)
376 *ppos = kiocb.ki_pos;
377 return ret;
378}
379EXPORT_SYMBOL(vfs_iter_read);
380
381ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
382{
383 struct kiocb kiocb;
384 ssize_t ret;
385
386 if (!file->f_op->write_iter)
387 return -EINVAL;
388
389 init_sync_kiocb(&kiocb, file);
390 kiocb.ki_pos = *ppos;
dbe4e192
CH
391
392 iter->type |= WRITE;
393 ret = file->f_op->write_iter(&kiocb, iter);
599bd19b 394 BUG_ON(ret == -EIOCBQUEUED);
dbe4e192
CH
395 if (ret > 0)
396 *ppos = kiocb.ki_pos;
397 return ret;
398}
399EXPORT_SYMBOL(vfs_iter_write);
400
e28cc715
LT
401/*
402 * rw_verify_area doesn't like huge counts. We limit
403 * them to something that fits in "int" so that others
404 * won't have to do range checks all the time.
405 */
68d70d03 406int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
1da177e4
LT
407{
408 struct inode *inode;
409 loff_t pos;
c43e259c 410 int retval = -EINVAL;
1da177e4 411
496ad9aa 412 inode = file_inode(file);
e28cc715 413 if (unlikely((ssize_t) count < 0))
c43e259c 414 return retval;
1da177e4 415 pos = *ppos;
cccb5a1e
AV
416 if (unlikely(pos < 0)) {
417 if (!unsigned_offsets(file))
418 return retval;
419 if (count >= -pos) /* both values are in 0..LLONG_MAX */
420 return -EOVERFLOW;
421 } else if (unlikely((loff_t) (pos + count) < 0)) {
422 if (!unsigned_offsets(file))
4a3956c7
KH
423 return retval;
424 }
1da177e4 425
bd61e0a9 426 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
acc15575
CH
427 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
428 read_write == READ ? F_RDLCK : F_WRLCK);
e28cc715
LT
429 if (retval < 0)
430 return retval;
431 }
c43e259c
JM
432 retval = security_file_permission(file,
433 read_write == READ ? MAY_READ : MAY_WRITE);
434 if (retval)
435 return retval;
e28cc715 436 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
1da177e4
LT
437}
438
5d5d5689 439static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
440{
441 struct iovec iov = { .iov_base = buf, .iov_len = len };
442 struct kiocb kiocb;
443 struct iov_iter iter;
444 ssize_t ret;
445
446 init_sync_kiocb(&kiocb, filp);
447 kiocb.ki_pos = *ppos;
293bc982
AV
448 iov_iter_init(&iter, READ, &iov, 1, len);
449
450 ret = filp->f_op->read_iter(&kiocb, &iter);
599bd19b 451 BUG_ON(ret == -EIOCBQUEUED);
293bc982
AV
452 *ppos = kiocb.ki_pos;
453 return ret;
454}
455
6fb5032e
DK
456ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
457 loff_t *pos)
458{
6fb5032e 459 if (file->f_op->read)
3d04c8a1 460 return file->f_op->read(file, buf, count, pos);
6fb5032e 461 else if (file->f_op->read_iter)
3d04c8a1 462 return new_sync_read(file, buf, count, pos);
6fb5032e 463 else
3d04c8a1 464 return -EINVAL;
6fb5032e 465}
3d04c8a1 466EXPORT_SYMBOL(__vfs_read);
6fb5032e 467
1da177e4
LT
468ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
469{
470 ssize_t ret;
471
472 if (!(file->f_mode & FMODE_READ))
473 return -EBADF;
7f7f25e8 474 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4
LT
475 return -EINVAL;
476 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
477 return -EFAULT;
478
479 ret = rw_verify_area(READ, file, pos, count);
e28cc715
LT
480 if (ret >= 0) {
481 count = ret;
6fb5032e 482 ret = __vfs_read(file, buf, count, pos);
c43e259c 483 if (ret > 0) {
2a12a9d7 484 fsnotify_access(file);
c43e259c 485 add_rchar(current, ret);
1da177e4 486 }
c43e259c 487 inc_syscr(current);
1da177e4
LT
488 }
489
490 return ret;
491}
492
493EXPORT_SYMBOL(vfs_read);
494
5d5d5689 495static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
496{
497 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
498 struct kiocb kiocb;
499 struct iov_iter iter;
500 ssize_t ret;
501
502 init_sync_kiocb(&kiocb, filp);
503 kiocb.ki_pos = *ppos;
293bc982
AV
504 iov_iter_init(&iter, WRITE, &iov, 1, len);
505
506 ret = filp->f_op->write_iter(&kiocb, &iter);
599bd19b 507 BUG_ON(ret == -EIOCBQUEUED);
f765b134
AV
508 if (ret > 0)
509 *ppos = kiocb.ki_pos;
293bc982
AV
510 return ret;
511}
512
493c84c0
AV
513ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
514 loff_t *pos)
515{
516 if (file->f_op->write)
517 return file->f_op->write(file, p, count, pos);
493c84c0
AV
518 else if (file->f_op->write_iter)
519 return new_sync_write(file, p, count, pos);
520 else
521 return -EINVAL;
522}
523EXPORT_SYMBOL(__vfs_write);
524
06ae43f3
AV
525ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
526{
527 mm_segment_t old_fs;
528 const char __user *p;
529 ssize_t ret;
530
7f7f25e8 531 if (!(file->f_mode & FMODE_CAN_WRITE))
3e84f48e
AV
532 return -EINVAL;
533
06ae43f3
AV
534 old_fs = get_fs();
535 set_fs(get_ds());
536 p = (__force const char __user *)buf;
537 if (count > MAX_RW_COUNT)
538 count = MAX_RW_COUNT;
493c84c0 539 ret = __vfs_write(file, p, count, pos);
06ae43f3
AV
540 set_fs(old_fs);
541 if (ret > 0) {
542 fsnotify_modify(file);
543 add_wchar(current, ret);
544 }
545 inc_syscw(current);
546 return ret;
547}
548
2ec3a12a
AV
549EXPORT_SYMBOL(__kernel_write);
550
1da177e4
LT
551ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
552{
553 ssize_t ret;
554
555 if (!(file->f_mode & FMODE_WRITE))
556 return -EBADF;
7f7f25e8 557 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4
LT
558 return -EINVAL;
559 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
560 return -EFAULT;
561
562 ret = rw_verify_area(WRITE, file, pos, count);
e28cc715
LT
563 if (ret >= 0) {
564 count = ret;
03d95eb2 565 file_start_write(file);
493c84c0 566 ret = __vfs_write(file, buf, count, pos);
c43e259c 567 if (ret > 0) {
2a12a9d7 568 fsnotify_modify(file);
c43e259c 569 add_wchar(current, ret);
1da177e4 570 }
c43e259c 571 inc_syscw(current);
03d95eb2 572 file_end_write(file);
1da177e4
LT
573 }
574
575 return ret;
576}
577
578EXPORT_SYMBOL(vfs_write);
579
580static inline loff_t file_pos_read(struct file *file)
581{
582 return file->f_pos;
583}
584
585static inline void file_pos_write(struct file *file, loff_t pos)
586{
587 file->f_pos = pos;
588}
589
3cdad428 590SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
1da177e4 591{
9c225f26 592 struct fd f = fdget_pos(fd);
1da177e4 593 ssize_t ret = -EBADF;
1da177e4 594
2903ff01
AV
595 if (f.file) {
596 loff_t pos = file_pos_read(f.file);
597 ret = vfs_read(f.file, buf, count, &pos);
5faf153e
AV
598 if (ret >= 0)
599 file_pos_write(f.file, pos);
9c225f26 600 fdput_pos(f);
1da177e4 601 }
1da177e4
LT
602 return ret;
603}
1da177e4 604
3cdad428
HC
605SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
606 size_t, count)
1da177e4 607{
9c225f26 608 struct fd f = fdget_pos(fd);
1da177e4 609 ssize_t ret = -EBADF;
1da177e4 610
2903ff01
AV
611 if (f.file) {
612 loff_t pos = file_pos_read(f.file);
613 ret = vfs_write(f.file, buf, count, &pos);
5faf153e
AV
614 if (ret >= 0)
615 file_pos_write(f.file, pos);
9c225f26 616 fdput_pos(f);
1da177e4
LT
617 }
618
619 return ret;
620}
621
4a0fd5bf
AV
622SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
623 size_t, count, loff_t, pos)
1da177e4 624{
2903ff01 625 struct fd f;
1da177e4 626 ssize_t ret = -EBADF;
1da177e4
LT
627
628 if (pos < 0)
629 return -EINVAL;
630
2903ff01
AV
631 f = fdget(fd);
632 if (f.file) {
1da177e4 633 ret = -ESPIPE;
2903ff01
AV
634 if (f.file->f_mode & FMODE_PREAD)
635 ret = vfs_read(f.file, buf, count, &pos);
636 fdput(f);
1da177e4
LT
637 }
638
639 return ret;
640}
641
4a0fd5bf
AV
642SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
643 size_t, count, loff_t, pos)
1da177e4 644{
2903ff01 645 struct fd f;
1da177e4 646 ssize_t ret = -EBADF;
1da177e4
LT
647
648 if (pos < 0)
649 return -EINVAL;
650
2903ff01
AV
651 f = fdget(fd);
652 if (f.file) {
1da177e4 653 ret = -ESPIPE;
2903ff01
AV
654 if (f.file->f_mode & FMODE_PWRITE)
655 ret = vfs_write(f.file, buf, count, &pos);
656 fdput(f);
1da177e4
LT
657 }
658
659 return ret;
660}
661
662/*
663 * Reduce an iovec's length in-place. Return the resulting number of segments
664 */
665unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
666{
667 unsigned long seg = 0;
668 size_t len = 0;
669
670 while (seg < nr_segs) {
671 seg++;
672 if (len + iov->iov_len >= to) {
673 iov->iov_len = to - len;
674 break;
675 }
676 len += iov->iov_len;
677 iov++;
678 }
679 return seg;
680}
19295529 681EXPORT_SYMBOL(iov_shorten);
1da177e4 682
ac15ac06 683static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
793b80ef 684 loff_t *ppos, iter_fn_t fn, int flags)
293bc982
AV
685{
686 struct kiocb kiocb;
293bc982
AV
687 ssize_t ret;
688
e864f395 689 if (flags & ~(RWF_HIPRI | RWF_DSYNC | RWF_SYNC))
793b80ef
CH
690 return -EOPNOTSUPP;
691
293bc982 692 init_sync_kiocb(&kiocb, filp);
97be7ebe
CH
693 if (flags & RWF_HIPRI)
694 kiocb.ki_flags |= IOCB_HIPRI;
e864f395
CH
695 if (flags & RWF_DSYNC)
696 kiocb.ki_flags |= IOCB_DSYNC;
697 if (flags & RWF_SYNC)
698 kiocb.ki_flags |= (IOCB_DSYNC | IOCB_SYNC);
293bc982 699 kiocb.ki_pos = *ppos;
293bc982 700
ac15ac06 701 ret = fn(&kiocb, iter);
599bd19b 702 BUG_ON(ret == -EIOCBQUEUED);
293bc982
AV
703 *ppos = kiocb.ki_pos;
704 return ret;
705}
706
ee0b3e67 707/* Do it by hand, with file-ops */
ac15ac06 708static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
793b80ef 709 loff_t *ppos, io_fn_t fn, int flags)
ee0b3e67 710{
ee0b3e67
BP
711 ssize_t ret = 0;
712
97be7ebe 713 if (flags & ~RWF_HIPRI)
793b80ef
CH
714 return -EOPNOTSUPP;
715
ac15ac06
AV
716 while (iov_iter_count(iter)) {
717 struct iovec iovec = iov_iter_iovec(iter);
ee0b3e67
BP
718 ssize_t nr;
719
ac15ac06 720 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
ee0b3e67
BP
721
722 if (nr < 0) {
723 if (!ret)
724 ret = nr;
725 break;
726 }
727 ret += nr;
ac15ac06 728 if (nr != iovec.iov_len)
ee0b3e67 729 break;
ac15ac06 730 iov_iter_advance(iter, nr);
ee0b3e67
BP
731 }
732
733 return ret;
734}
735
1da177e4
LT
736/* A write operation does a read from user space and vice versa */
737#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
738
eed4e51f
BP
739ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
740 unsigned long nr_segs, unsigned long fast_segs,
741 struct iovec *fast_pointer,
ac34ebb3 742 struct iovec **ret_pointer)
435f49a5 743{
eed4e51f 744 unsigned long seg;
435f49a5 745 ssize_t ret;
eed4e51f
BP
746 struct iovec *iov = fast_pointer;
747
435f49a5
LT
748 /*
749 * SuS says "The readv() function *may* fail if the iovcnt argument
750 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
751 * traditionally returned zero for zero segments, so...
752 */
eed4e51f
BP
753 if (nr_segs == 0) {
754 ret = 0;
435f49a5 755 goto out;
eed4e51f
BP
756 }
757
435f49a5
LT
758 /*
759 * First get the "struct iovec" from user memory and
760 * verify all the pointers
761 */
eed4e51f
BP
762 if (nr_segs > UIO_MAXIOV) {
763 ret = -EINVAL;
435f49a5 764 goto out;
eed4e51f
BP
765 }
766 if (nr_segs > fast_segs) {
435f49a5 767 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
eed4e51f
BP
768 if (iov == NULL) {
769 ret = -ENOMEM;
435f49a5 770 goto out;
eed4e51f 771 }
435f49a5 772 }
eed4e51f
BP
773 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
774 ret = -EFAULT;
435f49a5 775 goto out;
eed4e51f
BP
776 }
777
435f49a5 778 /*
eed4e51f
BP
779 * According to the Single Unix Specification we should return EINVAL
780 * if an element length is < 0 when cast to ssize_t or if the
781 * total length would overflow the ssize_t return value of the
782 * system call.
435f49a5
LT
783 *
784 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
785 * overflow case.
786 */
eed4e51f 787 ret = 0;
435f49a5
LT
788 for (seg = 0; seg < nr_segs; seg++) {
789 void __user *buf = iov[seg].iov_base;
790 ssize_t len = (ssize_t)iov[seg].iov_len;
eed4e51f
BP
791
792 /* see if we we're about to use an invalid len or if
793 * it's about to overflow ssize_t */
435f49a5 794 if (len < 0) {
eed4e51f 795 ret = -EINVAL;
435f49a5 796 goto out;
eed4e51f 797 }
ac34ebb3 798 if (type >= 0
fcf63409 799 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
eed4e51f 800 ret = -EFAULT;
435f49a5
LT
801 goto out;
802 }
803 if (len > MAX_RW_COUNT - ret) {
804 len = MAX_RW_COUNT - ret;
805 iov[seg].iov_len = len;
eed4e51f 806 }
eed4e51f 807 ret += len;
435f49a5 808 }
eed4e51f
BP
809out:
810 *ret_pointer = iov;
811 return ret;
812}
813
1da177e4
LT
814static ssize_t do_readv_writev(int type, struct file *file,
815 const struct iovec __user * uvector,
793b80ef
CH
816 unsigned long nr_segs, loff_t *pos,
817 int flags)
1da177e4 818{
1da177e4
LT
819 size_t tot_len;
820 struct iovec iovstack[UIO_FASTIOV];
ee0b3e67 821 struct iovec *iov = iovstack;
ac15ac06 822 struct iov_iter iter;
1da177e4 823 ssize_t ret;
1da177e4 824 io_fn_t fn;
293bc982 825 iter_fn_t iter_fn;
1da177e4 826
0504c074
AV
827 ret = import_iovec(type, uvector, nr_segs,
828 ARRAY_SIZE(iovstack), &iov, &iter);
829 if (ret < 0)
830 return ret;
1da177e4 831
0504c074
AV
832 tot_len = iov_iter_count(&iter);
833 if (!tot_len)
834 goto out;
1da177e4 835 ret = rw_verify_area(type, file, pos, tot_len);
e28cc715 836 if (ret < 0)
411b67b4 837 goto out;
1da177e4 838
1da177e4
LT
839 if (type == READ) {
840 fn = file->f_op->read;
293bc982 841 iter_fn = file->f_op->read_iter;
1da177e4
LT
842 } else {
843 fn = (io_fn_t)file->f_op->write;
293bc982 844 iter_fn = file->f_op->write_iter;
03d95eb2 845 file_start_write(file);
1da177e4
LT
846 }
847
293bc982 848 if (iter_fn)
793b80ef 849 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
ee0b3e67 850 else
793b80ef 851 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
1da177e4 852
03d95eb2
AV
853 if (type != READ)
854 file_end_write(file);
855
1da177e4 856out:
0504c074 857 kfree(iov);
0eeca283
RL
858 if ((ret + (type == READ)) > 0) {
859 if (type == READ)
2a12a9d7 860 fsnotify_access(file);
0eeca283 861 else
2a12a9d7 862 fsnotify_modify(file);
0eeca283 863 }
1da177e4 864 return ret;
1da177e4
LT
865}
866
867ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
793b80ef 868 unsigned long vlen, loff_t *pos, int flags)
1da177e4
LT
869{
870 if (!(file->f_mode & FMODE_READ))
871 return -EBADF;
7f7f25e8 872 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4
LT
873 return -EINVAL;
874
793b80ef 875 return do_readv_writev(READ, file, vec, vlen, pos, flags);
1da177e4
LT
876}
877
878EXPORT_SYMBOL(vfs_readv);
879
880ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
793b80ef 881 unsigned long vlen, loff_t *pos, int flags)
1da177e4
LT
882{
883 if (!(file->f_mode & FMODE_WRITE))
884 return -EBADF;
7f7f25e8 885 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4
LT
886 return -EINVAL;
887
793b80ef 888 return do_readv_writev(WRITE, file, vec, vlen, pos, flags);
1da177e4
LT
889}
890
891EXPORT_SYMBOL(vfs_writev);
892
f17d8b35
MT
893static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
894 unsigned long vlen, int flags)
1da177e4 895{
9c225f26 896 struct fd f = fdget_pos(fd);
1da177e4 897 ssize_t ret = -EBADF;
1da177e4 898
2903ff01
AV
899 if (f.file) {
900 loff_t pos = file_pos_read(f.file);
f17d8b35 901 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
5faf153e
AV
902 if (ret >= 0)
903 file_pos_write(f.file, pos);
9c225f26 904 fdput_pos(f);
1da177e4
LT
905 }
906
907 if (ret > 0)
4b98d11b
AD
908 add_rchar(current, ret);
909 inc_syscr(current);
1da177e4
LT
910 return ret;
911}
912
f17d8b35
MT
913static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
914 unsigned long vlen, int flags)
1da177e4 915{
9c225f26 916 struct fd f = fdget_pos(fd);
1da177e4 917 ssize_t ret = -EBADF;
1da177e4 918
2903ff01
AV
919 if (f.file) {
920 loff_t pos = file_pos_read(f.file);
f17d8b35 921 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
5faf153e
AV
922 if (ret >= 0)
923 file_pos_write(f.file, pos);
9c225f26 924 fdput_pos(f);
1da177e4
LT
925 }
926
927 if (ret > 0)
4b98d11b
AD
928 add_wchar(current, ret);
929 inc_syscw(current);
1da177e4
LT
930 return ret;
931}
932
601cc11d
LT
933static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
934{
935#define HALF_LONG_BITS (BITS_PER_LONG / 2)
936 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
937}
938
f17d8b35
MT
939static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
940 unsigned long vlen, loff_t pos, int flags)
f3554f4b 941{
2903ff01 942 struct fd f;
f3554f4b 943 ssize_t ret = -EBADF;
f3554f4b
GH
944
945 if (pos < 0)
946 return -EINVAL;
947
2903ff01
AV
948 f = fdget(fd);
949 if (f.file) {
f3554f4b 950 ret = -ESPIPE;
2903ff01 951 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 952 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
2903ff01 953 fdput(f);
f3554f4b
GH
954 }
955
956 if (ret > 0)
957 add_rchar(current, ret);
958 inc_syscr(current);
959 return ret;
960}
961
f17d8b35
MT
962static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
963 unsigned long vlen, loff_t pos, int flags)
f3554f4b 964{
2903ff01 965 struct fd f;
f3554f4b 966 ssize_t ret = -EBADF;
f3554f4b
GH
967
968 if (pos < 0)
969 return -EINVAL;
970
2903ff01
AV
971 f = fdget(fd);
972 if (f.file) {
f3554f4b 973 ret = -ESPIPE;
2903ff01 974 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 975 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
2903ff01 976 fdput(f);
f3554f4b
GH
977 }
978
979 if (ret > 0)
980 add_wchar(current, ret);
981 inc_syscw(current);
982 return ret;
983}
984
f17d8b35
MT
985SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
986 unsigned long, vlen)
987{
988 return do_readv(fd, vec, vlen, 0);
989}
990
991SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
992 unsigned long, vlen)
993{
994 return do_writev(fd, vec, vlen, 0);
995}
996
997SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
998 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
999{
1000 loff_t pos = pos_from_hilo(pos_h, pos_l);
1001
1002 return do_preadv(fd, vec, vlen, pos, 0);
1003}
1004
1005SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1006 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1007 int, flags)
1008{
1009 loff_t pos = pos_from_hilo(pos_h, pos_l);
1010
1011 if (pos == -1)
1012 return do_readv(fd, vec, vlen, flags);
1013
1014 return do_preadv(fd, vec, vlen, pos, flags);
1015}
1016
1017SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1018 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1019{
1020 loff_t pos = pos_from_hilo(pos_h, pos_l);
1021
1022 return do_pwritev(fd, vec, vlen, pos, 0);
1023}
1024
1025SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1026 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1027 int, flags)
1028{
1029 loff_t pos = pos_from_hilo(pos_h, pos_l);
1030
1031 if (pos == -1)
1032 return do_writev(fd, vec, vlen, flags);
1033
1034 return do_pwritev(fd, vec, vlen, pos, flags);
1035}
1036
72ec3516
AV
1037#ifdef CONFIG_COMPAT
1038
1039static ssize_t compat_do_readv_writev(int type, struct file *file,
1040 const struct compat_iovec __user *uvector,
793b80ef
CH
1041 unsigned long nr_segs, loff_t *pos,
1042 int flags)
72ec3516
AV
1043{
1044 compat_ssize_t tot_len;
1045 struct iovec iovstack[UIO_FASTIOV];
1046 struct iovec *iov = iovstack;
ac15ac06 1047 struct iov_iter iter;
72ec3516
AV
1048 ssize_t ret;
1049 io_fn_t fn;
293bc982 1050 iter_fn_t iter_fn;
72ec3516 1051
0504c074
AV
1052 ret = compat_import_iovec(type, uvector, nr_segs,
1053 UIO_FASTIOV, &iov, &iter);
1054 if (ret < 0)
1055 return ret;
72ec3516 1056
0504c074
AV
1057 tot_len = iov_iter_count(&iter);
1058 if (!tot_len)
1059 goto out;
72ec3516
AV
1060 ret = rw_verify_area(type, file, pos, tot_len);
1061 if (ret < 0)
1062 goto out;
1063
72ec3516
AV
1064 if (type == READ) {
1065 fn = file->f_op->read;
293bc982 1066 iter_fn = file->f_op->read_iter;
72ec3516
AV
1067 } else {
1068 fn = (io_fn_t)file->f_op->write;
293bc982 1069 iter_fn = file->f_op->write_iter;
03d95eb2 1070 file_start_write(file);
72ec3516
AV
1071 }
1072
293bc982 1073 if (iter_fn)
793b80ef 1074 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
03d95eb2 1075 else
793b80ef 1076 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
72ec3516 1077
03d95eb2
AV
1078 if (type != READ)
1079 file_end_write(file);
1080
72ec3516 1081out:
0504c074 1082 kfree(iov);
72ec3516
AV
1083 if ((ret + (type == READ)) > 0) {
1084 if (type == READ)
1085 fsnotify_access(file);
1086 else
1087 fsnotify_modify(file);
1088 }
1089 return ret;
1090}
1091
1092static size_t compat_readv(struct file *file,
1093 const struct compat_iovec __user *vec,
f17d8b35 1094 unsigned long vlen, loff_t *pos, int flags)
72ec3516
AV
1095{
1096 ssize_t ret = -EBADF;
1097
1098 if (!(file->f_mode & FMODE_READ))
1099 goto out;
1100
1101 ret = -EINVAL;
7f7f25e8 1102 if (!(file->f_mode & FMODE_CAN_READ))
72ec3516
AV
1103 goto out;
1104
f17d8b35 1105 ret = compat_do_readv_writev(READ, file, vec, vlen, pos, flags);
72ec3516
AV
1106
1107out:
1108 if (ret > 0)
1109 add_rchar(current, ret);
1110 inc_syscr(current);
1111 return ret;
1112}
1113
f17d8b35
MT
1114static size_t do_compat_readv(compat_ulong_t fd,
1115 const struct compat_iovec __user *vec,
1116 compat_ulong_t vlen, int flags)
72ec3516 1117{
9c225f26 1118 struct fd f = fdget_pos(fd);
72ec3516
AV
1119 ssize_t ret;
1120 loff_t pos;
1121
1122 if (!f.file)
1123 return -EBADF;
1124 pos = f.file->f_pos;
f17d8b35 1125 ret = compat_readv(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1126 if (ret >= 0)
1127 f.file->f_pos = pos;
9c225f26 1128 fdput_pos(f);
72ec3516 1129 return ret;
f17d8b35 1130
72ec3516
AV
1131}
1132
f17d8b35
MT
1133COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1134 const struct compat_iovec __user *,vec,
1135 compat_ulong_t, vlen)
1136{
1137 return do_compat_readv(fd, vec, vlen, 0);
1138}
1139
1140static long do_compat_preadv64(unsigned long fd,
378a10f3 1141 const struct compat_iovec __user *vec,
f17d8b35 1142 unsigned long vlen, loff_t pos, int flags)
72ec3516
AV
1143{
1144 struct fd f;
1145 ssize_t ret;
1146
1147 if (pos < 0)
1148 return -EINVAL;
1149 f = fdget(fd);
1150 if (!f.file)
1151 return -EBADF;
1152 ret = -ESPIPE;
1153 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 1154 ret = compat_readv(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1155 fdput(f);
1156 return ret;
1157}
1158
378a10f3
HC
1159#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1160COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1161 const struct compat_iovec __user *,vec,
1162 unsigned long, vlen, loff_t, pos)
1163{
f17d8b35 1164 return do_compat_preadv64(fd, vec, vlen, pos, 0);
378a10f3
HC
1165}
1166#endif
1167
dfd948e3 1168COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
72ec3516 1169 const struct compat_iovec __user *,vec,
dfd948e3 1170 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1171{
1172 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1173
f17d8b35
MT
1174 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1175}
1176
1177COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1178 const struct compat_iovec __user *,vec,
1179 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1180 int, flags)
1181{
1182 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1183
1184 if (pos == -1)
1185 return do_compat_readv(fd, vec, vlen, flags);
1186
1187 return do_compat_preadv64(fd, vec, vlen, pos, flags);
72ec3516
AV
1188}
1189
1190static size_t compat_writev(struct file *file,
1191 const struct compat_iovec __user *vec,
f17d8b35 1192 unsigned long vlen, loff_t *pos, int flags)
72ec3516
AV
1193{
1194 ssize_t ret = -EBADF;
1195
1196 if (!(file->f_mode & FMODE_WRITE))
1197 goto out;
1198
1199 ret = -EINVAL;
7f7f25e8 1200 if (!(file->f_mode & FMODE_CAN_WRITE))
72ec3516
AV
1201 goto out;
1202
793b80ef 1203 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos, 0);
72ec3516
AV
1204
1205out:
1206 if (ret > 0)
1207 add_wchar(current, ret);
1208 inc_syscw(current);
1209 return ret;
1210}
1211
f17d8b35
MT
1212static size_t do_compat_writev(compat_ulong_t fd,
1213 const struct compat_iovec __user* vec,
1214 compat_ulong_t vlen, int flags)
72ec3516 1215{
9c225f26 1216 struct fd f = fdget_pos(fd);
72ec3516
AV
1217 ssize_t ret;
1218 loff_t pos;
1219
1220 if (!f.file)
1221 return -EBADF;
1222 pos = f.file->f_pos;
f17d8b35 1223 ret = compat_writev(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1224 if (ret >= 0)
1225 f.file->f_pos = pos;
9c225f26 1226 fdput_pos(f);
72ec3516
AV
1227 return ret;
1228}
1229
f17d8b35
MT
1230COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1231 const struct compat_iovec __user *, vec,
1232 compat_ulong_t, vlen)
1233{
1234 return do_compat_writev(fd, vec, vlen, 0);
1235}
1236
1237static long do_compat_pwritev64(unsigned long fd,
378a10f3 1238 const struct compat_iovec __user *vec,
f17d8b35 1239 unsigned long vlen, loff_t pos, int flags)
72ec3516
AV
1240{
1241 struct fd f;
1242 ssize_t ret;
1243
1244 if (pos < 0)
1245 return -EINVAL;
1246 f = fdget(fd);
1247 if (!f.file)
1248 return -EBADF;
1249 ret = -ESPIPE;
1250 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1251 ret = compat_writev(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1252 fdput(f);
1253 return ret;
1254}
1255
378a10f3
HC
1256#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1257COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1258 const struct compat_iovec __user *,vec,
1259 unsigned long, vlen, loff_t, pos)
1260{
f17d8b35 1261 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
378a10f3
HC
1262}
1263#endif
1264
dfd948e3 1265COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
72ec3516 1266 const struct compat_iovec __user *,vec,
dfd948e3 1267 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1268{
1269 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1270
f17d8b35 1271 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
72ec3516 1272}
f17d8b35
MT
1273
1274COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1275 const struct compat_iovec __user *,vec,
1276 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1277{
1278 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1279
1280 if (pos == -1)
1281 return do_compat_writev(fd, vec, vlen, flags);
1282
1283 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
72ec3516 1284}
f17d8b35 1285
72ec3516
AV
1286#endif
1287
19f4fc3a
AV
1288static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1289 size_t count, loff_t max)
1da177e4 1290{
2903ff01
AV
1291 struct fd in, out;
1292 struct inode *in_inode, *out_inode;
1da177e4 1293 loff_t pos;
7995bd28 1294 loff_t out_pos;
1da177e4 1295 ssize_t retval;
2903ff01 1296 int fl;
1da177e4
LT
1297
1298 /*
1299 * Get input file, and verify that it is ok..
1300 */
1301 retval = -EBADF;
2903ff01
AV
1302 in = fdget(in_fd);
1303 if (!in.file)
1da177e4 1304 goto out;
2903ff01 1305 if (!(in.file->f_mode & FMODE_READ))
1da177e4 1306 goto fput_in;
1da177e4 1307 retval = -ESPIPE;
7995bd28
AV
1308 if (!ppos) {
1309 pos = in.file->f_pos;
1310 } else {
1311 pos = *ppos;
2903ff01 1312 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 1313 goto fput_in;
7995bd28
AV
1314 }
1315 retval = rw_verify_area(READ, in.file, &pos, count);
e28cc715 1316 if (retval < 0)
1da177e4 1317 goto fput_in;
e28cc715 1318 count = retval;
1da177e4 1319
1da177e4
LT
1320 /*
1321 * Get output file, and verify that it is ok..
1322 */
1323 retval = -EBADF;
2903ff01
AV
1324 out = fdget(out_fd);
1325 if (!out.file)
1da177e4 1326 goto fput_in;
2903ff01 1327 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4
LT
1328 goto fput_out;
1329 retval = -EINVAL;
496ad9aa
AV
1330 in_inode = file_inode(in.file);
1331 out_inode = file_inode(out.file);
7995bd28
AV
1332 out_pos = out.file->f_pos;
1333 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
e28cc715 1334 if (retval < 0)
1da177e4 1335 goto fput_out;
e28cc715 1336 count = retval;
1da177e4 1337
1da177e4
LT
1338 if (!max)
1339 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1340
1da177e4
LT
1341 if (unlikely(pos + count > max)) {
1342 retval = -EOVERFLOW;
1343 if (pos >= max)
1344 goto fput_out;
1345 count = max - pos;
1346 }
1347
d96e6e71 1348 fl = 0;
534f2aaa 1349#if 0
d96e6e71
JA
1350 /*
1351 * We need to debate whether we can enable this or not. The
1352 * man page documents EAGAIN return for the output at least,
1353 * and the application is arguably buggy if it doesn't expect
1354 * EAGAIN on a non-blocking file descriptor.
1355 */
2903ff01 1356 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 1357 fl = SPLICE_F_NONBLOCK;
534f2aaa 1358#endif
50cd2c57 1359 file_start_write(out.file);
7995bd28 1360 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
50cd2c57 1361 file_end_write(out.file);
1da177e4
LT
1362
1363 if (retval > 0) {
4b98d11b
AD
1364 add_rchar(current, retval);
1365 add_wchar(current, retval);
a68c2f12
SW
1366 fsnotify_access(in.file);
1367 fsnotify_modify(out.file);
7995bd28
AV
1368 out.file->f_pos = out_pos;
1369 if (ppos)
1370 *ppos = pos;
1371 else
1372 in.file->f_pos = pos;
1da177e4 1373 }
1da177e4 1374
4b98d11b
AD
1375 inc_syscr(current);
1376 inc_syscw(current);
7995bd28 1377 if (pos > max)
1da177e4
LT
1378 retval = -EOVERFLOW;
1379
1380fput_out:
2903ff01 1381 fdput(out);
1da177e4 1382fput_in:
2903ff01 1383 fdput(in);
1da177e4
LT
1384out:
1385 return retval;
1386}
1387
002c8976 1388SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
1389{
1390 loff_t pos;
1391 off_t off;
1392 ssize_t ret;
1393
1394 if (offset) {
1395 if (unlikely(get_user(off, offset)))
1396 return -EFAULT;
1397 pos = off;
1398 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1399 if (unlikely(put_user(pos, offset)))
1400 return -EFAULT;
1401 return ret;
1402 }
1403
1404 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1405}
1406
002c8976 1407SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1408{
1409 loff_t pos;
1410 ssize_t ret;
1411
1412 if (offset) {
1413 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1414 return -EFAULT;
1415 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1416 if (unlikely(put_user(pos, offset)))
1417 return -EFAULT;
1418 return ret;
1419 }
1420
1421 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1422}
19f4fc3a
AV
1423
1424#ifdef CONFIG_COMPAT
1425COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1426 compat_off_t __user *, offset, compat_size_t, count)
1427{
1428 loff_t pos;
1429 off_t off;
1430 ssize_t ret;
1431
1432 if (offset) {
1433 if (unlikely(get_user(off, offset)))
1434 return -EFAULT;
1435 pos = off;
1436 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1437 if (unlikely(put_user(pos, offset)))
1438 return -EFAULT;
1439 return ret;
1440 }
1441
1442 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1443}
1444
1445COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1446 compat_loff_t __user *, offset, compat_size_t, count)
1447{
1448 loff_t pos;
1449 ssize_t ret;
1450
1451 if (offset) {
1452 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1453 return -EFAULT;
1454 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1455 if (unlikely(put_user(pos, offset)))
1456 return -EFAULT;
1457 return ret;
1458 }
1459
1460 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1461}
1462#endif
29732938
ZB
1463
1464/*
1465 * copy_file_range() differs from regular file read and write in that it
1466 * specifically allows return partial success. When it does so is up to
1467 * the copy_file_range method.
1468 */
1469ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1470 struct file *file_out, loff_t pos_out,
1471 size_t len, unsigned int flags)
1472{
1473 struct inode *inode_in = file_inode(file_in);
1474 struct inode *inode_out = file_inode(file_out);
1475 ssize_t ret;
1476
1477 if (flags != 0)
1478 return -EINVAL;
1479
1480 /* copy_file_range allows full ssize_t len, ignoring MAX_RW_COUNT */
1481 ret = rw_verify_area(READ, file_in, &pos_in, len);
1482 if (ret >= 0)
1483 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1484 if (ret < 0)
1485 return ret;
1486
1487 if (!(file_in->f_mode & FMODE_READ) ||
1488 !(file_out->f_mode & FMODE_WRITE) ||
eac70053 1489 (file_out->f_flags & O_APPEND))
29732938
ZB
1490 return -EBADF;
1491
1492 /* this could be relaxed once a method supports cross-fs copies */
1493 if (inode_in->i_sb != inode_out->i_sb)
1494 return -EXDEV;
1495
1496 if (len == 0)
1497 return 0;
1498
1499 ret = mnt_want_write_file(file_out);
1500 if (ret)
1501 return ret;
1502
eac70053
AS
1503 ret = -EOPNOTSUPP;
1504 if (file_out->f_op->copy_file_range)
1505 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1506 pos_out, len, flags);
1507 if (ret == -EOPNOTSUPP)
1508 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1509 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1510
29732938
ZB
1511 if (ret > 0) {
1512 fsnotify_access(file_in);
1513 add_rchar(current, ret);
1514 fsnotify_modify(file_out);
1515 add_wchar(current, ret);
1516 }
1517 inc_syscr(current);
1518 inc_syscw(current);
1519
1520 mnt_drop_write_file(file_out);
1521
1522 return ret;
1523}
1524EXPORT_SYMBOL(vfs_copy_file_range);
1525
1526SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1527 int, fd_out, loff_t __user *, off_out,
1528 size_t, len, unsigned int, flags)
1529{
1530 loff_t pos_in;
1531 loff_t pos_out;
1532 struct fd f_in;
1533 struct fd f_out;
1534 ssize_t ret = -EBADF;
1535
1536 f_in = fdget(fd_in);
1537 if (!f_in.file)
1538 goto out2;
1539
1540 f_out = fdget(fd_out);
1541 if (!f_out.file)
1542 goto out1;
1543
1544 ret = -EFAULT;
1545 if (off_in) {
1546 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1547 goto out;
1548 } else {
1549 pos_in = f_in.file->f_pos;
1550 }
1551
1552 if (off_out) {
1553 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1554 goto out;
1555 } else {
1556 pos_out = f_out.file->f_pos;
1557 }
1558
1559 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1560 flags);
1561 if (ret > 0) {
1562 pos_in += ret;
1563 pos_out += ret;
1564
1565 if (off_in) {
1566 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1567 ret = -EFAULT;
1568 } else {
1569 f_in.file->f_pos = pos_in;
1570 }
1571
1572 if (off_out) {
1573 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1574 ret = -EFAULT;
1575 } else {
1576 f_out.file->f_pos = pos_out;
1577 }
1578 }
1579
1580out:
1581 fdput(f_out);
1582out1:
1583 fdput(f_in);
1584out2:
1585 return ret;
1586}
04b38d60
CH
1587
1588static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1589{
1590 struct inode *inode = file_inode(file);
1591
1592 if (unlikely(pos < 0))
1593 return -EINVAL;
1594
1595 if (unlikely((loff_t) (pos + len) < 0))
1596 return -EINVAL;
1597
1598 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1599 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1600 int retval;
1601
1602 retval = locks_mandatory_area(inode, file, pos, end,
1603 write ? F_WRLCK : F_RDLCK);
1604 if (retval < 0)
1605 return retval;
1606 }
1607
1608 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1609}
1610
1611int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1612 struct file *file_out, loff_t pos_out, u64 len)
1613{
1614 struct inode *inode_in = file_inode(file_in);
1615 struct inode *inode_out = file_inode(file_out);
1616 int ret;
1617
1618 if (inode_in->i_sb != inode_out->i_sb ||
1619 file_in->f_path.mnt != file_out->f_path.mnt)
1620 return -EXDEV;
1621
1622 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1623 return -EISDIR;
1624 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
d79bdd52 1625 return -EINVAL;
04b38d60
CH
1626
1627 if (!(file_in->f_mode & FMODE_READ) ||
1628 !(file_out->f_mode & FMODE_WRITE) ||
0fcbf996 1629 (file_out->f_flags & O_APPEND))
04b38d60
CH
1630 return -EBADF;
1631
0fcbf996
CH
1632 if (!file_in->f_op->clone_file_range)
1633 return -EOPNOTSUPP;
1634
04b38d60
CH
1635 ret = clone_verify_area(file_in, pos_in, len, false);
1636 if (ret)
1637 return ret;
1638
1639 ret = clone_verify_area(file_out, pos_out, len, true);
1640 if (ret)
1641 return ret;
1642
1643 if (pos_in + len > i_size_read(inode_in))
1644 return -EINVAL;
1645
1646 ret = mnt_want_write_file(file_out);
1647 if (ret)
1648 return ret;
1649
1650 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1651 file_out, pos_out, len);
1652 if (!ret) {
1653 fsnotify_access(file_in);
1654 fsnotify_modify(file_out);
1655 }
1656
1657 mnt_drop_write_file(file_out);
1658 return ret;
1659}
1660EXPORT_SYMBOL(vfs_clone_file_range);
54dbc151
DW
1661
1662int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1663{
1664 struct file_dedupe_range_info *info;
1665 struct inode *src = file_inode(file);
1666 u64 off;
1667 u64 len;
1668 int i;
1669 int ret;
1670 bool is_admin = capable(CAP_SYS_ADMIN);
1671 u16 count = same->dest_count;
1672 struct file *dst_file;
1673 loff_t dst_off;
1674 ssize_t deduped;
1675
1676 if (!(file->f_mode & FMODE_READ))
1677 return -EINVAL;
1678
1679 if (same->reserved1 || same->reserved2)
1680 return -EINVAL;
1681
1682 off = same->src_offset;
1683 len = same->src_length;
1684
1685 ret = -EISDIR;
1686 if (S_ISDIR(src->i_mode))
1687 goto out;
1688
1689 ret = -EINVAL;
1690 if (!S_ISREG(src->i_mode))
1691 goto out;
1692
1693 ret = clone_verify_area(file, off, len, false);
1694 if (ret < 0)
1695 goto out;
1696 ret = 0;
1697
1698 /* pre-format output fields to sane values */
1699 for (i = 0; i < count; i++) {
1700 same->info[i].bytes_deduped = 0ULL;
1701 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
1702 }
1703
1704 for (i = 0, info = same->info; i < count; i++, info++) {
1705 struct inode *dst;
1706 struct fd dst_fd = fdget(info->dest_fd);
1707
1708 dst_file = dst_fd.file;
1709 if (!dst_file) {
1710 info->status = -EBADF;
1711 goto next_loop;
1712 }
1713 dst = file_inode(dst_file);
1714
1715 ret = mnt_want_write_file(dst_file);
1716 if (ret) {
1717 info->status = ret;
1718 goto next_loop;
1719 }
1720
1721 dst_off = info->dest_offset;
1722 ret = clone_verify_area(dst_file, dst_off, len, true);
1723 if (ret < 0) {
1724 info->status = ret;
1725 goto next_file;
1726 }
1727 ret = 0;
1728
1729 if (info->reserved) {
1730 info->status = -EINVAL;
1731 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
1732 info->status = -EINVAL;
1733 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
1734 info->status = -EXDEV;
1735 } else if (S_ISDIR(dst->i_mode)) {
1736 info->status = -EISDIR;
1737 } else if (dst_file->f_op->dedupe_file_range == NULL) {
1738 info->status = -EINVAL;
1739 } else {
1740 deduped = dst_file->f_op->dedupe_file_range(file, off,
1741 len, dst_file,
1742 info->dest_offset);
1743 if (deduped == -EBADE)
1744 info->status = FILE_DEDUPE_RANGE_DIFFERS;
1745 else if (deduped < 0)
1746 info->status = deduped;
1747 else
1748 info->bytes_deduped += deduped;
1749 }
1750
1751next_file:
1752 mnt_drop_write_file(dst_file);
1753next_loop:
1754 fdput(dst_fd);
e62e560f
DW
1755
1756 if (fatal_signal_pending(current))
1757 goto out;
54dbc151
DW
1758 }
1759
1760out:
1761 return ret;
1762}
1763EXPORT_SYMBOL(vfs_dedupe_file_range);