blob: 45d583c33879e18d89b3fc06d48bbd05a30b6ab3 [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 *);
Al Viro293bc982014-02-11 18:37:41 -050025typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
Al Viroc0bd14af2013-05-04 15:00:54 -040026
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080027const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040029 .read_iter = generic_file_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020031 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
34EXPORT_SYMBOL(generic_ro_fops);
35
Al Virocccb5a12010-12-17 07:44:05 -050036static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070037{
Al Virocccb5a12010-12-17 07:44:05 -050038 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070039}
40
Jie Liu46a1c2c2013-06-25 12:02:13 +080041/**
42 * vfs_setpos - update the file offset for lseek
43 * @file: file structure in question
44 * @offset: file offset to seek to
45 * @maxsize: maximum file size
46 *
47 * This is a low-level filesystem helper for updating the file offset to
48 * the value specified by @offset if the given offset is valid and it is
49 * not equal to the current file offset.
50 *
51 * Return the specified offset on success and -EINVAL on invalid offset.
52 */
53loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070054{
55 if (offset < 0 && !unsigned_offsets(file))
56 return -EINVAL;
57 if (offset > maxsize)
58 return -EINVAL;
59
60 if (offset != file->f_pos) {
61 file->f_pos = offset;
62 file->f_version = 0;
63 }
64 return offset;
65}
Jie Liu46a1c2c2013-06-25 12:02:13 +080066EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070067
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020068/**
Andi Kleen57604952011-09-15 16:06:50 -070069 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020070 * @file: file structure to seek on
71 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080072 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050073 * @size: max size of this file in file system
74 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020075 *
Andi Kleen57604952011-09-15 16:06:50 -070076 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050077 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070078 *
79 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070080 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070081 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
82 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020083 */
Andi Kleen9465efc2008-06-27 11:05:24 +020084loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080085generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050086 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Andrew Morton965c8e52012-12-17 15:59:39 -080088 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020089 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050090 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020091 break;
92 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080093 /*
94 * Here we special-case the lseek(fd, 0, SEEK_CUR)
95 * position-querying operation. Avoid rewriting the "same"
96 * f_pos value back to the file because a concurrent read(),
97 * write() or lseek() might have altered it
98 */
99 if (offset == 0)
100 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700101 /*
102 * f_lock protects against read/modify/write race with other
103 * SEEK_CURs. Note that parallel writes and reads behave
104 * like SEEK_SET.
105 */
106 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800107 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700108 spin_unlock(&file->f_lock);
109 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400110 case SEEK_DATA:
111 /*
112 * In the generic case the entire file is data, so as long as
113 * offset isn't at the end of the file then the offset is data.
114 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500115 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400116 return -ENXIO;
117 break;
118 case SEEK_HOLE:
119 /*
120 * There is a virtual hole at the end of the file, so as long as
121 * offset isn't i_size or larger, return i_size.
122 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500123 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400124 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500125 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200128
Jie Liu46a1c2c2013-06-25 12:02:13 +0800129 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700130}
131EXPORT_SYMBOL(generic_file_llseek_size);
132
133/**
134 * generic_file_llseek - generic llseek implementation for regular files
135 * @file: file structure to seek on
136 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800137 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700138 *
139 * This is a generic implemenation of ->llseek useable for all normal local
140 * filesystems. It just updates the file offset to the value specified by
Ming Lei546ae2d2013-04-29 15:06:07 -0700141 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700142 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800143loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700144{
145 struct inode *inode = file->f_mapping->host;
146
Andrew Morton965c8e52012-12-17 15:59:39 -0800147 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500148 inode->i_sb->s_maxbytes,
149 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
Andi Kleen9465efc2008-06-27 11:05:24 +0200151EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
jan Blunckae6afc32010-05-26 14:44:48 -0700153/**
Al Viro1bf9d142013-06-16 20:27:42 +0400154 * fixed_size_llseek - llseek implementation for fixed-sized devices
155 * @file: file structure to seek on
156 * @offset: file offset to seek to
157 * @whence: type of seek
158 * @size: size of the file
159 *
160 */
161loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
162{
163 switch (whence) {
164 case SEEK_SET: case SEEK_CUR: case SEEK_END:
165 return generic_file_llseek_size(file, offset, whence,
166 size, size);
167 default:
168 return -EINVAL;
169 }
170}
171EXPORT_SYMBOL(fixed_size_llseek);
172
173/**
jan Blunckae6afc32010-05-26 14:44:48 -0700174 * noop_llseek - No Operation Performed llseek implementation
175 * @file: file structure to seek on
176 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800177 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700178 *
179 * This is an implementation of ->llseek useable for the rare special case when
180 * userspace expects the seek to succeed but the (device) file is actually not
181 * able to perform the seek. In this case you use noop_llseek() instead of
182 * falling back to the default implementation of ->llseek.
183 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800184loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700185{
186 return file->f_pos;
187}
188EXPORT_SYMBOL(noop_llseek);
189
Andrew Morton965c8e52012-12-17 15:59:39 -0800190loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 return -ESPIPE;
193}
194EXPORT_SYMBOL(no_llseek);
195
Andrew Morton965c8e52012-12-17 15:59:39 -0800196loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Al Viro496ad9a2013-01-23 17:07:38 -0500198 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200199 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Josef Bacik982d8162011-07-18 13:21:35 -0400201 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800202 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700203 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400204 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700206 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800207 if (offset == 0) {
208 retval = file->f_pos;
209 goto out;
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400212 break;
213 case SEEK_DATA:
214 /*
215 * In the generic case the entire file is data, so as
216 * long as offset isn't at the end of the file then the
217 * offset is data.
218 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300219 if (offset >= inode->i_size) {
220 retval = -ENXIO;
221 goto out;
222 }
Josef Bacik982d8162011-07-18 13:21:35 -0400223 break;
224 case SEEK_HOLE:
225 /*
226 * There is a virtual hole at the end of the file, so
227 * as long as offset isn't i_size or larger, return
228 * i_size.
229 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300230 if (offset >= inode->i_size) {
231 retval = -ENXIO;
232 goto out;
233 }
Josef Bacik982d8162011-07-18 13:21:35 -0400234 offset = inode->i_size;
235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500238 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (offset != file->f_pos) {
240 file->f_pos = offset;
241 file->f_version = 0;
242 }
243 retval = offset;
244 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800245out:
Josef Bacik982d8162011-07-18 13:21:35 -0400246 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return retval;
248}
249EXPORT_SYMBOL(default_llseek);
250
Andrew Morton965c8e52012-12-17 15:59:39 -0800251loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 loff_t (*fn)(struct file *, loff_t, int);
254
255 fn = no_llseek;
256 if (file->f_mode & FMODE_LSEEK) {
Al Viro72c2d532013-09-22 16:27:52 -0400257 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 fn = file->f_op->llseek;
259 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800260 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262EXPORT_SYMBOL(vfs_llseek);
263
Linus Torvalds9c225f22014-03-03 09:36:58 -0800264static inline struct fd fdget_pos(int fd)
265{
Al Virobd2a31d2014-03-04 14:54:22 -0500266 return __to_fd(__fdget_pos(fd));
Linus Torvalds9c225f22014-03-03 09:36:58 -0800267}
268
269static inline void fdput_pos(struct fd f)
270{
271 if (f.flags & FDPUT_POS_UNLOCK)
272 mutex_unlock(&f.file->f_pos_lock);
273 fdput(f);
274}
275
Andrew Morton965c8e52012-12-17 15:59:39 -0800276SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800279 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400280 if (!f.file)
281 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800284 if (whence <= SEEK_MAX) {
285 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 retval = res;
287 if (res != (loff_t)retval)
288 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
289 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800290 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return retval;
292}
293
Al Viro561c6732013-02-24 10:52:26 -0500294#ifdef CONFIG_COMPAT
295COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
296{
297 return sys_lseek(fd, offset, whence);
298}
299#endif
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100302SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
303 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800304 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500307 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Al Viro2903ff02012-08-28 12:52:22 -0400310 if (!f.file)
311 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800314 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 goto out_putf;
316
Al Viro2903ff02012-08-28 12:52:22 -0400317 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800318 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 retval = (int)offset;
321 if (offset >= 0) {
322 retval = -EFAULT;
323 if (!copy_to_user(result, &offset, sizeof(offset)))
324 retval = 0;
325 }
326out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500327 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return retval;
329}
330#endif
331
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100332ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
333{
334 struct kiocb kiocb;
335 ssize_t ret;
336
337 if (!file->f_op->read_iter)
338 return -EINVAL;
339
340 init_sync_kiocb(&kiocb, file);
341 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100342
343 iter->type |= READ;
344 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100345 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100346 if (ret > 0)
347 *ppos = kiocb.ki_pos;
348 return ret;
349}
350EXPORT_SYMBOL(vfs_iter_read);
351
352ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
353{
354 struct kiocb kiocb;
355 ssize_t ret;
356
357 if (!file->f_op->write_iter)
358 return -EINVAL;
359
360 init_sync_kiocb(&kiocb, file);
361 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100362
363 iter->type |= WRITE;
364 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100365 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100366 if (ret > 0)
367 *ppos = kiocb.ki_pos;
368 return ret;
369}
370EXPORT_SYMBOL(vfs_iter_write);
371
Linus Torvaldse28cc712006-01-04 16:20:40 -0800372/*
373 * rw_verify_area doesn't like huge counts. We limit
374 * them to something that fits in "int" so that others
375 * won't have to do range checks all the time.
376 */
Al Viro68d70d02013-06-19 15:26:04 +0400377int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct inode *inode;
380 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100381 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Al Viro496ad9a2013-01-23 17:07:38 -0500383 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800384 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100385 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500387 if (unlikely(pos < 0)) {
388 if (!unsigned_offsets(file))
389 return retval;
390 if (count >= -pos) /* both values are in 0..LLONG_MAX */
391 return -EOVERFLOW;
392 } else if (unlikely((loff_t) (pos + count) < 0)) {
393 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700394 return retval;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500397 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100398 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800399 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
400 inode, file, pos, count);
401 if (retval < 0)
402 return retval;
403 }
James Morrisc43e2592008-01-12 22:05:48 +1100404 retval = security_file_permission(file,
405 read_write == READ ? MAY_READ : MAY_WRITE);
406 if (retval)
407 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800408 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Al Viro5d5d5682015-04-03 15:41:18 -0400411static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500412{
413 struct iovec iov = { .iov_base = buf, .iov_len = len };
414 struct kiocb kiocb;
415 struct iov_iter iter;
416 ssize_t ret;
417
418 init_sync_kiocb(&kiocb, filp);
419 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500420 iov_iter_init(&iter, READ, &iov, 1, len);
421
422 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100423 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500424 *ppos = kiocb.ki_pos;
425 return ret;
426}
427
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200428ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
429 loff_t *pos)
430{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200431 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400432 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200433 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400434 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200435 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400436 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200437}
Al Viro3d04c8a2015-04-03 15:09:18 -0400438EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
441{
442 ssize_t ret;
443
444 if (!(file->f_mode & FMODE_READ))
445 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500446 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return -EINVAL;
448 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
449 return -EFAULT;
450
451 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800452 if (ret >= 0) {
453 count = ret;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200454 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100455 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500456 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100457 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
James Morrisc43e2592008-01-12 22:05:48 +1100459 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 return ret;
463}
464
465EXPORT_SYMBOL(vfs_read);
466
Al Viro5d5d5682015-04-03 15:41:18 -0400467static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500468{
469 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
470 struct kiocb kiocb;
471 struct iov_iter iter;
472 ssize_t ret;
473
474 init_sync_kiocb(&kiocb, filp);
475 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500476 iov_iter_init(&iter, WRITE, &iov, 1, len);
477
478 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100479 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500480 *ppos = kiocb.ki_pos;
481 return ret;
482}
483
Al Viro493c84c2015-04-03 15:06:43 -0400484ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
485 loff_t *pos)
486{
487 if (file->f_op->write)
488 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400489 else if (file->f_op->write_iter)
490 return new_sync_write(file, p, count, pos);
491 else
492 return -EINVAL;
493}
494EXPORT_SYMBOL(__vfs_write);
495
Al Viro06ae43f2013-03-20 13:19:30 -0400496ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
497{
498 mm_segment_t old_fs;
499 const char __user *p;
500 ssize_t ret;
501
Al Viro7f7f25e2014-02-11 17:49:24 -0500502 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000503 return -EINVAL;
504
Al Viro06ae43f2013-03-20 13:19:30 -0400505 old_fs = get_fs();
506 set_fs(get_ds());
507 p = (__force const char __user *)buf;
508 if (count > MAX_RW_COUNT)
509 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400510 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400511 set_fs(old_fs);
512 if (ret > 0) {
513 fsnotify_modify(file);
514 add_wchar(current, ret);
515 }
516 inc_syscw(current);
517 return ret;
518}
519
Al Viro2ec3a122014-08-19 11:48:09 -0400520EXPORT_SYMBOL(__kernel_write);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
523{
524 ssize_t ret;
525
526 if (!(file->f_mode & FMODE_WRITE))
527 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500528 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return -EINVAL;
530 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
531 return -EFAULT;
532
533 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800534 if (ret >= 0) {
535 count = ret;
Al Viro03d95eb2013-03-20 13:04:20 -0400536 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400537 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100538 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500539 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100540 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
James Morrisc43e2592008-01-12 22:05:48 +1100542 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400543 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 return ret;
547}
548
549EXPORT_SYMBOL(vfs_write);
550
551static inline loff_t file_pos_read(struct file *file)
552{
553 return file->f_pos;
554}
555
556static inline void file_pos_write(struct file *file, loff_t pos)
557{
558 file->f_pos = pos;
559}
560
Heiko Carstens3cdad422009-01-14 14:14:22 +0100561SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800563 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Al Viro2903ff02012-08-28 12:52:22 -0400566 if (f.file) {
567 loff_t pos = file_pos_read(f.file);
568 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400569 if (ret >= 0)
570 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800571 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return ret;
574}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Heiko Carstens3cdad422009-01-14 14:14:22 +0100576SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
577 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800579 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Al Viro2903ff02012-08-28 12:52:22 -0400582 if (f.file) {
583 loff_t pos = file_pos_read(f.file);
584 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400585 if (ret >= 0)
586 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800587 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
590 return ret;
591}
592
Al Viro4a0fd5b2013-01-21 15:16:58 -0500593SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
594 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Al Viro2903ff02012-08-28 12:52:22 -0400596 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (pos < 0)
600 return -EINVAL;
601
Al Viro2903ff02012-08-28 12:52:22 -0400602 f = fdget(fd);
603 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400605 if (f.file->f_mode & FMODE_PREAD)
606 ret = vfs_read(f.file, buf, count, &pos);
607 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 return ret;
611}
612
Al Viro4a0fd5b2013-01-21 15:16:58 -0500613SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
614 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Al Viro2903ff02012-08-28 12:52:22 -0400616 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (pos < 0)
620 return -EINVAL;
621
Al Viro2903ff02012-08-28 12:52:22 -0400622 f = fdget(fd);
623 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400625 if (f.file->f_mode & FMODE_PWRITE)
626 ret = vfs_write(f.file, buf, count, &pos);
627 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629
630 return ret;
631}
632
633/*
634 * Reduce an iovec's length in-place. Return the resulting number of segments
635 */
636unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
637{
638 unsigned long seg = 0;
639 size_t len = 0;
640
641 while (seg < nr_segs) {
642 seg++;
643 if (len + iov->iov_len >= to) {
644 iov->iov_len = to - len;
645 break;
646 }
647 len += iov->iov_len;
648 iov++;
649 }
650 return seg;
651}
Eric Sandeen19295522008-01-28 23:58:27 -0500652EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Al Viroac15ac02015-03-20 20:10:21 -0400654static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
655 loff_t *ppos, iter_fn_t fn)
Al Viro293bc982014-02-11 18:37:41 -0500656{
657 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500658 ssize_t ret;
659
660 init_sync_kiocb(&kiocb, filp);
661 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500662
Al Viroac15ac02015-03-20 20:10:21 -0400663 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100664 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500665 *ppos = kiocb.ki_pos;
666 return ret;
667}
668
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700669/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400670static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
671 loff_t *ppos, io_fn_t fn)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700672{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700673 ssize_t ret = 0;
674
Al Viroac15ac02015-03-20 20:10:21 -0400675 while (iov_iter_count(iter)) {
676 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700677 ssize_t nr;
678
Al Viroac15ac02015-03-20 20:10:21 -0400679 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700680
681 if (nr < 0) {
682 if (!ret)
683 ret = nr;
684 break;
685 }
686 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400687 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700688 break;
Al Viroac15ac02015-03-20 20:10:21 -0400689 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700690 }
691
692 return ret;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/* A write operation does a read from user space and vice versa */
696#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
697
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700698ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
699 unsigned long nr_segs, unsigned long fast_segs,
700 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700701 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700702{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700703 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700704 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700705 struct iovec *iov = fast_pointer;
706
Linus Torvalds435f49a2010-10-29 10:36:49 -0700707 /*
708 * SuS says "The readv() function *may* fail if the iovcnt argument
709 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
710 * traditionally returned zero for zero segments, so...
711 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700712 if (nr_segs == 0) {
713 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700714 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700715 }
716
Linus Torvalds435f49a2010-10-29 10:36:49 -0700717 /*
718 * First get the "struct iovec" from user memory and
719 * verify all the pointers
720 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700721 if (nr_segs > UIO_MAXIOV) {
722 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700723 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700724 }
725 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700726 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700727 if (iov == NULL) {
728 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700729 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700730 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700731 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700732 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
733 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700734 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700735 }
736
Linus Torvalds435f49a2010-10-29 10:36:49 -0700737 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700738 * According to the Single Unix Specification we should return EINVAL
739 * if an element length is < 0 when cast to ssize_t or if the
740 * total length would overflow the ssize_t return value of the
741 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700742 *
743 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
744 * overflow case.
745 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700746 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700747 for (seg = 0; seg < nr_segs; seg++) {
748 void __user *buf = iov[seg].iov_base;
749 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700750
751 /* see if we we're about to use an invalid len or if
752 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700753 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700754 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700755 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700756 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700757 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700758 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700759 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700760 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700761 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700762 if (len > MAX_RW_COUNT - ret) {
763 len = MAX_RW_COUNT - ret;
764 iov[seg].iov_len = len;
765 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700766 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700767 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700768out:
769 *ret_pointer = iov;
770 return ret;
771}
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static ssize_t do_readv_writev(int type, struct file *file,
774 const struct iovec __user * uvector,
775 unsigned long nr_segs, loff_t *pos)
776{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 size_t tot_len;
778 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700779 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400780 struct iov_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500783 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Al Viro0504c072015-03-21 19:40:11 -0400785 ret = import_iovec(type, uvector, nr_segs,
786 ARRAY_SIZE(iovstack), &iov, &iter);
787 if (ret < 0)
788 return ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700789
Al Viro0504c072015-03-21 19:40:11 -0400790 tot_len = iov_iter_count(&iter);
791 if (!tot_len)
792 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800794 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 goto out;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (type == READ) {
798 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500799 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 } else {
801 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500802 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400803 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
Al Viro293bc982014-02-11 18:37:41 -0500806 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -0400807 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700808 else
Al Viroac15ac02015-03-20 20:10:21 -0400809 ret = do_loop_readv_writev(file, &iter, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Al Viro03d95eb2013-03-20 13:04:20 -0400811 if (type != READ)
812 file_end_write(file);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814out:
Al Viro0504c072015-03-21 19:40:11 -0400815 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400816 if ((ret + (type == READ)) > 0) {
817 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500818 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400819 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500820 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
826 unsigned long vlen, loff_t *pos)
827{
828 if (!(file->f_mode & FMODE_READ))
829 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500830 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return -EINVAL;
832
833 return do_readv_writev(READ, file, vec, vlen, pos);
834}
835
836EXPORT_SYMBOL(vfs_readv);
837
838ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
839 unsigned long vlen, loff_t *pos)
840{
841 if (!(file->f_mode & FMODE_WRITE))
842 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500843 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return -EINVAL;
845
846 return do_readv_writev(WRITE, file, vec, vlen, pos);
847}
848
849EXPORT_SYMBOL(vfs_writev);
850
Heiko Carstens3cdad422009-01-14 14:14:22 +0100851SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
852 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800854 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Al Viro2903ff02012-08-28 12:52:22 -0400857 if (f.file) {
858 loff_t pos = file_pos_read(f.file);
859 ret = vfs_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400860 if (ret >= 0)
861 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800862 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864
865 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800866 add_rchar(current, ret);
867 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return ret;
869}
870
Heiko Carstens3cdad422009-01-14 14:14:22 +0100871SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
872 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800874 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Al Viro2903ff02012-08-28 12:52:22 -0400877 if (f.file) {
878 loff_t pos = file_pos_read(f.file);
879 ret = vfs_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400880 if (ret >= 0)
881 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800882 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
885 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800886 add_wchar(current, ret);
887 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return ret;
889}
890
Linus Torvalds601cc112009-04-03 08:03:22 -0700891static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700892{
Linus Torvalds601cc112009-04-03 08:03:22 -0700893#define HALF_LONG_BITS (BITS_PER_LONG / 2)
894 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
895}
896
897SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
898 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
899{
900 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400901 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700902 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700903
904 if (pos < 0)
905 return -EINVAL;
906
Al Viro2903ff02012-08-28 12:52:22 -0400907 f = fdget(fd);
908 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700909 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400910 if (f.file->f_mode & FMODE_PREAD)
911 ret = vfs_readv(f.file, vec, vlen, &pos);
912 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700913 }
914
915 if (ret > 0)
916 add_rchar(current, ret);
917 inc_syscr(current);
918 return ret;
919}
920
921SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700922 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700923{
Linus Torvalds601cc112009-04-03 08:03:22 -0700924 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400925 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700926 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700927
928 if (pos < 0)
929 return -EINVAL;
930
Al Viro2903ff02012-08-28 12:52:22 -0400931 f = fdget(fd);
932 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700933 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400934 if (f.file->f_mode & FMODE_PWRITE)
935 ret = vfs_writev(f.file, vec, vlen, &pos);
936 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700937 }
938
939 if (ret > 0)
940 add_wchar(current, ret);
941 inc_syscw(current);
942 return ret;
943}
944
Al Viro72ec3512013-03-20 10:42:10 -0400945#ifdef CONFIG_COMPAT
946
947static ssize_t compat_do_readv_writev(int type, struct file *file,
948 const struct compat_iovec __user *uvector,
949 unsigned long nr_segs, loff_t *pos)
950{
951 compat_ssize_t tot_len;
952 struct iovec iovstack[UIO_FASTIOV];
953 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400954 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -0400955 ssize_t ret;
956 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500957 iter_fn_t iter_fn;
Al Viro72ec3512013-03-20 10:42:10 -0400958
Al Viro0504c072015-03-21 19:40:11 -0400959 ret = compat_import_iovec(type, uvector, nr_segs,
960 UIO_FASTIOV, &iov, &iter);
961 if (ret < 0)
962 return ret;
Al Viro72ec3512013-03-20 10:42:10 -0400963
Al Viro0504c072015-03-21 19:40:11 -0400964 tot_len = iov_iter_count(&iter);
965 if (!tot_len)
966 goto out;
Al Viro72ec3512013-03-20 10:42:10 -0400967 ret = rw_verify_area(type, file, pos, tot_len);
968 if (ret < 0)
969 goto out;
970
Al Viro72ec3512013-03-20 10:42:10 -0400971 if (type == READ) {
972 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500973 iter_fn = file->f_op->read_iter;
Al Viro72ec3512013-03-20 10:42:10 -0400974 } else {
975 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500976 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400977 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -0400978 }
979
Al Viro293bc982014-02-11 18:37:41 -0500980 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -0400981 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Al Viro03d95eb2013-03-20 13:04:20 -0400982 else
Al Viroac15ac02015-03-20 20:10:21 -0400983 ret = do_loop_readv_writev(file, &iter, pos, fn);
Al Viro72ec3512013-03-20 10:42:10 -0400984
Al Viro03d95eb2013-03-20 13:04:20 -0400985 if (type != READ)
986 file_end_write(file);
987
Al Viro72ec3512013-03-20 10:42:10 -0400988out:
Al Viro0504c072015-03-21 19:40:11 -0400989 kfree(iov);
Al Viro72ec3512013-03-20 10:42:10 -0400990 if ((ret + (type == READ)) > 0) {
991 if (type == READ)
992 fsnotify_access(file);
993 else
994 fsnotify_modify(file);
995 }
996 return ret;
997}
998
999static size_t compat_readv(struct file *file,
1000 const struct compat_iovec __user *vec,
1001 unsigned long vlen, loff_t *pos)
1002{
1003 ssize_t ret = -EBADF;
1004
1005 if (!(file->f_mode & FMODE_READ))
1006 goto out;
1007
1008 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001009 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001010 goto out;
1011
1012 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
1013
1014out:
1015 if (ret > 0)
1016 add_rchar(current, ret);
1017 inc_syscr(current);
1018 return ret;
1019}
1020
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001021COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001022 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001023 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001024{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001025 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001026 ssize_t ret;
1027 loff_t pos;
1028
1029 if (!f.file)
1030 return -EBADF;
1031 pos = f.file->f_pos;
1032 ret = compat_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001033 if (ret >= 0)
1034 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001035 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001036 return ret;
1037}
1038
Heiko Carstens378a10f2014-03-05 10:43:51 +01001039static long __compat_sys_preadv64(unsigned long fd,
1040 const struct compat_iovec __user *vec,
1041 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001042{
1043 struct fd f;
1044 ssize_t ret;
1045
1046 if (pos < 0)
1047 return -EINVAL;
1048 f = fdget(fd);
1049 if (!f.file)
1050 return -EBADF;
1051 ret = -ESPIPE;
1052 if (f.file->f_mode & FMODE_PREAD)
1053 ret = compat_readv(f.file, vec, vlen, &pos);
1054 fdput(f);
1055 return ret;
1056}
1057
Heiko Carstens378a10f2014-03-05 10:43:51 +01001058#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1059COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1060 const struct compat_iovec __user *,vec,
1061 unsigned long, vlen, loff_t, pos)
1062{
1063 return __compat_sys_preadv64(fd, vec, vlen, pos);
1064}
1065#endif
1066
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001067COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001068 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001069 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001070{
1071 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001072
1073 return __compat_sys_preadv64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001074}
1075
1076static size_t compat_writev(struct file *file,
1077 const struct compat_iovec __user *vec,
1078 unsigned long vlen, loff_t *pos)
1079{
1080 ssize_t ret = -EBADF;
1081
1082 if (!(file->f_mode & FMODE_WRITE))
1083 goto out;
1084
1085 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001086 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001087 goto out;
1088
1089 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1090
1091out:
1092 if (ret > 0)
1093 add_wchar(current, ret);
1094 inc_syscw(current);
1095 return ret;
1096}
1097
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001098COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001099 const struct compat_iovec __user *, vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001100 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001101{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001102 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001103 ssize_t ret;
1104 loff_t pos;
1105
1106 if (!f.file)
1107 return -EBADF;
1108 pos = f.file->f_pos;
1109 ret = compat_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001110 if (ret >= 0)
1111 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001112 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001113 return ret;
1114}
1115
Heiko Carstens378a10f2014-03-05 10:43:51 +01001116static long __compat_sys_pwritev64(unsigned long fd,
1117 const struct compat_iovec __user *vec,
1118 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001119{
1120 struct fd f;
1121 ssize_t ret;
1122
1123 if (pos < 0)
1124 return -EINVAL;
1125 f = fdget(fd);
1126 if (!f.file)
1127 return -EBADF;
1128 ret = -ESPIPE;
1129 if (f.file->f_mode & FMODE_PWRITE)
1130 ret = compat_writev(f.file, vec, vlen, &pos);
1131 fdput(f);
1132 return ret;
1133}
1134
Heiko Carstens378a10f2014-03-05 10:43:51 +01001135#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1136COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1137 const struct compat_iovec __user *,vec,
1138 unsigned long, vlen, loff_t, pos)
1139{
1140 return __compat_sys_pwritev64(fd, vec, vlen, pos);
1141}
1142#endif
1143
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001144COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001145 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001146 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001147{
1148 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001149
1150 return __compat_sys_pwritev64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001151}
1152#endif
1153
Al Viro19f4fc32013-02-24 02:17:03 -05001154static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1155 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Al Viro2903ff02012-08-28 12:52:22 -04001157 struct fd in, out;
1158 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001160 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001162 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /*
1165 * Get input file, and verify that it is ok..
1166 */
1167 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001168 in = fdget(in_fd);
1169 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001171 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001174 if (!ppos) {
1175 pos = in.file->f_pos;
1176 } else {
1177 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001178 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001180 }
1181 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001182 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001184 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /*
1187 * Get output file, and verify that it is ok..
1188 */
1189 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001190 out = fdget(out_fd);
1191 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001193 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 goto fput_out;
1195 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001196 in_inode = file_inode(in.file);
1197 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001198 out_pos = out.file->f_pos;
1199 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001200 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001202 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (!max)
1205 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (unlikely(pos + count > max)) {
1208 retval = -EOVERFLOW;
1209 if (pos >= max)
1210 goto fput_out;
1211 count = max - pos;
1212 }
1213
Jens Axboed96e6e72007-06-11 12:18:52 +02001214 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001215#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001216 /*
1217 * We need to debate whether we can enable this or not. The
1218 * man page documents EAGAIN return for the output at least,
1219 * and the application is arguably buggy if it doesn't expect
1220 * EAGAIN on a non-blocking file descriptor.
1221 */
Al Viro2903ff02012-08-28 12:52:22 -04001222 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001223 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001224#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001225 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001226 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001227 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001230 add_rchar(current, retval);
1231 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001232 fsnotify_access(in.file);
1233 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001234 out.file->f_pos = out_pos;
1235 if (ppos)
1236 *ppos = pos;
1237 else
1238 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001241 inc_syscr(current);
1242 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001243 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 retval = -EOVERFLOW;
1245
1246fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001247 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001249 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250out:
1251 return retval;
1252}
1253
Heiko Carstens002c8972009-01-14 14:14:18 +01001254SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 loff_t pos;
1257 off_t off;
1258 ssize_t ret;
1259
1260 if (offset) {
1261 if (unlikely(get_user(off, offset)))
1262 return -EFAULT;
1263 pos = off;
1264 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1265 if (unlikely(put_user(pos, offset)))
1266 return -EFAULT;
1267 return ret;
1268 }
1269
1270 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1271}
1272
Heiko Carstens002c8972009-01-14 14:14:18 +01001273SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 loff_t pos;
1276 ssize_t ret;
1277
1278 if (offset) {
1279 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1280 return -EFAULT;
1281 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1282 if (unlikely(put_user(pos, offset)))
1283 return -EFAULT;
1284 return ret;
1285 }
1286
1287 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1288}
Al Viro19f4fc32013-02-24 02:17:03 -05001289
1290#ifdef CONFIG_COMPAT
1291COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1292 compat_off_t __user *, offset, compat_size_t, count)
1293{
1294 loff_t pos;
1295 off_t off;
1296 ssize_t ret;
1297
1298 if (offset) {
1299 if (unlikely(get_user(off, offset)))
1300 return -EFAULT;
1301 pos = off;
1302 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1303 if (unlikely(put_user(pos, offset)))
1304 return -EFAULT;
1305 return ret;
1306 }
1307
1308 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1309}
1310
1311COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1312 compat_loff_t __user *, offset, compat_size_t, count)
1313{
1314 loff_t pos;
1315 ssize_t ret;
1316
1317 if (offset) {
1318 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1319 return -EFAULT;
1320 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1321 if (unlikely(put_user(pos, offset)))
1322 return -EFAULT;
1323 return ret;
1324 }
1325
1326 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1327}
1328#endif