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