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