blob: 69128b3786469b807f87763a51c819f4ad076503 [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>
Al Viro06ae43f2013-03-20 13:19:30 -040019#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/uaccess.h>
22#include <asm/unistd.h>
23
Al Viroc0bd14af2013-05-04 15:00:54 -040024typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
25typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *,
26 unsigned long, loff_t);
Al Viro293bc982014-02-11 18:37:41 -050027typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
Al Viroc0bd14af2013-05-04 15:00:54 -040028
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,
Al Viroaad4f8b2014-04-02 14:33:16 -040031 .read = new_sync_read,
32 .read_iter = generic_file_read_iter,
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) {
Al Viro72c2d532013-09-22 16:27:52 -0400260 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 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
Linus Torvalds9c225f22014-03-03 09:36:58 -0800267static inline struct fd fdget_pos(int fd)
268{
Al Virobd2a31d2014-03-04 14:54:22 -0500269 return __to_fd(__fdget_pos(fd));
Linus Torvalds9c225f22014-03-03 09:36:58 -0800270}
271
272static inline void fdput_pos(struct fd f)
273{
274 if (f.flags & FDPUT_POS_UNLOCK)
275 mutex_unlock(&f.file->f_pos_lock);
276 fdput(f);
277}
278
Andrew Morton965c8e52012-12-17 15:59:39 -0800279SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800282 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400283 if (!f.file)
284 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800287 if (whence <= SEEK_MAX) {
288 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 retval = res;
290 if (res != (loff_t)retval)
291 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
292 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800293 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return retval;
295}
296
Al Viro561c6732013-02-24 10:52:26 -0500297#ifdef CONFIG_COMPAT
298COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
299{
300 return sys_lseek(fd, offset, whence);
301}
302#endif
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100305SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
306 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800307 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500310 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Al Viro2903ff02012-08-28 12:52:22 -0400313 if (!f.file)
314 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800317 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 goto out_putf;
319
Al Viro2903ff02012-08-28 12:52:22 -0400320 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800321 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 retval = (int)offset;
324 if (offset >= 0) {
325 retval = -EFAULT;
326 if (!copy_to_user(result, &offset, sizeof(offset)))
327 retval = 0;
328 }
329out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500330 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return retval;
332}
333#endif
334
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100335ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
336{
337 struct kiocb kiocb;
338 ssize_t ret;
339
340 if (!file->f_op->read_iter)
341 return -EINVAL;
342
343 init_sync_kiocb(&kiocb, file);
344 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100345
346 iter->type |= READ;
347 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100348 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100349 if (ret > 0)
350 *ppos = kiocb.ki_pos;
351 return ret;
352}
353EXPORT_SYMBOL(vfs_iter_read);
354
355ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
356{
357 struct kiocb kiocb;
358 ssize_t ret;
359
360 if (!file->f_op->write_iter)
361 return -EINVAL;
362
363 init_sync_kiocb(&kiocb, file);
364 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100365
366 iter->type |= WRITE;
367 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100368 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100369 if (ret > 0)
370 *ppos = kiocb.ki_pos;
371 return ret;
372}
373EXPORT_SYMBOL(vfs_iter_write);
374
Linus Torvaldse28cc712006-01-04 16:20:40 -0800375/*
376 * rw_verify_area doesn't like huge counts. We limit
377 * them to something that fits in "int" so that others
378 * won't have to do range checks all the time.
379 */
Al Viro68d70d02013-06-19 15:26:04 +0400380int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct inode *inode;
383 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100384 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Al Viro496ad9a2013-01-23 17:07:38 -0500386 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800387 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100388 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500390 if (unlikely(pos < 0)) {
391 if (!unsigned_offsets(file))
392 return retval;
393 if (count >= -pos) /* both values are in 0..LLONG_MAX */
394 return -EOVERFLOW;
395 } else if (unlikely((loff_t) (pos + count) < 0)) {
396 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700397 return retval;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500400 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100401 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800402 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
403 inode, file, pos, count);
404 if (retval < 0)
405 return retval;
406 }
James Morrisc43e2592008-01-12 22:05:48 +1100407 retval = security_file_permission(file,
408 read_write == READ ? MAY_READ : MAY_WRITE);
409 if (retval)
410 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800411 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
415{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700416 struct iovec iov = { .iov_base = buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct kiocb kiocb;
418 ssize_t ret;
419
420 init_sync_kiocb(&kiocb, filp);
421 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700422
Zach Brown41003a72013-05-07 16:18:25 -0700423 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100424 BUG_ON(ret == -EIOCBQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *ppos = kiocb.ki_pos;
426 return ret;
427}
428
429EXPORT_SYMBOL(do_sync_read);
430
Al Viro293bc982014-02-11 18:37:41 -0500431ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
432{
433 struct iovec iov = { .iov_base = buf, .iov_len = len };
434 struct kiocb kiocb;
435 struct iov_iter iter;
436 ssize_t ret;
437
438 init_sync_kiocb(&kiocb, filp);
439 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500440 iov_iter_init(&iter, READ, &iov, 1, len);
441
442 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100443 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500444 *ppos = kiocb.ki_pos;
445 return ret;
446}
447
448EXPORT_SYMBOL(new_sync_read);
449
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200450ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
451 loff_t *pos)
452{
453 ssize_t ret;
454
455 if (file->f_op->read)
456 ret = file->f_op->read(file, buf, count, pos);
457 else if (file->f_op->aio_read)
458 ret = do_sync_read(file, buf, count, pos);
459 else if (file->f_op->read_iter)
460 ret = new_sync_read(file, buf, count, pos);
461 else
462 ret = -EINVAL;
463
464 return ret;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
468{
469 ssize_t ret;
470
471 if (!(file->f_mode & FMODE_READ))
472 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500473 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -EINVAL;
475 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
476 return -EFAULT;
477
478 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800479 if (ret >= 0) {
480 count = ret;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200481 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100482 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500483 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100484 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
James Morrisc43e2592008-01-12 22:05:48 +1100486 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
489 return ret;
490}
491
492EXPORT_SYMBOL(vfs_read);
493
494ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
495{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700496 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct kiocb kiocb;
498 ssize_t ret;
499
500 init_sync_kiocb(&kiocb, filp);
501 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700502
Zach Brown41003a72013-05-07 16:18:25 -0700503 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100504 BUG_ON(ret == -EIOCBQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 *ppos = kiocb.ki_pos;
506 return ret;
507}
508
509EXPORT_SYMBOL(do_sync_write);
510
Al Viro293bc982014-02-11 18:37:41 -0500511ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
512{
513 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
514 struct kiocb kiocb;
515 struct iov_iter iter;
516 ssize_t ret;
517
518 init_sync_kiocb(&kiocb, filp);
519 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500520 iov_iter_init(&iter, WRITE, &iov, 1, len);
521
522 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100523 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500524 *ppos = kiocb.ki_pos;
525 return ret;
526}
527
528EXPORT_SYMBOL(new_sync_write);
529
Al Viro06ae43f2013-03-20 13:19:30 -0400530ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
531{
532 mm_segment_t old_fs;
533 const char __user *p;
534 ssize_t ret;
535
Al Viro7f7f25e2014-02-11 17:49:24 -0500536 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000537 return -EINVAL;
538
Al Viro06ae43f2013-03-20 13:19:30 -0400539 old_fs = get_fs();
540 set_fs(get_ds());
541 p = (__force const char __user *)buf;
542 if (count > MAX_RW_COUNT)
543 count = MAX_RW_COUNT;
544 if (file->f_op->write)
545 ret = file->f_op->write(file, p, count, pos);
Al Viro293bc982014-02-11 18:37:41 -0500546 else if (file->f_op->aio_write)
Al Viro06ae43f2013-03-20 13:19:30 -0400547 ret = do_sync_write(file, p, count, pos);
Al Viro293bc982014-02-11 18:37:41 -0500548 else
549 ret = new_sync_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400550 set_fs(old_fs);
551 if (ret > 0) {
552 fsnotify_modify(file);
553 add_wchar(current, ret);
554 }
555 inc_syscw(current);
556 return ret;
557}
558
Al Viro2ec3a122014-08-19 11:48:09 -0400559EXPORT_SYMBOL(__kernel_write);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
562{
563 ssize_t ret;
564
565 if (!(file->f_mode & FMODE_WRITE))
566 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500567 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return -EINVAL;
569 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
570 return -EFAULT;
571
572 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800573 if (ret >= 0) {
574 count = ret;
Al Viro03d95eb2013-03-20 13:04:20 -0400575 file_start_write(file);
James Morrisc43e2592008-01-12 22:05:48 +1100576 if (file->f_op->write)
577 ret = file->f_op->write(file, buf, count, pos);
Al Viro293bc982014-02-11 18:37:41 -0500578 else if (file->f_op->aio_write)
James Morrisc43e2592008-01-12 22:05:48 +1100579 ret = do_sync_write(file, buf, count, pos);
Al Viro293bc982014-02-11 18:37:41 -0500580 else
581 ret = new_sync_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100582 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500583 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100584 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
James Morrisc43e2592008-01-12 22:05:48 +1100586 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400587 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
590 return ret;
591}
592
593EXPORT_SYMBOL(vfs_write);
594
595static inline loff_t file_pos_read(struct file *file)
596{
597 return file->f_pos;
598}
599
600static inline void file_pos_write(struct file *file, loff_t pos)
601{
602 file->f_pos = pos;
603}
604
Heiko Carstens3cdad422009-01-14 14:14:22 +0100605SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800607 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Al Viro2903ff02012-08-28 12:52:22 -0400610 if (f.file) {
611 loff_t pos = file_pos_read(f.file);
612 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400613 if (ret >= 0)
614 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800615 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return ret;
618}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Heiko Carstens3cdad422009-01-14 14:14:22 +0100620SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
621 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800623 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Al Viro2903ff02012-08-28 12:52:22 -0400626 if (f.file) {
627 loff_t pos = file_pos_read(f.file);
628 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400629 if (ret >= 0)
630 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800631 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 return ret;
635}
636
Al Viro4a0fd5b2013-01-21 15:16:58 -0500637SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
638 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Al Viro2903ff02012-08-28 12:52:22 -0400640 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (pos < 0)
644 return -EINVAL;
645
Al Viro2903ff02012-08-28 12:52:22 -0400646 f = fdget(fd);
647 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400649 if (f.file->f_mode & FMODE_PREAD)
650 ret = vfs_read(f.file, buf, count, &pos);
651 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
654 return ret;
655}
656
Al Viro4a0fd5b2013-01-21 15:16:58 -0500657SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
658 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Al Viro2903ff02012-08-28 12:52:22 -0400660 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (pos < 0)
664 return -EINVAL;
665
Al Viro2903ff02012-08-28 12:52:22 -0400666 f = fdget(fd);
667 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400669 if (f.file->f_mode & FMODE_PWRITE)
670 ret = vfs_write(f.file, buf, count, &pos);
671 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673
674 return ret;
675}
676
677/*
678 * Reduce an iovec's length in-place. Return the resulting number of segments
679 */
680unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
681{
682 unsigned long seg = 0;
683 size_t len = 0;
684
685 while (seg < nr_segs) {
686 seg++;
687 if (len + iov->iov_len >= to) {
688 iov->iov_len = to - len;
689 break;
690 }
691 len += iov->iov_len;
692 iov++;
693 }
694 return seg;
695}
Eric Sandeen19295522008-01-28 23:58:27 -0500696EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Al Viroac15ac02015-03-20 20:10:21 -0400698static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
699 loff_t *ppos, iter_fn_t fn)
Al Viro293bc982014-02-11 18:37:41 -0500700{
701 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500702 ssize_t ret;
703
704 init_sync_kiocb(&kiocb, filp);
705 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500706
Al Viroac15ac02015-03-20 20:10:21 -0400707 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100708 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500709 *ppos = kiocb.ki_pos;
710 return ret;
711}
712
Al Viroac15ac02015-03-20 20:10:21 -0400713static ssize_t do_sync_readv_writev(struct file *filp, struct iov_iter *iter,
714 loff_t *ppos, iov_fn_t fn)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700715{
716 struct kiocb kiocb;
717 ssize_t ret;
718
719 init_sync_kiocb(&kiocb, filp);
720 kiocb.ki_pos = *ppos;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700721
Al Viroac15ac02015-03-20 20:10:21 -0400722 ret = fn(&kiocb, iter->iov, iter->nr_segs, kiocb.ki_pos);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100723 BUG_ON(ret == -EIOCBQUEUED);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700724 *ppos = kiocb.ki_pos;
725 return ret;
726}
727
728/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400729static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
730 loff_t *ppos, io_fn_t fn)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700731{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700732 ssize_t ret = 0;
733
Al Viroac15ac02015-03-20 20:10:21 -0400734 while (iov_iter_count(iter)) {
735 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700736 ssize_t nr;
737
Al Viroac15ac02015-03-20 20:10:21 -0400738 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700739
740 if (nr < 0) {
741 if (!ret)
742 ret = nr;
743 break;
744 }
745 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400746 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700747 break;
Al Viroac15ac02015-03-20 20:10:21 -0400748 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700749 }
750
751 return ret;
752}
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/* A write operation does a read from user space and vice versa */
755#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
756
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700757ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
758 unsigned long nr_segs, unsigned long fast_segs,
759 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700760 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700761{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700762 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700763 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700764 struct iovec *iov = fast_pointer;
765
Linus Torvalds435f49a2010-10-29 10:36:49 -0700766 /*
767 * SuS says "The readv() function *may* fail if the iovcnt argument
768 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
769 * traditionally returned zero for zero segments, so...
770 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700771 if (nr_segs == 0) {
772 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700773 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700774 }
775
Linus Torvalds435f49a2010-10-29 10:36:49 -0700776 /*
777 * First get the "struct iovec" from user memory and
778 * verify all the pointers
779 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700780 if (nr_segs > UIO_MAXIOV) {
781 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700782 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700783 }
784 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700785 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700786 if (iov == NULL) {
787 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700788 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700789 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700790 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700791 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
792 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700793 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700794 }
795
Linus Torvalds435f49a2010-10-29 10:36:49 -0700796 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700797 * According to the Single Unix Specification we should return EINVAL
798 * if an element length is < 0 when cast to ssize_t or if the
799 * total length would overflow the ssize_t return value of the
800 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700801 *
802 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
803 * overflow case.
804 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700805 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700806 for (seg = 0; seg < nr_segs; seg++) {
807 void __user *buf = iov[seg].iov_base;
808 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700809
810 /* see if we we're about to use an invalid len or if
811 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700812 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700813 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700814 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700815 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700816 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700817 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700818 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700819 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700820 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700821 if (len > MAX_RW_COUNT - ret) {
822 len = MAX_RW_COUNT - ret;
823 iov[seg].iov_len = len;
824 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700825 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700826 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700827out:
828 *ret_pointer = iov;
829 return ret;
830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static ssize_t do_readv_writev(int type, struct file *file,
833 const struct iovec __user * uvector,
834 unsigned long nr_segs, loff_t *pos)
835{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 size_t tot_len;
837 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700838 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400839 struct iov_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 io_fn_t fn;
842 iov_fn_t fnv;
Al Viro293bc982014-02-11 18:37:41 -0500843 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Al Viro0504c072015-03-21 19:40:11 -0400845 ret = import_iovec(type, uvector, nr_segs,
846 ARRAY_SIZE(iovstack), &iov, &iter);
847 if (ret < 0)
848 return ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700849
Al Viro0504c072015-03-21 19:40:11 -0400850 tot_len = iov_iter_count(&iter);
851 if (!tot_len)
852 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800854 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto out;
856
857 fnv = NULL;
858 if (type == READ) {
859 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700860 fnv = file->f_op->aio_read;
Al Viro293bc982014-02-11 18:37:41 -0500861 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
863 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700864 fnv = file->f_op->aio_write;
Al Viro293bc982014-02-11 18:37:41 -0500865 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400866 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
Al Viro293bc982014-02-11 18:37:41 -0500869 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -0400870 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Al Viro293bc982014-02-11 18:37:41 -0500871 else if (fnv)
Al Viroac15ac02015-03-20 20:10:21 -0400872 ret = do_sync_readv_writev(file, &iter, pos, fnv);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700873 else
Al Viroac15ac02015-03-20 20:10:21 -0400874 ret = do_loop_readv_writev(file, &iter, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Al Viro03d95eb2013-03-20 13:04:20 -0400876 if (type != READ)
877 file_end_write(file);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879out:
Al Viro0504c072015-03-21 19:40:11 -0400880 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400881 if ((ret + (type == READ)) > 0) {
882 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500883 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400884 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500885 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
891 unsigned long vlen, loff_t *pos)
892{
893 if (!(file->f_mode & FMODE_READ))
894 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500895 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -EINVAL;
897
898 return do_readv_writev(READ, file, vec, vlen, pos);
899}
900
901EXPORT_SYMBOL(vfs_readv);
902
903ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
904 unsigned long vlen, loff_t *pos)
905{
906 if (!(file->f_mode & FMODE_WRITE))
907 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500908 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return -EINVAL;
910
911 return do_readv_writev(WRITE, file, vec, vlen, pos);
912}
913
914EXPORT_SYMBOL(vfs_writev);
915
Heiko Carstens3cdad422009-01-14 14:14:22 +0100916SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
917 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800919 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Al Viro2903ff02012-08-28 12:52:22 -0400922 if (f.file) {
923 loff_t pos = file_pos_read(f.file);
924 ret = vfs_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400925 if (ret >= 0)
926 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800927 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929
930 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800931 add_rchar(current, ret);
932 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return ret;
934}
935
Heiko Carstens3cdad422009-01-14 14:14:22 +0100936SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
937 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800939 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Al Viro2903ff02012-08-28 12:52:22 -0400942 if (f.file) {
943 loff_t pos = file_pos_read(f.file);
944 ret = vfs_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400945 if (ret >= 0)
946 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800947 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
950 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800951 add_wchar(current, ret);
952 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return ret;
954}
955
Linus Torvalds601cc112009-04-03 08:03:22 -0700956static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700957{
Linus Torvalds601cc112009-04-03 08:03:22 -0700958#define HALF_LONG_BITS (BITS_PER_LONG / 2)
959 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
960}
961
962SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
963 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
964{
965 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400966 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700967 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700968
969 if (pos < 0)
970 return -EINVAL;
971
Al Viro2903ff02012-08-28 12:52:22 -0400972 f = fdget(fd);
973 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700974 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400975 if (f.file->f_mode & FMODE_PREAD)
976 ret = vfs_readv(f.file, vec, vlen, &pos);
977 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700978 }
979
980 if (ret > 0)
981 add_rchar(current, ret);
982 inc_syscr(current);
983 return ret;
984}
985
986SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700987 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700988{
Linus Torvalds601cc112009-04-03 08:03:22 -0700989 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400990 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700991 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700992
993 if (pos < 0)
994 return -EINVAL;
995
Al Viro2903ff02012-08-28 12:52:22 -0400996 f = fdget(fd);
997 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700998 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400999 if (f.file->f_mode & FMODE_PWRITE)
1000 ret = vfs_writev(f.file, vec, vlen, &pos);
1001 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001002 }
1003
1004 if (ret > 0)
1005 add_wchar(current, ret);
1006 inc_syscw(current);
1007 return ret;
1008}
1009
Al Viro72ec3512013-03-20 10:42:10 -04001010#ifdef CONFIG_COMPAT
1011
1012static ssize_t compat_do_readv_writev(int type, struct file *file,
1013 const struct compat_iovec __user *uvector,
1014 unsigned long nr_segs, loff_t *pos)
1015{
1016 compat_ssize_t tot_len;
1017 struct iovec iovstack[UIO_FASTIOV];
1018 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -04001019 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -04001020 ssize_t ret;
1021 io_fn_t fn;
1022 iov_fn_t fnv;
Al Viro293bc982014-02-11 18:37:41 -05001023 iter_fn_t iter_fn;
Al Viro72ec3512013-03-20 10:42:10 -04001024
Al Viro0504c072015-03-21 19:40:11 -04001025 ret = compat_import_iovec(type, uvector, nr_segs,
1026 UIO_FASTIOV, &iov, &iter);
1027 if (ret < 0)
1028 return ret;
Al Viro72ec3512013-03-20 10:42:10 -04001029
Al Viro0504c072015-03-21 19:40:11 -04001030 tot_len = iov_iter_count(&iter);
1031 if (!tot_len)
1032 goto out;
Al Viro72ec3512013-03-20 10:42:10 -04001033 ret = rw_verify_area(type, file, pos, tot_len);
1034 if (ret < 0)
1035 goto out;
1036
1037 fnv = NULL;
1038 if (type == READ) {
1039 fn = file->f_op->read;
1040 fnv = file->f_op->aio_read;
Al Viro293bc982014-02-11 18:37:41 -05001041 iter_fn = file->f_op->read_iter;
Al Viro72ec3512013-03-20 10:42:10 -04001042 } else {
1043 fn = (io_fn_t)file->f_op->write;
1044 fnv = file->f_op->aio_write;
Al Viro293bc982014-02-11 18:37:41 -05001045 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -04001046 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -04001047 }
1048
Al Viro293bc982014-02-11 18:37:41 -05001049 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -04001050 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Al Viro293bc982014-02-11 18:37:41 -05001051 else if (fnv)
Al Viroac15ac02015-03-20 20:10:21 -04001052 ret = do_sync_readv_writev(file, &iter, pos, fnv);
Al Viro03d95eb2013-03-20 13:04:20 -04001053 else
Al Viroac15ac02015-03-20 20:10:21 -04001054 ret = do_loop_readv_writev(file, &iter, pos, fn);
Al Viro72ec3512013-03-20 10:42:10 -04001055
Al Viro03d95eb2013-03-20 13:04:20 -04001056 if (type != READ)
1057 file_end_write(file);
1058
Al Viro72ec3512013-03-20 10:42:10 -04001059out:
Al Viro0504c072015-03-21 19:40:11 -04001060 kfree(iov);
Al Viro72ec3512013-03-20 10:42:10 -04001061 if ((ret + (type == READ)) > 0) {
1062 if (type == READ)
1063 fsnotify_access(file);
1064 else
1065 fsnotify_modify(file);
1066 }
1067 return ret;
1068}
1069
1070static size_t compat_readv(struct file *file,
1071 const struct compat_iovec __user *vec,
1072 unsigned long vlen, loff_t *pos)
1073{
1074 ssize_t ret = -EBADF;
1075
1076 if (!(file->f_mode & FMODE_READ))
1077 goto out;
1078
1079 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001080 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001081 goto out;
1082
1083 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
1084
1085out:
1086 if (ret > 0)
1087 add_rchar(current, ret);
1088 inc_syscr(current);
1089 return ret;
1090}
1091
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001092COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001093 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001094 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001095{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001096 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001097 ssize_t ret;
1098 loff_t pos;
1099
1100 if (!f.file)
1101 return -EBADF;
1102 pos = f.file->f_pos;
1103 ret = compat_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001104 if (ret >= 0)
1105 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001106 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001107 return ret;
1108}
1109
Heiko Carstens378a10f2014-03-05 10:43:51 +01001110static long __compat_sys_preadv64(unsigned long fd,
1111 const struct compat_iovec __user *vec,
1112 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001113{
1114 struct fd f;
1115 ssize_t ret;
1116
1117 if (pos < 0)
1118 return -EINVAL;
1119 f = fdget(fd);
1120 if (!f.file)
1121 return -EBADF;
1122 ret = -ESPIPE;
1123 if (f.file->f_mode & FMODE_PREAD)
1124 ret = compat_readv(f.file, vec, vlen, &pos);
1125 fdput(f);
1126 return ret;
1127}
1128
Heiko Carstens378a10f2014-03-05 10:43:51 +01001129#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1130COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1131 const struct compat_iovec __user *,vec,
1132 unsigned long, vlen, loff_t, pos)
1133{
1134 return __compat_sys_preadv64(fd, vec, vlen, pos);
1135}
1136#endif
1137
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001138COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001139 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001140 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001141{
1142 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001143
1144 return __compat_sys_preadv64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001145}
1146
1147static size_t compat_writev(struct file *file,
1148 const struct compat_iovec __user *vec,
1149 unsigned long vlen, loff_t *pos)
1150{
1151 ssize_t ret = -EBADF;
1152
1153 if (!(file->f_mode & FMODE_WRITE))
1154 goto out;
1155
1156 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001157 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001158 goto out;
1159
1160 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1161
1162out:
1163 if (ret > 0)
1164 add_wchar(current, ret);
1165 inc_syscw(current);
1166 return ret;
1167}
1168
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001169COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001170 const struct compat_iovec __user *, vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001171 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001172{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001173 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001174 ssize_t ret;
1175 loff_t pos;
1176
1177 if (!f.file)
1178 return -EBADF;
1179 pos = f.file->f_pos;
1180 ret = compat_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001181 if (ret >= 0)
1182 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001183 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001184 return ret;
1185}
1186
Heiko Carstens378a10f2014-03-05 10:43:51 +01001187static long __compat_sys_pwritev64(unsigned long fd,
1188 const struct compat_iovec __user *vec,
1189 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001190{
1191 struct fd f;
1192 ssize_t ret;
1193
1194 if (pos < 0)
1195 return -EINVAL;
1196 f = fdget(fd);
1197 if (!f.file)
1198 return -EBADF;
1199 ret = -ESPIPE;
1200 if (f.file->f_mode & FMODE_PWRITE)
1201 ret = compat_writev(f.file, vec, vlen, &pos);
1202 fdput(f);
1203 return ret;
1204}
1205
Heiko Carstens378a10f2014-03-05 10:43:51 +01001206#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1207COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1208 const struct compat_iovec __user *,vec,
1209 unsigned long, vlen, loff_t, pos)
1210{
1211 return __compat_sys_pwritev64(fd, vec, vlen, pos);
1212}
1213#endif
1214
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001215COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001216 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001217 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001218{
1219 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001220
1221 return __compat_sys_pwritev64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001222}
1223#endif
1224
Al Viro19f4fc32013-02-24 02:17:03 -05001225static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1226 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Al Viro2903ff02012-08-28 12:52:22 -04001228 struct fd in, out;
1229 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001231 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001233 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 /*
1236 * Get input file, and verify that it is ok..
1237 */
1238 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001239 in = fdget(in_fd);
1240 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001242 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001245 if (!ppos) {
1246 pos = in.file->f_pos;
1247 } else {
1248 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001249 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001251 }
1252 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001253 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001255 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
1258 * Get output file, and verify that it is ok..
1259 */
1260 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001261 out = fdget(out_fd);
1262 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001264 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 goto fput_out;
1266 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001267 in_inode = file_inode(in.file);
1268 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001269 out_pos = out.file->f_pos;
1270 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001271 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001273 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!max)
1276 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if (unlikely(pos + count > max)) {
1279 retval = -EOVERFLOW;
1280 if (pos >= max)
1281 goto fput_out;
1282 count = max - pos;
1283 }
1284
Jens Axboed96e6e72007-06-11 12:18:52 +02001285 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001286#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001287 /*
1288 * We need to debate whether we can enable this or not. The
1289 * man page documents EAGAIN return for the output at least,
1290 * and the application is arguably buggy if it doesn't expect
1291 * EAGAIN on a non-blocking file descriptor.
1292 */
Al Viro2903ff02012-08-28 12:52:22 -04001293 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001294 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001295#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001296 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001297 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001298 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001301 add_rchar(current, retval);
1302 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001303 fsnotify_access(in.file);
1304 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001305 out.file->f_pos = out_pos;
1306 if (ppos)
1307 *ppos = pos;
1308 else
1309 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001312 inc_syscr(current);
1313 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001314 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 retval = -EOVERFLOW;
1316
1317fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001318 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001320 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321out:
1322 return retval;
1323}
1324
Heiko Carstens002c8972009-01-14 14:14:18 +01001325SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
1327 loff_t pos;
1328 off_t off;
1329 ssize_t ret;
1330
1331 if (offset) {
1332 if (unlikely(get_user(off, offset)))
1333 return -EFAULT;
1334 pos = off;
1335 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1336 if (unlikely(put_user(pos, offset)))
1337 return -EFAULT;
1338 return ret;
1339 }
1340
1341 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1342}
1343
Heiko Carstens002c8972009-01-14 14:14:18 +01001344SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 loff_t pos;
1347 ssize_t ret;
1348
1349 if (offset) {
1350 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1351 return -EFAULT;
1352 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1353 if (unlikely(put_user(pos, offset)))
1354 return -EFAULT;
1355 return ret;
1356 }
1357
1358 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1359}
Al Viro19f4fc32013-02-24 02:17:03 -05001360
1361#ifdef CONFIG_COMPAT
1362COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1363 compat_off_t __user *, offset, compat_size_t, count)
1364{
1365 loff_t pos;
1366 off_t off;
1367 ssize_t ret;
1368
1369 if (offset) {
1370 if (unlikely(get_user(off, offset)))
1371 return -EFAULT;
1372 pos = off;
1373 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1374 if (unlikely(put_user(pos, offset)))
1375 return -EFAULT;
1376 return ret;
1377 }
1378
1379 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1380}
1381
1382COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1383 compat_loff_t __user *, offset, compat_size_t, count)
1384{
1385 loff_t pos;
1386 ssize_t ret;
1387
1388 if (offset) {
1389 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1390 return -EFAULT;
1391 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1392 if (unlikely(put_user(pos, offset)))
1393 return -EFAULT;
1394 return ret;
1395 }
1396
1397 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1398}
1399#endif