powerpc/ps3: Set CONFIG_UEVENT_HELPER=y in ps3_defconfig
[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
76847e43 304off_t ksys_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
76847e43
DB
322SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
323{
324 return ksys_lseek(fd, offset, whence);
325}
326
561c6731
AV
327#ifdef CONFIG_COMPAT
328COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
329{
76847e43 330 return ksys_lseek(fd, offset, whence);
561c6731
AV
331}
332#endif
333
caf6f9c8 334#if !defined(CONFIG_64BIT) || defined(CONFIG_COMPAT)
003d7ab4
HC
335SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
336 unsigned long, offset_low, loff_t __user *, result,
965c8e59 337 unsigned int, whence)
1da177e4
LT
338{
339 int retval;
d7a15f8d 340 struct fd f = fdget_pos(fd);
1da177e4 341 loff_t offset;
1da177e4 342
2903ff01
AV
343 if (!f.file)
344 return -EBADF;
1da177e4
LT
345
346 retval = -EINVAL;
965c8e59 347 if (whence > SEEK_MAX)
1da177e4
LT
348 goto out_putf;
349
2903ff01 350 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 351 whence);
1da177e4
LT
352
353 retval = (int)offset;
354 if (offset >= 0) {
355 retval = -EFAULT;
356 if (!copy_to_user(result, &offset, sizeof(offset)))
357 retval = 0;
358 }
359out_putf:
d7a15f8d 360 fdput_pos(f);
1da177e4
LT
361 return retval;
362}
363#endif
364
68d70d03 365int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
1da177e4
LT
366{
367 struct inode *inode;
c43e259c 368 int retval = -EINVAL;
1da177e4 369
496ad9aa 370 inode = file_inode(file);
e28cc715 371 if (unlikely((ssize_t) count < 0))
c43e259c 372 return retval;
1da177e4 373
438ab720
KS
374 /*
375 * ranged mandatory locking does not apply to streams - it makes sense
376 * only for files where position has a meaning.
377 */
378 if (ppos) {
379 loff_t pos = *ppos;
380
381 if (unlikely(pos < 0)) {
382 if (!unsigned_offsets(file))
383 return retval;
384 if (count >= -pos) /* both values are in 0..LLONG_MAX */
385 return -EOVERFLOW;
386 } else if (unlikely((loff_t) (pos + count) < 0)) {
387 if (!unsigned_offsets(file))
388 return retval;
389 }
390
391 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
392 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
393 read_write == READ ? F_RDLCK : F_WRLCK);
394 if (retval < 0)
395 return retval;
396 }
e28cc715 397 }
438ab720 398
bc61384d 399 return security_file_permission(file,
c43e259c 400 read_write == READ ? MAY_READ : MAY_WRITE);
1da177e4
LT
401}
402
5d5d5689 403static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
404{
405 struct iovec iov = { .iov_base = buf, .iov_len = len };
406 struct kiocb kiocb;
407 struct iov_iter iter;
408 ssize_t ret;
409
410 init_sync_kiocb(&kiocb, filp);
438ab720 411 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982
AV
412 iov_iter_init(&iter, READ, &iov, 1, len);
413
bb7462b6 414 ret = call_read_iter(filp, &kiocb, &iter);
599bd19b 415 BUG_ON(ret == -EIOCBQUEUED);
438ab720
KS
416 if (ppos)
417 *ppos = kiocb.ki_pos;
293bc982
AV
418 return ret;
419}
420
6fb5032e
DK
421ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
422 loff_t *pos)
423{
6fb5032e 424 if (file->f_op->read)
3d04c8a1 425 return file->f_op->read(file, buf, count, pos);
6fb5032e 426 else if (file->f_op->read_iter)
3d04c8a1 427 return new_sync_read(file, buf, count, pos);
6fb5032e 428 else
3d04c8a1 429 return -EINVAL;
6fb5032e
DK
430}
431
bdd1d2d3 432ssize_t kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
c41fbad0
CH
433{
434 mm_segment_t old_fs;
bdd1d2d3 435 ssize_t result;
c41fbad0
CH
436
437 old_fs = get_fs();
736706be 438 set_fs(KERNEL_DS);
c41fbad0 439 /* The cast to a user pointer is valid due to the set_fs() */
bdd1d2d3 440 result = vfs_read(file, (void __user *)buf, count, pos);
c41fbad0
CH
441 set_fs(old_fs);
442 return result;
443}
444EXPORT_SYMBOL(kernel_read);
6fb5032e 445
1da177e4
LT
446ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
447{
448 ssize_t ret;
449
450 if (!(file->f_mode & FMODE_READ))
451 return -EBADF;
7f7f25e8 452 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4 453 return -EINVAL;
96d4f267 454 if (unlikely(!access_ok(buf, count)))
1da177e4
LT
455 return -EFAULT;
456
457 ret = rw_verify_area(READ, file, pos, count);
bc61384d
AV
458 if (!ret) {
459 if (count > MAX_RW_COUNT)
460 count = MAX_RW_COUNT;
6fb5032e 461 ret = __vfs_read(file, buf, count, pos);
c43e259c 462 if (ret > 0) {
2a12a9d7 463 fsnotify_access(file);
c43e259c 464 add_rchar(current, ret);
1da177e4 465 }
c43e259c 466 inc_syscr(current);
1da177e4
LT
467 }
468
469 return ret;
470}
471
5d5d5689 472static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
473{
474 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
475 struct kiocb kiocb;
476 struct iov_iter iter;
477 ssize_t ret;
478
479 init_sync_kiocb(&kiocb, filp);
438ab720 480 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982
AV
481 iov_iter_init(&iter, WRITE, &iov, 1, len);
482
bb7462b6 483 ret = call_write_iter(filp, &kiocb, &iter);
599bd19b 484 BUG_ON(ret == -EIOCBQUEUED);
438ab720 485 if (ret > 0 && ppos)
f765b134 486 *ppos = kiocb.ki_pos;
293bc982
AV
487 return ret;
488}
489
12e1e7af
GU
490static ssize_t __vfs_write(struct file *file, const char __user *p,
491 size_t count, loff_t *pos)
493c84c0
AV
492{
493 if (file->f_op->write)
494 return file->f_op->write(file, p, count, pos);
493c84c0
AV
495 else if (file->f_op->write_iter)
496 return new_sync_write(file, p, count, pos);
497 else
498 return -EINVAL;
499}
493c84c0 500
73e18f7c 501ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t *pos)
06ae43f3
AV
502{
503 mm_segment_t old_fs;
504 const char __user *p;
505 ssize_t ret;
506
7f7f25e8 507 if (!(file->f_mode & FMODE_CAN_WRITE))
3e84f48e
AV
508 return -EINVAL;
509
06ae43f3 510 old_fs = get_fs();
736706be 511 set_fs(KERNEL_DS);
06ae43f3
AV
512 p = (__force const char __user *)buf;
513 if (count > MAX_RW_COUNT)
514 count = MAX_RW_COUNT;
493c84c0 515 ret = __vfs_write(file, p, count, pos);
06ae43f3
AV
516 set_fs(old_fs);
517 if (ret > 0) {
518 fsnotify_modify(file);
519 add_wchar(current, ret);
520 }
521 inc_syscw(current);
522 return ret;
523}
2ec3a12a
AV
524EXPORT_SYMBOL(__kernel_write);
525
e13ec939
CH
526ssize_t kernel_write(struct file *file, const void *buf, size_t count,
527 loff_t *pos)
ac452aca
CH
528{
529 mm_segment_t old_fs;
530 ssize_t res;
531
532 old_fs = get_fs();
736706be 533 set_fs(KERNEL_DS);
ac452aca 534 /* The cast to a user pointer is valid due to the set_fs() */
e13ec939 535 res = vfs_write(file, (__force const char __user *)buf, count, pos);
ac452aca
CH
536 set_fs(old_fs);
537
538 return res;
539}
540EXPORT_SYMBOL(kernel_write);
541
1da177e4
LT
542ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
543{
544 ssize_t ret;
545
546 if (!(file->f_mode & FMODE_WRITE))
547 return -EBADF;
7f7f25e8 548 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4 549 return -EINVAL;
96d4f267 550 if (unlikely(!access_ok(buf, count)))
1da177e4
LT
551 return -EFAULT;
552
553 ret = rw_verify_area(WRITE, file, pos, count);
bc61384d
AV
554 if (!ret) {
555 if (count > MAX_RW_COUNT)
556 count = MAX_RW_COUNT;
03d95eb2 557 file_start_write(file);
493c84c0 558 ret = __vfs_write(file, buf, count, pos);
c43e259c 559 if (ret > 0) {
2a12a9d7 560 fsnotify_modify(file);
c43e259c 561 add_wchar(current, ret);
1da177e4 562 }
c43e259c 563 inc_syscw(current);
03d95eb2 564 file_end_write(file);
1da177e4
LT
565 }
566
567 return ret;
568}
569
438ab720
KS
570/* file_ppos returns &file->f_pos or NULL if file is stream */
571static inline loff_t *file_ppos(struct file *file)
1da177e4 572{
438ab720 573 return file->f_mode & FMODE_STREAM ? NULL : &file->f_pos;
1da177e4
LT
574}
575
3ce4a7bf 576ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count)
1da177e4 577{
9c225f26 578 struct fd f = fdget_pos(fd);
1da177e4 579 ssize_t ret = -EBADF;
1da177e4 580
2903ff01 581 if (f.file) {
438ab720
KS
582 loff_t pos, *ppos = file_ppos(f.file);
583 if (ppos) {
584 pos = *ppos;
585 ppos = &pos;
586 }
587 ret = vfs_read(f.file, buf, count, ppos);
588 if (ret >= 0 && ppos)
589 f.file->f_pos = pos;
9c225f26 590 fdput_pos(f);
1da177e4 591 }
1da177e4
LT
592 return ret;
593}
1da177e4 594
3ce4a7bf
DB
595SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
596{
597 return ksys_read(fd, buf, count);
598}
599
e7a3e8b2 600ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count)
1da177e4 601{
9c225f26 602 struct fd f = fdget_pos(fd);
1da177e4 603 ssize_t ret = -EBADF;
1da177e4 604
2903ff01 605 if (f.file) {
438ab720
KS
606 loff_t pos, *ppos = file_ppos(f.file);
607 if (ppos) {
608 pos = *ppos;
609 ppos = &pos;
610 }
611 ret = vfs_write(f.file, buf, count, ppos);
612 if (ret >= 0 && ppos)
613 f.file->f_pos = pos;
9c225f26 614 fdput_pos(f);
1da177e4
LT
615 }
616
617 return ret;
618}
619
e7a3e8b2
DB
620SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
621 size_t, count)
622{
623 return ksys_write(fd, buf, count);
624}
625
36028d5d
DB
626ssize_t ksys_pread64(unsigned int fd, char __user *buf, size_t count,
627 loff_t pos)
1da177e4 628{
2903ff01 629 struct fd f;
1da177e4 630 ssize_t ret = -EBADF;
1da177e4
LT
631
632 if (pos < 0)
633 return -EINVAL;
634
2903ff01
AV
635 f = fdget(fd);
636 if (f.file) {
1da177e4 637 ret = -ESPIPE;
2903ff01
AV
638 if (f.file->f_mode & FMODE_PREAD)
639 ret = vfs_read(f.file, buf, count, &pos);
640 fdput(f);
1da177e4
LT
641 }
642
643 return ret;
644}
645
36028d5d
DB
646SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
647 size_t, count, loff_t, pos)
648{
649 return ksys_pread64(fd, buf, count, pos);
650}
651
652ssize_t ksys_pwrite64(unsigned int fd, const char __user *buf,
653 size_t count, loff_t pos)
1da177e4 654{
2903ff01 655 struct fd f;
1da177e4 656 ssize_t ret = -EBADF;
1da177e4
LT
657
658 if (pos < 0)
659 return -EINVAL;
660
2903ff01
AV
661 f = fdget(fd);
662 if (f.file) {
1da177e4 663 ret = -ESPIPE;
2903ff01
AV
664 if (f.file->f_mode & FMODE_PWRITE)
665 ret = vfs_write(f.file, buf, count, &pos);
666 fdput(f);
1da177e4
LT
667 }
668
669 return ret;
670}
671
36028d5d
DB
672SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
673 size_t, count, loff_t, pos)
674{
675 return ksys_pwrite64(fd, buf, count, pos);
676}
677
ac15ac06 678static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
ddef7ed2 679 loff_t *ppos, int type, rwf_t flags)
293bc982
AV
680{
681 struct kiocb kiocb;
293bc982
AV
682 ssize_t ret;
683
684 init_sync_kiocb(&kiocb, filp);
fdd2f5b7
GR
685 ret = kiocb_set_rw_flags(&kiocb, flags);
686 if (ret)
687 return ret;
438ab720 688 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982 689
0f78d06a 690 if (type == READ)
bb7462b6 691 ret = call_read_iter(filp, &kiocb, iter);
0f78d06a 692 else
bb7462b6 693 ret = call_write_iter(filp, &kiocb, iter);
599bd19b 694 BUG_ON(ret == -EIOCBQUEUED);
438ab720
KS
695 if (ppos)
696 *ppos = kiocb.ki_pos;
293bc982
AV
697 return ret;
698}
699
ee0b3e67 700/* Do it by hand, with file-ops */
ac15ac06 701static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
ddef7ed2 702 loff_t *ppos, int type, rwf_t flags)
ee0b3e67 703{
ee0b3e67
BP
704 ssize_t ret = 0;
705
97be7ebe 706 if (flags & ~RWF_HIPRI)
793b80ef
CH
707 return -EOPNOTSUPP;
708
ac15ac06
AV
709 while (iov_iter_count(iter)) {
710 struct iovec iovec = iov_iter_iovec(iter);
ee0b3e67
BP
711 ssize_t nr;
712
0f78d06a
MS
713 if (type == READ) {
714 nr = filp->f_op->read(filp, iovec.iov_base,
715 iovec.iov_len, ppos);
716 } else {
717 nr = filp->f_op->write(filp, iovec.iov_base,
718 iovec.iov_len, ppos);
719 }
ee0b3e67
BP
720
721 if (nr < 0) {
722 if (!ret)
723 ret = nr;
724 break;
725 }
726 ret += nr;
ac15ac06 727 if (nr != iovec.iov_len)
ee0b3e67 728 break;
ac15ac06 729 iov_iter_advance(iter, nr);
ee0b3e67
BP
730 }
731
732 return ret;
733}
734
ffecee4f
VN
735/**
736 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
737 * into the kernel and check that it is valid.
738 *
739 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
740 * @uvector: Pointer to the userspace array.
741 * @nr_segs: Number of elements in userspace array.
742 * @fast_segs: Number of elements in @fast_pointer.
743 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
744 * @ret_pointer: (output parameter) Pointer to a variable that will point to
745 * either @fast_pointer, a newly allocated kernel array, or NULL,
746 * depending on which array was used.
747 *
748 * This function copies an array of &struct iovec of @nr_segs from
749 * userspace into the kernel and checks that each element is valid (e.g.
750 * it does not point to a kernel address or cause overflow by being too
751 * large, etc.).
752 *
753 * As an optimization, the caller may provide a pointer to a small
754 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
755 * (the size of this array, or 0 if unused, should be given in @fast_segs).
756 *
757 * @ret_pointer will always point to the array that was used, so the
758 * caller must take care not to call kfree() on it e.g. in case the
759 * @fast_pointer array was used and it was allocated on the stack.
760 *
761 * Return: The total number of bytes covered by the iovec array on success
762 * or a negative error code on error.
763 */
eed4e51f
BP
764ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
765 unsigned long nr_segs, unsigned long fast_segs,
766 struct iovec *fast_pointer,
ac34ebb3 767 struct iovec **ret_pointer)
435f49a5 768{
eed4e51f 769 unsigned long seg;
435f49a5 770 ssize_t ret;
eed4e51f
BP
771 struct iovec *iov = fast_pointer;
772
435f49a5
LT
773 /*
774 * SuS says "The readv() function *may* fail if the iovcnt argument
775 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
776 * traditionally returned zero for zero segments, so...
777 */
eed4e51f
BP
778 if (nr_segs == 0) {
779 ret = 0;
435f49a5 780 goto out;
eed4e51f
BP
781 }
782
435f49a5
LT
783 /*
784 * First get the "struct iovec" from user memory and
785 * verify all the pointers
786 */
eed4e51f
BP
787 if (nr_segs > UIO_MAXIOV) {
788 ret = -EINVAL;
435f49a5 789 goto out;
eed4e51f
BP
790 }
791 if (nr_segs > fast_segs) {
6da2ec56 792 iov = kmalloc_array(nr_segs, sizeof(struct iovec), GFP_KERNEL);
eed4e51f
BP
793 if (iov == NULL) {
794 ret = -ENOMEM;
435f49a5 795 goto out;
eed4e51f 796 }
435f49a5 797 }
eed4e51f
BP
798 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
799 ret = -EFAULT;
435f49a5 800 goto out;
eed4e51f
BP
801 }
802
435f49a5 803 /*
eed4e51f
BP
804 * According to the Single Unix Specification we should return EINVAL
805 * if an element length is < 0 when cast to ssize_t or if the
806 * total length would overflow the ssize_t return value of the
807 * system call.
435f49a5
LT
808 *
809 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
810 * overflow case.
811 */
eed4e51f 812 ret = 0;
435f49a5
LT
813 for (seg = 0; seg < nr_segs; seg++) {
814 void __user *buf = iov[seg].iov_base;
815 ssize_t len = (ssize_t)iov[seg].iov_len;
eed4e51f
BP
816
817 /* see if we we're about to use an invalid len or if
818 * it's about to overflow ssize_t */
435f49a5 819 if (len < 0) {
eed4e51f 820 ret = -EINVAL;
435f49a5 821 goto out;
eed4e51f 822 }
ac34ebb3 823 if (type >= 0
96d4f267 824 && unlikely(!access_ok(buf, len))) {
eed4e51f 825 ret = -EFAULT;
435f49a5
LT
826 goto out;
827 }
828 if (len > MAX_RW_COUNT - ret) {
829 len = MAX_RW_COUNT - ret;
830 iov[seg].iov_len = len;
eed4e51f 831 }
eed4e51f 832 ret += len;
435f49a5 833 }
eed4e51f
BP
834out:
835 *ret_pointer = iov;
836 return ret;
837}
838
f5029855
AV
839#ifdef CONFIG_COMPAT
840ssize_t compat_rw_copy_check_uvector(int type,
841 const struct compat_iovec __user *uvector, unsigned long nr_segs,
842 unsigned long fast_segs, struct iovec *fast_pointer,
843 struct iovec **ret_pointer)
844{
845 compat_ssize_t tot_len;
846 struct iovec *iov = *ret_pointer = fast_pointer;
847 ssize_t ret = 0;
848 int seg;
849
850 /*
851 * SuS says "The readv() function *may* fail if the iovcnt argument
852 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
853 * traditionally returned zero for zero segments, so...
854 */
855 if (nr_segs == 0)
856 goto out;
857
858 ret = -EINVAL;
859 if (nr_segs > UIO_MAXIOV)
860 goto out;
861 if (nr_segs > fast_segs) {
862 ret = -ENOMEM;
6da2ec56 863 iov = kmalloc_array(nr_segs, sizeof(struct iovec), GFP_KERNEL);
f5029855
AV
864 if (iov == NULL)
865 goto out;
866 }
867 *ret_pointer = iov;
868
869 ret = -EFAULT;
96d4f267 870 if (!access_ok(uvector, nr_segs*sizeof(*uvector)))
f5029855
AV
871 goto out;
872
873 /*
874 * Single unix specification:
875 * We should -EINVAL if an element length is not >= 0 and fitting an
876 * ssize_t.
877 *
878 * In Linux, the total length is limited to MAX_RW_COUNT, there is
879 * no overflow possibility.
880 */
881 tot_len = 0;
882 ret = -EINVAL;
883 for (seg = 0; seg < nr_segs; seg++) {
884 compat_uptr_t buf;
885 compat_ssize_t len;
886
887 if (__get_user(len, &uvector->iov_len) ||
888 __get_user(buf, &uvector->iov_base)) {
889 ret = -EFAULT;
890 goto out;
891 }
892 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
893 goto out;
894 if (type >= 0 &&
96d4f267 895 !access_ok(compat_ptr(buf), len)) {
f5029855
AV
896 ret = -EFAULT;
897 goto out;
898 }
899 if (len > MAX_RW_COUNT - tot_len)
900 len = MAX_RW_COUNT - tot_len;
901 tot_len += len;
902 iov->iov_base = compat_ptr(buf);
903 iov->iov_len = (compat_size_t) len;
904 uvector++;
905 iov++;
906 }
907 ret = tot_len;
908
909out:
910 return ret;
911}
912#endif
913
19c73586 914static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
ddef7ed2 915 loff_t *pos, rwf_t flags)
1da177e4 916{
1da177e4 917 size_t tot_len;
7687a7a4 918 ssize_t ret = 0;
1da177e4 919
edab5fe3
CH
920 if (!(file->f_mode & FMODE_READ))
921 return -EBADF;
922 if (!(file->f_mode & FMODE_CAN_READ))
923 return -EINVAL;
924
7687a7a4 925 tot_len = iov_iter_count(iter);
0504c074
AV
926 if (!tot_len)
927 goto out;
19c73586 928 ret = rw_verify_area(READ, file, pos, tot_len);
e28cc715 929 if (ret < 0)
19c73586 930 return ret;
1da177e4 931
19c73586
CH
932 if (file->f_op->read_iter)
933 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
ee0b3e67 934 else
19c73586 935 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
1da177e4 936out:
19c73586
CH
937 if (ret >= 0)
938 fsnotify_access(file);
1da177e4 939 return ret;
1da177e4
LT
940}
941
5dcdc43e
JX
942ssize_t vfs_iocb_iter_read(struct file *file, struct kiocb *iocb,
943 struct iov_iter *iter)
944{
945 size_t tot_len;
946 ssize_t ret = 0;
947
948 if (!file->f_op->read_iter)
949 return -EINVAL;
950 if (!(file->f_mode & FMODE_READ))
951 return -EBADF;
952 if (!(file->f_mode & FMODE_CAN_READ))
953 return -EINVAL;
954
955 tot_len = iov_iter_count(iter);
956 if (!tot_len)
957 goto out;
958 ret = rw_verify_area(READ, file, &iocb->ki_pos, tot_len);
959 if (ret < 0)
960 return ret;
961
962 ret = call_read_iter(file, iocb, iter);
963out:
964 if (ret >= 0)
965 fsnotify_access(file);
966 return ret;
967}
968EXPORT_SYMBOL(vfs_iocb_iter_read);
969
18e9710e 970ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
ddef7ed2 971 rwf_t flags)
7687a7a4 972{
18e9710e
CH
973 if (!file->f_op->read_iter)
974 return -EINVAL;
975 return do_iter_read(file, iter, ppos, flags);
976}
977EXPORT_SYMBOL(vfs_iter_read);
7687a7a4 978
19c73586 979static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
ddef7ed2 980 loff_t *pos, rwf_t flags)
19c73586
CH
981{
982 size_t tot_len;
983 ssize_t ret = 0;
03d95eb2 984
edab5fe3
CH
985 if (!(file->f_mode & FMODE_WRITE))
986 return -EBADF;
987 if (!(file->f_mode & FMODE_CAN_WRITE))
988 return -EINVAL;
989
19c73586
CH
990 tot_len = iov_iter_count(iter);
991 if (!tot_len)
992 return 0;
993 ret = rw_verify_area(WRITE, file, pos, tot_len);
7687a7a4
MS
994 if (ret < 0)
995 return ret;
996
19c73586
CH
997 if (file->f_op->write_iter)
998 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
999 else
1000 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
19c73586
CH
1001 if (ret > 0)
1002 fsnotify_modify(file);
7687a7a4
MS
1003 return ret;
1004}
1005
5dcdc43e
JX
1006ssize_t vfs_iocb_iter_write(struct file *file, struct kiocb *iocb,
1007 struct iov_iter *iter)
1008{
1009 size_t tot_len;
1010 ssize_t ret = 0;
1011
1012 if (!file->f_op->write_iter)
1013 return -EINVAL;
1014 if (!(file->f_mode & FMODE_WRITE))
1015 return -EBADF;
1016 if (!(file->f_mode & FMODE_CAN_WRITE))
1017 return -EINVAL;
1018
1019 tot_len = iov_iter_count(iter);
1020 if (!tot_len)
1021 return 0;
1022 ret = rw_verify_area(WRITE, file, &iocb->ki_pos, tot_len);
1023 if (ret < 0)
1024 return ret;
1025
1026 ret = call_write_iter(file, iocb, iter);
1027 if (ret > 0)
1028 fsnotify_modify(file);
1029
1030 return ret;
1031}
1032EXPORT_SYMBOL(vfs_iocb_iter_write);
1033
abbb6589 1034ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
ddef7ed2 1035 rwf_t flags)
abbb6589
CH
1036{
1037 if (!file->f_op->write_iter)
1038 return -EINVAL;
1039 return do_iter_write(file, iter, ppos, flags);
1040}
1041EXPORT_SYMBOL(vfs_iter_write);
1042
1da177e4 1043ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
ddef7ed2 1044 unsigned long vlen, loff_t *pos, rwf_t flags)
1da177e4 1045{
7687a7a4
MS
1046 struct iovec iovstack[UIO_FASTIOV];
1047 struct iovec *iov = iovstack;
1048 struct iov_iter iter;
1049 ssize_t ret;
1da177e4 1050
251b42a1 1051 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3
CH
1052 if (ret >= 0) {
1053 ret = do_iter_read(file, &iter, pos, flags);
1054 kfree(iov);
1055 }
1da177e4 1056
251b42a1
CH
1057 return ret;
1058}
1da177e4 1059
9725d4ce 1060static ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
ddef7ed2 1061 unsigned long vlen, loff_t *pos, rwf_t flags)
1da177e4 1062{
251b42a1
CH
1063 struct iovec iovstack[UIO_FASTIOV];
1064 struct iovec *iov = iovstack;
1065 struct iov_iter iter;
1066 ssize_t ret;
1da177e4 1067
251b42a1 1068 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3 1069 if (ret >= 0) {
62473a2d 1070 file_start_write(file);
edab5fe3 1071 ret = do_iter_write(file, &iter, pos, flags);
62473a2d 1072 file_end_write(file);
edab5fe3
CH
1073 kfree(iov);
1074 }
251b42a1 1075 return ret;
1da177e4 1076}
1da177e4 1077
f17d8b35 1078static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 1079 unsigned long vlen, rwf_t flags)
1da177e4 1080{
9c225f26 1081 struct fd f = fdget_pos(fd);
1da177e4 1082 ssize_t ret = -EBADF;
1da177e4 1083
2903ff01 1084 if (f.file) {
438ab720
KS
1085 loff_t pos, *ppos = file_ppos(f.file);
1086 if (ppos) {
1087 pos = *ppos;
1088 ppos = &pos;
1089 }
1090 ret = vfs_readv(f.file, vec, vlen, ppos, flags);
1091 if (ret >= 0 && ppos)
1092 f.file->f_pos = pos;
9c225f26 1093 fdput_pos(f);
1da177e4
LT
1094 }
1095
1096 if (ret > 0)
4b98d11b
AD
1097 add_rchar(current, ret);
1098 inc_syscr(current);
1da177e4
LT
1099 return ret;
1100}
1101
f17d8b35 1102static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 1103 unsigned long vlen, rwf_t flags)
1da177e4 1104{
9c225f26 1105 struct fd f = fdget_pos(fd);
1da177e4 1106 ssize_t ret = -EBADF;
1da177e4 1107
2903ff01 1108 if (f.file) {
438ab720
KS
1109 loff_t pos, *ppos = file_ppos(f.file);
1110 if (ppos) {
1111 pos = *ppos;
1112 ppos = &pos;
1113 }
1114 ret = vfs_writev(f.file, vec, vlen, ppos, flags);
1115 if (ret >= 0 && ppos)
1116 f.file->f_pos = pos;
9c225f26 1117 fdput_pos(f);
1da177e4
LT
1118 }
1119
1120 if (ret > 0)
4b98d11b
AD
1121 add_wchar(current, ret);
1122 inc_syscw(current);
1da177e4
LT
1123 return ret;
1124}
1125
601cc11d
LT
1126static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
1127{
1128#define HALF_LONG_BITS (BITS_PER_LONG / 2)
1129 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1130}
1131
f17d8b35 1132static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 1133 unsigned long vlen, loff_t pos, rwf_t flags)
f3554f4b 1134{
2903ff01 1135 struct fd f;
f3554f4b 1136 ssize_t ret = -EBADF;
f3554f4b
GH
1137
1138 if (pos < 0)
1139 return -EINVAL;
1140
2903ff01
AV
1141 f = fdget(fd);
1142 if (f.file) {
f3554f4b 1143 ret = -ESPIPE;
2903ff01 1144 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 1145 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
2903ff01 1146 fdput(f);
f3554f4b
GH
1147 }
1148
1149 if (ret > 0)
1150 add_rchar(current, ret);
1151 inc_syscr(current);
1152 return ret;
1153}
1154
f17d8b35 1155static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 1156 unsigned long vlen, loff_t pos, rwf_t flags)
f3554f4b 1157{
2903ff01 1158 struct fd f;
f3554f4b 1159 ssize_t ret = -EBADF;
f3554f4b
GH
1160
1161 if (pos < 0)
1162 return -EINVAL;
1163
2903ff01
AV
1164 f = fdget(fd);
1165 if (f.file) {
f3554f4b 1166 ret = -ESPIPE;
2903ff01 1167 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1168 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
2903ff01 1169 fdput(f);
f3554f4b
GH
1170 }
1171
1172 if (ret > 0)
1173 add_wchar(current, ret);
1174 inc_syscw(current);
1175 return ret;
1176}
1177
f17d8b35
MT
1178SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1179 unsigned long, vlen)
1180{
1181 return do_readv(fd, vec, vlen, 0);
1182}
1183
1184SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1185 unsigned long, vlen)
1186{
1187 return do_writev(fd, vec, vlen, 0);
1188}
1189
1190SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1191 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1192{
1193 loff_t pos = pos_from_hilo(pos_h, pos_l);
1194
1195 return do_preadv(fd, vec, vlen, pos, 0);
1196}
1197
1198SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1199 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
ddef7ed2 1200 rwf_t, flags)
f17d8b35
MT
1201{
1202 loff_t pos = pos_from_hilo(pos_h, pos_l);
1203
1204 if (pos == -1)
1205 return do_readv(fd, vec, vlen, flags);
1206
1207 return do_preadv(fd, vec, vlen, pos, flags);
1208}
1209
1210SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1211 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1212{
1213 loff_t pos = pos_from_hilo(pos_h, pos_l);
1214
1215 return do_pwritev(fd, vec, vlen, pos, 0);
1216}
1217
1218SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1219 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
ddef7ed2 1220 rwf_t, flags)
f17d8b35
MT
1221{
1222 loff_t pos = pos_from_hilo(pos_h, pos_l);
1223
1224 if (pos == -1)
1225 return do_writev(fd, vec, vlen, flags);
1226
1227 return do_pwritev(fd, vec, vlen, pos, flags);
1228}
1229
72ec3516 1230#ifdef CONFIG_COMPAT
72ec3516
AV
1231static size_t compat_readv(struct file *file,
1232 const struct compat_iovec __user *vec,
ddef7ed2 1233 unsigned long vlen, loff_t *pos, rwf_t flags)
72ec3516 1234{
72ec3516
AV
1235 struct iovec iovstack[UIO_FASTIOV];
1236 struct iovec *iov = iovstack;
ac15ac06 1237 struct iov_iter iter;
72ec3516 1238 ssize_t ret;
72ec3516 1239
26c87fb7 1240 ret = compat_import_iovec(READ, vec, vlen, UIO_FASTIOV, &iov, &iter);
edab5fe3
CH
1241 if (ret >= 0) {
1242 ret = do_iter_read(file, &iter, pos, flags);
1243 kfree(iov);
1244 }
72ec3516
AV
1245 if (ret > 0)
1246 add_rchar(current, ret);
1247 inc_syscr(current);
1248 return ret;
1249}
1250
f17d8b35
MT
1251static size_t do_compat_readv(compat_ulong_t fd,
1252 const struct compat_iovec __user *vec,
ddef7ed2 1253 compat_ulong_t vlen, rwf_t flags)
72ec3516 1254{
9c225f26 1255 struct fd f = fdget_pos(fd);
72ec3516
AV
1256 ssize_t ret;
1257 loff_t pos;
1258
1259 if (!f.file)
1260 return -EBADF;
1261 pos = f.file->f_pos;
f17d8b35 1262 ret = compat_readv(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1263 if (ret >= 0)
1264 f.file->f_pos = pos;
9c225f26 1265 fdput_pos(f);
72ec3516 1266 return ret;
f17d8b35 1267
72ec3516
AV
1268}
1269
f17d8b35
MT
1270COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1271 const struct compat_iovec __user *,vec,
1272 compat_ulong_t, vlen)
1273{
1274 return do_compat_readv(fd, vec, vlen, 0);
1275}
1276
1277static long do_compat_preadv64(unsigned long fd,
378a10f3 1278 const struct compat_iovec __user *vec,
ddef7ed2 1279 unsigned long vlen, loff_t pos, rwf_t flags)
72ec3516
AV
1280{
1281 struct fd f;
1282 ssize_t ret;
1283
1284 if (pos < 0)
1285 return -EINVAL;
1286 f = fdget(fd);
1287 if (!f.file)
1288 return -EBADF;
1289 ret = -ESPIPE;
1290 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 1291 ret = compat_readv(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1292 fdput(f);
1293 return ret;
1294}
1295
378a10f3
HC
1296#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1297COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1298 const struct compat_iovec __user *,vec,
1299 unsigned long, vlen, loff_t, pos)
1300{
f17d8b35 1301 return do_compat_preadv64(fd, vec, vlen, pos, 0);
378a10f3
HC
1302}
1303#endif
1304
dfd948e3 1305COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
72ec3516 1306 const struct compat_iovec __user *,vec,
dfd948e3 1307 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1308{
1309 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1310
f17d8b35
MT
1311 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1312}
1313
3ebfd81f
L
1314#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1315COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1316 const struct compat_iovec __user *,vec,
ddef7ed2 1317 unsigned long, vlen, loff_t, pos, rwf_t, flags)
3ebfd81f 1318{
cc4b1242
AJ
1319 if (pos == -1)
1320 return do_compat_readv(fd, vec, vlen, flags);
1321
3ebfd81f
L
1322 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1323}
1324#endif
1325
f17d8b35
MT
1326COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1327 const struct compat_iovec __user *,vec,
1328 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
ddef7ed2 1329 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_readv(fd, vec, vlen, flags);
1335
1336 return do_compat_preadv64(fd, vec, vlen, pos, flags);
72ec3516
AV
1337}
1338
1339static size_t compat_writev(struct file *file,
1340 const struct compat_iovec __user *vec,
ddef7ed2 1341 unsigned long vlen, loff_t *pos, rwf_t flags)
72ec3516 1342{
26c87fb7
CH
1343 struct iovec iovstack[UIO_FASTIOV];
1344 struct iovec *iov = iovstack;
1345 struct iov_iter iter;
edab5fe3 1346 ssize_t ret;
72ec3516 1347
26c87fb7 1348 ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
edab5fe3 1349 if (ret >= 0) {
62473a2d 1350 file_start_write(file);
edab5fe3 1351 ret = do_iter_write(file, &iter, pos, flags);
62473a2d 1352 file_end_write(file);
edab5fe3
CH
1353 kfree(iov);
1354 }
72ec3516
AV
1355 if (ret > 0)
1356 add_wchar(current, ret);
1357 inc_syscw(current);
1358 return ret;
1359}
1360
f17d8b35
MT
1361static size_t do_compat_writev(compat_ulong_t fd,
1362 const struct compat_iovec __user* vec,
ddef7ed2 1363 compat_ulong_t vlen, rwf_t flags)
72ec3516 1364{
9c225f26 1365 struct fd f = fdget_pos(fd);
72ec3516
AV
1366 ssize_t ret;
1367 loff_t pos;
1368
1369 if (!f.file)
1370 return -EBADF;
1371 pos = f.file->f_pos;
f17d8b35 1372 ret = compat_writev(f.file, vec, vlen, &pos, flags);
5faf153e
AV
1373 if (ret >= 0)
1374 f.file->f_pos = pos;
9c225f26 1375 fdput_pos(f);
72ec3516
AV
1376 return ret;
1377}
1378
f17d8b35
MT
1379COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1380 const struct compat_iovec __user *, vec,
1381 compat_ulong_t, vlen)
1382{
1383 return do_compat_writev(fd, vec, vlen, 0);
1384}
1385
1386static long do_compat_pwritev64(unsigned long fd,
378a10f3 1387 const struct compat_iovec __user *vec,
ddef7ed2 1388 unsigned long vlen, loff_t pos, rwf_t flags)
72ec3516
AV
1389{
1390 struct fd f;
1391 ssize_t ret;
1392
1393 if (pos < 0)
1394 return -EINVAL;
1395 f = fdget(fd);
1396 if (!f.file)
1397 return -EBADF;
1398 ret = -ESPIPE;
1399 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1400 ret = compat_writev(f.file, vec, vlen, &pos, flags);
72ec3516
AV
1401 fdput(f);
1402 return ret;
1403}
1404
378a10f3
HC
1405#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1406COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1407 const struct compat_iovec __user *,vec,
1408 unsigned long, vlen, loff_t, pos)
1409{
f17d8b35 1410 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
378a10f3
HC
1411}
1412#endif
1413
dfd948e3 1414COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
72ec3516 1415 const struct compat_iovec __user *,vec,
dfd948e3 1416 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1417{
1418 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1419
f17d8b35 1420 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
72ec3516 1421}
f17d8b35 1422
3ebfd81f
L
1423#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1424COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1425 const struct compat_iovec __user *,vec,
ddef7ed2 1426 unsigned long, vlen, loff_t, pos, rwf_t, flags)
3ebfd81f 1427{
cc4b1242
AJ
1428 if (pos == -1)
1429 return do_compat_writev(fd, vec, vlen, flags);
1430
3ebfd81f
L
1431 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1432}
1433#endif
1434
f17d8b35
MT
1435COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1436 const struct compat_iovec __user *,vec,
ddef7ed2 1437 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags)
f17d8b35
MT
1438{
1439 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1440
1441 if (pos == -1)
1442 return do_compat_writev(fd, vec, vlen, flags);
1443
1444 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
72ec3516 1445}
f17d8b35 1446
72ec3516
AV
1447#endif
1448
19f4fc3a
AV
1449static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1450 size_t count, loff_t max)
1da177e4 1451{
2903ff01
AV
1452 struct fd in, out;
1453 struct inode *in_inode, *out_inode;
1da177e4 1454 loff_t pos;
7995bd28 1455 loff_t out_pos;
1da177e4 1456 ssize_t retval;
2903ff01 1457 int fl;
1da177e4
LT
1458
1459 /*
1460 * Get input file, and verify that it is ok..
1461 */
1462 retval = -EBADF;
2903ff01
AV
1463 in = fdget(in_fd);
1464 if (!in.file)
1da177e4 1465 goto out;
2903ff01 1466 if (!(in.file->f_mode & FMODE_READ))
1da177e4 1467 goto fput_in;
1da177e4 1468 retval = -ESPIPE;
7995bd28
AV
1469 if (!ppos) {
1470 pos = in.file->f_pos;
1471 } else {
1472 pos = *ppos;
2903ff01 1473 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 1474 goto fput_in;
7995bd28
AV
1475 }
1476 retval = rw_verify_area(READ, in.file, &pos, count);
e28cc715 1477 if (retval < 0)
1da177e4 1478 goto fput_in;
bc61384d
AV
1479 if (count > MAX_RW_COUNT)
1480 count = MAX_RW_COUNT;
1da177e4 1481
1da177e4
LT
1482 /*
1483 * Get output file, and verify that it is ok..
1484 */
1485 retval = -EBADF;
2903ff01
AV
1486 out = fdget(out_fd);
1487 if (!out.file)
1da177e4 1488 goto fput_in;
2903ff01 1489 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4 1490 goto fput_out;
496ad9aa
AV
1491 in_inode = file_inode(in.file);
1492 out_inode = file_inode(out.file);
7995bd28
AV
1493 out_pos = out.file->f_pos;
1494 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
e28cc715 1495 if (retval < 0)
1da177e4
LT
1496 goto fput_out;
1497
1da177e4
LT
1498 if (!max)
1499 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1500
1da177e4
LT
1501 if (unlikely(pos + count > max)) {
1502 retval = -EOVERFLOW;
1503 if (pos >= max)
1504 goto fput_out;
1505 count = max - pos;
1506 }
1507
d96e6e71 1508 fl = 0;
534f2aaa 1509#if 0
d96e6e71
JA
1510 /*
1511 * We need to debate whether we can enable this or not. The
1512 * man page documents EAGAIN return for the output at least,
1513 * and the application is arguably buggy if it doesn't expect
1514 * EAGAIN on a non-blocking file descriptor.
1515 */
2903ff01 1516 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 1517 fl = SPLICE_F_NONBLOCK;
534f2aaa 1518#endif
50cd2c57 1519 file_start_write(out.file);
7995bd28 1520 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
50cd2c57 1521 file_end_write(out.file);
1da177e4
LT
1522
1523 if (retval > 0) {
4b98d11b
AD
1524 add_rchar(current, retval);
1525 add_wchar(current, retval);
a68c2f12
SW
1526 fsnotify_access(in.file);
1527 fsnotify_modify(out.file);
7995bd28
AV
1528 out.file->f_pos = out_pos;
1529 if (ppos)
1530 *ppos = pos;
1531 else
1532 in.file->f_pos = pos;
1da177e4 1533 }
1da177e4 1534
4b98d11b
AD
1535 inc_syscr(current);
1536 inc_syscw(current);
7995bd28 1537 if (pos > max)
1da177e4
LT
1538 retval = -EOVERFLOW;
1539
1540fput_out:
2903ff01 1541 fdput(out);
1da177e4 1542fput_in:
2903ff01 1543 fdput(in);
1da177e4
LT
1544out:
1545 return retval;
1546}
1547
002c8976 1548SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
1549{
1550 loff_t pos;
1551 off_t off;
1552 ssize_t ret;
1553
1554 if (offset) {
1555 if (unlikely(get_user(off, offset)))
1556 return -EFAULT;
1557 pos = off;
1558 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1559 if (unlikely(put_user(pos, offset)))
1560 return -EFAULT;
1561 return ret;
1562 }
1563
1564 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1565}
1566
002c8976 1567SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1568{
1569 loff_t pos;
1570 ssize_t ret;
1571
1572 if (offset) {
1573 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1574 return -EFAULT;
1575 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1576 if (unlikely(put_user(pos, offset)))
1577 return -EFAULT;
1578 return ret;
1579 }
1580
1581 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1582}
19f4fc3a
AV
1583
1584#ifdef CONFIG_COMPAT
1585COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1586 compat_off_t __user *, offset, compat_size_t, count)
1587{
1588 loff_t pos;
1589 off_t off;
1590 ssize_t ret;
1591
1592 if (offset) {
1593 if (unlikely(get_user(off, offset)))
1594 return -EFAULT;
1595 pos = off;
1596 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1597 if (unlikely(put_user(pos, offset)))
1598 return -EFAULT;
1599 return ret;
1600 }
1601
1602 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1603}
1604
1605COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1606 compat_loff_t __user *, offset, compat_size_t, count)
1607{
1608 loff_t pos;
1609 ssize_t ret;
1610
1611 if (offset) {
1612 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1613 return -EFAULT;
1614 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1615 if (unlikely(put_user(pos, offset)))
1616 return -EFAULT;
1617 return ret;
1618 }
1619
1620 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1621}
1622#endif
29732938 1623
f16acc9d
DC
1624/**
1625 * generic_copy_file_range - copy data between two files
1626 * @file_in: file structure to read from
1627 * @pos_in: file offset to read from
1628 * @file_out: file structure to write data to
1629 * @pos_out: file offset to write data to
1630 * @len: amount of data to copy
1631 * @flags: copy flags
1632 *
1633 * This is a generic filesystem helper to copy data from one file to another.
1634 * It has no constraints on the source or destination file owners - the files
1635 * can belong to different superblocks and different filesystem types. Short
1636 * copies are allowed.
1637 *
1638 * This should be called from the @file_out filesystem, as per the
1639 * ->copy_file_range() method.
1640 *
1641 * Returns the number of bytes copied or a negative error indicating the
1642 * failure.
1643 */
1644
1645ssize_t generic_copy_file_range(struct file *file_in, loff_t pos_in,
1646 struct file *file_out, loff_t pos_out,
1647 size_t len, unsigned int flags)
1648{
1649 return do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1650 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1651}
1652EXPORT_SYMBOL(generic_copy_file_range);
1653
64bf5ff5
DC
1654static ssize_t do_copy_file_range(struct file *file_in, loff_t pos_in,
1655 struct file *file_out, loff_t pos_out,
1656 size_t len, unsigned int flags)
1657{
5dae222a
AG
1658 /*
1659 * Although we now allow filesystems to handle cross sb copy, passing
1660 * a file of the wrong filesystem type to filesystem driver can result
1661 * in an attempt to dereference the wrong type of ->private_data, so
1662 * avoid doing that until we really have a good reason. NFS defines
1663 * several different file_system_type structures, but they all end up
1664 * using the same ->copy_file_range() function pointer.
1665 */
1666 if (file_out->f_op->copy_file_range &&
1667 file_out->f_op->copy_file_range == file_in->f_op->copy_file_range)
64bf5ff5
DC
1668 return file_out->f_op->copy_file_range(file_in, pos_in,
1669 file_out, pos_out,
1670 len, flags);
1671
1672 return generic_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1673 flags);
1674}
1675
29732938
ZB
1676/*
1677 * copy_file_range() differs from regular file read and write in that it
1678 * specifically allows return partial success. When it does so is up to
1679 * the copy_file_range method.
1680 */
1681ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1682 struct file *file_out, loff_t pos_out,
1683 size_t len, unsigned int flags)
1684{
29732938
ZB
1685 ssize_t ret;
1686
1687 if (flags != 0)
1688 return -EINVAL;
1689
96e6e8f4
AG
1690 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len,
1691 flags);
a3171351
AG
1692 if (unlikely(ret))
1693 return ret;
11cbfb10 1694
29732938 1695 ret = rw_verify_area(READ, file_in, &pos_in, len);
bc61384d
AV
1696 if (unlikely(ret))
1697 return ret;
1698
1699 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1700 if (unlikely(ret))
29732938
ZB
1701 return ret;
1702
29732938
ZB
1703 if (len == 0)
1704 return 0;
1705
bfe219d3 1706 file_start_write(file_out);
29732938 1707
a76b5b04
CH
1708 /*
1709 * Try cloning first, this is supported by more file systems, and
1710 * more efficient if both clone and copy are supported (e.g. NFS).
1711 */
5dae222a
AG
1712 if (file_in->f_op->remap_file_range &&
1713 file_inode(file_in)->i_sb == file_inode(file_out)->i_sb) {
42ec3d4c
DW
1714 loff_t cloned;
1715
1716 cloned = file_in->f_op->remap_file_range(file_in, pos_in,
1717 file_out, pos_out,
eca3654e
DW
1718 min_t(loff_t, MAX_RW_COUNT, len),
1719 REMAP_FILE_CAN_SHORTEN);
42ec3d4c
DW
1720 if (cloned > 0) {
1721 ret = cloned;
a76b5b04
CH
1722 goto done;
1723 }
1724 }
1725
64bf5ff5
DC
1726 ret = do_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1727 flags);
1728 WARN_ON_ONCE(ret == -EOPNOTSUPP);
a76b5b04 1729done:
29732938
ZB
1730 if (ret > 0) {
1731 fsnotify_access(file_in);
1732 add_rchar(current, ret);
1733 fsnotify_modify(file_out);
1734 add_wchar(current, ret);
1735 }
a76b5b04 1736
29732938
ZB
1737 inc_syscr(current);
1738 inc_syscw(current);
1739
bfe219d3 1740 file_end_write(file_out);
29732938
ZB
1741
1742 return ret;
1743}
1744EXPORT_SYMBOL(vfs_copy_file_range);
1745
1746SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1747 int, fd_out, loff_t __user *, off_out,
1748 size_t, len, unsigned int, flags)
1749{
1750 loff_t pos_in;
1751 loff_t pos_out;
1752 struct fd f_in;
1753 struct fd f_out;
1754 ssize_t ret = -EBADF;
1755
1756 f_in = fdget(fd_in);
1757 if (!f_in.file)
1758 goto out2;
1759
1760 f_out = fdget(fd_out);
1761 if (!f_out.file)
1762 goto out1;
1763
1764 ret = -EFAULT;
1765 if (off_in) {
1766 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1767 goto out;
1768 } else {
1769 pos_in = f_in.file->f_pos;
1770 }
1771
1772 if (off_out) {
1773 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1774 goto out;
1775 } else {
1776 pos_out = f_out.file->f_pos;
1777 }
1778
1779 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1780 flags);
1781 if (ret > 0) {
1782 pos_in += ret;
1783 pos_out += ret;
1784
1785 if (off_in) {
1786 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1787 ret = -EFAULT;
1788 } else {
1789 f_in.file->f_pos = pos_in;
1790 }
1791
1792 if (off_out) {
1793 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1794 ret = -EFAULT;
1795 } else {
1796 f_out.file->f_pos = pos_out;
1797 }
1798 }
1799
1800out:
1801 fdput(f_out);
1802out1:
1803 fdput(f_in);
1804out2:
1805 return ret;
1806}
04b38d60 1807
42ec3d4c
DW
1808static int remap_verify_area(struct file *file, loff_t pos, loff_t len,
1809 bool write)
04b38d60
CH
1810{
1811 struct inode *inode = file_inode(file);
1812
42ec3d4c 1813 if (unlikely(pos < 0 || len < 0))
04b38d60
CH
1814 return -EINVAL;
1815
1816 if (unlikely((loff_t) (pos + len) < 0))
1817 return -EINVAL;
1818
1819 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1820 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1821 int retval;
1822
1823 retval = locks_mandatory_area(inode, file, pos, end,
1824 write ? F_WRLCK : F_RDLCK);
1825 if (retval < 0)
1826 return retval;
1827 }
1828
1829 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1830}
07d19dc9
DW
1831/*
1832 * Ensure that we don't remap a partial EOF block in the middle of something
1833 * else. Assume that the offsets have already been checked for block
1834 * alignment.
1835 *
a5e6ea18
FM
1836 * For clone we only link a partial EOF block above or at the destination file's
1837 * EOF. For deduplication we accept a partial EOF block only if it ends at the
1838 * destination file's EOF (can not link it into the middle of a file).
eca3654e
DW
1839 *
1840 * Shorten the request if possible.
07d19dc9
DW
1841 */
1842static int generic_remap_check_len(struct inode *inode_in,
1843 struct inode *inode_out,
1844 loff_t pos_out,
42ec3d4c 1845 loff_t *len,
a91ae49b 1846 unsigned int remap_flags)
07d19dc9
DW
1847{
1848 u64 blkmask = i_blocksize(inode_in) - 1;
eca3654e 1849 loff_t new_len = *len;
07d19dc9
DW
1850
1851 if ((*len & blkmask) == 0)
1852 return 0;
1853
a5e6ea18 1854 if (pos_out + *len < i_size_read(inode_out))
eca3654e 1855 new_len &= ~blkmask;
07d19dc9 1856
eca3654e
DW
1857 if (new_len == *len)
1858 return 0;
1859
1860 if (remap_flags & REMAP_FILE_CAN_SHORTEN) {
1861 *len = new_len;
1862 return 0;
1863 }
1864
1865 return (remap_flags & REMAP_FILE_DEDUP) ? -EBADE : -EINVAL;
07d19dc9 1866}
04b38d60 1867
edc58dd0 1868/* Read a page's worth of file data into the page cache. */
c32e5f39
DW
1869static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1870{
1871 struct page *page;
1872
1873 page = read_mapping_page(inode->i_mapping, offset >> PAGE_SHIFT, NULL);
1874 if (IS_ERR(page))
1875 return page;
1876 if (!PageUptodate(page)) {
1877 put_page(page);
1878 return ERR_PTR(-EIO);
1879 }
c32e5f39
DW
1880 return page;
1881}
1882
edc58dd0
DW
1883/*
1884 * Lock two pages, ensuring that we lock in offset order if the pages are from
1885 * the same file.
1886 */
1887static void vfs_lock_two_pages(struct page *page1, struct page *page2)
1888{
1889 /* Always lock in order of increasing index. */
1890 if (page1->index > page2->index)
1891 swap(page1, page2);
1892
1893 lock_page(page1);
1894 if (page1 != page2)
1895 lock_page(page2);
1896}
1897
1898/* Unlock two pages, being careful not to unlock the same page twice. */
1899static void vfs_unlock_two_pages(struct page *page1, struct page *page2)
1900{
1901 unlock_page(page1);
1902 if (page1 != page2)
1903 unlock_page(page2);
1904}
1905
c32e5f39
DW
1906/*
1907 * Compare extents of two files to see if they are the same.
1908 * Caller must have locked both inodes to prevent write races.
1909 */
1910static int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1911 struct inode *dest, loff_t destoff,
1912 loff_t len, bool *is_same)
1913{
1914 loff_t src_poff;
1915 loff_t dest_poff;
1916 void *src_addr;
1917 void *dest_addr;
1918 struct page *src_page;
1919 struct page *dest_page;
1920 loff_t cmp_len;
1921 bool same;
1922 int error;
1923
1924 error = -EINVAL;
1925 same = true;
1926 while (len) {
1927 src_poff = srcoff & (PAGE_SIZE - 1);
1928 dest_poff = destoff & (PAGE_SIZE - 1);
1929 cmp_len = min(PAGE_SIZE - src_poff,
1930 PAGE_SIZE - dest_poff);
1931 cmp_len = min(cmp_len, len);
1932 if (cmp_len <= 0)
1933 goto out_error;
1934
1935 src_page = vfs_dedupe_get_page(src, srcoff);
1936 if (IS_ERR(src_page)) {
1937 error = PTR_ERR(src_page);
1938 goto out_error;
1939 }
1940 dest_page = vfs_dedupe_get_page(dest, destoff);
1941 if (IS_ERR(dest_page)) {
1942 error = PTR_ERR(dest_page);
c32e5f39
DW
1943 put_page(src_page);
1944 goto out_error;
1945 }
edc58dd0
DW
1946
1947 vfs_lock_two_pages(src_page, dest_page);
1948
1949 /*
1950 * Now that we've locked both pages, make sure they're still
1951 * mapped to the file data we're interested in. If not,
1952 * someone is invalidating pages on us and we lose.
1953 */
1954 if (!PageUptodate(src_page) || !PageUptodate(dest_page) ||
1955 src_page->mapping != src->i_mapping ||
1956 dest_page->mapping != dest->i_mapping) {
1957 same = false;
1958 goto unlock;
1959 }
1960
c32e5f39
DW
1961 src_addr = kmap_atomic(src_page);
1962 dest_addr = kmap_atomic(dest_page);
1963
1964 flush_dcache_page(src_page);
1965 flush_dcache_page(dest_page);
1966
1967 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1968 same = false;
1969
1970 kunmap_atomic(dest_addr);
1971 kunmap_atomic(src_addr);
edc58dd0
DW
1972unlock:
1973 vfs_unlock_two_pages(src_page, dest_page);
c32e5f39
DW
1974 put_page(dest_page);
1975 put_page(src_page);
1976
1977 if (!same)
1978 break;
1979
1980 srcoff += cmp_len;
1981 destoff += cmp_len;
1982 len -= cmp_len;
1983 }
1984
1985 *is_same = same;
1986 return 0;
1987
1988out_error:
1989 return error;
1990}
04b38d60 1991
876bec6f
DW
1992/*
1993 * Check that the two inodes are eligible for cloning, the ranges make
1994 * sense, and then flush all dirty data. Caller must ensure that the
1995 * inodes have been locked against any other modifications.
22725ce4 1996 *
8c5c836b
DW
1997 * If there's an error, then the usual negative error code is returned.
1998 * Otherwise returns 0 with *len set to the request length.
876bec6f 1999 */
a83ab01a
DW
2000int generic_remap_file_range_prep(struct file *file_in, loff_t pos_in,
2001 struct file *file_out, loff_t pos_out,
42ec3d4c 2002 loff_t *len, unsigned int remap_flags)
876bec6f 2003{
1383a7ed
DW
2004 struct inode *inode_in = file_inode(file_in);
2005 struct inode *inode_out = file_inode(file_out);
876bec6f
DW
2006 bool same_inode = (inode_in == inode_out);
2007 int ret;
2008
2009 /* Don't touch certain kinds of inodes */
2010 if (IS_IMMUTABLE(inode_out))
2011 return -EPERM;
2012
2013 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
2014 return -ETXTBSY;
2015
2016 /* Don't reflink dirs, pipes, sockets... */
2017 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
2018 return -EISDIR;
2019 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
2020 return -EINVAL;
2021
876bec6f
DW
2022 /* Zero length dedupe exits immediately; reflink goes to EOF. */
2023 if (*len == 0) {
1383a7ed
DW
2024 loff_t isize = i_size_read(inode_in);
2025
a91ae49b 2026 if ((remap_flags & REMAP_FILE_DEDUP) || pos_in == isize)
876bec6f 2027 return 0;
22725ce4
DW
2028 if (pos_in > isize)
2029 return -EINVAL;
876bec6f 2030 *len = isize - pos_in;
2c5773f1
DW
2031 if (*len == 0)
2032 return 0;
876bec6f
DW
2033 }
2034
1383a7ed
DW
2035 /* Check that we don't violate system file offset limits. */
2036 ret = generic_remap_checks(file_in, pos_in, file_out, pos_out, len,
3d28193e 2037 remap_flags);
1383a7ed
DW
2038 if (ret)
2039 return ret;
876bec6f
DW
2040
2041 /* Wait for the completion of any pending IOs on both files */
2042 inode_dio_wait(inode_in);
2043 if (!same_inode)
2044 inode_dio_wait(inode_out);
2045
2046 ret = filemap_write_and_wait_range(inode_in->i_mapping,
2047 pos_in, pos_in + *len - 1);
2048 if (ret)
2049 return ret;
2050
2051 ret = filemap_write_and_wait_range(inode_out->i_mapping,
2052 pos_out, pos_out + *len - 1);
2053 if (ret)
2054 return ret;
2055
2056 /*
2057 * Check that the extents are the same.
2058 */
a91ae49b 2059 if (remap_flags & REMAP_FILE_DEDUP) {
876bec6f
DW
2060 bool is_same = false;
2061
2062 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
2063 inode_out, pos_out, *len, &is_same);
2064 if (ret)
2065 return ret;
2066 if (!is_same)
2067 return -EBADE;
2068 }
2069
07d19dc9 2070 ret = generic_remap_check_len(inode_in, inode_out, pos_out, len,
a91ae49b 2071 remap_flags);
07d19dc9
DW
2072 if (ret)
2073 return ret;
2074
8dde90bc 2075 /* If can't alter the file contents, we're done. */
e38f7f53
AG
2076 if (!(remap_flags & REMAP_FILE_DEDUP))
2077 ret = file_modified(file_out);
8dde90bc 2078
e38f7f53 2079 return ret;
876bec6f 2080}
a83ab01a 2081EXPORT_SYMBOL(generic_remap_file_range_prep);
876bec6f 2082
42ec3d4c 2083loff_t do_clone_file_range(struct file *file_in, loff_t pos_in,
452ce659
DW
2084 struct file *file_out, loff_t pos_out,
2085 loff_t len, unsigned int remap_flags)
04b38d60 2086{
42ec3d4c 2087 loff_t ret;
04b38d60 2088
6744557b 2089 WARN_ON_ONCE(remap_flags & REMAP_FILE_DEDUP);
04b38d60 2090
913b86e9
AG
2091 /*
2092 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
2093 * the same mount. Practically, they only need to be on the same file
2094 * system.
2095 */
a3171351 2096 if (file_inode(file_in)->i_sb != file_inode(file_out)->i_sb)
04b38d60
CH
2097 return -EXDEV;
2098
a3171351
AG
2099 ret = generic_file_rw_checks(file_in, file_out);
2100 if (ret < 0)
2101 return ret;
04b38d60 2102
2e5dfc99 2103 if (!file_in->f_op->remap_file_range)
0fcbf996
CH
2104 return -EOPNOTSUPP;
2105
6095028b 2106 ret = remap_verify_area(file_in, pos_in, len, false);
04b38d60
CH
2107 if (ret)
2108 return ret;
2109
6095028b 2110 ret = remap_verify_area(file_out, pos_out, len, true);
04b38d60
CH
2111 if (ret)
2112 return ret;
2113
2e5dfc99 2114 ret = file_in->f_op->remap_file_range(file_in, pos_in,
452ce659 2115 file_out, pos_out, len, remap_flags);
42ec3d4c
DW
2116 if (ret < 0)
2117 return ret;
04b38d60 2118
42ec3d4c
DW
2119 fsnotify_access(file_in);
2120 fsnotify_modify(file_out);
04b38d60
CH
2121 return ret;
2122}
a725356b
AG
2123EXPORT_SYMBOL(do_clone_file_range);
2124
42ec3d4c 2125loff_t vfs_clone_file_range(struct file *file_in, loff_t pos_in,
452ce659
DW
2126 struct file *file_out, loff_t pos_out,
2127 loff_t len, unsigned int remap_flags)
a725356b 2128{
42ec3d4c 2129 loff_t ret;
a725356b
AG
2130
2131 file_start_write(file_out);
452ce659
DW
2132 ret = do_clone_file_range(file_in, pos_in, file_out, pos_out, len,
2133 remap_flags);
a725356b
AG
2134 file_end_write(file_out);
2135
2136 return ret;
2137}
04b38d60 2138EXPORT_SYMBOL(vfs_clone_file_range);
54dbc151 2139
5de4480a
MF
2140/* Check whether we are allowed to dedupe the destination file */
2141static bool allow_file_dedupe(struct file *file)
2142{
2143 if (capable(CAP_SYS_ADMIN))
2144 return true;
2145 if (file->f_mode & FMODE_WRITE)
2146 return true;
2147 if (uid_eq(current_fsuid(), file_inode(file)->i_uid))
2148 return true;
2149 if (!inode_permission(file_inode(file), MAY_WRITE))
2150 return true;
2151 return false;
2152}
2153
42ec3d4c
DW
2154loff_t vfs_dedupe_file_range_one(struct file *src_file, loff_t src_pos,
2155 struct file *dst_file, loff_t dst_pos,
df365836 2156 loff_t len, unsigned int remap_flags)
1b4f42a1 2157{
42ec3d4c 2158 loff_t ret;
1b4f42a1 2159
eca3654e
DW
2160 WARN_ON_ONCE(remap_flags & ~(REMAP_FILE_DEDUP |
2161 REMAP_FILE_CAN_SHORTEN));
1b4f42a1
MS
2162
2163 ret = mnt_want_write_file(dst_file);
2164 if (ret)
2165 return ret;
2166
6095028b 2167 ret = remap_verify_area(dst_file, dst_pos, len, true);
1b4f42a1
MS
2168 if (ret < 0)
2169 goto out_drop_write;
2170
85c95f20 2171 ret = -EPERM;
5de4480a 2172 if (!allow_file_dedupe(dst_file))
1b4f42a1
MS
2173 goto out_drop_write;
2174
2175 ret = -EXDEV;
2176 if (src_file->f_path.mnt != dst_file->f_path.mnt)
2177 goto out_drop_write;
2178
2179 ret = -EISDIR;
2180 if (S_ISDIR(file_inode(dst_file)->i_mode))
2181 goto out_drop_write;
2182
2183 ret = -EINVAL;
2e5dfc99 2184 if (!dst_file->f_op->remap_file_range)
1b4f42a1
MS
2185 goto out_drop_write;
2186
9aae2050
DW
2187 if (len == 0) {
2188 ret = 0;
2189 goto out_drop_write;
2190 }
2191
2e5dfc99 2192 ret = dst_file->f_op->remap_file_range(src_file, src_pos, dst_file,
df365836 2193 dst_pos, len, remap_flags | REMAP_FILE_DEDUP);
1b4f42a1
MS
2194out_drop_write:
2195 mnt_drop_write_file(dst_file);
2196
2197 return ret;
2198}
f1825366 2199EXPORT_SYMBOL(vfs_dedupe_file_range_one);
1b4f42a1 2200
54dbc151
DW
2201int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
2202{
2203 struct file_dedupe_range_info *info;
2204 struct inode *src = file_inode(file);
2205 u64 off;
2206 u64 len;
2207 int i;
2208 int ret;
54dbc151 2209 u16 count = same->dest_count;
42ec3d4c 2210 loff_t deduped;
54dbc151
DW
2211
2212 if (!(file->f_mode & FMODE_READ))
2213 return -EINVAL;
2214
2215 if (same->reserved1 || same->reserved2)
2216 return -EINVAL;
2217
2218 off = same->src_offset;
2219 len = same->src_length;
2220
54dbc151 2221 if (S_ISDIR(src->i_mode))
494633fa 2222 return -EISDIR;
54dbc151 2223
54dbc151 2224 if (!S_ISREG(src->i_mode))
494633fa
DC
2225 return -EINVAL;
2226
2227 if (!file->f_op->remap_file_range)
2228 return -EOPNOTSUPP;
54dbc151 2229
6095028b 2230 ret = remap_verify_area(file, off, len, false);
54dbc151 2231 if (ret < 0)
494633fa 2232 return ret;
54dbc151
DW
2233 ret = 0;
2234
22725ce4
DW
2235 if (off + len > i_size_read(src))
2236 return -EINVAL;
2237
92b66d2c
MS
2238 /* Arbitrary 1G limit on a single dedupe request, can be raised. */
2239 len = min_t(u64, len, 1 << 30);
2240
54dbc151
DW
2241 /* pre-format output fields to sane values */
2242 for (i = 0; i < count; i++) {
2243 same->info[i].bytes_deduped = 0ULL;
2244 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2245 }
2246
2247 for (i = 0, info = same->info; i < count; i++, info++) {
54dbc151 2248 struct fd dst_fd = fdget(info->dest_fd);
1b4f42a1 2249 struct file *dst_file = dst_fd.file;
54dbc151 2250
54dbc151
DW
2251 if (!dst_file) {
2252 info->status = -EBADF;
2253 goto next_loop;
2254 }
54dbc151
DW
2255
2256 if (info->reserved) {
2257 info->status = -EINVAL;
1b4f42a1 2258 goto next_fdput;
54dbc151
DW
2259 }
2260
1b4f42a1 2261 deduped = vfs_dedupe_file_range_one(file, off, dst_file,
df365836 2262 info->dest_offset, len,
eca3654e 2263 REMAP_FILE_CAN_SHORTEN);
1b4f42a1
MS
2264 if (deduped == -EBADE)
2265 info->status = FILE_DEDUPE_RANGE_DIFFERS;
2266 else if (deduped < 0)
2267 info->status = deduped;
2268 else
2269 info->bytes_deduped = len;
2270
22762711 2271next_fdput:
54dbc151 2272 fdput(dst_fd);
22762711 2273next_loop:
e62e560f 2274 if (fatal_signal_pending(current))
494633fa 2275 break;
54dbc151 2276 }
54dbc151
DW
2277 return ret;
2278}
2279EXPORT_SYMBOL(vfs_dedupe_file_range);