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