]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - fs/read_write.c
getxattr: use correct xattr length
[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 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1244 }
1245 #endif
1246
1247 COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1248 const struct compat_iovec __user *,vec,
1249 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1250 rwf_t, flags)
1251 {
1252 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1253
1254 if (pos == -1)
1255 return do_compat_readv(fd, vec, vlen, flags);
1256
1257 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1258 }
1259
1260 static size_t compat_writev(struct file *file,
1261 const struct compat_iovec __user *vec,
1262 unsigned long vlen, loff_t *pos, rwf_t flags)
1263 {
1264 struct iovec iovstack[UIO_FASTIOV];
1265 struct iovec *iov = iovstack;
1266 struct iov_iter iter;
1267 ssize_t ret;
1268
1269 ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
1270 if (ret >= 0) {
1271 file_start_write(file);
1272 ret = do_iter_write(file, &iter, pos, flags);
1273 file_end_write(file);
1274 kfree(iov);
1275 }
1276 if (ret > 0)
1277 add_wchar(current, ret);
1278 inc_syscw(current);
1279 return ret;
1280 }
1281
1282 static size_t do_compat_writev(compat_ulong_t fd,
1283 const struct compat_iovec __user* vec,
1284 compat_ulong_t vlen, rwf_t flags)
1285 {
1286 struct fd f = fdget_pos(fd);
1287 ssize_t ret;
1288 loff_t pos;
1289
1290 if (!f.file)
1291 return -EBADF;
1292 pos = f.file->f_pos;
1293 ret = compat_writev(f.file, vec, vlen, &pos, flags);
1294 if (ret >= 0)
1295 f.file->f_pos = pos;
1296 fdput_pos(f);
1297 return ret;
1298 }
1299
1300 COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1301 const struct compat_iovec __user *, vec,
1302 compat_ulong_t, vlen)
1303 {
1304 return do_compat_writev(fd, vec, vlen, 0);
1305 }
1306
1307 static long do_compat_pwritev64(unsigned long fd,
1308 const struct compat_iovec __user *vec,
1309 unsigned long vlen, loff_t pos, rwf_t flags)
1310 {
1311 struct fd f;
1312 ssize_t ret;
1313
1314 if (pos < 0)
1315 return -EINVAL;
1316 f = fdget(fd);
1317 if (!f.file)
1318 return -EBADF;
1319 ret = -ESPIPE;
1320 if (f.file->f_mode & FMODE_PWRITE)
1321 ret = compat_writev(f.file, vec, vlen, &pos, flags);
1322 fdput(f);
1323 return ret;
1324 }
1325
1326 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1327 COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1328 const struct compat_iovec __user *,vec,
1329 unsigned long, vlen, loff_t, pos)
1330 {
1331 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
1332 }
1333 #endif
1334
1335 COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
1336 const struct compat_iovec __user *,vec,
1337 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1338 {
1339 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1340
1341 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
1342 }
1343
1344 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1345 COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1346 const struct compat_iovec __user *,vec,
1347 unsigned long, vlen, loff_t, pos, rwf_t, flags)
1348 {
1349 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1350 }
1351 #endif
1352
1353 COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1354 const struct compat_iovec __user *,vec,
1355 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags)
1356 {
1357 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1358
1359 if (pos == -1)
1360 return do_compat_writev(fd, vec, vlen, flags);
1361
1362 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1363 }
1364
1365 #endif
1366
1367 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1368 size_t count, loff_t max)
1369 {
1370 struct fd in, out;
1371 struct inode *in_inode, *out_inode;
1372 loff_t pos;
1373 loff_t out_pos;
1374 ssize_t retval;
1375 int fl;
1376
1377 /*
1378 * Get input file, and verify that it is ok..
1379 */
1380 retval = -EBADF;
1381 in = fdget(in_fd);
1382 if (!in.file)
1383 goto out;
1384 if (!(in.file->f_mode & FMODE_READ))
1385 goto fput_in;
1386 retval = -ESPIPE;
1387 if (!ppos) {
1388 pos = in.file->f_pos;
1389 } else {
1390 pos = *ppos;
1391 if (!(in.file->f_mode & FMODE_PREAD))
1392 goto fput_in;
1393 }
1394 retval = rw_verify_area(READ, in.file, &pos, count);
1395 if (retval < 0)
1396 goto fput_in;
1397 if (count > MAX_RW_COUNT)
1398 count = MAX_RW_COUNT;
1399
1400 /*
1401 * Get output file, and verify that it is ok..
1402 */
1403 retval = -EBADF;
1404 out = fdget(out_fd);
1405 if (!out.file)
1406 goto fput_in;
1407 if (!(out.file->f_mode & FMODE_WRITE))
1408 goto fput_out;
1409 retval = -EINVAL;
1410 in_inode = file_inode(in.file);
1411 out_inode = file_inode(out.file);
1412 out_pos = out.file->f_pos;
1413 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
1414 if (retval < 0)
1415 goto fput_out;
1416
1417 if (!max)
1418 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1419
1420 if (unlikely(pos + count > max)) {
1421 retval = -EOVERFLOW;
1422 if (pos >= max)
1423 goto fput_out;
1424 count = max - pos;
1425 }
1426
1427 fl = 0;
1428 #if 0
1429 /*
1430 * We need to debate whether we can enable this or not. The
1431 * man page documents EAGAIN return for the output at least,
1432 * and the application is arguably buggy if it doesn't expect
1433 * EAGAIN on a non-blocking file descriptor.
1434 */
1435 if (in.file->f_flags & O_NONBLOCK)
1436 fl = SPLICE_F_NONBLOCK;
1437 #endif
1438 file_start_write(out.file);
1439 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
1440 file_end_write(out.file);
1441
1442 if (retval > 0) {
1443 add_rchar(current, retval);
1444 add_wchar(current, retval);
1445 fsnotify_access(in.file);
1446 fsnotify_modify(out.file);
1447 out.file->f_pos = out_pos;
1448 if (ppos)
1449 *ppos = pos;
1450 else
1451 in.file->f_pos = pos;
1452 }
1453
1454 inc_syscr(current);
1455 inc_syscw(current);
1456 if (pos > max)
1457 retval = -EOVERFLOW;
1458
1459 fput_out:
1460 fdput(out);
1461 fput_in:
1462 fdput(in);
1463 out:
1464 return retval;
1465 }
1466
1467 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1468 {
1469 loff_t pos;
1470 off_t off;
1471 ssize_t ret;
1472
1473 if (offset) {
1474 if (unlikely(get_user(off, offset)))
1475 return -EFAULT;
1476 pos = off;
1477 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1478 if (unlikely(put_user(pos, offset)))
1479 return -EFAULT;
1480 return ret;
1481 }
1482
1483 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1484 }
1485
1486 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1487 {
1488 loff_t pos;
1489 ssize_t ret;
1490
1491 if (offset) {
1492 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1493 return -EFAULT;
1494 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1495 if (unlikely(put_user(pos, offset)))
1496 return -EFAULT;
1497 return ret;
1498 }
1499
1500 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1501 }
1502
1503 #ifdef CONFIG_COMPAT
1504 COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1505 compat_off_t __user *, offset, compat_size_t, count)
1506 {
1507 loff_t pos;
1508 off_t off;
1509 ssize_t ret;
1510
1511 if (offset) {
1512 if (unlikely(get_user(off, offset)))
1513 return -EFAULT;
1514 pos = off;
1515 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1516 if (unlikely(put_user(pos, offset)))
1517 return -EFAULT;
1518 return ret;
1519 }
1520
1521 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1522 }
1523
1524 COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1525 compat_loff_t __user *, offset, compat_size_t, count)
1526 {
1527 loff_t pos;
1528 ssize_t ret;
1529
1530 if (offset) {
1531 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1532 return -EFAULT;
1533 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1534 if (unlikely(put_user(pos, offset)))
1535 return -EFAULT;
1536 return ret;
1537 }
1538
1539 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1540 }
1541 #endif
1542
1543 /*
1544 * copy_file_range() differs from regular file read and write in that it
1545 * specifically allows return partial success. When it does so is up to
1546 * the copy_file_range method.
1547 */
1548 ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1549 struct file *file_out, loff_t pos_out,
1550 size_t len, unsigned int flags)
1551 {
1552 struct inode *inode_in = file_inode(file_in);
1553 struct inode *inode_out = file_inode(file_out);
1554 ssize_t ret;
1555
1556 if (flags != 0)
1557 return -EINVAL;
1558
1559 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1560 return -EISDIR;
1561 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1562 return -EINVAL;
1563
1564 ret = rw_verify_area(READ, file_in, &pos_in, len);
1565 if (unlikely(ret))
1566 return ret;
1567
1568 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1569 if (unlikely(ret))
1570 return ret;
1571
1572 if (!(file_in->f_mode & FMODE_READ) ||
1573 !(file_out->f_mode & FMODE_WRITE) ||
1574 (file_out->f_flags & O_APPEND))
1575 return -EBADF;
1576
1577 /* this could be relaxed once a method supports cross-fs copies */
1578 if (inode_in->i_sb != inode_out->i_sb)
1579 return -EXDEV;
1580
1581 if (len == 0)
1582 return 0;
1583
1584 file_start_write(file_out);
1585
1586 /*
1587 * Try cloning first, this is supported by more file systems, and
1588 * more efficient if both clone and copy are supported (e.g. NFS).
1589 */
1590 if (file_in->f_op->clone_file_range) {
1591 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1592 file_out, pos_out, len);
1593 if (ret == 0) {
1594 ret = len;
1595 goto done;
1596 }
1597 }
1598
1599 if (file_out->f_op->copy_file_range) {
1600 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1601 pos_out, len, flags);
1602 if (ret != -EOPNOTSUPP)
1603 goto done;
1604 }
1605
1606 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1607 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1608
1609 done:
1610 if (ret > 0) {
1611 fsnotify_access(file_in);
1612 add_rchar(current, ret);
1613 fsnotify_modify(file_out);
1614 add_wchar(current, ret);
1615 }
1616
1617 inc_syscr(current);
1618 inc_syscw(current);
1619
1620 file_end_write(file_out);
1621
1622 return ret;
1623 }
1624 EXPORT_SYMBOL(vfs_copy_file_range);
1625
1626 SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1627 int, fd_out, loff_t __user *, off_out,
1628 size_t, len, unsigned int, flags)
1629 {
1630 loff_t pos_in;
1631 loff_t pos_out;
1632 struct fd f_in;
1633 struct fd f_out;
1634 ssize_t ret = -EBADF;
1635
1636 f_in = fdget(fd_in);
1637 if (!f_in.file)
1638 goto out2;
1639
1640 f_out = fdget(fd_out);
1641 if (!f_out.file)
1642 goto out1;
1643
1644 ret = -EFAULT;
1645 if (off_in) {
1646 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1647 goto out;
1648 } else {
1649 pos_in = f_in.file->f_pos;
1650 }
1651
1652 if (off_out) {
1653 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1654 goto out;
1655 } else {
1656 pos_out = f_out.file->f_pos;
1657 }
1658
1659 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1660 flags);
1661 if (ret > 0) {
1662 pos_in += ret;
1663 pos_out += ret;
1664
1665 if (off_in) {
1666 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1667 ret = -EFAULT;
1668 } else {
1669 f_in.file->f_pos = pos_in;
1670 }
1671
1672 if (off_out) {
1673 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1674 ret = -EFAULT;
1675 } else {
1676 f_out.file->f_pos = pos_out;
1677 }
1678 }
1679
1680 out:
1681 fdput(f_out);
1682 out1:
1683 fdput(f_in);
1684 out2:
1685 return ret;
1686 }
1687
1688 static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1689 {
1690 struct inode *inode = file_inode(file);
1691
1692 if (unlikely(pos < 0))
1693 return -EINVAL;
1694
1695 if (unlikely((loff_t) (pos + len) < 0))
1696 return -EINVAL;
1697
1698 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1699 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1700 int retval;
1701
1702 retval = locks_mandatory_area(inode, file, pos, end,
1703 write ? F_WRLCK : F_RDLCK);
1704 if (retval < 0)
1705 return retval;
1706 }
1707
1708 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1709 }
1710
1711 /*
1712 * Check that the two inodes are eligible for cloning, the ranges make
1713 * sense, and then flush all dirty data. Caller must ensure that the
1714 * inodes have been locked against any other modifications.
1715 *
1716 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1717 * the usual negative error code.
1718 */
1719 int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1720 struct inode *inode_out, loff_t pos_out,
1721 u64 *len, bool is_dedupe)
1722 {
1723 loff_t bs = inode_out->i_sb->s_blocksize;
1724 loff_t blen;
1725 loff_t isize;
1726 bool same_inode = (inode_in == inode_out);
1727 int ret;
1728
1729 /* Don't touch certain kinds of inodes */
1730 if (IS_IMMUTABLE(inode_out))
1731 return -EPERM;
1732
1733 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1734 return -ETXTBSY;
1735
1736 /* Don't reflink dirs, pipes, sockets... */
1737 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1738 return -EISDIR;
1739 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1740 return -EINVAL;
1741
1742 /* Are we going all the way to the end? */
1743 isize = i_size_read(inode_in);
1744 if (isize == 0)
1745 return 0;
1746
1747 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1748 if (*len == 0) {
1749 if (is_dedupe || pos_in == isize)
1750 return 0;
1751 if (pos_in > isize)
1752 return -EINVAL;
1753 *len = isize - pos_in;
1754 }
1755
1756 /* Ensure offsets don't wrap and the input is inside i_size */
1757 if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1758 pos_in + *len > isize)
1759 return -EINVAL;
1760
1761 /* Don't allow dedupe past EOF in the dest file */
1762 if (is_dedupe) {
1763 loff_t disize;
1764
1765 disize = i_size_read(inode_out);
1766 if (pos_out >= disize || pos_out + *len > disize)
1767 return -EINVAL;
1768 }
1769
1770 /* If we're linking to EOF, continue to the block boundary. */
1771 if (pos_in + *len == isize)
1772 blen = ALIGN(isize, bs) - pos_in;
1773 else
1774 blen = *len;
1775
1776 /* Only reflink if we're aligned to block boundaries */
1777 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1778 !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1779 return -EINVAL;
1780
1781 /* Don't allow overlapped reflink within the same file */
1782 if (same_inode) {
1783 if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1784 return -EINVAL;
1785 }
1786
1787 /* Wait for the completion of any pending IOs on both files */
1788 inode_dio_wait(inode_in);
1789 if (!same_inode)
1790 inode_dio_wait(inode_out);
1791
1792 ret = filemap_write_and_wait_range(inode_in->i_mapping,
1793 pos_in, pos_in + *len - 1);
1794 if (ret)
1795 return ret;
1796
1797 ret = filemap_write_and_wait_range(inode_out->i_mapping,
1798 pos_out, pos_out + *len - 1);
1799 if (ret)
1800 return ret;
1801
1802 /*
1803 * Check that the extents are the same.
1804 */
1805 if (is_dedupe) {
1806 bool is_same = false;
1807
1808 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1809 inode_out, pos_out, *len, &is_same);
1810 if (ret)
1811 return ret;
1812 if (!is_same)
1813 return -EBADE;
1814 }
1815
1816 return 1;
1817 }
1818 EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1819
1820 int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1821 struct file *file_out, loff_t pos_out, u64 len)
1822 {
1823 struct inode *inode_in = file_inode(file_in);
1824 struct inode *inode_out = file_inode(file_out);
1825 int ret;
1826
1827 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1828 return -EISDIR;
1829 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1830 return -EINVAL;
1831
1832 /*
1833 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1834 * the same mount. Practically, they only need to be on the same file
1835 * system.
1836 */
1837 if (inode_in->i_sb != inode_out->i_sb)
1838 return -EXDEV;
1839
1840 if (!(file_in->f_mode & FMODE_READ) ||
1841 !(file_out->f_mode & FMODE_WRITE) ||
1842 (file_out->f_flags & O_APPEND))
1843 return -EBADF;
1844
1845 if (!file_in->f_op->clone_file_range)
1846 return -EOPNOTSUPP;
1847
1848 ret = clone_verify_area(file_in, pos_in, len, false);
1849 if (ret)
1850 return ret;
1851
1852 ret = clone_verify_area(file_out, pos_out, len, true);
1853 if (ret)
1854 return ret;
1855
1856 if (pos_in + len > i_size_read(inode_in))
1857 return -EINVAL;
1858
1859 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1860 file_out, pos_out, len);
1861 if (!ret) {
1862 fsnotify_access(file_in);
1863 fsnotify_modify(file_out);
1864 }
1865
1866 return ret;
1867 }
1868 EXPORT_SYMBOL(vfs_clone_file_range);
1869
1870 /*
1871 * Read a page's worth of file data into the page cache. Return the page
1872 * locked.
1873 */
1874 static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1875 {
1876 struct address_space *mapping;
1877 struct page *page;
1878 pgoff_t n;
1879
1880 n = offset >> PAGE_SHIFT;
1881 mapping = inode->i_mapping;
1882 page = read_mapping_page(mapping, n, NULL);
1883 if (IS_ERR(page))
1884 return page;
1885 if (!PageUptodate(page)) {
1886 put_page(page);
1887 return ERR_PTR(-EIO);
1888 }
1889 lock_page(page);
1890 return page;
1891 }
1892
1893 /*
1894 * Compare extents of two files to see if they are the same.
1895 * Caller must have locked both inodes to prevent write races.
1896 */
1897 int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1898 struct inode *dest, loff_t destoff,
1899 loff_t len, bool *is_same)
1900 {
1901 loff_t src_poff;
1902 loff_t dest_poff;
1903 void *src_addr;
1904 void *dest_addr;
1905 struct page *src_page;
1906 struct page *dest_page;
1907 loff_t cmp_len;
1908 bool same;
1909 int error;
1910
1911 error = -EINVAL;
1912 same = true;
1913 while (len) {
1914 src_poff = srcoff & (PAGE_SIZE - 1);
1915 dest_poff = destoff & (PAGE_SIZE - 1);
1916 cmp_len = min(PAGE_SIZE - src_poff,
1917 PAGE_SIZE - dest_poff);
1918 cmp_len = min(cmp_len, len);
1919 if (cmp_len <= 0)
1920 goto out_error;
1921
1922 src_page = vfs_dedupe_get_page(src, srcoff);
1923 if (IS_ERR(src_page)) {
1924 error = PTR_ERR(src_page);
1925 goto out_error;
1926 }
1927 dest_page = vfs_dedupe_get_page(dest, destoff);
1928 if (IS_ERR(dest_page)) {
1929 error = PTR_ERR(dest_page);
1930 unlock_page(src_page);
1931 put_page(src_page);
1932 goto out_error;
1933 }
1934 src_addr = kmap_atomic(src_page);
1935 dest_addr = kmap_atomic(dest_page);
1936
1937 flush_dcache_page(src_page);
1938 flush_dcache_page(dest_page);
1939
1940 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1941 same = false;
1942
1943 kunmap_atomic(dest_addr);
1944 kunmap_atomic(src_addr);
1945 unlock_page(dest_page);
1946 unlock_page(src_page);
1947 put_page(dest_page);
1948 put_page(src_page);
1949
1950 if (!same)
1951 break;
1952
1953 srcoff += cmp_len;
1954 destoff += cmp_len;
1955 len -= cmp_len;
1956 }
1957
1958 *is_same = same;
1959 return 0;
1960
1961 out_error:
1962 return error;
1963 }
1964 EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
1965
1966 int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1967 {
1968 struct file_dedupe_range_info *info;
1969 struct inode *src = file_inode(file);
1970 u64 off;
1971 u64 len;
1972 int i;
1973 int ret;
1974 bool is_admin = capable(CAP_SYS_ADMIN);
1975 u16 count = same->dest_count;
1976 struct file *dst_file;
1977 loff_t dst_off;
1978 ssize_t deduped;
1979
1980 if (!(file->f_mode & FMODE_READ))
1981 return -EINVAL;
1982
1983 if (same->reserved1 || same->reserved2)
1984 return -EINVAL;
1985
1986 off = same->src_offset;
1987 len = same->src_length;
1988
1989 ret = -EISDIR;
1990 if (S_ISDIR(src->i_mode))
1991 goto out;
1992
1993 ret = -EINVAL;
1994 if (!S_ISREG(src->i_mode))
1995 goto out;
1996
1997 ret = clone_verify_area(file, off, len, false);
1998 if (ret < 0)
1999 goto out;
2000 ret = 0;
2001
2002 if (off + len > i_size_read(src))
2003 return -EINVAL;
2004
2005 /* pre-format output fields to sane values */
2006 for (i = 0; i < count; i++) {
2007 same->info[i].bytes_deduped = 0ULL;
2008 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2009 }
2010
2011 for (i = 0, info = same->info; i < count; i++, info++) {
2012 struct inode *dst;
2013 struct fd dst_fd = fdget(info->dest_fd);
2014
2015 dst_file = dst_fd.file;
2016 if (!dst_file) {
2017 info->status = -EBADF;
2018 goto next_loop;
2019 }
2020 dst = file_inode(dst_file);
2021
2022 ret = mnt_want_write_file(dst_file);
2023 if (ret) {
2024 info->status = ret;
2025 goto next_loop;
2026 }
2027
2028 dst_off = info->dest_offset;
2029 ret = clone_verify_area(dst_file, dst_off, len, true);
2030 if (ret < 0) {
2031 info->status = ret;
2032 goto next_file;
2033 }
2034 ret = 0;
2035
2036 if (info->reserved) {
2037 info->status = -EINVAL;
2038 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2039 info->status = -EINVAL;
2040 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
2041 info->status = -EXDEV;
2042 } else if (S_ISDIR(dst->i_mode)) {
2043 info->status = -EISDIR;
2044 } else if (dst_file->f_op->dedupe_file_range == NULL) {
2045 info->status = -EINVAL;
2046 } else {
2047 deduped = dst_file->f_op->dedupe_file_range(file, off,
2048 len, dst_file,
2049 info->dest_offset);
2050 if (deduped == -EBADE)
2051 info->status = FILE_DEDUPE_RANGE_DIFFERS;
2052 else if (deduped < 0)
2053 info->status = deduped;
2054 else
2055 info->bytes_deduped += deduped;
2056 }
2057
2058 next_file:
2059 mnt_drop_write_file(dst_file);
2060 next_loop:
2061 fdput(dst_fd);
2062
2063 if (fatal_signal_pending(current))
2064 goto out;
2065 }
2066
2067 out:
2068 return ret;
2069 }
2070 EXPORT_SYMBOL(vfs_dedupe_file_range);