blob: dcfd58d95f44757e2496f57aa3430c3989efa75b [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/uaccess.h>
22#include <asm/unistd.h>
23
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080024const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070026 .read = do_sync_read,
27 .aio_read = generic_file_aio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020029 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32EXPORT_SYMBOL(generic_ro_fops);
33
Al Virocccb5a12010-12-17 07:44:05 -050034static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070035{
Al Virocccb5a12010-12-17 07:44:05 -050036 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070037}
38
Andi Kleenef3d0fd2011-09-15 16:06:48 -070039static loff_t lseek_execute(struct file *file, struct inode *inode,
40 loff_t offset, loff_t maxsize)
41{
42 if (offset < 0 && !unsigned_offsets(file))
43 return -EINVAL;
44 if (offset > maxsize)
45 return -EINVAL;
46
47 if (offset != file->f_pos) {
48 file->f_pos = offset;
49 file->f_version = 0;
50 }
51 return offset;
52}
53
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020054/**
Andi Kleen57604952011-09-15 16:06:50 -070055 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020056 * @file: file structure to seek on
57 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080058 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050059 * @size: max size of this file in file system
60 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020061 *
Andi Kleen57604952011-09-15 16:06:50 -070062 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050063 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070064 *
65 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070066 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070067 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
68 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020069 */
Andi Kleen9465efc2008-06-27 11:05:24 +020070loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080071generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050072 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct inode *inode = file->f_mapping->host;
75
Andrew Morton965c8e52012-12-17 15:59:39 -080076 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020077 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050078 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020079 break;
80 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080081 /*
82 * Here we special-case the lseek(fd, 0, SEEK_CUR)
83 * position-querying operation. Avoid rewriting the "same"
84 * f_pos value back to the file because a concurrent read(),
85 * write() or lseek() might have altered it
86 */
87 if (offset == 0)
88 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -070089 /*
90 * f_lock protects against read/modify/write race with other
91 * SEEK_CURs. Note that parallel writes and reads behave
92 * like SEEK_SET.
93 */
94 spin_lock(&file->f_lock);
95 offset = lseek_execute(file, inode, file->f_pos + offset,
Andi Kleen57604952011-09-15 16:06:50 -070096 maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070097 spin_unlock(&file->f_lock);
98 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -040099 case SEEK_DATA:
100 /*
101 * In the generic case the entire file is data, so as long as
102 * offset isn't at the end of the file then the offset is data.
103 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500104 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400105 return -ENXIO;
106 break;
107 case SEEK_HOLE:
108 /*
109 * There is a virtual hole at the end of the file, so as long as
110 * offset isn't i_size or larger, return i_size.
111 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500112 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400113 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500114 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200117
Andi Kleen57604952011-09-15 16:06:50 -0700118 return lseek_execute(file, inode, offset, maxsize);
119}
120EXPORT_SYMBOL(generic_file_llseek_size);
121
122/**
123 * generic_file_llseek - generic llseek implementation for regular files
124 * @file: file structure to seek on
125 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800126 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700127 *
128 * This is a generic implemenation of ->llseek useable for all normal local
129 * filesystems. It just updates the file offset to the value specified by
Andrew Morton965c8e52012-12-17 15:59:39 -0800130 * @offset and @whence under i_mutex.
Andi Kleen57604952011-09-15 16:06:50 -0700131 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800132loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700133{
134 struct inode *inode = file->f_mapping->host;
135
Andrew Morton965c8e52012-12-17 15:59:39 -0800136 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500137 inode->i_sb->s_maxbytes,
138 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
Andi Kleen9465efc2008-06-27 11:05:24 +0200140EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
jan Blunckae6afc32010-05-26 14:44:48 -0700142/**
143 * noop_llseek - No Operation Performed llseek implementation
144 * @file: file structure to seek on
145 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800146 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700147 *
148 * This is an implementation of ->llseek useable for the rare special case when
149 * userspace expects the seek to succeed but the (device) file is actually not
150 * able to perform the seek. In this case you use noop_llseek() instead of
151 * falling back to the default implementation of ->llseek.
152 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800153loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700154{
155 return file->f_pos;
156}
157EXPORT_SYMBOL(noop_llseek);
158
Andrew Morton965c8e52012-12-17 15:59:39 -0800159loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 return -ESPIPE;
162}
163EXPORT_SYMBOL(no_llseek);
164
Andrew Morton965c8e52012-12-17 15:59:39 -0800165loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Al Viro496ad9a2013-01-23 17:07:38 -0500167 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200168 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Josef Bacik982d8162011-07-18 13:21:35 -0400170 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800171 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700172 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400173 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700175 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800176 if (offset == 0) {
177 retval = file->f_pos;
178 goto out;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400181 break;
182 case SEEK_DATA:
183 /*
184 * In the generic case the entire file is data, so as
185 * long as offset isn't at the end of the file then the
186 * offset is data.
187 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300188 if (offset >= inode->i_size) {
189 retval = -ENXIO;
190 goto out;
191 }
Josef Bacik982d8162011-07-18 13:21:35 -0400192 break;
193 case SEEK_HOLE:
194 /*
195 * There is a virtual hole at the end of the file, so
196 * as long as offset isn't i_size or larger, return
197 * i_size.
198 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300199 if (offset >= inode->i_size) {
200 retval = -ENXIO;
201 goto out;
202 }
Josef Bacik982d8162011-07-18 13:21:35 -0400203 offset = inode->i_size;
204 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500207 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (offset != file->f_pos) {
209 file->f_pos = offset;
210 file->f_version = 0;
211 }
212 retval = offset;
213 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800214out:
Josef Bacik982d8162011-07-18 13:21:35 -0400215 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return retval;
217}
218EXPORT_SYMBOL(default_llseek);
219
Andrew Morton965c8e52012-12-17 15:59:39 -0800220loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 loff_t (*fn)(struct file *, loff_t, int);
223
224 fn = no_llseek;
225 if (file->f_mode & FMODE_LSEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (file->f_op && file->f_op->llseek)
227 fn = file->f_op->llseek;
228 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800229 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231EXPORT_SYMBOL(vfs_llseek);
232
Andrew Morton965c8e52012-12-17 15:59:39 -0800233SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 off_t retval;
Al Viro2903ff02012-08-28 12:52:22 -0400236 struct fd f = fdget(fd);
237 if (!f.file)
238 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800241 if (whence <= SEEK_MAX) {
242 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 retval = res;
244 if (res != (loff_t)retval)
245 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
246 }
Al Viro2903ff02012-08-28 12:52:22 -0400247 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return retval;
249}
250
Al Viro561c6732013-02-24 10:52:26 -0500251#ifdef CONFIG_COMPAT
252COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
253{
254 return sys_lseek(fd, offset, whence);
255}
256#endif
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100259SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
260 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800261 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int retval;
Al Viro2903ff02012-08-28 12:52:22 -0400264 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Al Viro2903ff02012-08-28 12:52:22 -0400267 if (!f.file)
268 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800271 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 goto out_putf;
273
Al Viro2903ff02012-08-28 12:52:22 -0400274 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800275 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 retval = (int)offset;
278 if (offset >= 0) {
279 retval = -EFAULT;
280 if (!copy_to_user(result, &offset, sizeof(offset)))
281 retval = 0;
282 }
283out_putf:
Al Viro2903ff02012-08-28 12:52:22 -0400284 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return retval;
286}
287#endif
288
Linus Torvaldse28cc712006-01-04 16:20:40 -0800289/*
290 * rw_verify_area doesn't like huge counts. We limit
291 * them to something that fits in "int" so that others
292 * won't have to do range checks all the time.
293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
295{
296 struct inode *inode;
297 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100298 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Al Viro496ad9a2013-01-23 17:07:38 -0500300 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800301 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100302 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500304 if (unlikely(pos < 0)) {
305 if (!unsigned_offsets(file))
306 return retval;
307 if (count >= -pos) /* both values are in 0..LLONG_MAX */
308 return -EOVERFLOW;
309 } else if (unlikely((loff_t) (pos + count) < 0)) {
310 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700311 return retval;
312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Pavel Emelyanova16877c2007-10-01 14:41:11 -0700314 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100315 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800316 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
317 inode, file, pos, count);
318 if (retval < 0)
319 return retval;
320 }
James Morrisc43e2592008-01-12 22:05:48 +1100321 retval = security_file_permission(file,
322 read_write == READ ? MAY_READ : MAY_WRITE);
323 if (retval)
324 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800325 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700328static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
329{
330 set_current_state(TASK_UNINTERRUPTIBLE);
331 if (!kiocbIsKicked(iocb))
332 schedule();
333 else
334 kiocbClearKicked(iocb);
335 __set_current_state(TASK_RUNNING);
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
339{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700340 struct iovec iov = { .iov_base = buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct kiocb kiocb;
342 ssize_t ret;
343
344 init_sync_kiocb(&kiocb, filp);
345 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700346 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000347 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700348
349 for (;;) {
350 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
351 if (ret != -EIOCBRETRY)
352 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700353 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700354 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (-EIOCBQUEUED == ret)
357 ret = wait_on_sync_kiocb(&kiocb);
358 *ppos = kiocb.ki_pos;
359 return ret;
360}
361
362EXPORT_SYMBOL(do_sync_read);
363
364ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
365{
366 ssize_t ret;
367
368 if (!(file->f_mode & FMODE_READ))
369 return -EBADF;
370 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
371 return -EINVAL;
372 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
373 return -EFAULT;
374
375 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800376 if (ret >= 0) {
377 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100378 if (file->f_op->read)
379 ret = file->f_op->read(file, buf, count, pos);
380 else
381 ret = do_sync_read(file, buf, count, pos);
382 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500383 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100384 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
James Morrisc43e2592008-01-12 22:05:48 +1100386 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 return ret;
390}
391
392EXPORT_SYMBOL(vfs_read);
393
394ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
395{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700396 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 struct kiocb kiocb;
398 ssize_t ret;
399
400 init_sync_kiocb(&kiocb, filp);
401 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700402 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000403 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700404
405 for (;;) {
406 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
407 if (ret != -EIOCBRETRY)
408 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700409 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700410 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (-EIOCBQUEUED == ret)
413 ret = wait_on_sync_kiocb(&kiocb);
414 *ppos = kiocb.ki_pos;
415 return ret;
416}
417
418EXPORT_SYMBOL(do_sync_write);
419
420ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
421{
422 ssize_t ret;
423
424 if (!(file->f_mode & FMODE_WRITE))
425 return -EBADF;
426 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
427 return -EINVAL;
428 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
429 return -EFAULT;
430
431 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800432 if (ret >= 0) {
433 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100434 if (file->f_op->write)
435 ret = file->f_op->write(file, buf, count, pos);
436 else
437 ret = do_sync_write(file, buf, count, pos);
438 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500439 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100440 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
James Morrisc43e2592008-01-12 22:05:48 +1100442 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
445 return ret;
446}
447
448EXPORT_SYMBOL(vfs_write);
449
450static inline loff_t file_pos_read(struct file *file)
451{
452 return file->f_pos;
453}
454
455static inline void file_pos_write(struct file *file, loff_t pos)
456{
457 file->f_pos = pos;
458}
459
Heiko Carstens3cdad422009-01-14 14:14:22 +0100460SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Al Viro2903ff02012-08-28 12:52:22 -0400462 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Al Viro2903ff02012-08-28 12:52:22 -0400465 if (f.file) {
466 loff_t pos = file_pos_read(f.file);
467 ret = vfs_read(f.file, buf, count, &pos);
468 file_pos_write(f.file, pos);
469 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return ret;
472}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Heiko Carstens3cdad422009-01-14 14:14:22 +0100474SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
475 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Al Viro2903ff02012-08-28 12:52:22 -0400477 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Al Viro2903ff02012-08-28 12:52:22 -0400480 if (f.file) {
481 loff_t pos = file_pos_read(f.file);
482 ret = vfs_write(f.file, buf, count, &pos);
483 file_pos_write(f.file, pos);
484 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486
487 return ret;
488}
489
Al Viro4a0fd5b2013-01-21 15:16:58 -0500490SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
491 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Al Viro2903ff02012-08-28 12:52:22 -0400493 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (pos < 0)
497 return -EINVAL;
498
Al Viro2903ff02012-08-28 12:52:22 -0400499 f = fdget(fd);
500 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400502 if (f.file->f_mode & FMODE_PREAD)
503 ret = vfs_read(f.file, buf, count, &pos);
504 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 return ret;
508}
509
Al Viro4a0fd5b2013-01-21 15:16:58 -0500510SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
511 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Al Viro2903ff02012-08-28 12:52:22 -0400513 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (pos < 0)
517 return -EINVAL;
518
Al Viro2903ff02012-08-28 12:52:22 -0400519 f = fdget(fd);
520 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400522 if (f.file->f_mode & FMODE_PWRITE)
523 ret = vfs_write(f.file, buf, count, &pos);
524 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 return ret;
528}
529
530/*
531 * Reduce an iovec's length in-place. Return the resulting number of segments
532 */
533unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
534{
535 unsigned long seg = 0;
536 size_t len = 0;
537
538 while (seg < nr_segs) {
539 seg++;
540 if (len + iov->iov_len >= to) {
541 iov->iov_len = to - len;
542 break;
543 }
544 len += iov->iov_len;
545 iov++;
546 }
547 return seg;
548}
Eric Sandeen19295522008-01-28 23:58:27 -0500549EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700551ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
552 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
553{
554 struct kiocb kiocb;
555 ssize_t ret;
556
557 init_sync_kiocb(&kiocb, filp);
558 kiocb.ki_pos = *ppos;
559 kiocb.ki_left = len;
560 kiocb.ki_nbytes = len;
561
562 for (;;) {
563 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
564 if (ret != -EIOCBRETRY)
565 break;
566 wait_on_retry_sync_kiocb(&kiocb);
567 }
568
569 if (ret == -EIOCBQUEUED)
570 ret = wait_on_sync_kiocb(&kiocb);
571 *ppos = kiocb.ki_pos;
572 return ret;
573}
574
575/* Do it by hand, with file-ops */
576ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
577 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
578{
579 struct iovec *vector = iov;
580 ssize_t ret = 0;
581
582 while (nr_segs > 0) {
583 void __user *base;
584 size_t len;
585 ssize_t nr;
586
587 base = vector->iov_base;
588 len = vector->iov_len;
589 vector++;
590 nr_segs--;
591
592 nr = fn(filp, base, len, ppos);
593
594 if (nr < 0) {
595 if (!ret)
596 ret = nr;
597 break;
598 }
599 ret += nr;
600 if (nr != len)
601 break;
602 }
603
604 return ret;
605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/* A write operation does a read from user space and vice versa */
608#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
609
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700610ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
611 unsigned long nr_segs, unsigned long fast_segs,
612 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700613 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700614{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700615 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700616 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700617 struct iovec *iov = fast_pointer;
618
Linus Torvalds435f49a2010-10-29 10:36:49 -0700619 /*
620 * SuS says "The readv() function *may* fail if the iovcnt argument
621 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
622 * traditionally returned zero for zero segments, so...
623 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700624 if (nr_segs == 0) {
625 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700626 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700627 }
628
Linus Torvalds435f49a2010-10-29 10:36:49 -0700629 /*
630 * First get the "struct iovec" from user memory and
631 * verify all the pointers
632 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700633 if (nr_segs > UIO_MAXIOV) {
634 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700635 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700636 }
637 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700638 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700639 if (iov == NULL) {
640 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700641 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700642 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700643 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700644 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
645 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700646 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700647 }
648
Linus Torvalds435f49a2010-10-29 10:36:49 -0700649 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700650 * According to the Single Unix Specification we should return EINVAL
651 * if an element length is < 0 when cast to ssize_t or if the
652 * total length would overflow the ssize_t return value of the
653 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700654 *
655 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
656 * overflow case.
657 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700658 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700659 for (seg = 0; seg < nr_segs; seg++) {
660 void __user *buf = iov[seg].iov_base;
661 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700662
663 /* see if we we're about to use an invalid len or if
664 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700665 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700666 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700667 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700668 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700669 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700670 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700671 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700672 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700673 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700674 if (len > MAX_RW_COUNT - ret) {
675 len = MAX_RW_COUNT - ret;
676 iov[seg].iov_len = len;
677 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700678 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700679 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700680out:
681 *ret_pointer = iov;
682 return ret;
683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685static ssize_t do_readv_writev(int type, struct file *file,
686 const struct iovec __user * uvector,
687 unsigned long nr_segs, loff_t *pos)
688{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 size_t tot_len;
690 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700691 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 io_fn_t fn;
694 iov_fn_t fnv;
695
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700696 if (!file->f_op) {
697 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 goto out;
699 }
700
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700701 ret = rw_copy_check_uvector(type, uvector, nr_segs,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700702 ARRAY_SIZE(iovstack), iovstack, &iov);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700703 if (ret <= 0)
704 goto out;
705
706 tot_len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800708 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto out;
710
711 fnv = NULL;
712 if (type == READ) {
713 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700714 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 } else {
716 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700717 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700720 if (fnv)
721 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
722 pos, fnv);
723 else
724 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726out:
727 if (iov != iovstack)
728 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400729 if ((ret + (type == READ)) > 0) {
730 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500731 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400732 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500733 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
739 unsigned long vlen, loff_t *pos)
740{
741 if (!(file->f_mode & FMODE_READ))
742 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700743 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return -EINVAL;
745
746 return do_readv_writev(READ, file, vec, vlen, pos);
747}
748
749EXPORT_SYMBOL(vfs_readv);
750
751ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
752 unsigned long vlen, loff_t *pos)
753{
754 if (!(file->f_mode & FMODE_WRITE))
755 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700756 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -EINVAL;
758
759 return do_readv_writev(WRITE, file, vec, vlen, pos);
760}
761
762EXPORT_SYMBOL(vfs_writev);
763
Heiko Carstens3cdad422009-01-14 14:14:22 +0100764SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
765 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Al Viro2903ff02012-08-28 12:52:22 -0400767 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Al Viro2903ff02012-08-28 12:52:22 -0400770 if (f.file) {
771 loff_t pos = file_pos_read(f.file);
772 ret = vfs_readv(f.file, vec, vlen, &pos);
773 file_pos_write(f.file, pos);
774 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
777 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800778 add_rchar(current, ret);
779 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return ret;
781}
782
Heiko Carstens3cdad422009-01-14 14:14:22 +0100783SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
784 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Al Viro2903ff02012-08-28 12:52:22 -0400786 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Al Viro2903ff02012-08-28 12:52:22 -0400789 if (f.file) {
790 loff_t pos = file_pos_read(f.file);
791 ret = vfs_writev(f.file, vec, vlen, &pos);
792 file_pos_write(f.file, pos);
793 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800797 add_wchar(current, ret);
798 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return ret;
800}
801
Linus Torvalds601cc112009-04-03 08:03:22 -0700802static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700803{
Linus Torvalds601cc112009-04-03 08:03:22 -0700804#define HALF_LONG_BITS (BITS_PER_LONG / 2)
805 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
806}
807
808SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
809 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
810{
811 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400812 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700813 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700814
815 if (pos < 0)
816 return -EINVAL;
817
Al Viro2903ff02012-08-28 12:52:22 -0400818 f = fdget(fd);
819 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700820 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400821 if (f.file->f_mode & FMODE_PREAD)
822 ret = vfs_readv(f.file, vec, vlen, &pos);
823 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700824 }
825
826 if (ret > 0)
827 add_rchar(current, ret);
828 inc_syscr(current);
829 return ret;
830}
831
832SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700833 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700834{
Linus Torvalds601cc112009-04-03 08:03:22 -0700835 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400836 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700837 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700838
839 if (pos < 0)
840 return -EINVAL;
841
Al Viro2903ff02012-08-28 12:52:22 -0400842 f = fdget(fd);
843 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700844 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400845 if (f.file->f_mode & FMODE_PWRITE)
846 ret = vfs_writev(f.file, vec, vlen, &pos);
847 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700848 }
849
850 if (ret > 0)
851 add_wchar(current, ret);
852 inc_syscw(current);
853 return ret;
854}
855
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100856ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, size_t count,
857 loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Al Viro2903ff02012-08-28 12:52:22 -0400859 struct fd in, out;
860 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 loff_t pos;
862 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -0400863 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /*
866 * Get input file, and verify that it is ok..
867 */
868 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400869 in = fdget(in_fd);
870 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto out;
Al Viro2903ff02012-08-28 12:52:22 -0400872 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 retval = -ESPIPE;
875 if (!ppos)
Al Viro2903ff02012-08-28 12:52:22 -0400876 ppos = &in.file->f_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 else
Al Viro2903ff02012-08-28 12:52:22 -0400878 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -0400880 retval = rw_verify_area(READ, in.file, ppos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800881 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800883 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /*
886 * Get output file, and verify that it is ok..
887 */
888 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400889 out = fdget(out_fd);
890 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -0400892 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 goto fput_out;
894 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -0500895 in_inode = file_inode(in.file);
896 out_inode = file_inode(out.file);
Al Viro2903ff02012-08-28 12:52:22 -0400897 retval = rw_verify_area(WRITE, out.file, &out.file->f_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800898 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800900 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!max)
903 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
904
905 pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (unlikely(pos + count > max)) {
907 retval = -EOVERFLOW;
908 if (pos >= max)
909 goto fput_out;
910 count = max - pos;
911 }
912
Jens Axboed96e6e72007-06-11 12:18:52 +0200913 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +0200914#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +0200915 /*
916 * We need to debate whether we can enable this or not. The
917 * man page documents EAGAIN return for the output at least,
918 * and the application is arguably buggy if it doesn't expect
919 * EAGAIN on a non-blocking file descriptor.
920 */
Al Viro2903ff02012-08-28 12:52:22 -0400921 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +0200922 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +0200923#endif
Al Viro2903ff02012-08-28 12:52:22 -0400924 retval = do_splice_direct(in.file, ppos, out.file, count, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800927 add_rchar(current, retval);
928 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -0800929 fsnotify_access(in.file);
930 fsnotify_modify(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800933 inc_syscr(current);
934 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (*ppos > max)
936 retval = -EOVERFLOW;
937
938fput_out:
Al Viro2903ff02012-08-28 12:52:22 -0400939 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940fput_in:
Al Viro2903ff02012-08-28 12:52:22 -0400941 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942out:
943 return retval;
944}
945
Heiko Carstens002c8972009-01-14 14:14:18 +0100946SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 loff_t pos;
949 off_t off;
950 ssize_t ret;
951
952 if (offset) {
953 if (unlikely(get_user(off, offset)))
954 return -EFAULT;
955 pos = off;
956 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
957 if (unlikely(put_user(pos, offset)))
958 return -EFAULT;
959 return ret;
960 }
961
962 return do_sendfile(out_fd, in_fd, NULL, count, 0);
963}
964
Heiko Carstens002c8972009-01-14 14:14:18 +0100965SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 loff_t pos;
968 ssize_t ret;
969
970 if (offset) {
971 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
972 return -EFAULT;
973 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
974 if (unlikely(put_user(pos, offset)))
975 return -EFAULT;
976 return ret;
977 }
978
979 return do_sendfile(out_fd, in_fd, NULL, count, 0);
980}