fs: unexport vfs_read and vfs_write
[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
b12fb7f4 7#include <linux/slab.h>
1da177e4 8#include <linux/stat.h>
b12fb7f4 9#include <linux/sched/xacct.h>
1da177e4
LT
10#include <linux/fcntl.h>
11#include <linux/file.h>
12#include <linux/uio.h>
0eeca283 13#include <linux/fsnotify.h>
1da177e4 14#include <linux/security.h>
630d9c47 15#include <linux/export.h>
1da177e4 16#include <linux/syscalls.h>
e28cc715 17#include <linux/pagemap.h>
d6b29d7c 18#include <linux/splice.h>
561c6731 19#include <linux/compat.h>
29732938 20#include <linux/mount.h>
2feb55f8 21#include <linux/fs.h>
06ae43f3 22#include "internal.h"
1da177e4 23
7c0f6ba6 24#include <linux/uaccess.h>
1da177e4
LT
25#include <asm/unistd.h>
26
4b6f5d20 27const 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
34EXPORT_SYMBOL(generic_ro_fops);
35
cccb5a1e 36static 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 */
53loff_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 66EXPORT_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 84loff_t
965c8e59 85generic_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}
131EXPORT_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 143loff_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 151EXPORT_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 */
161loff_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}
171EXPORT_SYMBOL(fixed_size_llseek);
172
b25472f9
AV
173/**
174 * no_seek_end_llseek - llseek implementation for fixed-sized devices
175 * @file: file structure to seek on
176 * @offset: file offset to seek to
177 * @whence: type of seek
178 *
179 */
180loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
181{
182 switch (whence) {
183 case SEEK_SET: case SEEK_CUR:
184 return generic_file_llseek_size(file, offset, whence,
2feb55f8 185 OFFSET_MAX, 0);
b25472f9
AV
186 default:
187 return -EINVAL;
188 }
189}
190EXPORT_SYMBOL(no_seek_end_llseek);
191
192/**
193 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
194 * @file: file structure to seek on
195 * @offset: file offset to seek to
196 * @whence: type of seek
197 * @size: maximal offset allowed
198 *
199 */
200loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
201{
202 switch (whence) {
203 case SEEK_SET: case SEEK_CUR:
204 return generic_file_llseek_size(file, offset, whence,
205 size, 0);
206 default:
207 return -EINVAL;
208 }
209}
210EXPORT_SYMBOL(no_seek_end_llseek_size);
211
ae6afc3f
B
212/**
213 * noop_llseek - No Operation Performed llseek implementation
214 * @file: file structure to seek on
215 * @offset: file offset to seek to
965c8e59 216 * @whence: type of seek
ae6afc3f
B
217 *
218 * This is an implementation of ->llseek useable for the rare special case when
219 * userspace expects the seek to succeed but the (device) file is actually not
220 * able to perform the seek. In this case you use noop_llseek() instead of
221 * falling back to the default implementation of ->llseek.
222 */
965c8e59 223loff_t noop_llseek(struct file *file, loff_t offset, int whence)
ae6afc3f
B
224{
225 return file->f_pos;
226}
227EXPORT_SYMBOL(noop_llseek);
228
965c8e59 229loff_t no_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
230{
231 return -ESPIPE;
232}
233EXPORT_SYMBOL(no_llseek);
234
965c8e59 235loff_t default_llseek(struct file *file, loff_t offset, int whence)
1da177e4 236{
496ad9aa 237 struct inode *inode = file_inode(file);
16abef0e 238 loff_t retval;
1da177e4 239
5955102c 240 inode_lock(inode);
965c8e59 241 switch (whence) {
7b8e8924 242 case SEEK_END:
982d8165 243 offset += i_size_read(inode);
1da177e4 244 break;
7b8e8924 245 case SEEK_CUR:
5b6f1eb9
AK
246 if (offset == 0) {
247 retval = file->f_pos;
248 goto out;
249 }
1da177e4 250 offset += file->f_pos;
982d8165
JB
251 break;
252 case SEEK_DATA:
253 /*
254 * In the generic case the entire file is data, so as
255 * long as offset isn't at the end of the file then the
256 * offset is data.
257 */
bacb2d81
DC
258 if (offset >= inode->i_size) {
259 retval = -ENXIO;
260 goto out;
261 }
982d8165
JB
262 break;
263 case SEEK_HOLE:
264 /*
265 * There is a virtual hole at the end of the file, so
266 * as long as offset isn't i_size or larger, return
267 * i_size.
268 */
bacb2d81
DC
269 if (offset >= inode->i_size) {
270 retval = -ENXIO;
271 goto out;
272 }
982d8165
JB
273 offset = inode->i_size;
274 break;
1da177e4
LT
275 }
276 retval = -EINVAL;
cccb5a1e 277 if (offset >= 0 || unsigned_offsets(file)) {
1da177e4
LT
278 if (offset != file->f_pos) {
279 file->f_pos = offset;
280 file->f_version = 0;
281 }
282 retval = offset;
283 }
5b6f1eb9 284out:
5955102c 285 inode_unlock(inode);
1da177e4
LT
286 return retval;
287}
288EXPORT_SYMBOL(default_llseek);
289
965c8e59 290loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
291{
292 loff_t (*fn)(struct file *, loff_t, int);
293
294 fn = no_llseek;
295 if (file->f_mode & FMODE_LSEEK) {
72c2d531 296 if (file->f_op->llseek)
1da177e4
LT
297 fn = file->f_op->llseek;
298 }
965c8e59 299 return fn(file, offset, whence);
1da177e4
LT
300}
301EXPORT_SYMBOL(vfs_llseek);
302
965c8e59 303SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
1da177e4
LT
304{
305 off_t retval;
9c225f26 306 struct fd f = fdget_pos(fd);
2903ff01
AV
307 if (!f.file)
308 return -EBADF;
1da177e4
LT
309
310 retval = -EINVAL;
965c8e59
AM
311 if (whence <= SEEK_MAX) {
312 loff_t res = vfs_llseek(f.file, offset, whence);
1da177e4
LT
313 retval = res;
314 if (res != (loff_t)retval)
315 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
316 }
9c225f26 317 fdput_pos(f);
1da177e4
LT
318 return retval;
319}
320
561c6731
AV
321#ifdef CONFIG_COMPAT
322COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
323{
324 return sys_lseek(fd, offset, whence);
325}
326#endif
327
1da177e4 328#ifdef __ARCH_WANT_SYS_LLSEEK
003d7ab4
HC
329SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
330 unsigned long, offset_low, loff_t __user *, result,
965c8e59 331 unsigned int, whence)
1da177e4
LT
332{
333 int retval;
d7a15f8d 334 struct fd f = fdget_pos(fd);
1da177e4 335 loff_t offset;
1da177e4 336
2903ff01
AV
337 if (!f.file)
338 return -EBADF;
1da177e4
LT
339
340 retval = -EINVAL;
965c8e59 341 if (whence > SEEK_MAX)
1da177e4
LT
342 goto out_putf;
343
2903ff01 344 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 345 whence);
1da177e4
LT
346
347 retval = (int)offset;
348 if (offset >= 0) {
349 retval = -EFAULT;
350 if (!copy_to_user(result, &offset, sizeof(offset)))
351 retval = 0;
352 }
353out_putf:
d7a15f8d 354 fdput_pos(f);
1da177e4
LT
355 return retval;
356}
357#endif
358
68d70d03 359int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
1da177e4
LT
360{
361 struct inode *inode;
362 loff_t pos;
c43e259c 363 int retval = -EINVAL;
1da177e4 364
496ad9aa 365 inode = file_inode(file);
e28cc715 366 if (unlikely((ssize_t) count < 0))
c43e259c 367 return retval;
1da177e4 368 pos = *ppos;
cccb5a1e
AV
369 if (unlikely(pos < 0)) {
370 if (!unsigned_offsets(file))
371 return retval;
372 if (count >= -pos) /* both values are in 0..LLONG_MAX */
373 return -EOVERFLOW;
374 } else if (unlikely((loff_t) (pos + count) < 0)) {
375 if (!unsigned_offsets(file))
4a3956c7
KH
376 return retval;
377 }
1da177e4 378
bd61e0a9 379 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
acc15575
CH
380 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
381 read_write == READ ? F_RDLCK : F_WRLCK);
e28cc715
LT
382 if (retval < 0)
383 return retval;
384 }
bc61384d 385 return security_file_permission(file,
c43e259c 386 read_write == READ ? MAY_READ : MAY_WRITE);
1da177e4
LT
387}
388
5d5d5689 389static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
390{
391 struct iovec iov = { .iov_base = buf, .iov_len = len };
392 struct kiocb kiocb;
393 struct iov_iter iter;
394 ssize_t ret;
395
396 init_sync_kiocb(&kiocb, filp);
397 kiocb.ki_pos = *ppos;
293bc982
AV
398 iov_iter_init(&iter, READ, &iov, 1, len);
399
bb7462b6 400 ret = call_read_iter(filp, &kiocb, &iter);
599bd19b 401 BUG_ON(ret == -EIOCBQUEUED);
293bc982
AV
402 *ppos = kiocb.ki_pos;
403 return ret;
404}
405
6fb5032e
DK
406ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
407 loff_t *pos)
408{
6fb5032e 409 if (file->f_op->read)
3d04c8a1 410 return file->f_op->read(file, buf, count, pos);
6fb5032e 411 else if (file->f_op->read_iter)
3d04c8a1 412 return new_sync_read(file, buf, count, pos);
6fb5032e 413 else
3d04c8a1 414 return -EINVAL;
6fb5032e
DK
415}
416
bdd1d2d3 417ssize_t kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
c41fbad0
CH
418{
419 mm_segment_t old_fs;
bdd1d2d3 420 ssize_t result;
c41fbad0
CH
421
422 old_fs = get_fs();
423 set_fs(get_ds());
424 /* The cast to a user pointer is valid due to the set_fs() */
bdd1d2d3 425 result = vfs_read(file, (void __user *)buf, count, pos);
c41fbad0
CH
426 set_fs(old_fs);
427 return result;
428}
429EXPORT_SYMBOL(kernel_read);
430
1da177e4
LT
431ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
432{
433 ssize_t ret;
434
435 if (!(file->f_mode & FMODE_READ))
436 return -EBADF;
7f7f25e8 437 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4
LT
438 return -EINVAL;
439 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
440 return -EFAULT;
441
442 ret = rw_verify_area(READ, file, pos, count);
bc61384d
AV
443 if (!ret) {
444 if (count > MAX_RW_COUNT)
445 count = MAX_RW_COUNT;
6fb5032e 446 ret = __vfs_read(file, buf, count, pos);
c43e259c 447 if (ret > 0) {
2a12a9d7 448 fsnotify_access(file);
c43e259c 449 add_rchar(current, ret);
1da177e4 450 }
c43e259c 451 inc_syscr(current);
1da177e4
LT
452 }
453
454 return ret;
455}
456
5d5d5689 457static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
458{
459 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
460 struct kiocb kiocb;
461 struct iov_iter iter;
462 ssize_t ret;
463
464 init_sync_kiocb(&kiocb, filp);
465 kiocb.ki_pos = *ppos;
293bc982
AV
466 iov_iter_init(&iter, WRITE, &iov, 1, len);
467
bb7462b6 468 ret = call_write_iter(filp, &kiocb, &iter);
599bd19b 469 BUG_ON(ret == -EIOCBQUEUED);
f765b134
AV
470 if (ret > 0)
471 *ppos = kiocb.ki_pos;
293bc982
AV
472 return ret;
473}
474
493c84c0
AV
475ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
476 loff_t *pos)
477{
478 if (file->f_op->write)
479 return file->f_op->write(file, p, count, pos);
493c84c0
AV
480 else if (file->f_op->write_iter)
481 return new_sync_write(file, p, count, pos);
482 else
483 return -EINVAL;
484}
493c84c0 485
73e18f7c 486ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t *pos)
06ae43f3
AV
487{
488 mm_segment_t old_fs;
489 const char __user *p;
490 ssize_t ret;
491
7f7f25e8 492 if (!(file->f_mode & FMODE_CAN_WRITE))
3e84f48e
AV
493 return -EINVAL;
494
06ae43f3
AV
495 old_fs = get_fs();
496 set_fs(get_ds());
497 p = (__force const char __user *)buf;
498 if (count > MAX_RW_COUNT)
499 count = MAX_RW_COUNT;
493c84c0 500 ret = __vfs_write(file, p, count, pos);
06ae43f3
AV
501 set_fs(old_fs);
502 if (ret > 0) {
503 fsnotify_modify(file);
504 add_wchar(current, ret);
505 }
506 inc_syscw(current);
507 return ret;
508}
2ec3a12a
AV
509EXPORT_SYMBOL(__kernel_write);
510
e13ec939
CH
511ssize_t kernel_write(struct file *file, const void *buf, size_t count,
512 loff_t *pos)
ac452aca
CH
513{
514 mm_segment_t old_fs;
515 ssize_t res;
516
517 old_fs = get_fs();
518 set_fs(get_ds());
519 /* The cast to a user pointer is valid due to the set_fs() */
e13ec939 520 res = vfs_write(file, (__force const char __user *)buf, count, pos);
ac452aca
CH
521 set_fs(old_fs);
522
523 return res;
524}
525EXPORT_SYMBOL(kernel_write);
526
1da177e4
LT
527ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
528{
529 ssize_t ret;
530
531 if (!(file->f_mode & FMODE_WRITE))
532 return -EBADF;
7f7f25e8 533 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4
LT
534 return -EINVAL;
535 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
536 return -EFAULT;
537
538 ret = rw_verify_area(WRITE, file, pos, count);
bc61384d
AV
539 if (!ret) {
540 if (count > MAX_RW_COUNT)
541 count = MAX_RW_COUNT;
03d95eb2 542 file_start_write(file);
493c84c0 543 ret = __vfs_write(file, buf, count, pos);
c43e259c 544 if (ret > 0) {
2a12a9d7 545 fsnotify_modify(file);
c43e259c 546 add_wchar(current, ret);
1da177e4 547 }
c43e259c 548 inc_syscw(current);
03d95eb2 549 file_end_write(file);
1da177e4
LT
550 }
551
552 return ret;
553}
554
1da177e4
LT
555static inline loff_t file_pos_read(struct file *file)
556{
557 return file->f_pos;
558}
559
560static inline void file_pos_write(struct file *file, loff_t pos)
561{
562 file->f_pos = pos;
563}
564
3cdad428 565SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
1da177e4 566{
9c225f26 567 struct fd f = fdget_pos(fd);
1da177e4 568 ssize_t ret = -EBADF;
1da177e4 569
2903ff01
AV
570 if (f.file) {
571 loff_t pos = file_pos_read(f.file);
572 ret = vfs_read(f.file, buf, count, &pos);
5faf153e
AV
573 if (ret >= 0)
574 file_pos_write(f.file, pos);
9c225f26 575 fdput_pos(f);
1da177e4 576 }
1da177e4
LT
577 return ret;
578}
1da177e4 579
3cdad428
HC
580SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
581 size_t, count)
1da177e4 582{
9c225f26 583 struct fd f = fdget_pos(fd);
1da177e4 584 ssize_t ret = -EBADF;
1da177e4 585
2903ff01
AV
586 if (f.file) {
587 loff_t pos = file_pos_read(f.file);
588 ret = vfs_write(f.file, buf, count, &pos);
5faf153e
AV
589 if (ret >= 0)
590 file_pos_write(f.file, pos);
9c225f26 591 fdput_pos(f);
1da177e4
LT
592 }
593
594 return ret;
595}
596
4a0fd5bf
AV
597SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
598 size_t, count, loff_t, pos)
1da177e4 599{
2903ff01 600 struct fd f;
1da177e4 601 ssize_t ret = -EBADF;
1da177e4
LT
602
603 if (pos < 0)
604 return -EINVAL;
605
2903ff01
AV
606 f = fdget(fd);
607 if (f.file) {
1da177e4 608 ret = -ESPIPE;
2903ff01
AV
609 if (f.file->f_mode & FMODE_PREAD)
610 ret = vfs_read(f.file, buf, count, &pos);
611 fdput(f);
1da177e4
LT
612 }
613
614 return ret;
615}
616
4a0fd5bf
AV
617SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
618 size_t, count, loff_t, pos)
1da177e4 619{
2903ff01 620 struct fd f;
1da177e4 621 ssize_t ret = -EBADF;
1da177e4
LT
622
623 if (pos < 0)
624 return -EINVAL;
625
2903ff01
AV
626 f = fdget(fd);
627 if (f.file) {
1da177e4 628 ret = -ESPIPE;
2903ff01
AV
629 if (f.file->f_mode & FMODE_PWRITE)
630 ret = vfs_write(f.file, buf, count, &pos);
631 fdput(f);
1da177e4
LT
632 }
633
634 return ret;
635}
636
637/*
638 * Reduce an iovec's length in-place. Return the resulting number of segments
639 */
640unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
641{
642 unsigned long seg = 0;
643 size_t len = 0;
644
645 while (seg < nr_segs) {
646 seg++;
647 if (len + iov->iov_len >= to) {
648 iov->iov_len = to - len;
649 break;
650 }
651 len += iov->iov_len;
652 iov++;
653 }
654 return seg;
655}
19295529 656EXPORT_SYMBOL(iov_shorten);
1da177e4 657
ac15ac06 658static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
0f78d06a 659 loff_t *ppos, int type, int flags)
293bc982
AV
660{
661 struct kiocb kiocb;
293bc982
AV
662 ssize_t ret;
663
664 init_sync_kiocb(&kiocb, filp);
fdd2f5b7
GR
665 ret = kiocb_set_rw_flags(&kiocb, flags);
666 if (ret)
667 return ret;
293bc982 668 kiocb.ki_pos = *ppos;
293bc982 669
0f78d06a 670 if (type == READ)
bb7462b6 671 ret = call_read_iter(filp, &kiocb, iter);
0f78d06a 672 else
bb7462b6 673 ret = call_write_iter(filp, &kiocb, iter);
599bd19b 674 BUG_ON(ret == -EIOCBQUEUED);
293bc982
AV
675 *ppos = kiocb.ki_pos;
676 return ret;
677}
678
ee0b3e67 679/* Do it by hand, with file-ops */
ac15ac06 680static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
0f78d06a 681 loff_t *ppos, int type, int flags)
ee0b3e67 682{
ee0b3e67
BP
683 ssize_t ret = 0;
684
97be7ebe 685 if (flags & ~RWF_HIPRI)
793b80ef
CH
686 return -EOPNOTSUPP;
687
ac15ac06
AV
688 while (iov_iter_count(iter)) {
689 struct iovec iovec = iov_iter_iovec(iter);
ee0b3e67
BP
690 ssize_t nr;
691
0f78d06a
MS
692 if (type == READ) {
693 nr = filp->f_op->read(filp, iovec.iov_base,
694 iovec.iov_len, ppos);
695 } else {
696 nr = filp->f_op->write(filp, iovec.iov_base,
697 iovec.iov_len, ppos);
698 }
ee0b3e67
BP
699
700 if (nr < 0) {
701 if (!ret)
702 ret = nr;
703 break;
704 }
705 ret += nr;
ac15ac06 706 if (nr != iovec.iov_len)
ee0b3e67 707 break;
ac15ac06 708 iov_iter_advance(iter, nr);
ee0b3e67
BP
709 }
710
711 return ret;
712}
713
1da177e4
LT
714/* A write operation does a read from user space and vice versa */
715#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
716
ffecee4f
VN
717/**
718 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
719 * into the kernel and check that it is valid.
720 *
721 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
722 * @uvector: Pointer to the userspace array.
723 * @nr_segs: Number of elements in userspace array.
724 * @fast_segs: Number of elements in @fast_pointer.
725 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
726 * @ret_pointer: (output parameter) Pointer to a variable that will point to
727 * either @fast_pointer, a newly allocated kernel array, or NULL,
728 * depending on which array was used.
729 *
730 * This function copies an array of &struct iovec of @nr_segs from
731 * userspace into the kernel and checks that each element is valid (e.g.
732 * it does not point to a kernel address or cause overflow by being too
733 * large, etc.).
734 *
735 * As an optimization, the caller may provide a pointer to a small
736 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
737 * (the size of this array, or 0 if unused, should be given in @fast_segs).
738 *
739 * @ret_pointer will always point to the array that was used, so the
740 * caller must take care not to call kfree() on it e.g. in case the
741 * @fast_pointer array was used and it was allocated on the stack.
742 *
743 * Return: The total number of bytes covered by the iovec array on success
744 * or a negative error code on error.
745 */
eed4e51f
BP
746ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
747 unsigned long nr_segs, unsigned long fast_segs,
748 struct iovec *fast_pointer,
ac34ebb3 749 struct iovec **ret_pointer)
435f49a5 750{
eed4e51f 751 unsigned long seg;
435f49a5 752 ssize_t ret;
eed4e51f
BP
753 struct iovec *iov = fast_pointer;
754
435f49a5
LT
755 /*
756 * SuS says "The readv() function *may* fail if the iovcnt argument
757 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
758 * traditionally returned zero for zero segments, so...
759 */
eed4e51f
BP
760 if (nr_segs == 0) {
761 ret = 0;
435f49a5 762 goto out;
eed4e51f
BP
763 }
764
435f49a5
LT
765 /*
766 * First get the "struct iovec" from user memory and
767 * verify all the pointers
768 */
eed4e51f
BP
769 if (nr_segs > UIO_MAXIOV) {
770 ret = -EINVAL;
435f49a5 771 goto out;
eed4e51f
BP
772 }
773 if (nr_segs > fast_segs) {
435f49a5 774 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
eed4e51f
BP
775 if (iov == NULL) {
776 ret = -ENOMEM;
435f49a5 777 goto out;
eed4e51f 778 }
435f49a5 779 }
eed4e51f
BP
780 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
781 ret = -EFAULT;
435f49a5 782 goto out;
eed4e51f
BP
783 }
784
435f49a5 785 /*
eed4e51f
BP
786 * According to the Single Unix Specification we should return EINVAL
787 * if an element length is < 0 when cast to ssize_t or if the
788 * total length would overflow the ssize_t return value of the
789 * system call.
435f49a5
LT
790 *
791 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
792 * overflow case.
793 */
eed4e51f 794 ret = 0;
435f49a5
LT
795 for (seg = 0; seg < nr_segs; seg++) {
796 void __user *buf = iov[seg].iov_base;
797 ssize_t len = (ssize_t)iov[seg].iov_len;
eed4e51f
BP
798
799 /* see if we we're about to use an invalid len or if
800 * it's about to overflow ssize_t */
435f49a5 801 if (len < 0) {
eed4e51f 802 ret = -EINVAL;
435f49a5 803 goto out;
eed4e51f 804 }
ac34ebb3 805 if (type >= 0
fcf63409 806 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
eed4e51f 807 ret = -EFAULT;
435f49a5
LT
808 goto out;
809 }
810 if (len > MAX_RW_COUNT - ret) {
811 len = MAX_RW_COUNT - ret;
812 iov[seg].iov_len = len;
eed4e51f 813 }
eed4e51f 814 ret += len;
435f49a5 815 }
eed4e51f
BP
816out:
817 *ret_pointer = iov;
818 return ret;
819}
820
f5029855
AV
821#ifdef CONFIG_COMPAT
822ssize_t compat_rw_copy_check_uvector(int type,
823 const struct compat_iovec __user *uvector, unsigned long nr_segs,
824 unsigned long fast_segs, struct iovec *fast_pointer,
825 struct iovec **ret_pointer)
826{
827 compat_ssize_t tot_len;
828 struct iovec *iov = *ret_pointer = fast_pointer;
829 ssize_t ret = 0;
830 int seg;
831
832 /*
833 * SuS says "The readv() function *may* fail if the iovcnt argument
834 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
835 * traditionally returned zero for zero segments, so...
836 */
837 if (nr_segs == 0)
838 goto out;
839
840 ret = -EINVAL;
841 if (nr_segs > UIO_MAXIOV)
842 goto out;
843 if (nr_segs > fast_segs) {
844 ret = -ENOMEM;
845 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
846 if (iov == NULL)
847 goto out;
848 }
849 *ret_pointer = iov;
850
851 ret = -EFAULT;
852 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
853 goto out;
854
855 /*
856 * Single unix specification:
857 * We should -EINVAL if an element length is not >= 0 and fitting an
858 * ssize_t.
859 *
860 * In Linux, the total length is limited to MAX_RW_COUNT, there is
861 * no overflow possibility.
862 */
863 tot_len = 0;
864 ret = -EINVAL;
865 for (seg = 0; seg < nr_segs; seg++) {
866 compat_uptr_t buf;
867 compat_ssize_t len;
868
869 if (__get_user(len, &uvector->iov_len) ||
870 __get_user(buf, &uvector->iov_base)) {
871 ret = -EFAULT;
872 goto out;
873 }
874 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
875 goto out;
876 if (type >= 0 &&
877 !access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
878 ret = -EFAULT;
879 goto out;
880 }
881 if (len > MAX_RW_COUNT - tot_len)
882 len = MAX_RW_COUNT - tot_len;
883 tot_len += len;
884 iov->iov_base = compat_ptr(buf);
885 iov->iov_len = (compat_size_t) len;
886 uvector++;
887 iov++;
888 }
889 ret = tot_len;
890
891out:
892 return ret;
893}
894#endif
895
19c73586
CH
896static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
897 loff_t *pos, int flags)
1da177e4 898{
1da177e4 899 size_t tot_len;
7687a7a4 900 ssize_t ret = 0;
1da177e4 901
edab5fe3
CH
902 if (!(file->f_mode & FMODE_READ))
903 return -EBADF;
904 if (!(file->f_mode & FMODE_CAN_READ))
905 return -EINVAL;
906
7687a7a4 907 tot_len = iov_iter_count(iter);
0504c074
AV
908 if (!tot_len)
909 goto out;
19c73586 910 ret = rw_verify_area(READ, file, pos, tot_len);
e28cc715 911 if (ret < 0)
19c73586 912 return ret;
1da177e4 913
19c73586
CH
914 if (file->f_op->read_iter)
915 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
ee0b3e67 916 else
19c73586 917 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
1da177e4 918out:
19c73586
CH
919 if (ret >= 0)
920 fsnotify_access(file);
1da177e4 921 return ret;
1da177e4
LT
922}
923
18e9710e
CH
924ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
925 int flags)
7687a7a4 926{
18e9710e
CH
927 if (!file->f_op->read_iter)
928 return -EINVAL;
929 return do_iter_read(file, iter, ppos, flags);
930}
931EXPORT_SYMBOL(vfs_iter_read);
7687a7a4 932
19c73586
CH
933static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
934 loff_t *pos, int flags)
935{
936 size_t tot_len;
937 ssize_t ret = 0;
03d95eb2 938
edab5fe3
CH
939 if (!(file->f_mode & FMODE_WRITE))
940 return -EBADF;
941 if (!(file->f_mode & FMODE_CAN_WRITE))
942 return -EINVAL;
943
19c73586
CH
944 tot_len = iov_iter_count(iter);
945 if (!tot_len)
946 return 0;
947 ret = rw_verify_area(WRITE, file, pos, tot_len);
7687a7a4
MS
948 if (ret < 0)
949 return ret;
950
19c73586
CH
951 if (file->f_op->write_iter)
952 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
953 else
954 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
19c73586
CH
955 if (ret > 0)
956 fsnotify_modify(file);
7687a7a4
MS
957 return ret;
958}
959
abbb6589
CH
960ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
961 int flags)
962{
963 if (!file->f_op->write_iter)
964 return -EINVAL;
965 return do_iter_write(file, iter, ppos, flags);
966}
967EXPORT_SYMBOL(vfs_iter_write);
968
1da177e4 969ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
793b80ef 970 unsigned long vlen, loff_t *pos, int flags)
1da177e4 971{
7687a7a4
MS
972 struct iovec iovstack[UIO_FASTIOV];
973 struct iovec *iov = iovstack;
974 struct iov_iter iter;
975 ssize_t ret;
1da177e4 976
251b42a1 977 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3
CH
978 if (ret >= 0) {
979 ret = do_iter_read(file, &iter, pos, flags);
980 kfree(iov);
981 }
1da177e4 982
251b42a1
CH
983 return ret;
984}
1da177e4
LT
985EXPORT_SYMBOL(vfs_readv);
986
987ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
793b80ef 988 unsigned long vlen, loff_t *pos, int flags)
1da177e4 989{
251b42a1
CH
990 struct iovec iovstack[UIO_FASTIOV];
991 struct iovec *iov = iovstack;
992 struct iov_iter iter;
993 ssize_t ret;
1da177e4 994
251b42a1 995 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3 996 if (ret >= 0) {
62473a2d 997 file_start_write(file);
edab5fe3 998 ret = do_iter_write(file, &iter, pos, flags);
62473a2d 999 file_end_write(file);
edab5fe3
CH
1000 kfree(iov);
1001 }
251b42a1 1002 return ret;
1da177e4 1003}
1da177e4
LT
1004EXPORT_SYMBOL(vfs_writev);
1005
f17d8b35
MT
1006static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
1007 unsigned long vlen, int flags)
1da177e4 1008{
9c225f26 1009 struct fd f = fdget_pos(fd);
1da177e4 1010 ssize_t ret = -EBADF;
1da177e4 1011
2903ff01
AV
1012 if (f.file) {
1013 loff_t pos = file_pos_read(f.file);
f17d8b35 1014 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1015 if (ret >= 0)
1016 file_pos_write(f.file, pos);
9c225f26 1017 fdput_pos(f);
1da177e4
LT
1018 }
1019
1020 if (ret > 0)
4b98d11b
AD
1021 add_rchar(current, ret);
1022 inc_syscr(current);
1da177e4
LT
1023 return ret;
1024}
1025
f17d8b35
MT
1026static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
1027 unsigned long vlen, int flags)
1da177e4 1028{
9c225f26 1029 struct fd f = fdget_pos(fd);
1da177e4 1030 ssize_t ret = -EBADF;
1da177e4 1031
2903ff01
AV
1032 if (f.file) {
1033 loff_t pos = file_pos_read(f.file);
f17d8b35 1034 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1035 if (ret >= 0)
1036 file_pos_write(f.file, pos);
9c225f26 1037 fdput_pos(f);
1da177e4
LT
1038 }
1039
1040 if (ret > 0)
4b98d11b
AD
1041 add_wchar(current, ret);
1042 inc_syscw(current);
1da177e4
LT
1043 return ret;
1044}
1045
601cc11d
LT
1046static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
1047{
1048#define HALF_LONG_BITS (BITS_PER_LONG / 2)
1049 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1050}
1051
f17d8b35
MT
1052static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
1053 unsigned long vlen, loff_t pos, int flags)
f3554f4b 1054{
2903ff01 1055 struct fd f;
f3554f4b 1056 ssize_t ret = -EBADF;
f3554f4b
GH
1057
1058 if (pos < 0)
1059 return -EINVAL;
1060
2903ff01
AV
1061 f = fdget(fd);
1062 if (f.file) {
f3554f4b 1063 ret = -ESPIPE;
2903ff01 1064 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 1065 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
2903ff01 1066 fdput(f);
f3554f4b
GH
1067 }
1068
1069 if (ret > 0)
1070 add_rchar(current, ret);
1071 inc_syscr(current);
1072 return ret;
1073}
1074
f17d8b35
MT
1075static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
1076 unsigned long vlen, loff_t pos, int flags)
f3554f4b 1077{
2903ff01 1078 struct fd f;
f3554f4b 1079 ssize_t ret = -EBADF;
f3554f4b
GH
1080
1081 if (pos < 0)
1082 return -EINVAL;
1083
2903ff01
AV
1084 f = fdget(fd);
1085 if (f.file) {
f3554f4b 1086 ret = -ESPIPE;
2903ff01 1087 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1088 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
2903ff01 1089 fdput(f);
f3554f4b
GH
1090 }
1091
1092 if (ret > 0)
1093 add_wchar(current, ret);
1094 inc_syscw(current);
1095 return ret;
1096}
1097
f17d8b35
MT
1098SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1099 unsigned long, vlen)
1100{
1101 return do_readv(fd, vec, vlen, 0);
1102}
1103
1104SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1105 unsigned long, vlen)
1106{
1107 return do_writev(fd, vec, vlen, 0);
1108}
1109
1110SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1111 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1112{
1113 loff_t pos = pos_from_hilo(pos_h, pos_l);
1114
1115 return do_preadv(fd, vec, vlen, pos, 0);
1116}
1117
1118SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1119 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1120 int, flags)
1121{
1122 loff_t pos = pos_from_hilo(pos_h, pos_l);
1123
1124 if (pos == -1)
1125 return do_readv(fd, vec, vlen, flags);
1126
1127 return do_preadv(fd, vec, vlen, pos, flags);
1128}
1129
1130SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1131 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1132{
1133 loff_t pos = pos_from_hilo(pos_h, pos_l);
1134
1135 return do_pwritev(fd, vec, vlen, pos, 0);
1136}
1137
1138SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1139 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1140 int, flags)
1141{
1142 loff_t pos = pos_from_hilo(pos_h, pos_l);
1143
1144 if (pos == -1)
1145 return do_writev(fd, vec, vlen, flags);
1146
1147 return do_pwritev(fd, vec, vlen, pos, flags);
1148}
1149
72ec3516 1150#ifdef CONFIG_COMPAT
72ec3516
AV
1151static size_t compat_readv(struct file *file,
1152 const struct compat_iovec __user *vec,
f17d8b35 1153 unsigned long vlen, loff_t *pos, int flags)
72ec3516 1154{
72ec3516
AV
1155 struct iovec iovstack[UIO_FASTIOV];
1156 struct iovec *iov = iovstack;
ac15ac06 1157 struct iov_iter iter;
72ec3516 1158 ssize_t ret;
72ec3516 1159
26c87fb7 1160 ret = compat_import_iovec(READ, vec, vlen, UIO_FASTIOV, &iov, &iter);
edab5fe3
CH
1161 if (ret >= 0) {
1162 ret = do_iter_read(file, &iter, pos, flags);
1163 kfree(iov);
1164 }
72ec3516
AV
1165 if (ret > 0)
1166 add_rchar(current, ret);
1167 inc_syscr(current);
1168 return ret;
1169}
1170
f17d8b35
MT
1171static size_t do_compat_readv(compat_ulong_t fd,
1172 const struct compat_iovec __user *vec,
1173 compat_ulong_t vlen, int flags)
72ec3516 1174{
9c225f26 1175 struct fd f = fdget_pos(fd);
72ec3516
AV
1176 ssize_t ret;
1177 loff_t pos;
1178
1179 if (!f.file)
1180 return -EBADF;
1181 pos = f.file->f_pos;
f17d8b35 1182 ret = compat_readv(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1183 if (ret >= 0)
1184 f.file->f_pos = pos;
9c225f26 1185 fdput_pos(f);
72ec3516 1186 return ret;
f17d8b35 1187
72ec3516
AV
1188}
1189
f17d8b35
MT
1190COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1191 const struct compat_iovec __user *,vec,
1192 compat_ulong_t, vlen)
1193{
1194 return do_compat_readv(fd, vec, vlen, 0);
1195}
1196
1197static long do_compat_preadv64(unsigned long fd,
378a10f3 1198 const struct compat_iovec __user *vec,
f17d8b35 1199 unsigned long vlen, loff_t pos, int flags)
72ec3516
AV
1200{
1201 struct fd f;
1202 ssize_t ret;
1203
1204 if (pos < 0)
1205 return -EINVAL;
1206 f = fdget(fd);
1207 if (!f.file)
1208 return -EBADF;
1209 ret = -ESPIPE;
1210 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 1211 ret = compat_readv(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1212 fdput(f);
1213 return ret;
1214}
1215
378a10f3
HC
1216#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1217COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1218 const struct compat_iovec __user *,vec,
1219 unsigned long, vlen, loff_t, pos)
1220{
f17d8b35 1221 return do_compat_preadv64(fd, vec, vlen, pos, 0);
378a10f3
HC
1222}
1223#endif
1224
dfd948e3 1225COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
72ec3516 1226 const struct compat_iovec __user *,vec,
dfd948e3 1227 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1228{
1229 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1230
f17d8b35
MT
1231 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1232}
1233
3ebfd81f
L
1234#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1235COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1236 const struct compat_iovec __user *,vec,
1237 unsigned long, vlen, loff_t, pos, int, flags)
1238{
1239 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1240}
1241#endif
1242
f17d8b35
MT
1243COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1244 const struct compat_iovec __user *,vec,
1245 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1246 int, flags)
1247{
1248 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1249
1250 if (pos == -1)
1251 return do_compat_readv(fd, vec, vlen, flags);
1252
1253 return do_compat_preadv64(fd, vec, vlen, pos, flags);
72ec3516
AV
1254}
1255
1256static size_t compat_writev(struct file *file,
1257 const struct compat_iovec __user *vec,
f17d8b35 1258 unsigned long vlen, loff_t *pos, int flags)
72ec3516 1259{
26c87fb7
CH
1260 struct iovec iovstack[UIO_FASTIOV];
1261 struct iovec *iov = iovstack;
1262 struct iov_iter iter;
edab5fe3 1263 ssize_t ret;
72ec3516 1264
26c87fb7 1265 ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
edab5fe3 1266 if (ret >= 0) {
62473a2d 1267 file_start_write(file);
edab5fe3 1268 ret = do_iter_write(file, &iter, pos, flags);
62473a2d 1269 file_end_write(file);
edab5fe3
CH
1270 kfree(iov);
1271 }
72ec3516
AV
1272 if (ret > 0)
1273 add_wchar(current, ret);
1274 inc_syscw(current);
1275 return ret;
1276}
1277
f17d8b35
MT
1278static size_t do_compat_writev(compat_ulong_t fd,
1279 const struct compat_iovec __user* vec,
1280 compat_ulong_t vlen, int flags)
72ec3516 1281{
9c225f26 1282 struct fd f = fdget_pos(fd);
72ec3516
AV
1283 ssize_t ret;
1284 loff_t pos;
1285
1286 if (!f.file)
1287 return -EBADF;
1288 pos = f.file->f_pos;
f17d8b35 1289 ret = compat_writev(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1290 if (ret >= 0)
1291 f.file->f_pos = pos;
9c225f26 1292 fdput_pos(f);
72ec3516
AV
1293 return ret;
1294}
1295
f17d8b35
MT
1296COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1297 const struct compat_iovec __user *, vec,
1298 compat_ulong_t, vlen)
1299{
1300 return do_compat_writev(fd, vec, vlen, 0);
1301}
1302
1303static long do_compat_pwritev64(unsigned long fd,
378a10f3 1304 const struct compat_iovec __user *vec,
f17d8b35 1305 unsigned long vlen, loff_t pos, int flags)
72ec3516
AV
1306{
1307 struct fd f;
1308 ssize_t ret;
1309
1310 if (pos < 0)
1311 return -EINVAL;
1312 f = fdget(fd);
1313 if (!f.file)
1314 return -EBADF;
1315 ret = -ESPIPE;
1316 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1317 ret = compat_writev(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1318 fdput(f);
1319 return ret;
1320}
1321
378a10f3
HC
1322#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1323COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1324 const struct compat_iovec __user *,vec,
1325 unsigned long, vlen, loff_t, pos)
1326{
f17d8b35 1327 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
378a10f3
HC
1328}
1329#endif
1330
dfd948e3 1331COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
72ec3516 1332 const struct compat_iovec __user *,vec,
dfd948e3 1333 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1334{
1335 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1336
f17d8b35 1337 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
72ec3516 1338}
f17d8b35 1339
3ebfd81f
L
1340#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1341COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1342 const struct compat_iovec __user *,vec,
1343 unsigned long, vlen, loff_t, pos, int, flags)
1344{
1345 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1346}
1347#endif
1348
f17d8b35
MT
1349COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1350 const struct compat_iovec __user *,vec,
1351 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1352{
1353 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1354
1355 if (pos == -1)
1356 return do_compat_writev(fd, vec, vlen, flags);
1357
1358 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
72ec3516 1359}
f17d8b35 1360
72ec3516
AV
1361#endif
1362
19f4fc3a
AV
1363static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1364 size_t count, loff_t max)
1da177e4 1365{
2903ff01
AV
1366 struct fd in, out;
1367 struct inode *in_inode, *out_inode;
1da177e4 1368 loff_t pos;
7995bd28 1369 loff_t out_pos;
1da177e4 1370 ssize_t retval;
2903ff01 1371 int fl;
1da177e4
LT
1372
1373 /*
1374 * Get input file, and verify that it is ok..
1375 */
1376 retval = -EBADF;
2903ff01
AV
1377 in = fdget(in_fd);
1378 if (!in.file)
1da177e4 1379 goto out;
2903ff01 1380 if (!(in.file->f_mode & FMODE_READ))
1da177e4 1381 goto fput_in;
1da177e4 1382 retval = -ESPIPE;
7995bd28
AV
1383 if (!ppos) {
1384 pos = in.file->f_pos;
1385 } else {
1386 pos = *ppos;
2903ff01 1387 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 1388 goto fput_in;
7995bd28
AV
1389 }
1390 retval = rw_verify_area(READ, in.file, &pos, count);
e28cc715 1391 if (retval < 0)
1da177e4 1392 goto fput_in;
bc61384d
AV
1393 if (count > MAX_RW_COUNT)
1394 count = MAX_RW_COUNT;
1da177e4 1395
1da177e4
LT
1396 /*
1397 * Get output file, and verify that it is ok..
1398 */
1399 retval = -EBADF;
2903ff01
AV
1400 out = fdget(out_fd);
1401 if (!out.file)
1da177e4 1402 goto fput_in;
2903ff01 1403 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4
LT
1404 goto fput_out;
1405 retval = -EINVAL;
496ad9aa
AV
1406 in_inode = file_inode(in.file);
1407 out_inode = file_inode(out.file);
7995bd28
AV
1408 out_pos = out.file->f_pos;
1409 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
e28cc715 1410 if (retval < 0)
1da177e4
LT
1411 goto fput_out;
1412
1da177e4
LT
1413 if (!max)
1414 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1415
1da177e4
LT
1416 if (unlikely(pos + count > max)) {
1417 retval = -EOVERFLOW;
1418 if (pos >= max)
1419 goto fput_out;
1420 count = max - pos;
1421 }
1422
d96e6e71 1423 fl = 0;
534f2aaa 1424#if 0
d96e6e71
JA
1425 /*
1426 * We need to debate whether we can enable this or not. The
1427 * man page documents EAGAIN return for the output at least,
1428 * and the application is arguably buggy if it doesn't expect
1429 * EAGAIN on a non-blocking file descriptor.
1430 */
2903ff01 1431 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 1432 fl = SPLICE_F_NONBLOCK;
534f2aaa 1433#endif
50cd2c57 1434 file_start_write(out.file);
7995bd28 1435 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
50cd2c57 1436 file_end_write(out.file);
1da177e4
LT
1437
1438 if (retval > 0) {
4b98d11b
AD
1439 add_rchar(current, retval);
1440 add_wchar(current, retval);
a68c2f12
SW
1441 fsnotify_access(in.file);
1442 fsnotify_modify(out.file);
7995bd28
AV
1443 out.file->f_pos = out_pos;
1444 if (ppos)
1445 *ppos = pos;
1446 else
1447 in.file->f_pos = pos;
1da177e4 1448 }
1da177e4 1449
4b98d11b
AD
1450 inc_syscr(current);
1451 inc_syscw(current);
7995bd28 1452 if (pos > max)
1da177e4
LT
1453 retval = -EOVERFLOW;
1454
1455fput_out:
2903ff01 1456 fdput(out);
1da177e4 1457fput_in:
2903ff01 1458 fdput(in);
1da177e4
LT
1459out:
1460 return retval;
1461}
1462
002c8976 1463SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
1464{
1465 loff_t pos;
1466 off_t off;
1467 ssize_t ret;
1468
1469 if (offset) {
1470 if (unlikely(get_user(off, offset)))
1471 return -EFAULT;
1472 pos = off;
1473 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1474 if (unlikely(put_user(pos, offset)))
1475 return -EFAULT;
1476 return ret;
1477 }
1478
1479 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1480}
1481
002c8976 1482SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1483{
1484 loff_t pos;
1485 ssize_t ret;
1486
1487 if (offset) {
1488 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1489 return -EFAULT;
1490 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1491 if (unlikely(put_user(pos, offset)))
1492 return -EFAULT;
1493 return ret;
1494 }
1495
1496 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1497}
19f4fc3a
AV
1498
1499#ifdef CONFIG_COMPAT
1500COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1501 compat_off_t __user *, offset, compat_size_t, count)
1502{
1503 loff_t pos;
1504 off_t off;
1505 ssize_t ret;
1506
1507 if (offset) {
1508 if (unlikely(get_user(off, offset)))
1509 return -EFAULT;
1510 pos = off;
1511 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1512 if (unlikely(put_user(pos, offset)))
1513 return -EFAULT;
1514 return ret;
1515 }
1516
1517 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1518}
1519
1520COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1521 compat_loff_t __user *, offset, compat_size_t, count)
1522{
1523 loff_t pos;
1524 ssize_t ret;
1525
1526 if (offset) {
1527 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1528 return -EFAULT;
1529 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1530 if (unlikely(put_user(pos, offset)))
1531 return -EFAULT;
1532 return ret;
1533 }
1534
1535 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1536}
1537#endif
29732938
ZB
1538
1539/*
1540 * copy_file_range() differs from regular file read and write in that it
1541 * specifically allows return partial success. When it does so is up to
1542 * the copy_file_range method.
1543 */
1544ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1545 struct file *file_out, loff_t pos_out,
1546 size_t len, unsigned int flags)
1547{
1548 struct inode *inode_in = file_inode(file_in);
1549 struct inode *inode_out = file_inode(file_out);
1550 ssize_t ret;
1551
1552 if (flags != 0)
1553 return -EINVAL;
1554
11cbfb10
AG
1555 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1556 return -EISDIR;
1557 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1558 return -EINVAL;
1559
29732938 1560 ret = rw_verify_area(READ, file_in, &pos_in, len);
bc61384d
AV
1561 if (unlikely(ret))
1562 return ret;
1563
1564 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1565 if (unlikely(ret))
29732938
ZB
1566 return ret;
1567
1568 if (!(file_in->f_mode & FMODE_READ) ||
1569 !(file_out->f_mode & FMODE_WRITE) ||
eac70053 1570 (file_out->f_flags & O_APPEND))
29732938
ZB
1571 return -EBADF;
1572
1573 /* this could be relaxed once a method supports cross-fs copies */
1574 if (inode_in->i_sb != inode_out->i_sb)
1575 return -EXDEV;
1576
1577 if (len == 0)
1578 return 0;
1579
bfe219d3 1580 file_start_write(file_out);
29732938 1581
a76b5b04
CH
1582 /*
1583 * Try cloning first, this is supported by more file systems, and
1584 * more efficient if both clone and copy are supported (e.g. NFS).
1585 */
1586 if (file_in->f_op->clone_file_range) {
1587 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1588 file_out, pos_out, len);
1589 if (ret == 0) {
1590 ret = len;
1591 goto done;
1592 }
1593 }
1594
1595 if (file_out->f_op->copy_file_range) {
eac70053
AS
1596 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1597 pos_out, len, flags);
a76b5b04
CH
1598 if (ret != -EOPNOTSUPP)
1599 goto done;
1600 }
eac70053 1601
a76b5b04
CH
1602 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1603 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
eac70053 1604
a76b5b04 1605done:
29732938
ZB
1606 if (ret > 0) {
1607 fsnotify_access(file_in);
1608 add_rchar(current, ret);
1609 fsnotify_modify(file_out);
1610 add_wchar(current, ret);
1611 }
a76b5b04 1612
29732938
ZB
1613 inc_syscr(current);
1614 inc_syscw(current);
1615
bfe219d3 1616 file_end_write(file_out);
29732938
ZB
1617
1618 return ret;
1619}
1620EXPORT_SYMBOL(vfs_copy_file_range);
1621
1622SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1623 int, fd_out, loff_t __user *, off_out,
1624 size_t, len, unsigned int, flags)
1625{
1626 loff_t pos_in;
1627 loff_t pos_out;
1628 struct fd f_in;
1629 struct fd f_out;
1630 ssize_t ret = -EBADF;
1631
1632 f_in = fdget(fd_in);
1633 if (!f_in.file)
1634 goto out2;
1635
1636 f_out = fdget(fd_out);
1637 if (!f_out.file)
1638 goto out1;
1639
1640 ret = -EFAULT;
1641 if (off_in) {
1642 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1643 goto out;
1644 } else {
1645 pos_in = f_in.file->f_pos;
1646 }
1647
1648 if (off_out) {
1649 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1650 goto out;
1651 } else {
1652 pos_out = f_out.file->f_pos;
1653 }
1654
1655 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1656 flags);
1657 if (ret > 0) {
1658 pos_in += ret;
1659 pos_out += ret;
1660
1661 if (off_in) {
1662 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1663 ret = -EFAULT;
1664 } else {
1665 f_in.file->f_pos = pos_in;
1666 }
1667
1668 if (off_out) {
1669 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1670 ret = -EFAULT;
1671 } else {
1672 f_out.file->f_pos = pos_out;
1673 }
1674 }
1675
1676out:
1677 fdput(f_out);
1678out1:
1679 fdput(f_in);
1680out2:
1681 return ret;
1682}
04b38d60
CH
1683
1684static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1685{
1686 struct inode *inode = file_inode(file);
1687
1688 if (unlikely(pos < 0))
1689 return -EINVAL;
1690
1691 if (unlikely((loff_t) (pos + len) < 0))
1692 return -EINVAL;
1693
1694 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1695 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1696 int retval;
1697
1698 retval = locks_mandatory_area(inode, file, pos, end,
1699 write ? F_WRLCK : F_RDLCK);
1700 if (retval < 0)
1701 return retval;
1702 }
1703
1704 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1705}
1706
876bec6f
DW
1707/*
1708 * Check that the two inodes are eligible for cloning, the ranges make
1709 * sense, and then flush all dirty data. Caller must ensure that the
1710 * inodes have been locked against any other modifications.
22725ce4
DW
1711 *
1712 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1713 * the usual negative error code.
876bec6f
DW
1714 */
1715int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1716 struct inode *inode_out, loff_t pos_out,
1717 u64 *len, bool is_dedupe)
1718{
1719 loff_t bs = inode_out->i_sb->s_blocksize;
1720 loff_t blen;
1721 loff_t isize;
1722 bool same_inode = (inode_in == inode_out);
1723 int ret;
1724
1725 /* Don't touch certain kinds of inodes */
1726 if (IS_IMMUTABLE(inode_out))
1727 return -EPERM;
1728
1729 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1730 return -ETXTBSY;
1731
1732 /* Don't reflink dirs, pipes, sockets... */
1733 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1734 return -EISDIR;
1735 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1736 return -EINVAL;
1737
1738 /* Are we going all the way to the end? */
1739 isize = i_size_read(inode_in);
22725ce4 1740 if (isize == 0)
876bec6f 1741 return 0;
876bec6f
DW
1742
1743 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1744 if (*len == 0) {
22725ce4 1745 if (is_dedupe || pos_in == isize)
876bec6f 1746 return 0;
22725ce4
DW
1747 if (pos_in > isize)
1748 return -EINVAL;
876bec6f
DW
1749 *len = isize - pos_in;
1750 }
1751
1752 /* Ensure offsets don't wrap and the input is inside i_size */
1753 if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1754 pos_in + *len > isize)
1755 return -EINVAL;
1756
1757 /* Don't allow dedupe past EOF in the dest file */
1758 if (is_dedupe) {
1759 loff_t disize;
1760
1761 disize = i_size_read(inode_out);
1762 if (pos_out >= disize || pos_out + *len > disize)
1763 return -EINVAL;
1764 }
1765
1766 /* If we're linking to EOF, continue to the block boundary. */
1767 if (pos_in + *len == isize)
1768 blen = ALIGN(isize, bs) - pos_in;
1769 else
1770 blen = *len;
1771
1772 /* Only reflink if we're aligned to block boundaries */
1773 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1774 !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1775 return -EINVAL;
1776
1777 /* Don't allow overlapped reflink within the same file */
1778 if (same_inode) {
1779 if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1780 return -EINVAL;
1781 }
1782
1783 /* Wait for the completion of any pending IOs on both files */
1784 inode_dio_wait(inode_in);
1785 if (!same_inode)
1786 inode_dio_wait(inode_out);
1787
1788 ret = filemap_write_and_wait_range(inode_in->i_mapping,
1789 pos_in, pos_in + *len - 1);
1790 if (ret)
1791 return ret;
1792
1793 ret = filemap_write_and_wait_range(inode_out->i_mapping,
1794 pos_out, pos_out + *len - 1);
1795 if (ret)
1796 return ret;
1797
1798 /*
1799 * Check that the extents are the same.
1800 */
1801 if (is_dedupe) {
1802 bool is_same = false;
1803
1804 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1805 inode_out, pos_out, *len, &is_same);
1806 if (ret)
1807 return ret;
1808 if (!is_same)
1809 return -EBADE;
1810 }
1811
22725ce4 1812 return 1;
876bec6f
DW
1813}
1814EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1815
04b38d60
CH
1816int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1817 struct file *file_out, loff_t pos_out, u64 len)
1818{
1819 struct inode *inode_in = file_inode(file_in);
1820 struct inode *inode_out = file_inode(file_out);
1821 int ret;
1822
b335e9d9
AG
1823 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1824 return -EISDIR;
1825 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1826 return -EINVAL;
1827
913b86e9
AG
1828 /*
1829 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1830 * the same mount. Practically, they only need to be on the same file
1831 * system.
1832 */
1833 if (inode_in->i_sb != inode_out->i_sb)
04b38d60
CH
1834 return -EXDEV;
1835
04b38d60
CH
1836 if (!(file_in->f_mode & FMODE_READ) ||
1837 !(file_out->f_mode & FMODE_WRITE) ||
0fcbf996 1838 (file_out->f_flags & O_APPEND))
04b38d60
CH
1839 return -EBADF;
1840
0fcbf996
CH
1841 if (!file_in->f_op->clone_file_range)
1842 return -EOPNOTSUPP;
1843
04b38d60
CH
1844 ret = clone_verify_area(file_in, pos_in, len, false);
1845 if (ret)
1846 return ret;
1847
1848 ret = clone_verify_area(file_out, pos_out, len, true);
1849 if (ret)
1850 return ret;
1851
1852 if (pos_in + len > i_size_read(inode_in))
1853 return -EINVAL;
1854
04b38d60
CH
1855 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1856 file_out, pos_out, len);
1857 if (!ret) {
1858 fsnotify_access(file_in);
1859 fsnotify_modify(file_out);
1860 }
1861
04b38d60
CH
1862 return ret;
1863}
1864EXPORT_SYMBOL(vfs_clone_file_range);
54dbc151 1865
876bec6f
DW
1866/*
1867 * Read a page's worth of file data into the page cache. Return the page
1868 * locked.
1869 */
1870static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1871{
1872 struct address_space *mapping;
1873 struct page *page;
1874 pgoff_t n;
1875
1876 n = offset >> PAGE_SHIFT;
1877 mapping = inode->i_mapping;
1878 page = read_mapping_page(mapping, n, NULL);
1879 if (IS_ERR(page))
1880 return page;
1881 if (!PageUptodate(page)) {
1882 put_page(page);
1883 return ERR_PTR(-EIO);
1884 }
1885 lock_page(page);
1886 return page;
1887}
1888
1889/*
1890 * Compare extents of two files to see if they are the same.
1891 * Caller must have locked both inodes to prevent write races.
1892 */
1893int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1894 struct inode *dest, loff_t destoff,
1895 loff_t len, bool *is_same)
1896{
1897 loff_t src_poff;
1898 loff_t dest_poff;
1899 void *src_addr;
1900 void *dest_addr;
1901 struct page *src_page;
1902 struct page *dest_page;
1903 loff_t cmp_len;
1904 bool same;
1905 int error;
1906
1907 error = -EINVAL;
1908 same = true;
1909 while (len) {
1910 src_poff = srcoff & (PAGE_SIZE - 1);
1911 dest_poff = destoff & (PAGE_SIZE - 1);
1912 cmp_len = min(PAGE_SIZE - src_poff,
1913 PAGE_SIZE - dest_poff);
1914 cmp_len = min(cmp_len, len);
1915 if (cmp_len <= 0)
1916 goto out_error;
1917
1918 src_page = vfs_dedupe_get_page(src, srcoff);
1919 if (IS_ERR(src_page)) {
1920 error = PTR_ERR(src_page);
1921 goto out_error;
1922 }
1923 dest_page = vfs_dedupe_get_page(dest, destoff);
1924 if (IS_ERR(dest_page)) {
1925 error = PTR_ERR(dest_page);
1926 unlock_page(src_page);
1927 put_page(src_page);
1928 goto out_error;
1929 }
1930 src_addr = kmap_atomic(src_page);
1931 dest_addr = kmap_atomic(dest_page);
1932
1933 flush_dcache_page(src_page);
1934 flush_dcache_page(dest_page);
1935
1936 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1937 same = false;
1938
1939 kunmap_atomic(dest_addr);
1940 kunmap_atomic(src_addr);
1941 unlock_page(dest_page);
1942 unlock_page(src_page);
1943 put_page(dest_page);
1944 put_page(src_page);
1945
1946 if (!same)
1947 break;
1948
1949 srcoff += cmp_len;
1950 destoff += cmp_len;
1951 len -= cmp_len;
1952 }
1953
1954 *is_same = same;
1955 return 0;
1956
1957out_error:
1958 return error;
1959}
1960EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
1961
54dbc151
DW
1962int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1963{
1964 struct file_dedupe_range_info *info;
1965 struct inode *src = file_inode(file);
1966 u64 off;
1967 u64 len;
1968 int i;
1969 int ret;
1970 bool is_admin = capable(CAP_SYS_ADMIN);
1971 u16 count = same->dest_count;
1972 struct file *dst_file;
1973 loff_t dst_off;
1974 ssize_t deduped;
1975
1976 if (!(file->f_mode & FMODE_READ))
1977 return -EINVAL;
1978
1979 if (same->reserved1 || same->reserved2)
1980 return -EINVAL;
1981
1982 off = same->src_offset;
1983 len = same->src_length;
1984
1985 ret = -EISDIR;
1986 if (S_ISDIR(src->i_mode))
1987 goto out;
1988
1989 ret = -EINVAL;
1990 if (!S_ISREG(src->i_mode))
1991 goto out;
1992
1993 ret = clone_verify_area(file, off, len, false);
1994 if (ret < 0)
1995 goto out;
1996 ret = 0;
1997
22725ce4
DW
1998 if (off + len > i_size_read(src))
1999 return -EINVAL;
2000
54dbc151
DW
2001 /* pre-format output fields to sane values */
2002 for (i = 0; i < count; i++) {
2003 same->info[i].bytes_deduped = 0ULL;
2004 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2005 }
2006
2007 for (i = 0, info = same->info; i < count; i++, info++) {
2008 struct inode *dst;
2009 struct fd dst_fd = fdget(info->dest_fd);
2010
2011 dst_file = dst_fd.file;
2012 if (!dst_file) {
2013 info->status = -EBADF;
2014 goto next_loop;
2015 }
2016 dst = file_inode(dst_file);
2017
2018 ret = mnt_want_write_file(dst_file);
2019 if (ret) {
2020 info->status = ret;
2021 goto next_loop;
2022 }
2023
2024 dst_off = info->dest_offset;
2025 ret = clone_verify_area(dst_file, dst_off, len, true);
2026 if (ret < 0) {
2027 info->status = ret;
2028 goto next_file;
2029 }
2030 ret = 0;
2031
2032 if (info->reserved) {
2033 info->status = -EINVAL;
2034 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2035 info->status = -EINVAL;
2036 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
2037 info->status = -EXDEV;
2038 } else if (S_ISDIR(dst->i_mode)) {
2039 info->status = -EISDIR;
2040 } else if (dst_file->f_op->dedupe_file_range == NULL) {
2041 info->status = -EINVAL;
2042 } else {
2043 deduped = dst_file->f_op->dedupe_file_range(file, off,
2044 len, dst_file,
2045 info->dest_offset);
2046 if (deduped == -EBADE)
2047 info->status = FILE_DEDUPE_RANGE_DIFFERS;
2048 else if (deduped < 0)
2049 info->status = deduped;
2050 else
2051 info->bytes_deduped += deduped;
2052 }
2053
2054next_file:
2055 mnt_drop_write_file(dst_file);
2056next_loop:
2057 fdput(dst_fd);
e62e560f
DW
2058
2059 if (fatal_signal_pending(current))
2060 goto out;
54dbc151
DW
2061 }
2062
2063out:
2064 return ret;
2065}
2066EXPORT_SYMBOL(vfs_dedupe_file_range);