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