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
&& file
->f_op
->llseek
)
261 fn
= file
->f_op
->llseek
;
263 return fn(file
, offset
, whence
);
265 EXPORT_SYMBOL(vfs_llseek
);
267 SYSCALL_DEFINE3(lseek
, unsigned int, fd
, off_t
, offset
, unsigned int, whence
)
270 struct fd f
= fdget(fd
);
275 if (whence
<= SEEK_MAX
) {
276 loff_t res
= vfs_llseek(f
.file
, offset
, whence
);
278 if (res
!= (loff_t
)retval
)
279 retval
= -EOVERFLOW
; /* LFS: should only happen on 32 bit platforms */
286 COMPAT_SYSCALL_DEFINE3(lseek
, unsigned int, fd
, compat_off_t
, offset
, unsigned int, whence
)
288 return sys_lseek(fd
, offset
, whence
);
292 #ifdef __ARCH_WANT_SYS_LLSEEK
293 SYSCALL_DEFINE5(llseek
, unsigned int, fd
, unsigned long, offset_high
,
294 unsigned long, offset_low
, loff_t __user
*, result
,
295 unsigned int, whence
)
298 struct fd f
= fdget(fd
);
305 if (whence
> SEEK_MAX
)
308 offset
= vfs_llseek(f
.file
, ((loff_t
) offset_high
<< 32) | offset_low
,
311 retval
= (int)offset
;
314 if (!copy_to_user(result
, &offset
, sizeof(offset
)))
324 * rw_verify_area doesn't like huge counts. We limit
325 * them to something that fits in "int" so that others
326 * won't have to do range checks all the time.
328 int rw_verify_area(int read_write
, struct file
*file
, const loff_t
*ppos
, size_t count
)
332 int retval
= -EINVAL
;
334 inode
= file_inode(file
);
335 if (unlikely((ssize_t
) count
< 0))
338 if (unlikely(pos
< 0)) {
339 if (!unsigned_offsets(file
))
341 if (count
>= -pos
) /* both values are in 0..LLONG_MAX */
343 } else if (unlikely((loff_t
) (pos
+ count
) < 0)) {
344 if (!unsigned_offsets(file
))
348 if (unlikely(inode
->i_flock
&& mandatory_lock(inode
))) {
349 retval
= locks_mandatory_area(
350 read_write
== READ
? FLOCK_VERIFY_READ
: FLOCK_VERIFY_WRITE
,
351 inode
, file
, pos
, count
);
355 retval
= security_file_permission(file
,
356 read_write
== READ
? MAY_READ
: MAY_WRITE
);
359 return count
> MAX_RW_COUNT
? MAX_RW_COUNT
: count
;
362 ssize_t
do_sync_read(struct file
*filp
, char __user
*buf
, size_t len
, loff_t
*ppos
)
364 struct iovec iov
= { .iov_base
= buf
, .iov_len
= len
};
368 init_sync_kiocb(&kiocb
, filp
);
369 kiocb
.ki_pos
= *ppos
;
370 kiocb
.ki_nbytes
= len
;
372 ret
= filp
->f_op
->aio_read(&kiocb
, &iov
, 1, kiocb
.ki_pos
);
373 if (-EIOCBQUEUED
== ret
)
374 ret
= wait_on_sync_kiocb(&kiocb
);
375 *ppos
= kiocb
.ki_pos
;
379 EXPORT_SYMBOL(do_sync_read
);
381 ssize_t
vfs_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*pos
)
385 if (!(file
->f_mode
& FMODE_READ
))
387 if (!file
->f_op
|| (!file
->f_op
->read
&& !file
->f_op
->aio_read
))
389 if (unlikely(!access_ok(VERIFY_WRITE
, buf
, count
)))
392 ret
= rw_verify_area(READ
, file
, pos
, count
);
395 if (file
->f_op
->read
)
396 ret
= file
->f_op
->read(file
, buf
, count
, pos
);
398 ret
= do_sync_read(file
, buf
, count
, pos
);
400 fsnotify_access(file
);
401 add_rchar(current
, ret
);
409 EXPORT_SYMBOL(vfs_read
);
411 ssize_t
do_sync_write(struct file
*filp
, const char __user
*buf
, size_t len
, loff_t
*ppos
)
413 struct iovec iov
= { .iov_base
= (void __user
*)buf
, .iov_len
= len
};
417 init_sync_kiocb(&kiocb
, filp
);
418 kiocb
.ki_pos
= *ppos
;
419 kiocb
.ki_nbytes
= len
;
421 ret
= filp
->f_op
->aio_write(&kiocb
, &iov
, 1, kiocb
.ki_pos
);
422 if (-EIOCBQUEUED
== ret
)
423 ret
= wait_on_sync_kiocb(&kiocb
);
424 *ppos
= kiocb
.ki_pos
;
428 EXPORT_SYMBOL(do_sync_write
);
430 ssize_t
__kernel_write(struct file
*file
, const char *buf
, size_t count
, loff_t
*pos
)
433 const char __user
*p
;
436 if (!file
->f_op
|| (!file
->f_op
->write
&& !file
->f_op
->aio_write
))
441 p
= (__force
const char __user
*)buf
;
442 if (count
> MAX_RW_COUNT
)
443 count
= MAX_RW_COUNT
;
444 if (file
->f_op
->write
)
445 ret
= file
->f_op
->write(file
, p
, count
, pos
);
447 ret
= do_sync_write(file
, p
, count
, pos
);
450 fsnotify_modify(file
);
451 add_wchar(current
, ret
);
457 ssize_t
vfs_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*pos
)
461 if (!(file
->f_mode
& FMODE_WRITE
))
463 if (!file
->f_op
|| (!file
->f_op
->write
&& !file
->f_op
->aio_write
))
465 if (unlikely(!access_ok(VERIFY_READ
, buf
, count
)))
468 ret
= rw_verify_area(WRITE
, file
, pos
, count
);
471 file_start_write(file
);
472 if (file
->f_op
->write
)
473 ret
= file
->f_op
->write(file
, buf
, count
, pos
);
475 ret
= do_sync_write(file
, buf
, count
, pos
);
477 fsnotify_modify(file
);
478 add_wchar(current
, ret
);
481 file_end_write(file
);
487 EXPORT_SYMBOL(vfs_write
);
489 static inline loff_t
file_pos_read(struct file
*file
)
494 static inline void file_pos_write(struct file
*file
, loff_t pos
)
499 SYSCALL_DEFINE3(read
, unsigned int, fd
, char __user
*, buf
, size_t, count
)
501 struct fd f
= fdget(fd
);
502 ssize_t ret
= -EBADF
;
505 loff_t pos
= file_pos_read(f
.file
);
506 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
508 file_pos_write(f
.file
, pos
);
514 SYSCALL_DEFINE3(write
, unsigned int, fd
, const char __user
*, buf
,
517 struct fd f
= fdget(fd
);
518 ssize_t ret
= -EBADF
;
521 loff_t pos
= file_pos_read(f
.file
);
522 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
524 file_pos_write(f
.file
, pos
);
531 SYSCALL_DEFINE4(pread64
, unsigned int, fd
, char __user
*, buf
,
532 size_t, count
, loff_t
, pos
)
535 ssize_t ret
= -EBADF
;
543 if (f
.file
->f_mode
& FMODE_PREAD
)
544 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
551 SYSCALL_DEFINE4(pwrite64
, unsigned int, fd
, const char __user
*, buf
,
552 size_t, count
, loff_t
, pos
)
555 ssize_t ret
= -EBADF
;
563 if (f
.file
->f_mode
& FMODE_PWRITE
)
564 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
572 * Reduce an iovec's length in-place. Return the resulting number of segments
574 unsigned long iov_shorten(struct iovec
*iov
, unsigned long nr_segs
, size_t to
)
576 unsigned long seg
= 0;
579 while (seg
< nr_segs
) {
581 if (len
+ iov
->iov_len
>= to
) {
582 iov
->iov_len
= to
- len
;
590 EXPORT_SYMBOL(iov_shorten
);
592 static ssize_t
do_sync_readv_writev(struct file
*filp
, const struct iovec
*iov
,
593 unsigned long nr_segs
, size_t len
, loff_t
*ppos
, iov_fn_t fn
)
598 init_sync_kiocb(&kiocb
, filp
);
599 kiocb
.ki_pos
= *ppos
;
600 kiocb
.ki_nbytes
= len
;
602 ret
= fn(&kiocb
, iov
, nr_segs
, kiocb
.ki_pos
);
603 if (ret
== -EIOCBQUEUED
)
604 ret
= wait_on_sync_kiocb(&kiocb
);
605 *ppos
= kiocb
.ki_pos
;
609 /* Do it by hand, with file-ops */
610 static ssize_t
do_loop_readv_writev(struct file
*filp
, struct iovec
*iov
,
611 unsigned long nr_segs
, loff_t
*ppos
, io_fn_t fn
)
613 struct iovec
*vector
= iov
;
616 while (nr_segs
> 0) {
621 base
= vector
->iov_base
;
622 len
= vector
->iov_len
;
626 nr
= fn(filp
, base
, len
, ppos
);
641 /* A write operation does a read from user space and vice versa */
642 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
644 ssize_t
rw_copy_check_uvector(int type
, const struct iovec __user
* uvector
,
645 unsigned long nr_segs
, unsigned long fast_segs
,
646 struct iovec
*fast_pointer
,
647 struct iovec
**ret_pointer
)
651 struct iovec
*iov
= fast_pointer
;
654 * SuS says "The readv() function *may* fail if the iovcnt argument
655 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
656 * traditionally returned zero for zero segments, so...
664 * First get the "struct iovec" from user memory and
665 * verify all the pointers
667 if (nr_segs
> UIO_MAXIOV
) {
671 if (nr_segs
> fast_segs
) {
672 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
678 if (copy_from_user(iov
, uvector
, nr_segs
*sizeof(*uvector
))) {
684 * According to the Single Unix Specification we should return EINVAL
685 * if an element length is < 0 when cast to ssize_t or if the
686 * total length would overflow the ssize_t return value of the
689 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
693 for (seg
= 0; seg
< nr_segs
; seg
++) {
694 void __user
*buf
= iov
[seg
].iov_base
;
695 ssize_t len
= (ssize_t
)iov
[seg
].iov_len
;
697 /* see if we we're about to use an invalid len or if
698 * it's about to overflow ssize_t */
704 && unlikely(!access_ok(vrfy_dir(type
), buf
, len
))) {
708 if (len
> MAX_RW_COUNT
- ret
) {
709 len
= MAX_RW_COUNT
- ret
;
710 iov
[seg
].iov_len
= len
;
719 static ssize_t
do_readv_writev(int type
, struct file
*file
,
720 const struct iovec __user
* uvector
,
721 unsigned long nr_segs
, loff_t
*pos
)
724 struct iovec iovstack
[UIO_FASTIOV
];
725 struct iovec
*iov
= iovstack
;
735 ret
= rw_copy_check_uvector(type
, uvector
, nr_segs
,
736 ARRAY_SIZE(iovstack
), iovstack
, &iov
);
741 ret
= rw_verify_area(type
, file
, pos
, tot_len
);
747 fn
= file
->f_op
->read
;
748 fnv
= file
->f_op
->aio_read
;
750 fn
= (io_fn_t
)file
->f_op
->write
;
751 fnv
= file
->f_op
->aio_write
;
752 file_start_write(file
);
756 ret
= do_sync_readv_writev(file
, iov
, nr_segs
, tot_len
,
759 ret
= do_loop_readv_writev(file
, iov
, nr_segs
, pos
, fn
);
762 file_end_write(file
);
767 if ((ret
+ (type
== READ
)) > 0) {
769 fsnotify_access(file
);
771 fsnotify_modify(file
);
776 ssize_t
vfs_readv(struct file
*file
, const struct iovec __user
*vec
,
777 unsigned long vlen
, loff_t
*pos
)
779 if (!(file
->f_mode
& FMODE_READ
))
781 if (!file
->f_op
|| (!file
->f_op
->aio_read
&& !file
->f_op
->read
))
784 return do_readv_writev(READ
, file
, vec
, vlen
, pos
);
787 EXPORT_SYMBOL(vfs_readv
);
789 ssize_t
vfs_writev(struct file
*file
, const struct iovec __user
*vec
,
790 unsigned long vlen
, loff_t
*pos
)
792 if (!(file
->f_mode
& FMODE_WRITE
))
794 if (!file
->f_op
|| (!file
->f_op
->aio_write
&& !file
->f_op
->write
))
797 return do_readv_writev(WRITE
, file
, vec
, vlen
, pos
);
800 EXPORT_SYMBOL(vfs_writev
);
802 SYSCALL_DEFINE3(readv
, unsigned long, fd
, const struct iovec __user
*, vec
,
805 struct fd f
= fdget(fd
);
806 ssize_t ret
= -EBADF
;
809 loff_t pos
= file_pos_read(f
.file
);
810 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
);
812 file_pos_write(f
.file
, pos
);
817 add_rchar(current
, ret
);
822 SYSCALL_DEFINE3(writev
, unsigned long, fd
, const struct iovec __user
*, vec
,
825 struct fd f
= fdget(fd
);
826 ssize_t ret
= -EBADF
;
829 loff_t pos
= file_pos_read(f
.file
);
830 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
);
832 file_pos_write(f
.file
, pos
);
837 add_wchar(current
, ret
);
842 static inline loff_t
pos_from_hilo(unsigned long high
, unsigned long low
)
844 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
845 return (((loff_t
)high
<< HALF_LONG_BITS
) << HALF_LONG_BITS
) | low
;
848 SYSCALL_DEFINE5(preadv
, unsigned long, fd
, const struct iovec __user
*, vec
,
849 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
851 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
853 ssize_t ret
= -EBADF
;
861 if (f
.file
->f_mode
& FMODE_PREAD
)
862 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
);
867 add_rchar(current
, ret
);
872 SYSCALL_DEFINE5(pwritev
, unsigned long, fd
, const struct iovec __user
*, vec
,
873 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
875 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
877 ssize_t ret
= -EBADF
;
885 if (f
.file
->f_mode
& FMODE_PWRITE
)
886 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
);
891 add_wchar(current
, ret
);
898 static ssize_t
compat_do_readv_writev(int type
, struct file
*file
,
899 const struct compat_iovec __user
*uvector
,
900 unsigned long nr_segs
, loff_t
*pos
)
902 compat_ssize_t tot_len
;
903 struct iovec iovstack
[UIO_FASTIOV
];
904 struct iovec
*iov
= iovstack
;
914 if (!access_ok(VERIFY_READ
, uvector
, nr_segs
*sizeof(*uvector
)))
917 ret
= compat_rw_copy_check_uvector(type
, uvector
, nr_segs
,
918 UIO_FASTIOV
, iovstack
, &iov
);
923 ret
= rw_verify_area(type
, file
, pos
, tot_len
);
929 fn
= file
->f_op
->read
;
930 fnv
= file
->f_op
->aio_read
;
932 fn
= (io_fn_t
)file
->f_op
->write
;
933 fnv
= file
->f_op
->aio_write
;
934 file_start_write(file
);
938 ret
= do_sync_readv_writev(file
, iov
, nr_segs
, tot_len
,
941 ret
= do_loop_readv_writev(file
, iov
, nr_segs
, pos
, fn
);
944 file_end_write(file
);
949 if ((ret
+ (type
== READ
)) > 0) {
951 fsnotify_access(file
);
953 fsnotify_modify(file
);
958 static size_t compat_readv(struct file
*file
,
959 const struct compat_iovec __user
*vec
,
960 unsigned long vlen
, loff_t
*pos
)
962 ssize_t ret
= -EBADF
;
964 if (!(file
->f_mode
& FMODE_READ
))
968 if (!file
->f_op
|| (!file
->f_op
->aio_read
&& !file
->f_op
->read
))
971 ret
= compat_do_readv_writev(READ
, file
, vec
, vlen
, pos
);
975 add_rchar(current
, ret
);
980 COMPAT_SYSCALL_DEFINE3(readv
, unsigned long, fd
,
981 const struct compat_iovec __user
*,vec
,
984 struct fd f
= fdget(fd
);
991 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
);
998 COMPAT_SYSCALL_DEFINE4(preadv64
, unsigned long, fd
,
999 const struct compat_iovec __user
*,vec
,
1000 unsigned long, vlen
, loff_t
, pos
)
1011 if (f
.file
->f_mode
& FMODE_PREAD
)
1012 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
);
1017 COMPAT_SYSCALL_DEFINE5(preadv
, unsigned long, fd
,
1018 const struct compat_iovec __user
*,vec
,
1019 unsigned long, vlen
, u32
, pos_low
, u32
, pos_high
)
1021 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1022 return compat_sys_preadv64(fd
, vec
, vlen
, pos
);
1025 static size_t compat_writev(struct file
*file
,
1026 const struct compat_iovec __user
*vec
,
1027 unsigned long vlen
, loff_t
*pos
)
1029 ssize_t ret
= -EBADF
;
1031 if (!(file
->f_mode
& FMODE_WRITE
))
1035 if (!file
->f_op
|| (!file
->f_op
->aio_write
&& !file
->f_op
->write
))
1038 ret
= compat_do_readv_writev(WRITE
, file
, vec
, vlen
, pos
);
1042 add_wchar(current
, ret
);
1047 COMPAT_SYSCALL_DEFINE3(writev
, unsigned long, fd
,
1048 const struct compat_iovec __user
*, vec
,
1049 unsigned long, vlen
)
1051 struct fd f
= fdget(fd
);
1057 pos
= f
.file
->f_pos
;
1058 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
);
1060 f
.file
->f_pos
= pos
;
1065 COMPAT_SYSCALL_DEFINE4(pwritev64
, unsigned long, fd
,
1066 const struct compat_iovec __user
*,vec
,
1067 unsigned long, vlen
, loff_t
, pos
)
1078 if (f
.file
->f_mode
& FMODE_PWRITE
)
1079 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
);
1084 COMPAT_SYSCALL_DEFINE5(pwritev
, unsigned long, fd
,
1085 const struct compat_iovec __user
*,vec
,
1086 unsigned long, vlen
, u32
, pos_low
, u32
, pos_high
)
1088 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1089 return compat_sys_pwritev64(fd
, vec
, vlen
, pos
);
1093 static ssize_t
do_sendfile(int out_fd
, int in_fd
, loff_t
*ppos
,
1094 size_t count
, loff_t max
)
1097 struct inode
*in_inode
, *out_inode
;
1104 * Get input file, and verify that it is ok..
1110 if (!(in
.file
->f_mode
& FMODE_READ
))
1114 pos
= in
.file
->f_pos
;
1117 if (!(in
.file
->f_mode
& FMODE_PREAD
))
1120 retval
= rw_verify_area(READ
, in
.file
, &pos
, count
);
1126 * Get output file, and verify that it is ok..
1129 out
= fdget(out_fd
);
1132 if (!(out
.file
->f_mode
& FMODE_WRITE
))
1135 in_inode
= file_inode(in
.file
);
1136 out_inode
= file_inode(out
.file
);
1137 out_pos
= out
.file
->f_pos
;
1138 retval
= rw_verify_area(WRITE
, out
.file
, &out_pos
, count
);
1144 max
= min(in_inode
->i_sb
->s_maxbytes
, out_inode
->i_sb
->s_maxbytes
);
1146 if (unlikely(pos
+ count
> max
)) {
1147 retval
= -EOVERFLOW
;
1156 * We need to debate whether we can enable this or not. The
1157 * man page documents EAGAIN return for the output at least,
1158 * and the application is arguably buggy if it doesn't expect
1159 * EAGAIN on a non-blocking file descriptor.
1161 if (in
.file
->f_flags
& O_NONBLOCK
)
1162 fl
= SPLICE_F_NONBLOCK
;
1164 file_start_write(out
.file
);
1165 retval
= do_splice_direct(in
.file
, &pos
, out
.file
, &out_pos
, count
, fl
);
1166 file_end_write(out
.file
);
1169 add_rchar(current
, retval
);
1170 add_wchar(current
, retval
);
1171 fsnotify_access(in
.file
);
1172 fsnotify_modify(out
.file
);
1173 out
.file
->f_pos
= out_pos
;
1177 in
.file
->f_pos
= pos
;
1183 retval
= -EOVERFLOW
;
1193 SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
, off_t __user
*, offset
, size_t, count
)
1200 if (unlikely(get_user(off
, offset
)))
1203 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1204 if (unlikely(put_user(pos
, offset
)))
1209 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1212 SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
, loff_t __user
*, offset
, size_t, count
)
1218 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1220 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1221 if (unlikely(put_user(pos
, offset
)))
1226 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1229 #ifdef CONFIG_COMPAT
1230 COMPAT_SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
,
1231 compat_off_t __user
*, offset
, compat_size_t
, count
)
1238 if (unlikely(get_user(off
, offset
)))
1241 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1242 if (unlikely(put_user(pos
, offset
)))
1247 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1250 COMPAT_SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
,
1251 compat_loff_t __user
*, offset
, compat_size_t
, count
)
1257 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1259 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1260 if (unlikely(put_user(pos
, offset
)))
1265 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);