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