blob: 605dbbcb19734363150668f2dd37e9a9fbf65276 [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>
Robert Love0eeca282005-07-12 17:06:03 -040012#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/security.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/syscalls.h>
Linus Torvaldse28cc712006-01-04 16:20:40 -080016#include <linux/pagemap.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020017#include <linux/splice.h>
Al Viro561c6732013-02-24 10:52:26 -050018#include <linux/compat.h>
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070019#include "read_write.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
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080025const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070027 .read = do_sync_read,
28 .aio_read = generic_file_aio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020030 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33EXPORT_SYMBOL(generic_ro_fops);
34
Al Virocccb5a12010-12-17 07:44:05 -050035static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070036{
Al Virocccb5a12010-12-17 07:44:05 -050037 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070038}
39
Andi Kleenef3d0fd2011-09-15 16:06:48 -070040static loff_t lseek_execute(struct file *file, struct inode *inode,
41 loff_t offset, loff_t maxsize)
42{
43 if (offset < 0 && !unsigned_offsets(file))
44 return -EINVAL;
45 if (offset > maxsize)
46 return -EINVAL;
47
48 if (offset != file->f_pos) {
49 file->f_pos = offset;
50 file->f_version = 0;
51 }
52 return offset;
53}
54
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020055/**
Andi Kleen57604952011-09-15 16:06:50 -070056 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020057 * @file: file structure to seek on
58 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080059 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050060 * @size: max size of this file in file system
61 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020062 *
Andi Kleen57604952011-09-15 16:06:50 -070063 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050064 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070065 *
66 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070067 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070068 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
69 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020070 */
Andi Kleen9465efc2008-06-27 11:05:24 +020071loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080072generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050073 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct inode *inode = file->f_mapping->host;
76
Andrew Morton965c8e52012-12-17 15:59:39 -080077 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020078 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050079 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020080 break;
81 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080082 /*
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
87 */
88 if (offset == 0)
89 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -070090 /*
91 * f_lock protects against read/modify/write race with other
92 * SEEK_CURs. Note that parallel writes and reads behave
93 * like SEEK_SET.
94 */
95 spin_lock(&file->f_lock);
96 offset = lseek_execute(file, inode, file->f_pos + offset,
Andi Kleen57604952011-09-15 16:06:50 -070097 maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070098 spin_unlock(&file->f_lock);
99 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400100 case SEEK_DATA:
101 /*
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.
104 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500105 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400106 return -ENXIO;
107 break;
108 case SEEK_HOLE:
109 /*
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.
112 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500113 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400114 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500115 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400116 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200118
Andi Kleen57604952011-09-15 16:06:50 -0700119 return lseek_execute(file, inode, offset, maxsize);
120}
121EXPORT_SYMBOL(generic_file_llseek_size);
122
123/**
124 * generic_file_llseek - generic llseek implementation for regular files
125 * @file: file structure to seek on
126 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800127 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700128 *
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
Ming Lei546ae2d2013-04-29 15:06:07 -0700131 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700132 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800133loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700134{
135 struct inode *inode = file->f_mapping->host;
136
Andrew Morton965c8e52012-12-17 15:59:39 -0800137 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500138 inode->i_sb->s_maxbytes,
139 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
Andi Kleen9465efc2008-06-27 11:05:24 +0200141EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
jan Blunckae6afc32010-05-26 14:44:48 -0700143/**
144 * noop_llseek - No Operation Performed llseek implementation
145 * @file: file structure to seek on
146 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800147 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700148 *
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.
153 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800154loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700155{
156 return file->f_pos;
157}
158EXPORT_SYMBOL(noop_llseek);
159
Andrew Morton965c8e52012-12-17 15:59:39 -0800160loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 return -ESPIPE;
163}
164EXPORT_SYMBOL(no_llseek);
165
Andrew Morton965c8e52012-12-17 15:59:39 -0800166loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Al Viro496ad9a2013-01-23 17:07:38 -0500168 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200169 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Josef Bacik982d8162011-07-18 13:21:35 -0400171 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800172 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700173 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400174 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700176 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800177 if (offset == 0) {
178 retval = file->f_pos;
179 goto out;
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400182 break;
183 case SEEK_DATA:
184 /*
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
187 * offset is data.
188 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300189 if (offset >= inode->i_size) {
190 retval = -ENXIO;
191 goto out;
192 }
Josef Bacik982d8162011-07-18 13:21:35 -0400193 break;
194 case SEEK_HOLE:
195 /*
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
198 * i_size.
199 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300200 if (offset >= inode->i_size) {
201 retval = -ENXIO;
202 goto out;
203 }
Josef Bacik982d8162011-07-18 13:21:35 -0400204 offset = inode->i_size;
205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500208 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (offset != file->f_pos) {
210 file->f_pos = offset;
211 file->f_version = 0;
212 }
213 retval = offset;
214 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800215out:
Josef Bacik982d8162011-07-18 13:21:35 -0400216 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return retval;
218}
219EXPORT_SYMBOL(default_llseek);
220
Andrew Morton965c8e52012-12-17 15:59:39 -0800221loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 loff_t (*fn)(struct file *, loff_t, int);
224
225 fn = no_llseek;
226 if (file->f_mode & FMODE_LSEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (file->f_op && file->f_op->llseek)
228 fn = file->f_op->llseek;
229 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800230 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232EXPORT_SYMBOL(vfs_llseek);
233
Andrew Morton965c8e52012-12-17 15:59:39 -0800234SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 off_t retval;
Al Viro2903ff02012-08-28 12:52:22 -0400237 struct fd f = fdget(fd);
238 if (!f.file)
239 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800242 if (whence <= SEEK_MAX) {
243 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 retval = res;
245 if (res != (loff_t)retval)
246 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
247 }
Al Viro2903ff02012-08-28 12:52:22 -0400248 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return retval;
250}
251
Al Viro561c6732013-02-24 10:52:26 -0500252#ifdef CONFIG_COMPAT
253COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
254{
255 return sys_lseek(fd, offset, whence);
256}
257#endif
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100260SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
261 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800262 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 int retval;
Al Viro2903ff02012-08-28 12:52:22 -0400265 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Al Viro2903ff02012-08-28 12:52:22 -0400268 if (!f.file)
269 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800272 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 goto out_putf;
274
Al Viro2903ff02012-08-28 12:52:22 -0400275 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800276 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 retval = (int)offset;
279 if (offset >= 0) {
280 retval = -EFAULT;
281 if (!copy_to_user(result, &offset, sizeof(offset)))
282 retval = 0;
283 }
284out_putf:
Al Viro2903ff02012-08-28 12:52:22 -0400285 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return retval;
287}
288#endif
289
Linus Torvaldse28cc712006-01-04 16:20:40 -0800290/*
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.
294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
296{
297 struct inode *inode;
298 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100299 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Al Viro496ad9a2013-01-23 17:07:38 -0500301 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800302 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100303 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500305 if (unlikely(pos < 0)) {
306 if (!unsigned_offsets(file))
307 return retval;
308 if (count >= -pos) /* both values are in 0..LLONG_MAX */
309 return -EOVERFLOW;
310 } else if (unlikely((loff_t) (pos + count) < 0)) {
311 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700312 return retval;
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Pavel Emelyanova16877c2007-10-01 14:41:11 -0700315 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100316 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800317 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
318 inode, file, pos, count);
319 if (retval < 0)
320 return retval;
321 }
James Morrisc43e2592008-01-12 22:05:48 +1100322 retval = security_file_permission(file,
323 read_write == READ ? MAY_READ : MAY_WRITE);
324 if (retval)
325 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800326 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700329static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
330{
331 set_current_state(TASK_UNINTERRUPTIBLE);
332 if (!kiocbIsKicked(iocb))
333 schedule();
334 else
335 kiocbClearKicked(iocb);
336 __set_current_state(TASK_RUNNING);
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
340{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700341 struct iovec iov = { .iov_base = buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct kiocb kiocb;
343 ssize_t ret;
344
345 init_sync_kiocb(&kiocb, filp);
346 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700347 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000348 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700349
350 for (;;) {
351 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
352 if (ret != -EIOCBRETRY)
353 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700354 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700355 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (-EIOCBQUEUED == ret)
358 ret = wait_on_sync_kiocb(&kiocb);
359 *ppos = kiocb.ki_pos;
360 return ret;
361}
362
363EXPORT_SYMBOL(do_sync_read);
364
365ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
366{
367 ssize_t ret;
368
369 if (!(file->f_mode & FMODE_READ))
370 return -EBADF;
371 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
372 return -EINVAL;
373 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
374 return -EFAULT;
375
376 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800377 if (ret >= 0) {
378 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100379 if (file->f_op->read)
380 ret = file->f_op->read(file, buf, count, pos);
381 else
382 ret = do_sync_read(file, buf, count, pos);
383 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500384 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100385 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
James Morrisc43e2592008-01-12 22:05:48 +1100387 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
390 return ret;
391}
392
393EXPORT_SYMBOL(vfs_read);
394
395ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
396{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700397 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct kiocb kiocb;
399 ssize_t ret;
400
401 init_sync_kiocb(&kiocb, filp);
402 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700403 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000404 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700405
406 for (;;) {
407 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
408 if (ret != -EIOCBRETRY)
409 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700410 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700411 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (-EIOCBQUEUED == ret)
414 ret = wait_on_sync_kiocb(&kiocb);
415 *ppos = kiocb.ki_pos;
416 return ret;
417}
418
419EXPORT_SYMBOL(do_sync_write);
420
Al Viro06ae43f2013-03-20 13:19:30 -0400421ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
422{
423 mm_segment_t old_fs;
424 const char __user *p;
425 ssize_t ret;
426
Al Viro3e84f482013-03-27 15:20:30 +0000427 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
428 return -EINVAL;
429
Al Viro06ae43f2013-03-20 13:19:30 -0400430 old_fs = get_fs();
431 set_fs(get_ds());
432 p = (__force const char __user *)buf;
433 if (count > MAX_RW_COUNT)
434 count = MAX_RW_COUNT;
435 if (file->f_op->write)
436 ret = file->f_op->write(file, p, count, pos);
437 else
438 ret = do_sync_write(file, p, count, pos);
439 set_fs(old_fs);
440 if (ret > 0) {
441 fsnotify_modify(file);
442 add_wchar(current, ret);
443 }
444 inc_syscw(current);
445 return ret;
446}
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
449{
450 ssize_t ret;
451
452 if (!(file->f_mode & FMODE_WRITE))
453 return -EBADF;
454 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
455 return -EINVAL;
456 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
457 return -EFAULT;
458
459 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800460 if (ret >= 0) {
461 count = ret;
Al Viro03d95eb2013-03-20 13:04:20 -0400462 file_start_write(file);
James Morrisc43e2592008-01-12 22:05:48 +1100463 if (file->f_op->write)
464 ret = file->f_op->write(file, buf, count, pos);
465 else
466 ret = do_sync_write(file, buf, count, pos);
467 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500468 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100469 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
James Morrisc43e2592008-01-12 22:05:48 +1100471 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400472 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
475 return ret;
476}
477
478EXPORT_SYMBOL(vfs_write);
479
480static inline loff_t file_pos_read(struct file *file)
481{
482 return file->f_pos;
483}
484
485static inline void file_pos_write(struct file *file, loff_t pos)
486{
487 file->f_pos = pos;
488}
489
Heiko Carstens3cdad422009-01-14 14:14:22 +0100490SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Al Viro2903ff02012-08-28 12:52:22 -0400492 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Al Viro2903ff02012-08-28 12:52:22 -0400495 if (f.file) {
496 loff_t pos = file_pos_read(f.file);
497 ret = vfs_read(f.file, buf, count, &pos);
498 file_pos_write(f.file, pos);
499 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ret;
502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Heiko Carstens3cdad422009-01-14 14:14:22 +0100504SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
505 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Al Viro2903ff02012-08-28 12:52:22 -0400507 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Al Viro2903ff02012-08-28 12:52:22 -0400510 if (f.file) {
511 loff_t pos = file_pos_read(f.file);
512 ret = vfs_write(f.file, buf, count, &pos);
513 file_pos_write(f.file, pos);
514 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
517 return ret;
518}
519
Al Viro4a0fd5b2013-01-21 15:16:58 -0500520SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
521 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Al Viro2903ff02012-08-28 12:52:22 -0400523 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (pos < 0)
527 return -EINVAL;
528
Al Viro2903ff02012-08-28 12:52:22 -0400529 f = fdget(fd);
530 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400532 if (f.file->f_mode & FMODE_PREAD)
533 ret = vfs_read(f.file, buf, count, &pos);
534 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
537 return ret;
538}
539
Al Viro4a0fd5b2013-01-21 15:16:58 -0500540SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
541 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Al Viro2903ff02012-08-28 12:52:22 -0400543 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 if (pos < 0)
547 return -EINVAL;
548
Al Viro2903ff02012-08-28 12:52:22 -0400549 f = fdget(fd);
550 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400552 if (f.file->f_mode & FMODE_PWRITE)
553 ret = vfs_write(f.file, buf, count, &pos);
554 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556
557 return ret;
558}
559
560/*
561 * Reduce an iovec's length in-place. Return the resulting number of segments
562 */
563unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
564{
565 unsigned long seg = 0;
566 size_t len = 0;
567
568 while (seg < nr_segs) {
569 seg++;
570 if (len + iov->iov_len >= to) {
571 iov->iov_len = to - len;
572 break;
573 }
574 len += iov->iov_len;
575 iov++;
576 }
577 return seg;
578}
Eric Sandeen19295522008-01-28 23:58:27 -0500579EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Al Viro72ec3512013-03-20 10:42:10 -0400581static ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700582 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
583{
584 struct kiocb kiocb;
585 ssize_t ret;
586
587 init_sync_kiocb(&kiocb, filp);
588 kiocb.ki_pos = *ppos;
589 kiocb.ki_left = len;
590 kiocb.ki_nbytes = len;
591
592 for (;;) {
593 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
594 if (ret != -EIOCBRETRY)
595 break;
596 wait_on_retry_sync_kiocb(&kiocb);
597 }
598
599 if (ret == -EIOCBQUEUED)
600 ret = wait_on_sync_kiocb(&kiocb);
601 *ppos = kiocb.ki_pos;
602 return ret;
603}
604
605/* Do it by hand, with file-ops */
Al Viro72ec3512013-03-20 10:42:10 -0400606static ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700607 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
608{
609 struct iovec *vector = iov;
610 ssize_t ret = 0;
611
612 while (nr_segs > 0) {
613 void __user *base;
614 size_t len;
615 ssize_t nr;
616
617 base = vector->iov_base;
618 len = vector->iov_len;
619 vector++;
620 nr_segs--;
621
622 nr = fn(filp, base, len, ppos);
623
624 if (nr < 0) {
625 if (!ret)
626 ret = nr;
627 break;
628 }
629 ret += nr;
630 if (nr != len)
631 break;
632 }
633
634 return ret;
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/* A write operation does a read from user space and vice versa */
638#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
639
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700640ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
641 unsigned long nr_segs, unsigned long fast_segs,
642 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700643 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700644{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700645 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700646 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700647 struct iovec *iov = fast_pointer;
648
Linus Torvalds435f49a2010-10-29 10:36:49 -0700649 /*
650 * SuS says "The readv() function *may* fail if the iovcnt argument
651 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
652 * traditionally returned zero for zero segments, so...
653 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700654 if (nr_segs == 0) {
655 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700656 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700657 }
658
Linus Torvalds435f49a2010-10-29 10:36:49 -0700659 /*
660 * First get the "struct iovec" from user memory and
661 * verify all the pointers
662 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700663 if (nr_segs > UIO_MAXIOV) {
664 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700665 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700666 }
667 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700668 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700669 if (iov == NULL) {
670 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700671 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700672 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700673 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700674 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
675 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700676 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700677 }
678
Linus Torvalds435f49a2010-10-29 10:36:49 -0700679 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700680 * According to the Single Unix Specification we should return EINVAL
681 * if an element length is < 0 when cast to ssize_t or if the
682 * total length would overflow the ssize_t return value of the
683 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700684 *
685 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
686 * overflow case.
687 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700688 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700689 for (seg = 0; seg < nr_segs; seg++) {
690 void __user *buf = iov[seg].iov_base;
691 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700692
693 /* see if we we're about to use an invalid len or if
694 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700695 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700696 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700697 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700698 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700699 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700700 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700701 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700702 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700703 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700704 if (len > MAX_RW_COUNT - ret) {
705 len = MAX_RW_COUNT - ret;
706 iov[seg].iov_len = len;
707 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700708 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700709 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700710out:
711 *ret_pointer = iov;
712 return ret;
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715static ssize_t do_readv_writev(int type, struct file *file,
716 const struct iovec __user * uvector,
717 unsigned long nr_segs, loff_t *pos)
718{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 size_t tot_len;
720 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700721 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 io_fn_t fn;
724 iov_fn_t fnv;
725
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700726 if (!file->f_op) {
727 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 goto out;
729 }
730
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700731 ret = rw_copy_check_uvector(type, uvector, nr_segs,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700732 ARRAY_SIZE(iovstack), iovstack, &iov);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700733 if (ret <= 0)
734 goto out;
735
736 tot_len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800738 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto out;
740
741 fnv = NULL;
742 if (type == READ) {
743 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700744 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 } else {
746 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700747 fnv = file->f_op->aio_write;
Al Viro03d95eb2013-03-20 13:04:20 -0400748 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700751 if (fnv)
752 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
753 pos, fnv);
754 else
755 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Al Viro03d95eb2013-03-20 13:04:20 -0400757 if (type != READ)
758 file_end_write(file);
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760out:
761 if (iov != iovstack)
762 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400763 if ((ret + (type == READ)) > 0) {
764 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500765 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400766 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500767 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
773 unsigned long vlen, loff_t *pos)
774{
775 if (!(file->f_mode & FMODE_READ))
776 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700777 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return -EINVAL;
779
780 return do_readv_writev(READ, file, vec, vlen, pos);
781}
782
783EXPORT_SYMBOL(vfs_readv);
784
785ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
786 unsigned long vlen, loff_t *pos)
787{
788 if (!(file->f_mode & FMODE_WRITE))
789 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700790 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -EINVAL;
792
793 return do_readv_writev(WRITE, file, vec, vlen, pos);
794}
795
796EXPORT_SYMBOL(vfs_writev);
797
Heiko Carstens3cdad422009-01-14 14:14:22 +0100798SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
799 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Al Viro2903ff02012-08-28 12:52:22 -0400801 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Al Viro2903ff02012-08-28 12:52:22 -0400804 if (f.file) {
805 loff_t pos = file_pos_read(f.file);
806 ret = vfs_readv(f.file, vec, vlen, &pos);
807 file_pos_write(f.file, pos);
808 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
811 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800812 add_rchar(current, ret);
813 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return ret;
815}
816
Heiko Carstens3cdad422009-01-14 14:14:22 +0100817SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
818 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Al Viro2903ff02012-08-28 12:52:22 -0400820 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Al Viro2903ff02012-08-28 12:52:22 -0400823 if (f.file) {
824 loff_t pos = file_pos_read(f.file);
825 ret = vfs_writev(f.file, vec, vlen, &pos);
826 file_pos_write(f.file, pos);
827 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829
830 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800831 add_wchar(current, ret);
832 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return ret;
834}
835
Linus Torvalds601cc112009-04-03 08:03:22 -0700836static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700837{
Linus Torvalds601cc112009-04-03 08:03:22 -0700838#define HALF_LONG_BITS (BITS_PER_LONG / 2)
839 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
840}
841
842SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
843 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
844{
845 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400846 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700847 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700848
849 if (pos < 0)
850 return -EINVAL;
851
Al Viro2903ff02012-08-28 12:52:22 -0400852 f = fdget(fd);
853 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700854 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400855 if (f.file->f_mode & FMODE_PREAD)
856 ret = vfs_readv(f.file, vec, vlen, &pos);
857 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700858 }
859
860 if (ret > 0)
861 add_rchar(current, ret);
862 inc_syscr(current);
863 return ret;
864}
865
866SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700867 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700868{
Linus Torvalds601cc112009-04-03 08:03:22 -0700869 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400870 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700871 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700872
873 if (pos < 0)
874 return -EINVAL;
875
Al Viro2903ff02012-08-28 12:52:22 -0400876 f = fdget(fd);
877 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700878 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400879 if (f.file->f_mode & FMODE_PWRITE)
880 ret = vfs_writev(f.file, vec, vlen, &pos);
881 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700882 }
883
884 if (ret > 0)
885 add_wchar(current, ret);
886 inc_syscw(current);
887 return ret;
888}
889
Al Viro72ec3512013-03-20 10:42:10 -0400890#ifdef CONFIG_COMPAT
891
892static ssize_t compat_do_readv_writev(int type, struct file *file,
893 const struct compat_iovec __user *uvector,
894 unsigned long nr_segs, loff_t *pos)
895{
896 compat_ssize_t tot_len;
897 struct iovec iovstack[UIO_FASTIOV];
898 struct iovec *iov = iovstack;
899 ssize_t ret;
900 io_fn_t fn;
901 iov_fn_t fnv;
902
903 ret = -EINVAL;
904 if (!file->f_op)
905 goto out;
906
907 ret = -EFAULT;
908 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
909 goto out;
910
911 ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
912 UIO_FASTIOV, iovstack, &iov);
913 if (ret <= 0)
914 goto out;
915
916 tot_len = ret;
917 ret = rw_verify_area(type, file, pos, tot_len);
918 if (ret < 0)
919 goto out;
920
921 fnv = NULL;
922 if (type == READ) {
923 fn = file->f_op->read;
924 fnv = file->f_op->aio_read;
925 } else {
926 fn = (io_fn_t)file->f_op->write;
927 fnv = file->f_op->aio_write;
Al Viro03d95eb2013-03-20 13:04:20 -0400928 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -0400929 }
930
Al Viro03d95eb2013-03-20 13:04:20 -0400931 if (fnv)
Al Viro72ec3512013-03-20 10:42:10 -0400932 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
933 pos, fnv);
Al Viro03d95eb2013-03-20 13:04:20 -0400934 else
Al Viro72ec3512013-03-20 10:42:10 -0400935 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
936
Al Viro03d95eb2013-03-20 13:04:20 -0400937 if (type != READ)
938 file_end_write(file);
939
Al Viro72ec3512013-03-20 10:42:10 -0400940out:
941 if (iov != iovstack)
942 kfree(iov);
943 if ((ret + (type == READ)) > 0) {
944 if (type == READ)
945 fsnotify_access(file);
946 else
947 fsnotify_modify(file);
948 }
949 return ret;
950}
951
952static size_t compat_readv(struct file *file,
953 const struct compat_iovec __user *vec,
954 unsigned long vlen, loff_t *pos)
955{
956 ssize_t ret = -EBADF;
957
958 if (!(file->f_mode & FMODE_READ))
959 goto out;
960
961 ret = -EINVAL;
962 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
963 goto out;
964
965 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
966
967out:
968 if (ret > 0)
969 add_rchar(current, ret);
970 inc_syscr(current);
971 return ret;
972}
973
974COMPAT_SYSCALL_DEFINE3(readv, unsigned long, fd,
975 const struct compat_iovec __user *,vec,
976 unsigned long, vlen)
977{
978 struct fd f = fdget(fd);
979 ssize_t ret;
980 loff_t pos;
981
982 if (!f.file)
983 return -EBADF;
984 pos = f.file->f_pos;
985 ret = compat_readv(f.file, vec, vlen, &pos);
986 f.file->f_pos = pos;
987 fdput(f);
988 return ret;
989}
990
991COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
992 const struct compat_iovec __user *,vec,
993 unsigned long, vlen, loff_t, pos)
994{
995 struct fd f;
996 ssize_t ret;
997
998 if (pos < 0)
999 return -EINVAL;
1000 f = fdget(fd);
1001 if (!f.file)
1002 return -EBADF;
1003 ret = -ESPIPE;
1004 if (f.file->f_mode & FMODE_PREAD)
1005 ret = compat_readv(f.file, vec, vlen, &pos);
1006 fdput(f);
1007 return ret;
1008}
1009
1010COMPAT_SYSCALL_DEFINE5(preadv, unsigned long, fd,
1011 const struct compat_iovec __user *,vec,
1012 unsigned long, vlen, u32, pos_low, u32, pos_high)
1013{
1014 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1015 return compat_sys_preadv64(fd, vec, vlen, pos);
1016}
1017
1018static size_t compat_writev(struct file *file,
1019 const struct compat_iovec __user *vec,
1020 unsigned long vlen, loff_t *pos)
1021{
1022 ssize_t ret = -EBADF;
1023
1024 if (!(file->f_mode & FMODE_WRITE))
1025 goto out;
1026
1027 ret = -EINVAL;
1028 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
1029 goto out;
1030
1031 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1032
1033out:
1034 if (ret > 0)
1035 add_wchar(current, ret);
1036 inc_syscw(current);
1037 return ret;
1038}
1039
1040COMPAT_SYSCALL_DEFINE3(writev, unsigned long, fd,
1041 const struct compat_iovec __user *, vec,
1042 unsigned long, vlen)
1043{
1044 struct fd f = fdget(fd);
1045 ssize_t ret;
1046 loff_t pos;
1047
1048 if (!f.file)
1049 return -EBADF;
1050 pos = f.file->f_pos;
1051 ret = compat_writev(f.file, vec, vlen, &pos);
1052 f.file->f_pos = pos;
1053 fdput(f);
1054 return ret;
1055}
1056
1057COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1058 const struct compat_iovec __user *,vec,
1059 unsigned long, vlen, loff_t, pos)
1060{
1061 struct fd f;
1062 ssize_t ret;
1063
1064 if (pos < 0)
1065 return -EINVAL;
1066 f = fdget(fd);
1067 if (!f.file)
1068 return -EBADF;
1069 ret = -ESPIPE;
1070 if (f.file->f_mode & FMODE_PWRITE)
1071 ret = compat_writev(f.file, vec, vlen, &pos);
1072 fdput(f);
1073 return ret;
1074}
1075
1076COMPAT_SYSCALL_DEFINE5(pwritev, unsigned long, fd,
1077 const struct compat_iovec __user *,vec,
1078 unsigned long, vlen, u32, pos_low, u32, pos_high)
1079{
1080 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1081 return compat_sys_pwritev64(fd, vec, vlen, pos);
1082}
1083#endif
1084
Al Viro19f4fc32013-02-24 02:17:03 -05001085static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1086 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Al Viro2903ff02012-08-28 12:52:22 -04001088 struct fd in, out;
1089 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 loff_t pos;
1091 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001092 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 /*
1095 * Get input file, and verify that it is ok..
1096 */
1097 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001098 in = fdget(in_fd);
1099 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001101 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 retval = -ESPIPE;
1104 if (!ppos)
Al Viro2903ff02012-08-28 12:52:22 -04001105 ppos = &in.file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 else
Al Viro2903ff02012-08-28 12:52:22 -04001107 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001109 retval = rw_verify_area(READ, in.file, ppos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001110 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001112 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /*
1115 * Get output file, and verify that it is ok..
1116 */
1117 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001118 out = fdget(out_fd);
1119 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001121 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 goto fput_out;
1123 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001124 in_inode = file_inode(in.file);
1125 out_inode = file_inode(out.file);
Al Viro2903ff02012-08-28 12:52:22 -04001126 retval = rw_verify_area(WRITE, out.file, &out.file->f_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001127 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001129 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (!max)
1132 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1133
1134 pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (unlikely(pos + count > max)) {
1136 retval = -EOVERFLOW;
1137 if (pos >= max)
1138 goto fput_out;
1139 count = max - pos;
1140 }
1141
Jens Axboed96e6e72007-06-11 12:18:52 +02001142 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001143#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001144 /*
1145 * We need to debate whether we can enable this or not. The
1146 * man page documents EAGAIN return for the output at least,
1147 * and the application is arguably buggy if it doesn't expect
1148 * EAGAIN on a non-blocking file descriptor.
1149 */
Al Viro2903ff02012-08-28 12:52:22 -04001150 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001151 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001152#endif
Al Viro2903ff02012-08-28 12:52:22 -04001153 retval = do_splice_direct(in.file, ppos, out.file, count, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001156 add_rchar(current, retval);
1157 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001158 fsnotify_access(in.file);
1159 fsnotify_modify(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001162 inc_syscr(current);
1163 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (*ppos > max)
1165 retval = -EOVERFLOW;
1166
1167fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001168 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001170 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171out:
1172 return retval;
1173}
1174
Heiko Carstens002c8972009-01-14 14:14:18 +01001175SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 loff_t pos;
1178 off_t off;
1179 ssize_t ret;
1180
1181 if (offset) {
1182 if (unlikely(get_user(off, offset)))
1183 return -EFAULT;
1184 pos = off;
1185 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1186 if (unlikely(put_user(pos, offset)))
1187 return -EFAULT;
1188 return ret;
1189 }
1190
1191 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1192}
1193
Heiko Carstens002c8972009-01-14 14:14:18 +01001194SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 loff_t pos;
1197 ssize_t ret;
1198
1199 if (offset) {
1200 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1201 return -EFAULT;
1202 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1203 if (unlikely(put_user(pos, offset)))
1204 return -EFAULT;
1205 return ret;
1206 }
1207
1208 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1209}
Al Viro19f4fc32013-02-24 02:17:03 -05001210
1211#ifdef CONFIG_COMPAT
1212COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1213 compat_off_t __user *, offset, compat_size_t, count)
1214{
1215 loff_t pos;
1216 off_t off;
1217 ssize_t ret;
1218
1219 if (offset) {
1220 if (unlikely(get_user(off, offset)))
1221 return -EFAULT;
1222 pos = off;
1223 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
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}
1231
1232COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1233 compat_loff_t __user *, offset, compat_size_t, count)
1234{
1235 loff_t pos;
1236 ssize_t ret;
1237
1238 if (offset) {
1239 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1240 return -EFAULT;
1241 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1242 if (unlikely(put_user(pos, offset)))
1243 return -EFAULT;
1244 return ret;
1245 }
1246
1247 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1248}
1249#endif