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