blob: 122a3846d9e14270a26952e92b25971257ebd82b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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/fcntl.h>
10#include <linux/file.h>
11#include <linux/uio.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070012#include <linux/aio.h>
Robert Love0eeca282005-07-12 17:06:03 -040013#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/security.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050015#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/syscalls.h>
Linus Torvaldse28cc712006-01-04 16:20:40 -080017#include <linux/pagemap.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020018#include <linux/splice.h>
Al Viro561c6732013-02-24 10:52:26 -050019#include <linux/compat.h>
Al Viro06ae43f2013-03-20 13:19:30 -040020#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/uaccess.h>
23#include <asm/unistd.h>
24
Al Viroc0bd14af2013-05-04 15:00:54 -040025typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
26typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *,
27 unsigned long, loff_t);
28
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080029const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070031 .read = do_sync_read,
32 .aio_read = generic_file_aio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020034 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
37EXPORT_SYMBOL(generic_ro_fops);
38
Al Virocccb5a12010-12-17 07:44:05 -050039static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070040{
Al Virocccb5a12010-12-17 07:44:05 -050041 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070042}
43
Jie Liu46a1c2c2013-06-25 12:02:13 +080044/**
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
49 *
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.
53 *
54 * Return the specified offset on success and -EINVAL on invalid offset.
55 */
56loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070057{
58 if (offset < 0 && !unsigned_offsets(file))
59 return -EINVAL;
60 if (offset > maxsize)
61 return -EINVAL;
62
63 if (offset != file->f_pos) {
64 file->f_pos = offset;
65 file->f_version = 0;
66 }
67 return offset;
68}
Jie Liu46a1c2c2013-06-25 12:02:13 +080069EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070070
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020071/**
Andi Kleen57604952011-09-15 16:06:50 -070072 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020073 * @file: file structure to seek on
74 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080075 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050076 * @size: max size of this file in file system
77 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020078 *
Andi Kleen57604952011-09-15 16:06:50 -070079 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050080 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070081 *
82 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070083 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070084 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
85 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020086 */
Andi Kleen9465efc2008-06-27 11:05:24 +020087loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080088generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050089 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Andrew Morton965c8e52012-12-17 15:59:39 -080091 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020092 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050093 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020094 break;
95 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080096 /*
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
101 */
102 if (offset == 0)
103 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700104 /*
105 * f_lock protects against read/modify/write race with other
106 * SEEK_CURs. Note that parallel writes and reads behave
107 * like SEEK_SET.
108 */
109 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800110 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700111 spin_unlock(&file->f_lock);
112 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400113 case SEEK_DATA:
114 /*
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.
117 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500118 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400119 return -ENXIO;
120 break;
121 case SEEK_HOLE:
122 /*
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.
125 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500126 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400127 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500128 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400129 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200131
Jie Liu46a1c2c2013-06-25 12:02:13 +0800132 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700133}
134EXPORT_SYMBOL(generic_file_llseek_size);
135
136/**
137 * generic_file_llseek - generic llseek implementation for regular files
138 * @file: file structure to seek on
139 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800140 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700141 *
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
Ming Lei546ae2d2013-04-29 15:06:07 -0700144 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700145 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800146loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700147{
148 struct inode *inode = file->f_mapping->host;
149
Andrew Morton965c8e52012-12-17 15:59:39 -0800150 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500151 inode->i_sb->s_maxbytes,
152 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
Andi Kleen9465efc2008-06-27 11:05:24 +0200154EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
jan Blunckae6afc32010-05-26 14:44:48 -0700156/**
Al Viro1bf9d142013-06-16 20:27:42 +0400157 * 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
162 *
163 */
164loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
165{
166 switch (whence) {
167 case SEEK_SET: case SEEK_CUR: case SEEK_END:
168 return generic_file_llseek_size(file, offset, whence,
169 size, size);
170 default:
171 return -EINVAL;
172 }
173}
174EXPORT_SYMBOL(fixed_size_llseek);
175
176/**
jan Blunckae6afc32010-05-26 14:44:48 -0700177 * noop_llseek - No Operation Performed llseek implementation
178 * @file: file structure to seek on
179 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800180 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700181 *
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.
186 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800187loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700188{
189 return file->f_pos;
190}
191EXPORT_SYMBOL(noop_llseek);
192
Andrew Morton965c8e52012-12-17 15:59:39 -0800193loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 return -ESPIPE;
196}
197EXPORT_SYMBOL(no_llseek);
198
Andrew Morton965c8e52012-12-17 15:59:39 -0800199loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Al Viro496ad9a2013-01-23 17:07:38 -0500201 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200202 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Josef Bacik982d8162011-07-18 13:21:35 -0400204 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800205 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700206 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400207 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700209 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800210 if (offset == 0) {
211 retval = file->f_pos;
212 goto out;
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400215 break;
216 case SEEK_DATA:
217 /*
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
220 * offset is data.
221 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300222 if (offset >= inode->i_size) {
223 retval = -ENXIO;
224 goto out;
225 }
Josef Bacik982d8162011-07-18 13:21:35 -0400226 break;
227 case SEEK_HOLE:
228 /*
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
231 * i_size.
232 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300233 if (offset >= inode->i_size) {
234 retval = -ENXIO;
235 goto out;
236 }
Josef Bacik982d8162011-07-18 13:21:35 -0400237 offset = inode->i_size;
238 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500241 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (offset != file->f_pos) {
243 file->f_pos = offset;
244 file->f_version = 0;
245 }
246 retval = offset;
247 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800248out:
Josef Bacik982d8162011-07-18 13:21:35 -0400249 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return retval;
251}
252EXPORT_SYMBOL(default_llseek);
253
Andrew Morton965c8e52012-12-17 15:59:39 -0800254loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 loff_t (*fn)(struct file *, loff_t, int);
257
258 fn = no_llseek;
259 if (file->f_mode & FMODE_LSEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (file->f_op && file->f_op->llseek)
261 fn = file->f_op->llseek;
262 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800263 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265EXPORT_SYMBOL(vfs_llseek);
266
Andrew Morton965c8e52012-12-17 15:59:39 -0800267SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 off_t retval;
Al Viro2903ff02012-08-28 12:52:22 -0400270 struct fd f = fdget(fd);
271 if (!f.file)
272 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800275 if (whence <= SEEK_MAX) {
276 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 retval = res;
278 if (res != (loff_t)retval)
279 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
280 }
Al Viro2903ff02012-08-28 12:52:22 -0400281 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return retval;
283}
284
Al Viro561c6732013-02-24 10:52:26 -0500285#ifdef CONFIG_COMPAT
286COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
287{
288 return sys_lseek(fd, offset, whence);
289}
290#endif
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100293SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
294 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800295 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 int retval;
Al Viro2903ff02012-08-28 12:52:22 -0400298 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Al Viro2903ff02012-08-28 12:52:22 -0400301 if (!f.file)
302 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800305 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 goto out_putf;
307
Al Viro2903ff02012-08-28 12:52:22 -0400308 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800309 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 retval = (int)offset;
312 if (offset >= 0) {
313 retval = -EFAULT;
314 if (!copy_to_user(result, &offset, sizeof(offset)))
315 retval = 0;
316 }
317out_putf:
Al Viro2903ff02012-08-28 12:52:22 -0400318 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return retval;
320}
321#endif
322
Linus Torvaldse28cc712006-01-04 16:20:40 -0800323/*
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.
327 */
Al Viro68d70d02013-06-19 15:26:04 +0400328int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct inode *inode;
331 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100332 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Al Viro496ad9a2013-01-23 17:07:38 -0500334 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800335 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100336 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500338 if (unlikely(pos < 0)) {
339 if (!unsigned_offsets(file))
340 return retval;
341 if (count >= -pos) /* both values are in 0..LLONG_MAX */
342 return -EOVERFLOW;
343 } else if (unlikely((loff_t) (pos + count) < 0)) {
344 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700345 return retval;
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Pavel Emelyanova16877c2007-10-01 14:41:11 -0700348 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100349 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800350 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
351 inode, file, pos, count);
352 if (retval < 0)
353 return retval;
354 }
James Morrisc43e2592008-01-12 22:05:48 +1100355 retval = security_file_permission(file,
356 read_write == READ ? MAY_READ : MAY_WRITE);
357 if (retval)
358 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800359 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
363{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700364 struct iovec iov = { .iov_base = buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct kiocb kiocb;
366 ssize_t ret;
367
368 init_sync_kiocb(&kiocb, filp);
369 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700370 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000371 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700372
Zach Brown41003a72013-05-07 16:18:25 -0700373 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (-EIOCBQUEUED == ret)
375 ret = wait_on_sync_kiocb(&kiocb);
376 *ppos = kiocb.ki_pos;
377 return ret;
378}
379
380EXPORT_SYMBOL(do_sync_read);
381
382ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
383{
384 ssize_t ret;
385
386 if (!(file->f_mode & FMODE_READ))
387 return -EBADF;
388 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
389 return -EINVAL;
390 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
391 return -EFAULT;
392
393 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800394 if (ret >= 0) {
395 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100396 if (file->f_op->read)
397 ret = file->f_op->read(file, buf, count, pos);
398 else
399 ret = do_sync_read(file, buf, count, pos);
400 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500401 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100402 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
James Morrisc43e2592008-01-12 22:05:48 +1100404 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
407 return ret;
408}
409
410EXPORT_SYMBOL(vfs_read);
411
412ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
413{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700414 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct kiocb kiocb;
416 ssize_t ret;
417
418 init_sync_kiocb(&kiocb, filp);
419 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700420 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000421 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700422
Zach Brown41003a72013-05-07 16:18:25 -0700423 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (-EIOCBQUEUED == ret)
425 ret = wait_on_sync_kiocb(&kiocb);
426 *ppos = kiocb.ki_pos;
427 return ret;
428}
429
430EXPORT_SYMBOL(do_sync_write);
431
Al Viro06ae43f2013-03-20 13:19:30 -0400432ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
433{
434 mm_segment_t old_fs;
435 const char __user *p;
436 ssize_t ret;
437
Al Viro3e84f482013-03-27 15:20:30 +0000438 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
439 return -EINVAL;
440
Al Viro06ae43f2013-03-20 13:19:30 -0400441 old_fs = get_fs();
442 set_fs(get_ds());
443 p = (__force const char __user *)buf;
444 if (count > MAX_RW_COUNT)
445 count = MAX_RW_COUNT;
446 if (file->f_op->write)
447 ret = file->f_op->write(file, p, count, pos);
448 else
449 ret = do_sync_write(file, p, count, pos);
450 set_fs(old_fs);
451 if (ret > 0) {
452 fsnotify_modify(file);
453 add_wchar(current, ret);
454 }
455 inc_syscw(current);
456 return ret;
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
460{
461 ssize_t ret;
462
463 if (!(file->f_mode & FMODE_WRITE))
464 return -EBADF;
465 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
466 return -EINVAL;
467 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
468 return -EFAULT;
469
470 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800471 if (ret >= 0) {
472 count = ret;
Al Viro03d95eb2013-03-20 13:04:20 -0400473 file_start_write(file);
James Morrisc43e2592008-01-12 22:05:48 +1100474 if (file->f_op->write)
475 ret = file->f_op->write(file, buf, count, pos);
476 else
477 ret = do_sync_write(file, buf, count, pos);
478 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500479 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100480 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
James Morrisc43e2592008-01-12 22:05:48 +1100482 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400483 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
486 return ret;
487}
488
489EXPORT_SYMBOL(vfs_write);
490
491static inline loff_t file_pos_read(struct file *file)
492{
493 return file->f_pos;
494}
495
496static inline void file_pos_write(struct file *file, loff_t pos)
497{
498 file->f_pos = pos;
499}
500
Heiko Carstens3cdad422009-01-14 14:14:22 +0100501SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Al Viro2903ff02012-08-28 12:52:22 -0400503 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Al Viro2903ff02012-08-28 12:52:22 -0400506 if (f.file) {
507 loff_t pos = file_pos_read(f.file);
508 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400509 if (ret >= 0)
510 file_pos_write(f.file, pos);
Al Viro2903ff02012-08-28 12:52:22 -0400511 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return ret;
514}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Heiko Carstens3cdad422009-01-14 14:14:22 +0100516SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
517 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Al Viro2903ff02012-08-28 12:52:22 -0400519 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Al Viro2903ff02012-08-28 12:52:22 -0400522 if (f.file) {
523 loff_t pos = file_pos_read(f.file);
524 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400525 if (ret >= 0)
526 file_pos_write(f.file, pos);
Al Viro2903ff02012-08-28 12:52:22 -0400527 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 return ret;
531}
532
Al Viro4a0fd5b2013-01-21 15:16:58 -0500533SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
534 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Al Viro2903ff02012-08-28 12:52:22 -0400536 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 if (pos < 0)
540 return -EINVAL;
541
Al Viro2903ff02012-08-28 12:52:22 -0400542 f = fdget(fd);
543 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400545 if (f.file->f_mode & FMODE_PREAD)
546 ret = vfs_read(f.file, buf, count, &pos);
547 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
550 return ret;
551}
552
Al Viro4a0fd5b2013-01-21 15:16:58 -0500553SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
554 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Al Viro2903ff02012-08-28 12:52:22 -0400556 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 if (pos < 0)
560 return -EINVAL;
561
Al Viro2903ff02012-08-28 12:52:22 -0400562 f = fdget(fd);
563 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400565 if (f.file->f_mode & FMODE_PWRITE)
566 ret = vfs_write(f.file, buf, count, &pos);
567 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569
570 return ret;
571}
572
573/*
574 * Reduce an iovec's length in-place. Return the resulting number of segments
575 */
576unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
577{
578 unsigned long seg = 0;
579 size_t len = 0;
580
581 while (seg < nr_segs) {
582 seg++;
583 if (len + iov->iov_len >= to) {
584 iov->iov_len = to - len;
585 break;
586 }
587 len += iov->iov_len;
588 iov++;
589 }
590 return seg;
591}
Eric Sandeen19295522008-01-28 23:58:27 -0500592EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Al Viro72ec3512013-03-20 10:42:10 -0400594static ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700595 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
596{
597 struct kiocb kiocb;
598 ssize_t ret;
599
600 init_sync_kiocb(&kiocb, filp);
601 kiocb.ki_pos = *ppos;
602 kiocb.ki_left = len;
603 kiocb.ki_nbytes = len;
604
Zach Brown41003a72013-05-07 16:18:25 -0700605 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700606 if (ret == -EIOCBQUEUED)
607 ret = wait_on_sync_kiocb(&kiocb);
608 *ppos = kiocb.ki_pos;
609 return ret;
610}
611
612/* Do it by hand, with file-ops */
Al Viro72ec3512013-03-20 10:42:10 -0400613static ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700614 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
615{
616 struct iovec *vector = iov;
617 ssize_t ret = 0;
618
619 while (nr_segs > 0) {
620 void __user *base;
621 size_t len;
622 ssize_t nr;
623
624 base = vector->iov_base;
625 len = vector->iov_len;
626 vector++;
627 nr_segs--;
628
629 nr = fn(filp, base, len, ppos);
630
631 if (nr < 0) {
632 if (!ret)
633 ret = nr;
634 break;
635 }
636 ret += nr;
637 if (nr != len)
638 break;
639 }
640
641 return ret;
642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644/* A write operation does a read from user space and vice versa */
645#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
646
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700647ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
648 unsigned long nr_segs, unsigned long fast_segs,
649 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700650 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700651{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700652 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700653 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700654 struct iovec *iov = fast_pointer;
655
Linus Torvalds435f49a2010-10-29 10:36:49 -0700656 /*
657 * SuS says "The readv() function *may* fail if the iovcnt argument
658 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
659 * traditionally returned zero for zero segments, so...
660 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700661 if (nr_segs == 0) {
662 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700663 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700664 }
665
Linus Torvalds435f49a2010-10-29 10:36:49 -0700666 /*
667 * First get the "struct iovec" from user memory and
668 * verify all the pointers
669 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700670 if (nr_segs > UIO_MAXIOV) {
671 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700672 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700673 }
674 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700675 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700676 if (iov == NULL) {
677 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700678 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700679 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700680 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700681 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
682 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700683 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700684 }
685
Linus Torvalds435f49a2010-10-29 10:36:49 -0700686 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700687 * According to the Single Unix Specification we should return EINVAL
688 * if an element length is < 0 when cast to ssize_t or if the
689 * total length would overflow the ssize_t return value of the
690 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700691 *
692 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
693 * overflow case.
694 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700695 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700696 for (seg = 0; seg < nr_segs; seg++) {
697 void __user *buf = iov[seg].iov_base;
698 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700699
700 /* see if we we're about to use an invalid len or if
701 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700702 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700703 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700704 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700705 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700706 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700707 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700708 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700709 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700710 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700711 if (len > MAX_RW_COUNT - ret) {
712 len = MAX_RW_COUNT - ret;
713 iov[seg].iov_len = len;
714 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700715 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700716 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700717out:
718 *ret_pointer = iov;
719 return ret;
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static ssize_t do_readv_writev(int type, struct file *file,
723 const struct iovec __user * uvector,
724 unsigned long nr_segs, loff_t *pos)
725{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 size_t tot_len;
727 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700728 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 io_fn_t fn;
731 iov_fn_t fnv;
732
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700733 if (!file->f_op) {
734 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 goto out;
736 }
737
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700738 ret = rw_copy_check_uvector(type, uvector, nr_segs,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700739 ARRAY_SIZE(iovstack), iovstack, &iov);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700740 if (ret <= 0)
741 goto out;
742
743 tot_len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800745 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto out;
747
748 fnv = NULL;
749 if (type == READ) {
750 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700751 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 } else {
753 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700754 fnv = file->f_op->aio_write;
Al Viro03d95eb2013-03-20 13:04:20 -0400755 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700758 if (fnv)
759 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
760 pos, fnv);
761 else
762 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Al Viro03d95eb2013-03-20 13:04:20 -0400764 if (type != READ)
765 file_end_write(file);
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767out:
768 if (iov != iovstack)
769 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400770 if ((ret + (type == READ)) > 0) {
771 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500772 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400773 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500774 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
780 unsigned long vlen, loff_t *pos)
781{
782 if (!(file->f_mode & FMODE_READ))
783 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700784 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return -EINVAL;
786
787 return do_readv_writev(READ, file, vec, vlen, pos);
788}
789
790EXPORT_SYMBOL(vfs_readv);
791
792ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
793 unsigned long vlen, loff_t *pos)
794{
795 if (!(file->f_mode & FMODE_WRITE))
796 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700797 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return -EINVAL;
799
800 return do_readv_writev(WRITE, file, vec, vlen, pos);
801}
802
803EXPORT_SYMBOL(vfs_writev);
804
Heiko Carstens3cdad422009-01-14 14:14:22 +0100805SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
806 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Al Viro2903ff02012-08-28 12:52:22 -0400808 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Al Viro2903ff02012-08-28 12:52:22 -0400811 if (f.file) {
812 loff_t pos = file_pos_read(f.file);
813 ret = vfs_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400814 if (ret >= 0)
815 file_pos_write(f.file, pos);
Al Viro2903ff02012-08-28 12:52:22 -0400816 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818
819 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800820 add_rchar(current, ret);
821 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return ret;
823}
824
Heiko Carstens3cdad422009-01-14 14:14:22 +0100825SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
826 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Al Viro2903ff02012-08-28 12:52:22 -0400828 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Al Viro2903ff02012-08-28 12:52:22 -0400831 if (f.file) {
832 loff_t pos = file_pos_read(f.file);
833 ret = vfs_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400834 if (ret >= 0)
835 file_pos_write(f.file, pos);
Al Viro2903ff02012-08-28 12:52:22 -0400836 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
839 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800840 add_wchar(current, ret);
841 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ret;
843}
844
Linus Torvalds601cc112009-04-03 08:03:22 -0700845static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700846{
Linus Torvalds601cc112009-04-03 08:03:22 -0700847#define HALF_LONG_BITS (BITS_PER_LONG / 2)
848 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
849}
850
851SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
852 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
853{
854 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400855 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700856 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700857
858 if (pos < 0)
859 return -EINVAL;
860
Al Viro2903ff02012-08-28 12:52:22 -0400861 f = fdget(fd);
862 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700863 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400864 if (f.file->f_mode & FMODE_PREAD)
865 ret = vfs_readv(f.file, vec, vlen, &pos);
866 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700867 }
868
869 if (ret > 0)
870 add_rchar(current, ret);
871 inc_syscr(current);
872 return ret;
873}
874
875SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700876 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700877{
Linus Torvalds601cc112009-04-03 08:03:22 -0700878 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400879 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700880 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700881
882 if (pos < 0)
883 return -EINVAL;
884
Al Viro2903ff02012-08-28 12:52:22 -0400885 f = fdget(fd);
886 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700887 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400888 if (f.file->f_mode & FMODE_PWRITE)
889 ret = vfs_writev(f.file, vec, vlen, &pos);
890 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700891 }
892
893 if (ret > 0)
894 add_wchar(current, ret);
895 inc_syscw(current);
896 return ret;
897}
898
Al Viro72ec3512013-03-20 10:42:10 -0400899#ifdef CONFIG_COMPAT
900
901static ssize_t compat_do_readv_writev(int type, struct file *file,
902 const struct compat_iovec __user *uvector,
903 unsigned long nr_segs, loff_t *pos)
904{
905 compat_ssize_t tot_len;
906 struct iovec iovstack[UIO_FASTIOV];
907 struct iovec *iov = iovstack;
908 ssize_t ret;
909 io_fn_t fn;
910 iov_fn_t fnv;
911
912 ret = -EINVAL;
913 if (!file->f_op)
914 goto out;
915
916 ret = -EFAULT;
917 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
918 goto out;
919
920 ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
921 UIO_FASTIOV, iovstack, &iov);
922 if (ret <= 0)
923 goto out;
924
925 tot_len = ret;
926 ret = rw_verify_area(type, file, pos, tot_len);
927 if (ret < 0)
928 goto out;
929
930 fnv = NULL;
931 if (type == READ) {
932 fn = file->f_op->read;
933 fnv = file->f_op->aio_read;
934 } else {
935 fn = (io_fn_t)file->f_op->write;
936 fnv = file->f_op->aio_write;
Al Viro03d95eb2013-03-20 13:04:20 -0400937 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -0400938 }
939
Al Viro03d95eb2013-03-20 13:04:20 -0400940 if (fnv)
Al Viro72ec3512013-03-20 10:42:10 -0400941 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
942 pos, fnv);
Al Viro03d95eb2013-03-20 13:04:20 -0400943 else
Al Viro72ec3512013-03-20 10:42:10 -0400944 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
945
Al Viro03d95eb2013-03-20 13:04:20 -0400946 if (type != READ)
947 file_end_write(file);
948
Al Viro72ec3512013-03-20 10:42:10 -0400949out:
950 if (iov != iovstack)
951 kfree(iov);
952 if ((ret + (type == READ)) > 0) {
953 if (type == READ)
954 fsnotify_access(file);
955 else
956 fsnotify_modify(file);
957 }
958 return ret;
959}
960
961static size_t compat_readv(struct file *file,
962 const struct compat_iovec __user *vec,
963 unsigned long vlen, loff_t *pos)
964{
965 ssize_t ret = -EBADF;
966
967 if (!(file->f_mode & FMODE_READ))
968 goto out;
969
970 ret = -EINVAL;
971 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
972 goto out;
973
974 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
975
976out:
977 if (ret > 0)
978 add_rchar(current, ret);
979 inc_syscr(current);
980 return ret;
981}
982
983COMPAT_SYSCALL_DEFINE3(readv, unsigned long, fd,
984 const struct compat_iovec __user *,vec,
985 unsigned long, vlen)
986{
987 struct fd f = fdget(fd);
988 ssize_t ret;
989 loff_t pos;
990
991 if (!f.file)
992 return -EBADF;
993 pos = f.file->f_pos;
994 ret = compat_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400995 if (ret >= 0)
996 f.file->f_pos = pos;
Al Viro72ec3512013-03-20 10:42:10 -0400997 fdput(f);
998 return ret;
999}
1000
1001COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1002 const struct compat_iovec __user *,vec,
1003 unsigned long, vlen, loff_t, pos)
1004{
1005 struct fd f;
1006 ssize_t ret;
1007
1008 if (pos < 0)
1009 return -EINVAL;
1010 f = fdget(fd);
1011 if (!f.file)
1012 return -EBADF;
1013 ret = -ESPIPE;
1014 if (f.file->f_mode & FMODE_PREAD)
1015 ret = compat_readv(f.file, vec, vlen, &pos);
1016 fdput(f);
1017 return ret;
1018}
1019
1020COMPAT_SYSCALL_DEFINE5(preadv, unsigned long, fd,
1021 const struct compat_iovec __user *,vec,
1022 unsigned long, vlen, u32, pos_low, u32, pos_high)
1023{
1024 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1025 return compat_sys_preadv64(fd, vec, vlen, pos);
1026}
1027
1028static size_t compat_writev(struct file *file,
1029 const struct compat_iovec __user *vec,
1030 unsigned long vlen, loff_t *pos)
1031{
1032 ssize_t ret = -EBADF;
1033
1034 if (!(file->f_mode & FMODE_WRITE))
1035 goto out;
1036
1037 ret = -EINVAL;
1038 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
1039 goto out;
1040
1041 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1042
1043out:
1044 if (ret > 0)
1045 add_wchar(current, ret);
1046 inc_syscw(current);
1047 return ret;
1048}
1049
1050COMPAT_SYSCALL_DEFINE3(writev, unsigned long, fd,
1051 const struct compat_iovec __user *, vec,
1052 unsigned long, vlen)
1053{
1054 struct fd f = fdget(fd);
1055 ssize_t ret;
1056 loff_t pos;
1057
1058 if (!f.file)
1059 return -EBADF;
1060 pos = f.file->f_pos;
1061 ret = compat_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001062 if (ret >= 0)
1063 f.file->f_pos = pos;
Al Viro72ec3512013-03-20 10:42:10 -04001064 fdput(f);
1065 return ret;
1066}
1067
1068COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1069 const struct compat_iovec __user *,vec,
1070 unsigned long, vlen, loff_t, pos)
1071{
1072 struct fd f;
1073 ssize_t ret;
1074
1075 if (pos < 0)
1076 return -EINVAL;
1077 f = fdget(fd);
1078 if (!f.file)
1079 return -EBADF;
1080 ret = -ESPIPE;
1081 if (f.file->f_mode & FMODE_PWRITE)
1082 ret = compat_writev(f.file, vec, vlen, &pos);
1083 fdput(f);
1084 return ret;
1085}
1086
1087COMPAT_SYSCALL_DEFINE5(pwritev, unsigned long, fd,
1088 const struct compat_iovec __user *,vec,
1089 unsigned long, vlen, u32, pos_low, u32, pos_high)
1090{
1091 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1092 return compat_sys_pwritev64(fd, vec, vlen, pos);
1093}
1094#endif
1095
Al Viro19f4fc32013-02-24 02:17:03 -05001096static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1097 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Al Viro2903ff02012-08-28 12:52:22 -04001099 struct fd in, out;
1100 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001102 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001104 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 /*
1107 * Get input file, and verify that it is ok..
1108 */
1109 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001110 in = fdget(in_fd);
1111 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001113 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001116 if (!ppos) {
1117 pos = in.file->f_pos;
1118 } else {
1119 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001120 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001122 }
1123 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001124 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001126 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /*
1129 * Get output file, and verify that it is ok..
1130 */
1131 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001132 out = fdget(out_fd);
1133 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001135 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 goto fput_out;
1137 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001138 in_inode = file_inode(in.file);
1139 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001140 out_pos = out.file->f_pos;
1141 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001142 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001144 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (!max)
1147 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (unlikely(pos + count > max)) {
1150 retval = -EOVERFLOW;
1151 if (pos >= max)
1152 goto fput_out;
1153 count = max - pos;
1154 }
1155
Jens Axboed96e6e72007-06-11 12:18:52 +02001156 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001157#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001158 /*
1159 * We need to debate whether we can enable this or not. The
1160 * man page documents EAGAIN return for the output at least,
1161 * and the application is arguably buggy if it doesn't expect
1162 * EAGAIN on a non-blocking file descriptor.
1163 */
Al Viro2903ff02012-08-28 12:52:22 -04001164 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001165 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001166#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001167 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001168 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001169 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001172 add_rchar(current, retval);
1173 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001174 fsnotify_access(in.file);
1175 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001176 out.file->f_pos = out_pos;
1177 if (ppos)
1178 *ppos = pos;
1179 else
1180 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001183 inc_syscr(current);
1184 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001185 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 retval = -EOVERFLOW;
1187
1188fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001189 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001191 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192out:
1193 return retval;
1194}
1195
Heiko Carstens002c8972009-01-14 14:14:18 +01001196SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
1198 loff_t pos;
1199 off_t off;
1200 ssize_t ret;
1201
1202 if (offset) {
1203 if (unlikely(get_user(off, offset)))
1204 return -EFAULT;
1205 pos = off;
1206 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1207 if (unlikely(put_user(pos, offset)))
1208 return -EFAULT;
1209 return ret;
1210 }
1211
1212 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1213}
1214
Heiko Carstens002c8972009-01-14 14:14:18 +01001215SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 loff_t pos;
1218 ssize_t ret;
1219
1220 if (offset) {
1221 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1222 return -EFAULT;
1223 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1224 if (unlikely(put_user(pos, offset)))
1225 return -EFAULT;
1226 return ret;
1227 }
1228
1229 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1230}
Al Viro19f4fc32013-02-24 02:17:03 -05001231
1232#ifdef CONFIG_COMPAT
1233COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1234 compat_off_t __user *, offset, compat_size_t, count)
1235{
1236 loff_t pos;
1237 off_t off;
1238 ssize_t ret;
1239
1240 if (offset) {
1241 if (unlikely(get_user(off, offset)))
1242 return -EFAULT;
1243 pos = off;
1244 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1245 if (unlikely(put_user(pos, offset)))
1246 return -EFAULT;
1247 return ret;
1248 }
1249
1250 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1251}
1252
1253COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1254 compat_loff_t __user *, offset, compat_size_t, count)
1255{
1256 loff_t pos;
1257 ssize_t ret;
1258
1259 if (offset) {
1260 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1261 return -EFAULT;
1262 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1263 if (unlikely(put_user(pos, offset)))
1264 return -EFAULT;
1265 return ret;
1266 }
1267
1268 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1269}
1270#endif