]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - fs/read_write.c
bnxt_en: fix ternary sign extension bug in bnxt_show_temp()
[mirror_ubuntu-hirsute-kernel.git] / fs / read_write.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * linux/fs/read_write.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8 #include <linux/slab.h>
9 #include <linux/stat.h>
10 #include <linux/sched/xacct.h>
11 #include <linux/fcntl.h>
12 #include <linux/file.h>
13 #include <linux/uio.h>
14 #include <linux/fsnotify.h>
15 #include <linux/security.h>
16 #include <linux/export.h>
17 #include <linux/syscalls.h>
18 #include <linux/pagemap.h>
19 #include <linux/splice.h>
20 #include <linux/compat.h>
21 #include <linux/mount.h>
22 #include <linux/fs.h>
23 #include "internal.h"
24
25 #include <linux/uaccess.h>
26 #include <asm/unistd.h>
27
28 const struct file_operations generic_ro_fops = {
29 .llseek = generic_file_llseek,
30 .read_iter = generic_file_read_iter,
31 .mmap = generic_file_readonly_mmap,
32 .splice_read = generic_file_splice_read,
33 };
34
35 EXPORT_SYMBOL(generic_ro_fops);
36
37 static inline bool unsigned_offsets(struct file *file)
38 {
39 return file->f_mode & FMODE_UNSIGNED_OFFSET;
40 }
41
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 */
54 loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
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 }
67 EXPORT_SYMBOL(vfs_setpos);
68
69 /**
70 * generic_file_llseek_size - generic llseek implementation for regular files
71 * @file: file structure to seek on
72 * @offset: file offset to seek to
73 * @whence: type of seek
74 * @size: max size of this file in file system
75 * @eof: offset used for SEEK_END position
76 *
77 * This is a variant of generic_file_llseek that allows passing in a custom
78 * maximum file size and a custom EOF position, for e.g. hashed directories
79 *
80 * Synchronization:
81 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
82 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
83 * read/writes behave like SEEK_SET against seeks.
84 */
85 loff_t
86 generic_file_llseek_size(struct file *file, loff_t offset, int whence,
87 loff_t maxsize, loff_t eof)
88 {
89 switch (whence) {
90 case SEEK_END:
91 offset += eof;
92 break;
93 case SEEK_CUR:
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;
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);
108 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
109 spin_unlock(&file->f_lock);
110 return offset;
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 */
116 if ((unsigned long long)offset >= eof)
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 */
124 if ((unsigned long long)offset >= eof)
125 return -ENXIO;
126 offset = eof;
127 break;
128 }
129
130 return vfs_setpos(file, offset, maxsize);
131 }
132 EXPORT_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
138 * @whence: type of seek
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
142 * @offset and @whence.
143 */
144 loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
145 {
146 struct inode *inode = file->f_mapping->host;
147
148 return generic_file_llseek_size(file, offset, whence,
149 inode->i_sb->s_maxbytes,
150 i_size_read(inode));
151 }
152 EXPORT_SYMBOL(generic_file_llseek);
153
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 */
162 loff_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 }
172 EXPORT_SYMBOL(fixed_size_llseek);
173
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 */
181 loff_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,
186 OFFSET_MAX, 0);
187 default:
188 return -EINVAL;
189 }
190 }
191 EXPORT_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 */
201 loff_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 }
211 EXPORT_SYMBOL(no_seek_end_llseek_size);
212
213 /**
214 * noop_llseek - No Operation Performed llseek implementation
215 * @file: file structure to seek on
216 * @offset: file offset to seek to
217 * @whence: type of seek
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 */
224 loff_t noop_llseek(struct file *file, loff_t offset, int whence)
225 {
226 return file->f_pos;
227 }
228 EXPORT_SYMBOL(noop_llseek);
229
230 loff_t no_llseek(struct file *file, loff_t offset, int whence)
231 {
232 return -ESPIPE;
233 }
234 EXPORT_SYMBOL(no_llseek);
235
236 loff_t default_llseek(struct file *file, loff_t offset, int whence)
237 {
238 struct inode *inode = file_inode(file);
239 loff_t retval;
240
241 inode_lock(inode);
242 switch (whence) {
243 case SEEK_END:
244 offset += i_size_read(inode);
245 break;
246 case SEEK_CUR:
247 if (offset == 0) {
248 retval = file->f_pos;
249 goto out;
250 }
251 offset += file->f_pos;
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 */
259 if (offset >= inode->i_size) {
260 retval = -ENXIO;
261 goto out;
262 }
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 */
270 if (offset >= inode->i_size) {
271 retval = -ENXIO;
272 goto out;
273 }
274 offset = inode->i_size;
275 break;
276 }
277 retval = -EINVAL;
278 if (offset >= 0 || unsigned_offsets(file)) {
279 if (offset != file->f_pos) {
280 file->f_pos = offset;
281 file->f_version = 0;
282 }
283 retval = offset;
284 }
285 out:
286 inode_unlock(inode);
287 return retval;
288 }
289 EXPORT_SYMBOL(default_llseek);
290
291 loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
292 {
293 loff_t (*fn)(struct file *, loff_t, int);
294
295 fn = no_llseek;
296 if (file->f_mode & FMODE_LSEEK) {
297 if (file->f_op->llseek)
298 fn = file->f_op->llseek;
299 }
300 return fn(file, offset, whence);
301 }
302 EXPORT_SYMBOL(vfs_llseek);
303
304 static off_t ksys_lseek(unsigned int fd, off_t offset, unsigned int whence)
305 {
306 off_t retval;
307 struct fd f = fdget_pos(fd);
308 if (!f.file)
309 return -EBADF;
310
311 retval = -EINVAL;
312 if (whence <= SEEK_MAX) {
313 loff_t res = vfs_llseek(f.file, offset, whence);
314 retval = res;
315 if (res != (loff_t)retval)
316 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
317 }
318 fdput_pos(f);
319 return retval;
320 }
321
322 SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
323 {
324 return ksys_lseek(fd, offset, whence);
325 }
326
327 #ifdef CONFIG_COMPAT
328 COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
329 {
330 return ksys_lseek(fd, offset, whence);
331 }
332 #endif
333
334 #if !defined(CONFIG_64BIT) || defined(CONFIG_COMPAT) || \
335 defined(__ARCH_WANT_SYS_LLSEEK)
336 SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
337 unsigned long, offset_low, loff_t __user *, result,
338 unsigned int, whence)
339 {
340 int retval;
341 struct fd f = fdget_pos(fd);
342 loff_t offset;
343
344 if (!f.file)
345 return -EBADF;
346
347 retval = -EINVAL;
348 if (whence > SEEK_MAX)
349 goto out_putf;
350
351 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
352 whence);
353
354 retval = (int)offset;
355 if (offset >= 0) {
356 retval = -EFAULT;
357 if (!copy_to_user(result, &offset, sizeof(offset)))
358 retval = 0;
359 }
360 out_putf:
361 fdput_pos(f);
362 return retval;
363 }
364 #endif
365
366 int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
367 {
368 struct inode *inode;
369 int retval = -EINVAL;
370
371 inode = file_inode(file);
372 if (unlikely((ssize_t) count < 0))
373 return retval;
374
375 /*
376 * ranged mandatory locking does not apply to streams - it makes sense
377 * only for files where position has a meaning.
378 */
379 if (ppos) {
380 loff_t pos = *ppos;
381
382 if (unlikely(pos < 0)) {
383 if (!unsigned_offsets(file))
384 return retval;
385 if (count >= -pos) /* both values are in 0..LLONG_MAX */
386 return -EOVERFLOW;
387 } else if (unlikely((loff_t) (pos + count) < 0)) {
388 if (!unsigned_offsets(file))
389 return retval;
390 }
391
392 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
393 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
394 read_write == READ ? F_RDLCK : F_WRLCK);
395 if (retval < 0)
396 return retval;
397 }
398 }
399
400 return security_file_permission(file,
401 read_write == READ ? MAY_READ : MAY_WRITE);
402 }
403
404 static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
405 {
406 struct iovec iov = { .iov_base = buf, .iov_len = len };
407 struct kiocb kiocb;
408 struct iov_iter iter;
409 ssize_t ret;
410
411 init_sync_kiocb(&kiocb, filp);
412 kiocb.ki_pos = (ppos ? *ppos : 0);
413 iov_iter_init(&iter, READ, &iov, 1, len);
414
415 ret = call_read_iter(filp, &kiocb, &iter);
416 BUG_ON(ret == -EIOCBQUEUED);
417 if (ppos)
418 *ppos = kiocb.ki_pos;
419 return ret;
420 }
421
422 static int warn_unsupported(struct file *file, const char *op)
423 {
424 pr_warn_ratelimited(
425 "kernel %s not supported for file %pD4 (pid: %d comm: %.20s)\n",
426 op, file, current->pid, current->comm);
427 return -EINVAL;
428 }
429
430 ssize_t __kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
431 {
432 struct kvec iov = {
433 .iov_base = buf,
434 .iov_len = min_t(size_t, count, MAX_RW_COUNT),
435 };
436 struct kiocb kiocb;
437 struct iov_iter iter;
438 ssize_t ret;
439
440 if (WARN_ON_ONCE(!(file->f_mode & FMODE_READ)))
441 return -EINVAL;
442 if (!(file->f_mode & FMODE_CAN_READ))
443 return -EINVAL;
444 /*
445 * Also fail if ->read_iter and ->read are both wired up as that
446 * implies very convoluted semantics.
447 */
448 if (unlikely(!file->f_op->read_iter || file->f_op->read))
449 return warn_unsupported(file, "read");
450
451 init_sync_kiocb(&kiocb, file);
452 kiocb.ki_pos = pos ? *pos : 0;
453 iov_iter_kvec(&iter, READ, &iov, 1, iov.iov_len);
454 ret = file->f_op->read_iter(&kiocb, &iter);
455 if (ret > 0) {
456 if (pos)
457 *pos = kiocb.ki_pos;
458 fsnotify_access(file);
459 add_rchar(current, ret);
460 }
461 inc_syscr(current);
462 return ret;
463 }
464
465 ssize_t kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
466 {
467 ssize_t ret;
468
469 ret = rw_verify_area(READ, file, pos, count);
470 if (ret)
471 return ret;
472 return __kernel_read(file, buf, count, pos);
473 }
474 EXPORT_SYMBOL(kernel_read);
475
476 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
477 {
478 ssize_t ret;
479
480 if (!(file->f_mode & FMODE_READ))
481 return -EBADF;
482 if (!(file->f_mode & FMODE_CAN_READ))
483 return -EINVAL;
484 if (unlikely(!access_ok(buf, count)))
485 return -EFAULT;
486
487 ret = rw_verify_area(READ, file, pos, count);
488 if (ret)
489 return ret;
490 if (count > MAX_RW_COUNT)
491 count = MAX_RW_COUNT;
492
493 if (file->f_op->read)
494 ret = file->f_op->read(file, buf, count, pos);
495 else if (file->f_op->read_iter)
496 ret = new_sync_read(file, buf, count, pos);
497 else
498 ret = -EINVAL;
499 if (ret > 0) {
500 fsnotify_access(file);
501 add_rchar(current, ret);
502 }
503 inc_syscr(current);
504 return ret;
505 }
506 EXPORT_SYMBOL_GPL(vfs_read);
507
508 static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
509 {
510 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
511 struct kiocb kiocb;
512 struct iov_iter iter;
513 ssize_t ret;
514
515 init_sync_kiocb(&kiocb, filp);
516 kiocb.ki_pos = (ppos ? *ppos : 0);
517 iov_iter_init(&iter, WRITE, &iov, 1, len);
518
519 ret = call_write_iter(filp, &kiocb, &iter);
520 BUG_ON(ret == -EIOCBQUEUED);
521 if (ret > 0 && ppos)
522 *ppos = kiocb.ki_pos;
523 return ret;
524 }
525
526 /* caller is responsible for file_start_write/file_end_write */
527 ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t *pos)
528 {
529 struct kvec iov = {
530 .iov_base = (void *)buf,
531 .iov_len = min_t(size_t, count, MAX_RW_COUNT),
532 };
533 struct kiocb kiocb;
534 struct iov_iter iter;
535 ssize_t ret;
536
537 if (WARN_ON_ONCE(!(file->f_mode & FMODE_WRITE)))
538 return -EBADF;
539 if (!(file->f_mode & FMODE_CAN_WRITE))
540 return -EINVAL;
541 /*
542 * Also fail if ->write_iter and ->write are both wired up as that
543 * implies very convoluted semantics.
544 */
545 if (unlikely(!file->f_op->write_iter || file->f_op->write))
546 return warn_unsupported(file, "write");
547
548 init_sync_kiocb(&kiocb, file);
549 kiocb.ki_pos = pos ? *pos : 0;
550 iov_iter_kvec(&iter, WRITE, &iov, 1, iov.iov_len);
551 ret = file->f_op->write_iter(&kiocb, &iter);
552 if (ret > 0) {
553 if (pos)
554 *pos = kiocb.ki_pos;
555 fsnotify_modify(file);
556 add_wchar(current, ret);
557 }
558 inc_syscw(current);
559 return ret;
560 }
561 /*
562 * This "EXPORT_SYMBOL_GPL()" is more of a "EXPORT_SYMBOL_DONTUSE()",
563 * but autofs is one of the few internal kernel users that actually
564 * wants this _and_ can be built as a module. So we need to export
565 * this symbol for autofs, even though it really isn't appropriate
566 * for any other kernel modules.
567 */
568 EXPORT_SYMBOL_GPL(__kernel_write);
569
570 ssize_t kernel_write(struct file *file, const void *buf, size_t count,
571 loff_t *pos)
572 {
573 ssize_t ret;
574
575 ret = rw_verify_area(WRITE, file, pos, count);
576 if (ret)
577 return ret;
578
579 file_start_write(file);
580 ret = __kernel_write(file, buf, count, pos);
581 file_end_write(file);
582 return ret;
583 }
584 EXPORT_SYMBOL(kernel_write);
585
586 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
587 {
588 ssize_t ret;
589
590 if (!(file->f_mode & FMODE_WRITE))
591 return -EBADF;
592 if (!(file->f_mode & FMODE_CAN_WRITE))
593 return -EINVAL;
594 if (unlikely(!access_ok(buf, count)))
595 return -EFAULT;
596
597 ret = rw_verify_area(WRITE, file, pos, count);
598 if (ret)
599 return ret;
600 if (count > MAX_RW_COUNT)
601 count = MAX_RW_COUNT;
602 file_start_write(file);
603 if (file->f_op->write)
604 ret = file->f_op->write(file, buf, count, pos);
605 else if (file->f_op->write_iter)
606 ret = new_sync_write(file, buf, count, pos);
607 else
608 ret = -EINVAL;
609 if (ret > 0) {
610 fsnotify_modify(file);
611 add_wchar(current, ret);
612 }
613 inc_syscw(current);
614 file_end_write(file);
615 return ret;
616 }
617 EXPORT_SYMBOL_GPL(vfs_write);
618
619 /* file_ppos returns &file->f_pos or NULL if file is stream */
620 static inline loff_t *file_ppos(struct file *file)
621 {
622 return file->f_mode & FMODE_STREAM ? NULL : &file->f_pos;
623 }
624
625 ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count)
626 {
627 struct fd f = fdget_pos(fd);
628 ssize_t ret = -EBADF;
629
630 if (f.file) {
631 loff_t pos, *ppos = file_ppos(f.file);
632 if (ppos) {
633 pos = *ppos;
634 ppos = &pos;
635 }
636 ret = vfs_read(f.file, buf, count, ppos);
637 if (ret >= 0 && ppos)
638 f.file->f_pos = pos;
639 fdput_pos(f);
640 }
641 return ret;
642 }
643
644 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
645 {
646 return ksys_read(fd, buf, count);
647 }
648
649 ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count)
650 {
651 struct fd f = fdget_pos(fd);
652 ssize_t ret = -EBADF;
653
654 if (f.file) {
655 loff_t pos, *ppos = file_ppos(f.file);
656 if (ppos) {
657 pos = *ppos;
658 ppos = &pos;
659 }
660 ret = vfs_write(f.file, buf, count, ppos);
661 if (ret >= 0 && ppos)
662 f.file->f_pos = pos;
663 fdput_pos(f);
664 }
665
666 return ret;
667 }
668
669 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
670 size_t, count)
671 {
672 return ksys_write(fd, buf, count);
673 }
674
675 ssize_t ksys_pread64(unsigned int fd, char __user *buf, size_t count,
676 loff_t pos)
677 {
678 struct fd f;
679 ssize_t ret = -EBADF;
680
681 if (pos < 0)
682 return -EINVAL;
683
684 f = fdget(fd);
685 if (f.file) {
686 ret = -ESPIPE;
687 if (f.file->f_mode & FMODE_PREAD)
688 ret = vfs_read(f.file, buf, count, &pos);
689 fdput(f);
690 }
691
692 return ret;
693 }
694
695 SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
696 size_t, count, loff_t, pos)
697 {
698 return ksys_pread64(fd, buf, count, pos);
699 }
700
701 ssize_t ksys_pwrite64(unsigned int fd, const char __user *buf,
702 size_t count, loff_t pos)
703 {
704 struct fd f;
705 ssize_t ret = -EBADF;
706
707 if (pos < 0)
708 return -EINVAL;
709
710 f = fdget(fd);
711 if (f.file) {
712 ret = -ESPIPE;
713 if (f.file->f_mode & FMODE_PWRITE)
714 ret = vfs_write(f.file, buf, count, &pos);
715 fdput(f);
716 }
717
718 return ret;
719 }
720
721 SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
722 size_t, count, loff_t, pos)
723 {
724 return ksys_pwrite64(fd, buf, count, pos);
725 }
726
727 static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
728 loff_t *ppos, int type, rwf_t flags)
729 {
730 struct kiocb kiocb;
731 ssize_t ret;
732
733 init_sync_kiocb(&kiocb, filp);
734 ret = kiocb_set_rw_flags(&kiocb, flags);
735 if (ret)
736 return ret;
737 kiocb.ki_pos = (ppos ? *ppos : 0);
738
739 if (type == READ)
740 ret = call_read_iter(filp, &kiocb, iter);
741 else
742 ret = call_write_iter(filp, &kiocb, iter);
743 BUG_ON(ret == -EIOCBQUEUED);
744 if (ppos)
745 *ppos = kiocb.ki_pos;
746 return ret;
747 }
748
749 /* Do it by hand, with file-ops */
750 static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
751 loff_t *ppos, int type, rwf_t flags)
752 {
753 ssize_t ret = 0;
754
755 if (flags & ~RWF_HIPRI)
756 return -EOPNOTSUPP;
757
758 while (iov_iter_count(iter)) {
759 struct iovec iovec = iov_iter_iovec(iter);
760 ssize_t nr;
761
762 if (type == READ) {
763 nr = filp->f_op->read(filp, iovec.iov_base,
764 iovec.iov_len, ppos);
765 } else {
766 nr = filp->f_op->write(filp, iovec.iov_base,
767 iovec.iov_len, ppos);
768 }
769
770 if (nr < 0) {
771 if (!ret)
772 ret = nr;
773 break;
774 }
775 ret += nr;
776 if (nr != iovec.iov_len)
777 break;
778 iov_iter_advance(iter, nr);
779 }
780
781 return ret;
782 }
783
784 static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
785 loff_t *pos, rwf_t flags)
786 {
787 size_t tot_len;
788 ssize_t ret = 0;
789
790 if (!(file->f_mode & FMODE_READ))
791 return -EBADF;
792 if (!(file->f_mode & FMODE_CAN_READ))
793 return -EINVAL;
794
795 tot_len = iov_iter_count(iter);
796 if (!tot_len)
797 goto out;
798 ret = rw_verify_area(READ, file, pos, tot_len);
799 if (ret < 0)
800 return ret;
801
802 if (file->f_op->read_iter)
803 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
804 else
805 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
806 out:
807 if (ret >= 0)
808 fsnotify_access(file);
809 return ret;
810 }
811
812 ssize_t vfs_iocb_iter_read(struct file *file, struct kiocb *iocb,
813 struct iov_iter *iter)
814 {
815 size_t tot_len;
816 ssize_t ret = 0;
817
818 if (!file->f_op->read_iter)
819 return -EINVAL;
820 if (!(file->f_mode & FMODE_READ))
821 return -EBADF;
822 if (!(file->f_mode & FMODE_CAN_READ))
823 return -EINVAL;
824
825 tot_len = iov_iter_count(iter);
826 if (!tot_len)
827 goto out;
828 ret = rw_verify_area(READ, file, &iocb->ki_pos, tot_len);
829 if (ret < 0)
830 return ret;
831
832 ret = call_read_iter(file, iocb, iter);
833 out:
834 if (ret >= 0)
835 fsnotify_access(file);
836 return ret;
837 }
838 EXPORT_SYMBOL(vfs_iocb_iter_read);
839
840 ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
841 rwf_t flags)
842 {
843 if (!file->f_op->read_iter)
844 return -EINVAL;
845 return do_iter_read(file, iter, ppos, flags);
846 }
847 EXPORT_SYMBOL(vfs_iter_read);
848
849 static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
850 loff_t *pos, rwf_t flags)
851 {
852 size_t tot_len;
853 ssize_t ret = 0;
854
855 if (!(file->f_mode & FMODE_WRITE))
856 return -EBADF;
857 if (!(file->f_mode & FMODE_CAN_WRITE))
858 return -EINVAL;
859
860 tot_len = iov_iter_count(iter);
861 if (!tot_len)
862 return 0;
863 ret = rw_verify_area(WRITE, file, pos, tot_len);
864 if (ret < 0)
865 return ret;
866
867 if (file->f_op->write_iter)
868 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
869 else
870 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
871 if (ret > 0)
872 fsnotify_modify(file);
873 return ret;
874 }
875
876 ssize_t vfs_iocb_iter_write(struct file *file, struct kiocb *iocb,
877 struct iov_iter *iter)
878 {
879 size_t tot_len;
880 ssize_t ret = 0;
881
882 if (!file->f_op->write_iter)
883 return -EINVAL;
884 if (!(file->f_mode & FMODE_WRITE))
885 return -EBADF;
886 if (!(file->f_mode & FMODE_CAN_WRITE))
887 return -EINVAL;
888
889 tot_len = iov_iter_count(iter);
890 if (!tot_len)
891 return 0;
892 ret = rw_verify_area(WRITE, file, &iocb->ki_pos, tot_len);
893 if (ret < 0)
894 return ret;
895
896 ret = call_write_iter(file, iocb, iter);
897 if (ret > 0)
898 fsnotify_modify(file);
899
900 return ret;
901 }
902 EXPORT_SYMBOL(vfs_iocb_iter_write);
903
904 ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
905 rwf_t flags)
906 {
907 if (!file->f_op->write_iter)
908 return -EINVAL;
909 return do_iter_write(file, iter, ppos, flags);
910 }
911 EXPORT_SYMBOL(vfs_iter_write);
912
913 static ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
914 unsigned long vlen, loff_t *pos, rwf_t flags)
915 {
916 struct iovec iovstack[UIO_FASTIOV];
917 struct iovec *iov = iovstack;
918 struct iov_iter iter;
919 ssize_t ret;
920
921 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
922 if (ret >= 0) {
923 ret = do_iter_read(file, &iter, pos, flags);
924 kfree(iov);
925 }
926
927 return ret;
928 }
929
930 static ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
931 unsigned long vlen, loff_t *pos, rwf_t flags)
932 {
933 struct iovec iovstack[UIO_FASTIOV];
934 struct iovec *iov = iovstack;
935 struct iov_iter iter;
936 ssize_t ret;
937
938 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
939 if (ret >= 0) {
940 file_start_write(file);
941 ret = do_iter_write(file, &iter, pos, flags);
942 file_end_write(file);
943 kfree(iov);
944 }
945 return ret;
946 }
947
948 static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
949 unsigned long vlen, rwf_t flags)
950 {
951 struct fd f = fdget_pos(fd);
952 ssize_t ret = -EBADF;
953
954 if (f.file) {
955 loff_t pos, *ppos = file_ppos(f.file);
956 if (ppos) {
957 pos = *ppos;
958 ppos = &pos;
959 }
960 ret = vfs_readv(f.file, vec, vlen, ppos, flags);
961 if (ret >= 0 && ppos)
962 f.file->f_pos = pos;
963 fdput_pos(f);
964 }
965
966 if (ret > 0)
967 add_rchar(current, ret);
968 inc_syscr(current);
969 return ret;
970 }
971
972 static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
973 unsigned long vlen, rwf_t flags)
974 {
975 struct fd f = fdget_pos(fd);
976 ssize_t ret = -EBADF;
977
978 if (f.file) {
979 loff_t pos, *ppos = file_ppos(f.file);
980 if (ppos) {
981 pos = *ppos;
982 ppos = &pos;
983 }
984 ret = vfs_writev(f.file, vec, vlen, ppos, flags);
985 if (ret >= 0 && ppos)
986 f.file->f_pos = pos;
987 fdput_pos(f);
988 }
989
990 if (ret > 0)
991 add_wchar(current, ret);
992 inc_syscw(current);
993 return ret;
994 }
995
996 static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
997 {
998 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
999 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1000 }
1001
1002 static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
1003 unsigned long vlen, loff_t pos, rwf_t flags)
1004 {
1005 struct fd f;
1006 ssize_t ret = -EBADF;
1007
1008 if (pos < 0)
1009 return -EINVAL;
1010
1011 f = fdget(fd);
1012 if (f.file) {
1013 ret = -ESPIPE;
1014 if (f.file->f_mode & FMODE_PREAD)
1015 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
1016 fdput(f);
1017 }
1018
1019 if (ret > 0)
1020 add_rchar(current, ret);
1021 inc_syscr(current);
1022 return ret;
1023 }
1024
1025 static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
1026 unsigned long vlen, loff_t pos, rwf_t flags)
1027 {
1028 struct fd f;
1029 ssize_t ret = -EBADF;
1030
1031 if (pos < 0)
1032 return -EINVAL;
1033
1034 f = fdget(fd);
1035 if (f.file) {
1036 ret = -ESPIPE;
1037 if (f.file->f_mode & FMODE_PWRITE)
1038 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
1039 fdput(f);
1040 }
1041
1042 if (ret > 0)
1043 add_wchar(current, ret);
1044 inc_syscw(current);
1045 return ret;
1046 }
1047
1048 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1049 unsigned long, vlen)
1050 {
1051 return do_readv(fd, vec, vlen, 0);
1052 }
1053
1054 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1055 unsigned long, vlen)
1056 {
1057 return do_writev(fd, vec, vlen, 0);
1058 }
1059
1060 SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1061 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1062 {
1063 loff_t pos = pos_from_hilo(pos_h, pos_l);
1064
1065 return do_preadv(fd, vec, vlen, pos, 0);
1066 }
1067
1068 SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1069 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1070 rwf_t, flags)
1071 {
1072 loff_t pos = pos_from_hilo(pos_h, pos_l);
1073
1074 if (pos == -1)
1075 return do_readv(fd, vec, vlen, flags);
1076
1077 return do_preadv(fd, vec, vlen, pos, flags);
1078 }
1079
1080 SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1081 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1082 {
1083 loff_t pos = pos_from_hilo(pos_h, pos_l);
1084
1085 return do_pwritev(fd, vec, vlen, pos, 0);
1086 }
1087
1088 SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1089 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1090 rwf_t, flags)
1091 {
1092 loff_t pos = pos_from_hilo(pos_h, pos_l);
1093
1094 if (pos == -1)
1095 return do_writev(fd, vec, vlen, flags);
1096
1097 return do_pwritev(fd, vec, vlen, pos, flags);
1098 }
1099
1100 /*
1101 * Various compat syscalls. Note that they all pretend to take a native
1102 * iovec - import_iovec will properly treat those as compat_iovecs based on
1103 * in_compat_syscall().
1104 */
1105 #ifdef CONFIG_COMPAT
1106 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1107 COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1108 const struct iovec __user *, vec,
1109 unsigned long, vlen, loff_t, pos)
1110 {
1111 return do_preadv(fd, vec, vlen, pos, 0);
1112 }
1113 #endif
1114
1115 COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
1116 const struct iovec __user *, vec,
1117 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1118 {
1119 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1120
1121 return do_preadv(fd, vec, vlen, pos, 0);
1122 }
1123
1124 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1125 COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1126 const struct iovec __user *, vec,
1127 unsigned long, vlen, loff_t, pos, rwf_t, flags)
1128 {
1129 if (pos == -1)
1130 return do_readv(fd, vec, vlen, flags);
1131 return do_preadv(fd, vec, vlen, pos, flags);
1132 }
1133 #endif
1134
1135 COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1136 const struct iovec __user *, vec,
1137 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1138 rwf_t, flags)
1139 {
1140 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1141
1142 if (pos == -1)
1143 return do_readv(fd, vec, vlen, flags);
1144 return do_preadv(fd, vec, vlen, pos, flags);
1145 }
1146
1147 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1148 COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1149 const struct iovec __user *, vec,
1150 unsigned long, vlen, loff_t, pos)
1151 {
1152 return do_pwritev(fd, vec, vlen, pos, 0);
1153 }
1154 #endif
1155
1156 COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
1157 const struct iovec __user *,vec,
1158 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1159 {
1160 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1161
1162 return do_pwritev(fd, vec, vlen, pos, 0);
1163 }
1164
1165 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1166 COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1167 const struct iovec __user *, vec,
1168 unsigned long, vlen, loff_t, pos, rwf_t, flags)
1169 {
1170 if (pos == -1)
1171 return do_writev(fd, vec, vlen, flags);
1172 return do_pwritev(fd, vec, vlen, pos, flags);
1173 }
1174 #endif
1175
1176 COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1177 const struct iovec __user *,vec,
1178 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags)
1179 {
1180 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1181
1182 if (pos == -1)
1183 return do_writev(fd, vec, vlen, flags);
1184 return do_pwritev(fd, vec, vlen, pos, flags);
1185 }
1186 #endif /* CONFIG_COMPAT */
1187
1188 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1189 size_t count, loff_t max)
1190 {
1191 struct fd in, out;
1192 struct inode *in_inode, *out_inode;
1193 loff_t pos;
1194 loff_t out_pos;
1195 ssize_t retval;
1196 int fl;
1197
1198 /*
1199 * Get input file, and verify that it is ok..
1200 */
1201 retval = -EBADF;
1202 in = fdget(in_fd);
1203 if (!in.file)
1204 goto out;
1205 if (!(in.file->f_mode & FMODE_READ))
1206 goto fput_in;
1207 retval = -ESPIPE;
1208 if (!ppos) {
1209 pos = in.file->f_pos;
1210 } else {
1211 pos = *ppos;
1212 if (!(in.file->f_mode & FMODE_PREAD))
1213 goto fput_in;
1214 }
1215 retval = rw_verify_area(READ, in.file, &pos, count);
1216 if (retval < 0)
1217 goto fput_in;
1218 if (count > MAX_RW_COUNT)
1219 count = MAX_RW_COUNT;
1220
1221 /*
1222 * Get output file, and verify that it is ok..
1223 */
1224 retval = -EBADF;
1225 out = fdget(out_fd);
1226 if (!out.file)
1227 goto fput_in;
1228 if (!(out.file->f_mode & FMODE_WRITE))
1229 goto fput_out;
1230 in_inode = file_inode(in.file);
1231 out_inode = file_inode(out.file);
1232 out_pos = out.file->f_pos;
1233 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
1234 if (retval < 0)
1235 goto fput_out;
1236
1237 if (!max)
1238 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1239
1240 if (unlikely(pos + count > max)) {
1241 retval = -EOVERFLOW;
1242 if (pos >= max)
1243 goto fput_out;
1244 count = max - pos;
1245 }
1246
1247 fl = 0;
1248 #if 0
1249 /*
1250 * We need to debate whether we can enable this or not. The
1251 * man page documents EAGAIN return for the output at least,
1252 * and the application is arguably buggy if it doesn't expect
1253 * EAGAIN on a non-blocking file descriptor.
1254 */
1255 if (in.file->f_flags & O_NONBLOCK)
1256 fl = SPLICE_F_NONBLOCK;
1257 #endif
1258 file_start_write(out.file);
1259 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
1260 file_end_write(out.file);
1261
1262 if (retval > 0) {
1263 add_rchar(current, retval);
1264 add_wchar(current, retval);
1265 fsnotify_access(in.file);
1266 fsnotify_modify(out.file);
1267 out.file->f_pos = out_pos;
1268 if (ppos)
1269 *ppos = pos;
1270 else
1271 in.file->f_pos = pos;
1272 }
1273
1274 inc_syscr(current);
1275 inc_syscw(current);
1276 if (pos > max)
1277 retval = -EOVERFLOW;
1278
1279 fput_out:
1280 fdput(out);
1281 fput_in:
1282 fdput(in);
1283 out:
1284 return retval;
1285 }
1286
1287 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1288 {
1289 loff_t pos;
1290 off_t off;
1291 ssize_t ret;
1292
1293 if (offset) {
1294 if (unlikely(get_user(off, offset)))
1295 return -EFAULT;
1296 pos = off;
1297 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1298 if (unlikely(put_user(pos, offset)))
1299 return -EFAULT;
1300 return ret;
1301 }
1302
1303 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1304 }
1305
1306 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1307 {
1308 loff_t pos;
1309 ssize_t ret;
1310
1311 if (offset) {
1312 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1313 return -EFAULT;
1314 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1315 if (unlikely(put_user(pos, offset)))
1316 return -EFAULT;
1317 return ret;
1318 }
1319
1320 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1321 }
1322
1323 #ifdef CONFIG_COMPAT
1324 COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1325 compat_off_t __user *, offset, compat_size_t, count)
1326 {
1327 loff_t pos;
1328 off_t off;
1329 ssize_t ret;
1330
1331 if (offset) {
1332 if (unlikely(get_user(off, offset)))
1333 return -EFAULT;
1334 pos = off;
1335 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1336 if (unlikely(put_user(pos, offset)))
1337 return -EFAULT;
1338 return ret;
1339 }
1340
1341 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1342 }
1343
1344 COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1345 compat_loff_t __user *, offset, compat_size_t, count)
1346 {
1347 loff_t pos;
1348 ssize_t ret;
1349
1350 if (offset) {
1351 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1352 return -EFAULT;
1353 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1354 if (unlikely(put_user(pos, offset)))
1355 return -EFAULT;
1356 return ret;
1357 }
1358
1359 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1360 }
1361 #endif
1362
1363 /**
1364 * generic_copy_file_range - copy data between two files
1365 * @file_in: file structure to read from
1366 * @pos_in: file offset to read from
1367 * @file_out: file structure to write data to
1368 * @pos_out: file offset to write data to
1369 * @len: amount of data to copy
1370 * @flags: copy flags
1371 *
1372 * This is a generic filesystem helper to copy data from one file to another.
1373 * It has no constraints on the source or destination file owners - the files
1374 * can belong to different superblocks and different filesystem types. Short
1375 * copies are allowed.
1376 *
1377 * This should be called from the @file_out filesystem, as per the
1378 * ->copy_file_range() method.
1379 *
1380 * Returns the number of bytes copied or a negative error indicating the
1381 * failure.
1382 */
1383
1384 ssize_t generic_copy_file_range(struct file *file_in, loff_t pos_in,
1385 struct file *file_out, loff_t pos_out,
1386 size_t len, unsigned int flags)
1387 {
1388 return do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1389 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1390 }
1391 EXPORT_SYMBOL(generic_copy_file_range);
1392
1393 static ssize_t do_copy_file_range(struct file *file_in, loff_t pos_in,
1394 struct file *file_out, loff_t pos_out,
1395 size_t len, unsigned int flags)
1396 {
1397 /*
1398 * Although we now allow filesystems to handle cross sb copy, passing
1399 * a file of the wrong filesystem type to filesystem driver can result
1400 * in an attempt to dereference the wrong type of ->private_data, so
1401 * avoid doing that until we really have a good reason. NFS defines
1402 * several different file_system_type structures, but they all end up
1403 * using the same ->copy_file_range() function pointer.
1404 */
1405 if (file_out->f_op->copy_file_range &&
1406 file_out->f_op->copy_file_range == file_in->f_op->copy_file_range)
1407 return file_out->f_op->copy_file_range(file_in, pos_in,
1408 file_out, pos_out,
1409 len, flags);
1410
1411 return generic_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1412 flags);
1413 }
1414
1415 /*
1416 * Performs necessary checks before doing a file copy
1417 *
1418 * Can adjust amount of bytes to copy via @req_count argument.
1419 * Returns appropriate error code that caller should return or
1420 * zero in case the copy should be allowed.
1421 */
1422 static int generic_copy_file_checks(struct file *file_in, loff_t pos_in,
1423 struct file *file_out, loff_t pos_out,
1424 size_t *req_count, unsigned int flags)
1425 {
1426 struct inode *inode_in = file_inode(file_in);
1427 struct inode *inode_out = file_inode(file_out);
1428 uint64_t count = *req_count;
1429 loff_t size_in;
1430 int ret;
1431
1432 ret = generic_file_rw_checks(file_in, file_out);
1433 if (ret)
1434 return ret;
1435
1436 /* Don't touch certain kinds of inodes */
1437 if (IS_IMMUTABLE(inode_out))
1438 return -EPERM;
1439
1440 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1441 return -ETXTBSY;
1442
1443 /* Ensure offsets don't wrap. */
1444 if (pos_in + count < pos_in || pos_out + count < pos_out)
1445 return -EOVERFLOW;
1446
1447 /* Shorten the copy to EOF */
1448 size_in = i_size_read(inode_in);
1449 if (pos_in >= size_in)
1450 count = 0;
1451 else
1452 count = min(count, size_in - (uint64_t)pos_in);
1453
1454 ret = generic_write_check_limits(file_out, pos_out, &count);
1455 if (ret)
1456 return ret;
1457
1458 /* Don't allow overlapped copying within the same file. */
1459 if (inode_in == inode_out &&
1460 pos_out + count > pos_in &&
1461 pos_out < pos_in + count)
1462 return -EINVAL;
1463
1464 *req_count = count;
1465 return 0;
1466 }
1467
1468 /*
1469 * copy_file_range() differs from regular file read and write in that it
1470 * specifically allows return partial success. When it does so is up to
1471 * the copy_file_range method.
1472 */
1473 ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1474 struct file *file_out, loff_t pos_out,
1475 size_t len, unsigned int flags)
1476 {
1477 ssize_t ret;
1478
1479 if (flags != 0)
1480 return -EINVAL;
1481
1482 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len,
1483 flags);
1484 if (unlikely(ret))
1485 return ret;
1486
1487 ret = rw_verify_area(READ, file_in, &pos_in, len);
1488 if (unlikely(ret))
1489 return ret;
1490
1491 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1492 if (unlikely(ret))
1493 return ret;
1494
1495 if (len == 0)
1496 return 0;
1497
1498 file_start_write(file_out);
1499
1500 /*
1501 * Try cloning first, this is supported by more file systems, and
1502 * more efficient if both clone and copy are supported (e.g. NFS).
1503 */
1504 if (file_in->f_op->remap_file_range &&
1505 file_inode(file_in)->i_sb == file_inode(file_out)->i_sb) {
1506 loff_t cloned;
1507
1508 cloned = file_in->f_op->remap_file_range(file_in, pos_in,
1509 file_out, pos_out,
1510 min_t(loff_t, MAX_RW_COUNT, len),
1511 REMAP_FILE_CAN_SHORTEN);
1512 if (cloned > 0) {
1513 ret = cloned;
1514 goto done;
1515 }
1516 }
1517
1518 ret = do_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1519 flags);
1520 WARN_ON_ONCE(ret == -EOPNOTSUPP);
1521 done:
1522 if (ret > 0) {
1523 fsnotify_access(file_in);
1524 add_rchar(current, ret);
1525 fsnotify_modify(file_out);
1526 add_wchar(current, ret);
1527 }
1528
1529 inc_syscr(current);
1530 inc_syscw(current);
1531
1532 file_end_write(file_out);
1533
1534 return ret;
1535 }
1536 EXPORT_SYMBOL(vfs_copy_file_range);
1537
1538 SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1539 int, fd_out, loff_t __user *, off_out,
1540 size_t, len, unsigned int, flags)
1541 {
1542 loff_t pos_in;
1543 loff_t pos_out;
1544 struct fd f_in;
1545 struct fd f_out;
1546 ssize_t ret = -EBADF;
1547
1548 f_in = fdget(fd_in);
1549 if (!f_in.file)
1550 goto out2;
1551
1552 f_out = fdget(fd_out);
1553 if (!f_out.file)
1554 goto out1;
1555
1556 ret = -EFAULT;
1557 if (off_in) {
1558 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1559 goto out;
1560 } else {
1561 pos_in = f_in.file->f_pos;
1562 }
1563
1564 if (off_out) {
1565 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1566 goto out;
1567 } else {
1568 pos_out = f_out.file->f_pos;
1569 }
1570
1571 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1572 flags);
1573 if (ret > 0) {
1574 pos_in += ret;
1575 pos_out += ret;
1576
1577 if (off_in) {
1578 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1579 ret = -EFAULT;
1580 } else {
1581 f_in.file->f_pos = pos_in;
1582 }
1583
1584 if (off_out) {
1585 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1586 ret = -EFAULT;
1587 } else {
1588 f_out.file->f_pos = pos_out;
1589 }
1590 }
1591
1592 out:
1593 fdput(f_out);
1594 out1:
1595 fdput(f_in);
1596 out2:
1597 return ret;
1598 }
1599
1600 /*
1601 * Don't operate on ranges the page cache doesn't support, and don't exceed the
1602 * LFS limits. If pos is under the limit it becomes a short access. If it
1603 * exceeds the limit we return -EFBIG.
1604 */
1605 int generic_write_check_limits(struct file *file, loff_t pos, loff_t *count)
1606 {
1607 struct inode *inode = file->f_mapping->host;
1608 loff_t max_size = inode->i_sb->s_maxbytes;
1609 loff_t limit = rlimit(RLIMIT_FSIZE);
1610
1611 if (limit != RLIM_INFINITY) {
1612 if (pos >= limit) {
1613 send_sig(SIGXFSZ, current, 0);
1614 return -EFBIG;
1615 }
1616 *count = min(*count, limit - pos);
1617 }
1618
1619 if (!(file->f_flags & O_LARGEFILE))
1620 max_size = MAX_NON_LFS;
1621
1622 if (unlikely(pos >= max_size))
1623 return -EFBIG;
1624
1625 *count = min(*count, max_size - pos);
1626
1627 return 0;
1628 }
1629
1630 /*
1631 * Performs necessary checks before doing a write
1632 *
1633 * Can adjust writing position or amount of bytes to write.
1634 * Returns appropriate error code that caller should return or
1635 * zero in case that write should be allowed.
1636 */
1637 ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
1638 {
1639 struct file *file = iocb->ki_filp;
1640 struct inode *inode = file->f_mapping->host;
1641 loff_t count;
1642 int ret;
1643
1644 if (IS_SWAPFILE(inode))
1645 return -ETXTBSY;
1646
1647 if (!iov_iter_count(from))
1648 return 0;
1649
1650 /* FIXME: this is for backwards compatibility with 2.4 */
1651 if (iocb->ki_flags & IOCB_APPEND)
1652 iocb->ki_pos = i_size_read(inode);
1653
1654 if ((iocb->ki_flags & IOCB_NOWAIT) && !(iocb->ki_flags & IOCB_DIRECT))
1655 return -EINVAL;
1656
1657 count = iov_iter_count(from);
1658 ret = generic_write_check_limits(file, iocb->ki_pos, &count);
1659 if (ret)
1660 return ret;
1661
1662 iov_iter_truncate(from, count);
1663 return iov_iter_count(from);
1664 }
1665 EXPORT_SYMBOL(generic_write_checks);
1666
1667 /*
1668 * Performs common checks before doing a file copy/clone
1669 * from @file_in to @file_out.
1670 */
1671 int generic_file_rw_checks(struct file *file_in, struct file *file_out)
1672 {
1673 struct inode *inode_in = file_inode(file_in);
1674 struct inode *inode_out = file_inode(file_out);
1675
1676 /* Don't copy dirs, pipes, sockets... */
1677 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1678 return -EISDIR;
1679 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1680 return -EINVAL;
1681
1682 if (!(file_in->f_mode & FMODE_READ) ||
1683 !(file_out->f_mode & FMODE_WRITE) ||
1684 (file_out->f_flags & O_APPEND))
1685 return -EBADF;
1686
1687 return 0;
1688 }