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/fsnotify.h>
13 #include <linux/security.h>
14 #include <linux/export.h>
15 #include <linux/syscalls.h>
16 #include <linux/pagemap.h>
17 #include <linux/splice.h>
18 #include <linux/compat.h>
19 #include "read_write.h"
22 #include <asm/uaccess.h>
23 #include <asm/unistd.h>
25 const struct file_operations generic_ro_fops = {
26 .llseek = generic_file_llseek,
28 .aio_read = generic_file_aio_read,
29 .mmap = generic_file_readonly_mmap,
30 .splice_read = generic_file_splice_read,
33 EXPORT_SYMBOL(generic_ro_fops);
35 static inline int unsigned_offsets(struct file *file)
37 return file->f_mode & FMODE_UNSIGNED_OFFSET;
40 static loff_t lseek_execute(struct file *file, struct inode *inode,
41 loff_t offset, loff_t maxsize)
43 if (offset < 0 && !unsigned_offsets(file))
48 if (offset != file->f_pos) {
56 * generic_file_llseek_size - generic llseek implementation for regular files
57 * @file: file structure to seek on
58 * @offset: file offset to seek to
59 * @whence: type of seek
60 * @size: max size of this file in file system
61 * @eof: offset used for SEEK_END position
63 * This is a variant of generic_file_llseek that allows passing in a custom
64 * maximum file size and a custom EOF position, for e.g. hashed directories
67 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
68 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
69 * read/writes behave like SEEK_SET against seeks.
72 generic_file_llseek_size(struct file *file, loff_t offset, int whence,
73 loff_t maxsize, loff_t eof)
75 struct inode *inode = file->f_mapping->host;
83 * Here we special-case the lseek(fd, 0, SEEK_CUR)
84 * position-querying operation. Avoid rewriting the "same"
85 * f_pos value back to the file because a concurrent read(),
86 * write() or lseek() might have altered it
91 * f_lock protects against read/modify/write race with other
92 * SEEK_CURs. Note that parallel writes and reads behave
95 spin_lock(&file->f_lock);
96 offset = lseek_execute(file, inode, file->f_pos + offset,
98 spin_unlock(&file->f_lock);
102 * In the generic case the entire file is data, so as long as
103 * offset isn't at the end of the file then the offset is data.
110 * There is a virtual hole at the end of the file, so as long as
111 * offset isn't i_size or larger, return i_size.
119 return lseek_execute(file, inode, offset, maxsize);
121 EXPORT_SYMBOL(generic_file_llseek_size);
124 * generic_file_llseek - generic llseek implementation for regular files
125 * @file: file structure to seek on
126 * @offset: file offset to seek to
127 * @whence: type of seek
129 * This is a generic implemenation of ->llseek useable for all normal local
130 * filesystems. It just updates the file offset to the value specified by
131 * @offset and @whence under i_mutex.
133 loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
135 struct inode *inode = file->f_mapping->host;
137 return generic_file_llseek_size(file, offset, whence,
138 inode->i_sb->s_maxbytes,
141 EXPORT_SYMBOL(generic_file_llseek);
144 * noop_llseek - No Operation Performed llseek implementation
145 * @file: file structure to seek on
146 * @offset: file offset to seek to
147 * @whence: type of seek
149 * This is an implementation of ->llseek useable for the rare special case when
150 * userspace expects the seek to succeed but the (device) file is actually not
151 * able to perform the seek. In this case you use noop_llseek() instead of
152 * falling back to the default implementation of ->llseek.
154 loff_t noop_llseek(struct file *file, loff_t offset, int whence)
158 EXPORT_SYMBOL(noop_llseek);
160 loff_t no_llseek(struct file *file, loff_t offset, int whence)
164 EXPORT_SYMBOL(no_llseek);
166 loff_t default_llseek(struct file *file, loff_t offset, int whence)
168 struct inode *inode = file_inode(file);
171 mutex_lock(&inode->i_mutex);
174 offset += i_size_read(inode);
178 retval = file->f_pos;
181 offset += file->f_pos;
185 * In the generic case the entire file is data, so as
186 * long as offset isn't at the end of the file then the
189 if (offset >= inode->i_size) {
196 * There is a virtual hole at the end of the file, so
197 * as long as offset isn't i_size or larger, return
200 if (offset >= inode->i_size) {
204 offset = inode->i_size;
208 if (offset >= 0 || unsigned_offsets(file)) {
209 if (offset != file->f_pos) {
210 file->f_pos = offset;
216 mutex_unlock(&inode->i_mutex);
219 EXPORT_SYMBOL(default_llseek);
221 loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
223 loff_t (*fn)(struct file *, loff_t, int);
226 if (file->f_mode & FMODE_LSEEK) {
227 if (file->f_op && file->f_op->llseek)
228 fn = file->f_op->llseek;
230 return fn(file, offset, whence);
232 EXPORT_SYMBOL(vfs_llseek);
234 SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
237 struct fd f = fdget(fd);
242 if (whence <= SEEK_MAX) {
243 loff_t res = vfs_llseek(f.file, offset, whence);
245 if (res != (loff_t)retval)
246 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
253 COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
255 return sys_lseek(fd, offset, whence);
259 #ifdef __ARCH_WANT_SYS_LLSEEK
260 SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
261 unsigned long, offset_low, loff_t __user *, result,
262 unsigned int, whence)
265 struct fd f = fdget(fd);
272 if (whence > SEEK_MAX)
275 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
278 retval = (int)offset;
281 if (!copy_to_user(result, &offset, sizeof(offset)))
291 * rw_verify_area doesn't like huge counts. We limit
292 * them to something that fits in "int" so that others
293 * won't have to do range checks all the time.
295 int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
299 int retval = -EINVAL;
301 inode = file_inode(file);
302 if (unlikely((ssize_t) count < 0))
305 if (unlikely(pos < 0)) {
306 if (!unsigned_offsets(file))
308 if (count >= -pos) /* both values are in 0..LLONG_MAX */
310 } else if (unlikely((loff_t) (pos + count) < 0)) {
311 if (!unsigned_offsets(file))
315 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
316 retval = locks_mandatory_area(
317 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
318 inode, file, pos, count);
322 retval = security_file_permission(file,
323 read_write == READ ? MAY_READ : MAY_WRITE);
326 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
329 static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
331 set_current_state(TASK_UNINTERRUPTIBLE);
332 if (!kiocbIsKicked(iocb))
335 kiocbClearKicked(iocb);
336 __set_current_state(TASK_RUNNING);
339 ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
341 struct iovec iov = { .iov_base = buf, .iov_len = len };
345 init_sync_kiocb(&kiocb, filp);
346 kiocb.ki_pos = *ppos;
348 kiocb.ki_nbytes = len;
351 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
352 if (ret != -EIOCBRETRY)
354 wait_on_retry_sync_kiocb(&kiocb);
357 if (-EIOCBQUEUED == ret)
358 ret = wait_on_sync_kiocb(&kiocb);
359 *ppos = kiocb.ki_pos;
363 EXPORT_SYMBOL(do_sync_read);
365 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
369 if (!(file->f_mode & FMODE_READ))
371 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
373 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
376 ret = rw_verify_area(READ, file, pos, count);
379 if (file->f_op->read)
380 ret = file->f_op->read(file, buf, count, pos);
382 ret = do_sync_read(file, buf, count, pos);
384 fsnotify_access(file);
385 add_rchar(current, ret);
393 EXPORT_SYMBOL(vfs_read);
395 ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
397 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
401 init_sync_kiocb(&kiocb, filp);
402 kiocb.ki_pos = *ppos;
404 kiocb.ki_nbytes = len;
407 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
408 if (ret != -EIOCBRETRY)
410 wait_on_retry_sync_kiocb(&kiocb);
413 if (-EIOCBQUEUED == ret)
414 ret = wait_on_sync_kiocb(&kiocb);
415 *ppos = kiocb.ki_pos;
419 EXPORT_SYMBOL(do_sync_write);
421 ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
424 const char __user *p;
429 p = (__force const char __user *)buf;
430 if (count > MAX_RW_COUNT)
431 count = MAX_RW_COUNT;
432 if (file->f_op->write)
433 ret = file->f_op->write(file, p, count, pos);
435 ret = do_sync_write(file, p, count, pos);
438 fsnotify_modify(file);
439 add_wchar(current, ret);
445 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
449 if (!(file->f_mode & FMODE_WRITE))
451 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
453 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
456 ret = rw_verify_area(WRITE, file, pos, count);
459 if (file->f_op->write)
460 ret = file->f_op->write(file, buf, count, pos);
462 ret = do_sync_write(file, buf, count, pos);
464 fsnotify_modify(file);
465 add_wchar(current, ret);
473 EXPORT_SYMBOL(vfs_write);
475 static inline loff_t file_pos_read(struct file *file)
480 static inline void file_pos_write(struct file *file, loff_t pos)
485 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
487 struct fd f = fdget(fd);
488 ssize_t ret = -EBADF;
491 loff_t pos = file_pos_read(f.file);
492 ret = vfs_read(f.file, buf, count, &pos);
493 file_pos_write(f.file, pos);
499 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
502 struct fd f = fdget(fd);
503 ssize_t ret = -EBADF;
506 loff_t pos = file_pos_read(f.file);
507 ret = vfs_write(f.file, buf, count, &pos);
508 file_pos_write(f.file, pos);
515 SYSCALL_DEFINE(pread64)(unsigned int fd, char __user *buf,
516 size_t count, loff_t pos)
519 ssize_t ret = -EBADF;
527 if (f.file->f_mode & FMODE_PREAD)
528 ret = vfs_read(f.file, buf, count, &pos);
534 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
535 asmlinkage long SyS_pread64(long fd, long buf, long count, loff_t pos)
537 return SYSC_pread64((unsigned int) fd, (char __user *) buf,
538 (size_t) count, pos);
540 SYSCALL_ALIAS(sys_pread64, SyS_pread64);
543 SYSCALL_DEFINE(pwrite64)(unsigned int fd, const char __user *buf,
544 size_t count, loff_t pos)
547 ssize_t ret = -EBADF;
555 if (f.file->f_mode & FMODE_PWRITE)
556 ret = vfs_write(f.file, buf, count, &pos);
562 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
563 asmlinkage long SyS_pwrite64(long fd, long buf, long count, loff_t pos)
565 return SYSC_pwrite64((unsigned int) fd, (const char __user *) buf,
566 (size_t) count, pos);
568 SYSCALL_ALIAS(sys_pwrite64, SyS_pwrite64);
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 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;
601 kiocb.ki_nbytes = len;
604 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
605 if (ret != -EIOCBRETRY)
607 wait_on_retry_sync_kiocb(&kiocb);
610 if (ret == -EIOCBQUEUED)
611 ret = wait_on_sync_kiocb(&kiocb);
612 *ppos = kiocb.ki_pos;
616 /* Do it by hand, with file-ops */
617 ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
618 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
620 struct iovec *vector = iov;
623 while (nr_segs > 0) {
628 base = vector->iov_base;
629 len = vector->iov_len;
633 nr = fn(filp, base, len, ppos);
648 /* A write operation does a read from user space and vice versa */
649 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
651 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
652 unsigned long nr_segs, unsigned long fast_segs,
653 struct iovec *fast_pointer,
654 struct iovec **ret_pointer)
658 struct iovec *iov = fast_pointer;
661 * SuS says "The readv() function *may* fail if the iovcnt argument
662 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
663 * traditionally returned zero for zero segments, so...
671 * First get the "struct iovec" from user memory and
672 * verify all the pointers
674 if (nr_segs > UIO_MAXIOV) {
678 if (nr_segs > fast_segs) {
679 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
685 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
691 * According to the Single Unix Specification we should return EINVAL
692 * if an element length is < 0 when cast to ssize_t or if the
693 * total length would overflow the ssize_t return value of the
696 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
700 for (seg = 0; seg < nr_segs; seg++) {
701 void __user *buf = iov[seg].iov_base;
702 ssize_t len = (ssize_t)iov[seg].iov_len;
704 /* see if we we're about to use an invalid len or if
705 * it's about to overflow ssize_t */
711 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
715 if (len > MAX_RW_COUNT - ret) {
716 len = MAX_RW_COUNT - ret;
717 iov[seg].iov_len = len;
726 static ssize_t do_readv_writev(int type, struct file *file,
727 const struct iovec __user * uvector,
728 unsigned long nr_segs, loff_t *pos)
731 struct iovec iovstack[UIO_FASTIOV];
732 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;
762 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
765 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
770 if ((ret + (type == READ)) > 0) {
772 fsnotify_access(file);
774 fsnotify_modify(file);
779 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
780 unsigned long vlen, loff_t *pos)
782 if (!(file->f_mode & FMODE_READ))
784 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
787 return do_readv_writev(READ, file, vec, vlen, pos);
790 EXPORT_SYMBOL(vfs_readv);
792 ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
793 unsigned long vlen, loff_t *pos)
795 if (!(file->f_mode & FMODE_WRITE))
797 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
800 return do_readv_writev(WRITE, file, vec, vlen, pos);
803 EXPORT_SYMBOL(vfs_writev);
805 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
808 struct fd f = fdget(fd);
809 ssize_t ret = -EBADF;
812 loff_t pos = file_pos_read(f.file);
813 ret = vfs_readv(f.file, vec, vlen, &pos);
814 file_pos_write(f.file, pos);
819 add_rchar(current, ret);
824 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
827 struct fd f = fdget(fd);
828 ssize_t ret = -EBADF;
831 loff_t pos = file_pos_read(f.file);
832 ret = vfs_writev(f.file, vec, vlen, &pos);
833 file_pos_write(f.file, pos);
838 add_wchar(current, ret);
843 static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
845 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
846 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
849 SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
850 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
852 loff_t pos = pos_from_hilo(pos_h, pos_l);
854 ssize_t ret = -EBADF;
862 if (f.file->f_mode & FMODE_PREAD)
863 ret = vfs_readv(f.file, vec, vlen, &pos);
868 add_rchar(current, ret);
873 SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
874 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
876 loff_t pos = pos_from_hilo(pos_h, pos_l);
878 ssize_t ret = -EBADF;
886 if (f.file->f_mode & FMODE_PWRITE)
887 ret = vfs_writev(f.file, vec, vlen, &pos);
892 add_wchar(current, ret);
897 ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, size_t count,
901 struct inode *in_inode, *out_inode;
907 * Get input file, and verify that it is ok..
913 if (!(in.file->f_mode & FMODE_READ))
917 ppos = &in.file->f_pos;
919 if (!(in.file->f_mode & FMODE_PREAD))
921 retval = rw_verify_area(READ, in.file, ppos, count);
927 * Get output file, and verify that it is ok..
933 if (!(out.file->f_mode & FMODE_WRITE))
936 in_inode = file_inode(in.file);
937 out_inode = file_inode(out.file);
938 retval = rw_verify_area(WRITE, out.file, &out.file->f_pos, count);
944 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
947 if (unlikely(pos + count > max)) {
957 * We need to debate whether we can enable this or not. The
958 * man page documents EAGAIN return for the output at least,
959 * and the application is arguably buggy if it doesn't expect
960 * EAGAIN on a non-blocking file descriptor.
962 if (in.file->f_flags & O_NONBLOCK)
963 fl = SPLICE_F_NONBLOCK;
965 retval = do_splice_direct(in.file, ppos, out.file, count, fl);
968 add_rchar(current, retval);
969 add_wchar(current, retval);
970 fsnotify_access(in.file);
971 fsnotify_modify(out.file);
987 SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
994 if (unlikely(get_user(off, offset)))
997 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
998 if (unlikely(put_user(pos, offset)))
1003 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1006 SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1012 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1014 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1015 if (unlikely(put_user(pos, offset)))
1020 return do_sendfile(out_fd, in_fd, NULL, count, 0);