2 * linux/fs/read_write.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/slab.h>
8 #include <linux/stat.h>
9 #include <linux/fcntl.h>
10 #include <linux/file.h>
11 #include <linux/uio.h>
12 #include <linux/aio.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>
22 #include <asm/uaccess.h>
23 #include <asm/unistd.h>
25 typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
26 typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *,
27 unsigned long, loff_t);
29 const struct file_operations generic_ro_fops = {
30 .llseek = generic_file_llseek,
32 .aio_read = generic_file_aio_read,
33 .mmap = generic_file_readonly_mmap,
34 .splice_read = generic_file_splice_read,
37 EXPORT_SYMBOL(generic_ro_fops);
39 static inline int unsigned_offsets(struct file *file)
41 return file->f_mode & FMODE_UNSIGNED_OFFSET;
45 * vfs_setpos - update the file offset for lseek
46 * @file: file structure in question
47 * @offset: file offset to seek to
48 * @maxsize: maximum file size
50 * This is a low-level filesystem helper for updating the file offset to
51 * the value specified by @offset if the given offset is valid and it is
52 * not equal to the current file offset.
54 * Return the specified offset on success and -EINVAL on invalid offset.
56 loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
58 if (offset < 0 && !unsigned_offsets(file))
63 if (offset != file->f_pos) {
69 EXPORT_SYMBOL(vfs_setpos);
72 * generic_file_llseek_size - generic llseek implementation for regular files
73 * @file: file structure to seek on
74 * @offset: file offset to seek to
75 * @whence: type of seek
76 * @size: max size of this file in file system
77 * @eof: offset used for SEEK_END position
79 * This is a variant of generic_file_llseek that allows passing in a custom
80 * maximum file size and a custom EOF position, for e.g. hashed directories
83 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
84 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
85 * read/writes behave like SEEK_SET against seeks.
88 generic_file_llseek_size(struct file *file, loff_t offset, int whence,
89 loff_t maxsize, loff_t eof)
97 * Here we special-case the lseek(fd, 0, SEEK_CUR)
98 * position-querying operation. Avoid rewriting the "same"
99 * f_pos value back to the file because a concurrent read(),
100 * write() or lseek() might have altered it
105 * f_lock protects against read/modify/write race with other
106 * SEEK_CURs. Note that parallel writes and reads behave
109 spin_lock(&file->f_lock);
110 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
111 spin_unlock(&file->f_lock);
115 * In the generic case the entire file is data, so as long as
116 * offset isn't at the end of the file then the offset is data.
123 * There is a virtual hole at the end of the file, so as long as
124 * offset isn't i_size or larger, return i_size.
132 return vfs_setpos(file, offset, maxsize);
134 EXPORT_SYMBOL(generic_file_llseek_size);
137 * generic_file_llseek - generic llseek implementation for regular files
138 * @file: file structure to seek on
139 * @offset: file offset to seek to
140 * @whence: type of seek
142 * This is a generic implemenation of ->llseek useable for all normal local
143 * filesystems. It just updates the file offset to the value specified by
144 * @offset and @whence.
146 loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
148 struct inode *inode = file->f_mapping->host;
150 return generic_file_llseek_size(file, offset, whence,
151 inode->i_sb->s_maxbytes,
154 EXPORT_SYMBOL(generic_file_llseek);
157 * fixed_size_llseek - llseek implementation for fixed-sized devices
158 * @file: file structure to seek on
159 * @offset: file offset to seek to
160 * @whence: type of seek
161 * @size: size of the file
164 loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
167 case SEEK_SET: case SEEK_CUR: case SEEK_END:
168 return generic_file_llseek_size(file, offset, whence,
174 EXPORT_SYMBOL(fixed_size_llseek);
177 * noop_llseek - No Operation Performed llseek implementation
178 * @file: file structure to seek on
179 * @offset: file offset to seek to
180 * @whence: type of seek
182 * This is an implementation of ->llseek useable for the rare special case when
183 * userspace expects the seek to succeed but the (device) file is actually not
184 * able to perform the seek. In this case you use noop_llseek() instead of
185 * falling back to the default implementation of ->llseek.
187 loff_t noop_llseek(struct file *file, loff_t offset, int whence)
191 EXPORT_SYMBOL(noop_llseek);
193 loff_t no_llseek(struct file *file, loff_t offset, int whence)
197 EXPORT_SYMBOL(no_llseek);
199 loff_t default_llseek(struct file *file, loff_t offset, int whence)
201 struct inode *inode = file_inode(file);
204 mutex_lock(&inode->i_mutex);
207 offset += i_size_read(inode);
211 retval = file->f_pos;
214 offset += file->f_pos;
218 * In the generic case the entire file is data, so as
219 * long as offset isn't at the end of the file then the
222 if (offset >= inode->i_size) {
229 * There is a virtual hole at the end of the file, so
230 * as long as offset isn't i_size or larger, return
233 if (offset >= inode->i_size) {
237 offset = inode->i_size;
241 if (offset >= 0 || unsigned_offsets(file)) {
242 if (offset != file->f_pos) {
243 file->f_pos = offset;
249 mutex_unlock(&inode->i_mutex);
252 EXPORT_SYMBOL(default_llseek);
254 loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
256 loff_t (*fn)(struct file *, loff_t, int);
259 if (file->f_mode & FMODE_LSEEK) {
260 if (file->f_op->llseek)
261 fn = file->f_op->llseek;
263 return fn(file, offset, whence);
265 EXPORT_SYMBOL(vfs_llseek);
267 static inline struct fd fdget_pos(int fd)
269 return __to_fd(__fdget_pos(fd));
272 static inline void fdput_pos(struct fd f)
274 if (f.flags & FDPUT_POS_UNLOCK)
275 mutex_unlock(&f.file->f_pos_lock);
279 SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
282 struct fd f = fdget_pos(fd);
287 if (whence <= SEEK_MAX) {
288 loff_t res = vfs_llseek(f.file, offset, whence);
290 if (res != (loff_t)retval)
291 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
298 COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
300 return sys_lseek(fd, offset, whence);
304 #ifdef __ARCH_WANT_SYS_LLSEEK
305 SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
306 unsigned long, offset_low, loff_t __user *, result,
307 unsigned int, whence)
310 struct fd f = fdget_pos(fd);
317 if (whence > SEEK_MAX)
320 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
323 retval = (int)offset;
326 if (!copy_to_user(result, &offset, sizeof(offset)))
336 * rw_verify_area doesn't like huge counts. We limit
337 * them to something that fits in "int" so that others
338 * won't have to do range checks all the time.
340 int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
344 int retval = -EINVAL;
346 inode = file_inode(file);
347 if (unlikely((ssize_t) count < 0))
350 if (unlikely(pos < 0)) {
351 if (!unsigned_offsets(file))
353 if (count >= -pos) /* both values are in 0..LLONG_MAX */
355 } else if (unlikely((loff_t) (pos + count) < 0)) {
356 if (!unsigned_offsets(file))
360 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
361 retval = locks_mandatory_area(
362 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
363 inode, file, pos, count);
367 retval = security_file_permission(file,
368 read_write == READ ? MAY_READ : MAY_WRITE);
371 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
374 ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
376 struct iovec iov = { .iov_base = buf, .iov_len = len };
380 init_sync_kiocb(&kiocb, filp);
381 kiocb.ki_pos = *ppos;
382 kiocb.ki_nbytes = len;
384 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
385 if (-EIOCBQUEUED == ret)
386 ret = wait_on_sync_kiocb(&kiocb);
387 *ppos = kiocb.ki_pos;
391 EXPORT_SYMBOL(do_sync_read);
393 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
397 if (!(file->f_mode & FMODE_READ))
399 if (!file->f_op->read && !file->f_op->aio_read)
401 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
404 ret = rw_verify_area(READ, file, pos, count);
407 if (file->f_op->read)
408 ret = file->f_op->read(file, buf, count, pos);
410 ret = do_sync_read(file, buf, count, pos);
412 fsnotify_access(file);
413 add_rchar(current, ret);
421 EXPORT_SYMBOL(vfs_read);
423 ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
425 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
429 init_sync_kiocb(&kiocb, filp);
430 kiocb.ki_pos = *ppos;
431 kiocb.ki_nbytes = len;
433 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
434 if (-EIOCBQUEUED == ret)
435 ret = wait_on_sync_kiocb(&kiocb);
436 *ppos = kiocb.ki_pos;
440 EXPORT_SYMBOL(do_sync_write);
442 ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
445 const char __user *p;
448 if (!file->f_op->write && !file->f_op->aio_write)
453 p = (__force const char __user *)buf;
454 if (count > MAX_RW_COUNT)
455 count = MAX_RW_COUNT;
456 if (file->f_op->write)
457 ret = file->f_op->write(file, p, count, pos);
459 ret = do_sync_write(file, p, count, pos);
462 fsnotify_modify(file);
463 add_wchar(current, ret);
469 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
473 if (!(file->f_mode & FMODE_WRITE))
475 if (!file->f_op->write && !file->f_op->aio_write)
477 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
480 ret = rw_verify_area(WRITE, file, pos, count);
483 file_start_write(file);
484 if (file->f_op->write)
485 ret = file->f_op->write(file, buf, count, pos);
487 ret = do_sync_write(file, buf, count, pos);
489 fsnotify_modify(file);
490 add_wchar(current, ret);
493 file_end_write(file);
499 EXPORT_SYMBOL(vfs_write);
501 static inline loff_t file_pos_read(struct file *file)
506 static inline void file_pos_write(struct file *file, loff_t pos)
511 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
513 struct fd f = fdget_pos(fd);
514 ssize_t ret = -EBADF;
517 loff_t pos = file_pos_read(f.file);
518 ret = vfs_read(f.file, buf, count, &pos);
520 file_pos_write(f.file, pos);
526 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
529 struct fd f = fdget_pos(fd);
530 ssize_t ret = -EBADF;
533 loff_t pos = file_pos_read(f.file);
534 ret = vfs_write(f.file, buf, count, &pos);
536 file_pos_write(f.file, pos);
543 SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
544 size_t, count, loff_t, pos)
547 ssize_t ret = -EBADF;
555 if (f.file->f_mode & FMODE_PREAD)
556 ret = vfs_read(f.file, buf, count, &pos);
563 SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
564 size_t, count, loff_t, pos)
567 ssize_t ret = -EBADF;
575 if (f.file->f_mode & FMODE_PWRITE)
576 ret = vfs_write(f.file, buf, count, &pos);
584 * Reduce an iovec's length in-place. Return the resulting number of segments
586 unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
588 unsigned long seg = 0;
591 while (seg < nr_segs) {
593 if (len + iov->iov_len >= to) {
594 iov->iov_len = to - len;
602 EXPORT_SYMBOL(iov_shorten);
604 static ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
605 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
610 init_sync_kiocb(&kiocb, filp);
611 kiocb.ki_pos = *ppos;
612 kiocb.ki_nbytes = len;
614 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
615 if (ret == -EIOCBQUEUED)
616 ret = wait_on_sync_kiocb(&kiocb);
617 *ppos = kiocb.ki_pos;
621 /* Do it by hand, with file-ops */
622 static ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
623 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
625 struct iovec *vector = iov;
628 while (nr_segs > 0) {
633 base = vector->iov_base;
634 len = vector->iov_len;
638 nr = fn(filp, base, len, ppos);
653 /* A write operation does a read from user space and vice versa */
654 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
656 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
657 unsigned long nr_segs, unsigned long fast_segs,
658 struct iovec *fast_pointer,
659 struct iovec **ret_pointer)
663 struct iovec *iov = fast_pointer;
666 * SuS says "The readv() function *may* fail if the iovcnt argument
667 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
668 * traditionally returned zero for zero segments, so...
676 * First get the "struct iovec" from user memory and
677 * verify all the pointers
679 if (nr_segs > UIO_MAXIOV) {
683 if (nr_segs > fast_segs) {
684 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
690 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
696 * According to the Single Unix Specification we should return EINVAL
697 * if an element length is < 0 when cast to ssize_t or if the
698 * total length would overflow the ssize_t return value of the
701 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
705 for (seg = 0; seg < nr_segs; seg++) {
706 void __user *buf = iov[seg].iov_base;
707 ssize_t len = (ssize_t)iov[seg].iov_len;
709 /* see if we we're about to use an invalid len or if
710 * it's about to overflow ssize_t */
716 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
720 if (len > MAX_RW_COUNT - ret) {
721 len = MAX_RW_COUNT - ret;
722 iov[seg].iov_len = len;
731 static ssize_t do_readv_writev(int type, struct file *file,
732 const struct iovec __user * uvector,
733 unsigned long nr_segs, loff_t *pos)
736 struct iovec iovstack[UIO_FASTIOV];
737 struct iovec *iov = iovstack;
742 ret = rw_copy_check_uvector(type, uvector, nr_segs,
743 ARRAY_SIZE(iovstack), iovstack, &iov);
748 ret = rw_verify_area(type, file, pos, tot_len);
754 fn = file->f_op->read;
755 fnv = file->f_op->aio_read;
757 fn = (io_fn_t)file->f_op->write;
758 fnv = file->f_op->aio_write;
759 file_start_write(file);
763 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
766 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
769 file_end_write(file);
774 if ((ret + (type == READ)) > 0) {
776 fsnotify_access(file);
778 fsnotify_modify(file);
783 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
784 unsigned long vlen, loff_t *pos)
786 if (!(file->f_mode & FMODE_READ))
788 if (!file->f_op->aio_read && !file->f_op->read)
791 return do_readv_writev(READ, file, vec, vlen, pos);
794 EXPORT_SYMBOL(vfs_readv);
796 ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
797 unsigned long vlen, loff_t *pos)
799 if (!(file->f_mode & FMODE_WRITE))
801 if (!file->f_op->aio_write && !file->f_op->write)
804 return do_readv_writev(WRITE, file, vec, vlen, pos);
807 EXPORT_SYMBOL(vfs_writev);
809 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
812 struct fd f = fdget_pos(fd);
813 ssize_t ret = -EBADF;
816 loff_t pos = file_pos_read(f.file);
817 ret = vfs_readv(f.file, vec, vlen, &pos);
819 file_pos_write(f.file, pos);
824 add_rchar(current, ret);
829 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
832 struct fd f = fdget_pos(fd);
833 ssize_t ret = -EBADF;
836 loff_t pos = file_pos_read(f.file);
837 ret = vfs_writev(f.file, vec, vlen, &pos);
839 file_pos_write(f.file, pos);
844 add_wchar(current, ret);
849 static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
851 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
852 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
855 SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
856 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
858 loff_t pos = pos_from_hilo(pos_h, pos_l);
860 ssize_t ret = -EBADF;
868 if (f.file->f_mode & FMODE_PREAD)
869 ret = vfs_readv(f.file, vec, vlen, &pos);
874 add_rchar(current, ret);
879 SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
880 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
882 loff_t pos = pos_from_hilo(pos_h, pos_l);
884 ssize_t ret = -EBADF;
892 if (f.file->f_mode & FMODE_PWRITE)
893 ret = vfs_writev(f.file, vec, vlen, &pos);
898 add_wchar(current, ret);
905 static ssize_t compat_do_readv_writev(int type, struct file *file,
906 const struct compat_iovec __user *uvector,
907 unsigned long nr_segs, loff_t *pos)
909 compat_ssize_t tot_len;
910 struct iovec iovstack[UIO_FASTIOV];
911 struct iovec *iov = iovstack;
916 ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
917 UIO_FASTIOV, iovstack, &iov);
922 ret = rw_verify_area(type, file, pos, tot_len);
928 fn = file->f_op->read;
929 fnv = file->f_op->aio_read;
931 fn = (io_fn_t)file->f_op->write;
932 fnv = file->f_op->aio_write;
933 file_start_write(file);
937 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
940 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
943 file_end_write(file);
948 if ((ret + (type == READ)) > 0) {
950 fsnotify_access(file);
952 fsnotify_modify(file);
957 static size_t compat_readv(struct file *file,
958 const struct compat_iovec __user *vec,
959 unsigned long vlen, loff_t *pos)
961 ssize_t ret = -EBADF;
963 if (!(file->f_mode & FMODE_READ))
967 if (!file->f_op->aio_read && !file->f_op->read)
970 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
974 add_rchar(current, ret);
979 COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
980 const struct compat_iovec __user *,vec,
981 compat_ulong_t, vlen)
983 struct fd f = fdget_pos(fd);
990 ret = compat_readv(f.file, vec, vlen, &pos);
997 COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
998 const struct compat_iovec __user *,vec,
999 unsigned long, vlen, loff_t, pos)
1010 if (f.file->f_mode & FMODE_PREAD)
1011 ret = compat_readv(f.file, vec, vlen, &pos);
1016 COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
1017 const struct compat_iovec __user *,vec,
1018 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1020 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1021 return compat_sys_preadv64(fd, vec, vlen, pos);
1024 static size_t compat_writev(struct file *file,
1025 const struct compat_iovec __user *vec,
1026 unsigned long vlen, loff_t *pos)
1028 ssize_t ret = -EBADF;
1030 if (!(file->f_mode & FMODE_WRITE))
1034 if (!file->f_op->aio_write && !file->f_op->write)
1037 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1041 add_wchar(current, ret);
1046 COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1047 const struct compat_iovec __user *, vec,
1048 compat_ulong_t, vlen)
1050 struct fd f = fdget_pos(fd);
1056 pos = f.file->f_pos;
1057 ret = compat_writev(f.file, vec, vlen, &pos);
1059 f.file->f_pos = pos;
1064 COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1065 const struct compat_iovec __user *,vec,
1066 unsigned long, vlen, loff_t, pos)
1077 if (f.file->f_mode & FMODE_PWRITE)
1078 ret = compat_writev(f.file, vec, vlen, &pos);
1083 COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
1084 const struct compat_iovec __user *,vec,
1085 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1087 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1088 return compat_sys_pwritev64(fd, vec, vlen, pos);
1092 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1093 size_t count, loff_t max)
1096 struct inode *in_inode, *out_inode;
1103 * Get input file, and verify that it is ok..
1109 if (!(in.file->f_mode & FMODE_READ))
1113 pos = in.file->f_pos;
1116 if (!(in.file->f_mode & FMODE_PREAD))
1119 retval = rw_verify_area(READ, in.file, &pos, count);
1125 * Get output file, and verify that it is ok..
1128 out = fdget(out_fd);
1131 if (!(out.file->f_mode & FMODE_WRITE))
1134 in_inode = file_inode(in.file);
1135 out_inode = file_inode(out.file);
1136 out_pos = out.file->f_pos;
1137 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
1143 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1145 if (unlikely(pos + count > max)) {
1146 retval = -EOVERFLOW;
1155 * We need to debate whether we can enable this or not. The
1156 * man page documents EAGAIN return for the output at least,
1157 * and the application is arguably buggy if it doesn't expect
1158 * EAGAIN on a non-blocking file descriptor.
1160 if (in.file->f_flags & O_NONBLOCK)
1161 fl = SPLICE_F_NONBLOCK;
1163 file_start_write(out.file);
1164 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
1165 file_end_write(out.file);
1168 add_rchar(current, retval);
1169 add_wchar(current, retval);
1170 fsnotify_access(in.file);
1171 fsnotify_modify(out.file);
1172 out.file->f_pos = out_pos;
1176 in.file->f_pos = pos;
1182 retval = -EOVERFLOW;
1192 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1199 if (unlikely(get_user(off, offset)))
1202 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1203 if (unlikely(put_user(pos, offset)))
1208 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1211 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1217 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1219 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1220 if (unlikely(put_user(pos, offset)))
1225 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1228 #ifdef CONFIG_COMPAT
1229 COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1230 compat_off_t __user *, offset, compat_size_t, count)
1237 if (unlikely(get_user(off, offset)))
1240 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1241 if (unlikely(put_user(pos, offset)))
1246 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1249 COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1250 compat_loff_t __user *, offset, compat_size_t, count)
1256 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1258 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1259 if (unlikely(put_user(pos, offset)))
1264 return do_sendfile(out_fd, in_fd, NULL, count, 0);