blob: c81ef394a3d4d1ba3917cf0e9e33b250e22aa3e1 [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>
Zach Brown29732932015-11-10 16:53:30 -050019#include <linux/mount.h>
Al Viro06ae43f2013-03-20 13:19:30 -040020#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/uaccess.h>
23#include <asm/unistd.h>
24
Al Viroc0bd14af2013-05-04 15:00:54 -040025typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
Al Viro293bc982014-02-11 18:37:41 -050026typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
Al Viroc0bd14af2013-05-04 15:00:54 -040027
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080028const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040030 .read_iter = generic_file_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020032 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
35EXPORT_SYMBOL(generic_ro_fops);
36
Al Virocccb5a12010-12-17 07:44:05 -050037static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070038{
Al Virocccb5a12010-12-17 07:44:05 -050039 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070040}
41
Jie Liu46a1c2c2013-06-25 12:02:13 +080042/**
43 * vfs_setpos - update the file offset for lseek
44 * @file: file structure in question
45 * @offset: file offset to seek to
46 * @maxsize: maximum file size
47 *
48 * This is a low-level filesystem helper for updating the file offset to
49 * the value specified by @offset if the given offset is valid and it is
50 * not equal to the current file offset.
51 *
52 * Return the specified offset on success and -EINVAL on invalid offset.
53 */
54loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070055{
56 if (offset < 0 && !unsigned_offsets(file))
57 return -EINVAL;
58 if (offset > maxsize)
59 return -EINVAL;
60
61 if (offset != file->f_pos) {
62 file->f_pos = offset;
63 file->f_version = 0;
64 }
65 return offset;
66}
Jie Liu46a1c2c2013-06-25 12:02:13 +080067EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070068
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020069/**
Andi Kleen57604952011-09-15 16:06:50 -070070 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020071 * @file: file structure to seek on
72 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080073 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050074 * @size: max size of this file in file system
75 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020076 *
Andi Kleen57604952011-09-15 16:06:50 -070077 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050078 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070079 *
80 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070081 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070082 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
83 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020084 */
Andi Kleen9465efc2008-06-27 11:05:24 +020085loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080086generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050087 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Andrew Morton965c8e52012-12-17 15:59:39 -080089 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020090 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050091 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020092 break;
93 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080094 /*
95 * Here we special-case the lseek(fd, 0, SEEK_CUR)
96 * position-querying operation. Avoid rewriting the "same"
97 * f_pos value back to the file because a concurrent read(),
98 * write() or lseek() might have altered it
99 */
100 if (offset == 0)
101 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700102 /*
103 * f_lock protects against read/modify/write race with other
104 * SEEK_CURs. Note that parallel writes and reads behave
105 * like SEEK_SET.
106 */
107 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800108 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700109 spin_unlock(&file->f_lock);
110 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400111 case SEEK_DATA:
112 /*
113 * In the generic case the entire file is data, so as long as
114 * offset isn't at the end of the file then the offset is data.
115 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500116 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400117 return -ENXIO;
118 break;
119 case SEEK_HOLE:
120 /*
121 * There is a virtual hole at the end of the file, so as long as
122 * offset isn't i_size or larger, return i_size.
123 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500124 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400125 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500126 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400127 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200129
Jie Liu46a1c2c2013-06-25 12:02:13 +0800130 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700131}
132EXPORT_SYMBOL(generic_file_llseek_size);
133
134/**
135 * generic_file_llseek - generic llseek implementation for regular files
136 * @file: file structure to seek on
137 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800138 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700139 *
140 * This is a generic implemenation of ->llseek useable for all normal local
141 * filesystems. It just updates the file offset to the value specified by
Ming Lei546ae2d2013-04-29 15:06:07 -0700142 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700143 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800144loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700145{
146 struct inode *inode = file->f_mapping->host;
147
Andrew Morton965c8e52012-12-17 15:59:39 -0800148 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500149 inode->i_sb->s_maxbytes,
150 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
Andi Kleen9465efc2008-06-27 11:05:24 +0200152EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
jan Blunckae6afc32010-05-26 14:44:48 -0700154/**
Al Viro1bf9d142013-06-16 20:27:42 +0400155 * fixed_size_llseek - llseek implementation for fixed-sized devices
156 * @file: file structure to seek on
157 * @offset: file offset to seek to
158 * @whence: type of seek
159 * @size: size of the file
160 *
161 */
162loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
163{
164 switch (whence) {
165 case SEEK_SET: case SEEK_CUR: case SEEK_END:
166 return generic_file_llseek_size(file, offset, whence,
167 size, size);
168 default:
169 return -EINVAL;
170 }
171}
172EXPORT_SYMBOL(fixed_size_llseek);
173
174/**
jan Blunckae6afc32010-05-26 14:44:48 -0700175 * noop_llseek - No Operation Performed llseek implementation
176 * @file: file structure to seek on
177 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800178 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700179 *
180 * This is an implementation of ->llseek useable for the rare special case when
181 * userspace expects the seek to succeed but the (device) file is actually not
182 * able to perform the seek. In this case you use noop_llseek() instead of
183 * falling back to the default implementation of ->llseek.
184 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800185loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700186{
187 return file->f_pos;
188}
189EXPORT_SYMBOL(noop_llseek);
190
Andrew Morton965c8e52012-12-17 15:59:39 -0800191loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 return -ESPIPE;
194}
195EXPORT_SYMBOL(no_llseek);
196
Andrew Morton965c8e52012-12-17 15:59:39 -0800197loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Al Viro496ad9a2013-01-23 17:07:38 -0500199 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200200 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Josef Bacik982d8162011-07-18 13:21:35 -0400202 mutex_lock(&inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -0800203 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700204 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400205 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700207 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800208 if (offset == 0) {
209 retval = file->f_pos;
210 goto out;
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400213 break;
214 case SEEK_DATA:
215 /*
216 * In the generic case the entire file is data, so as
217 * long as offset isn't at the end of the file then the
218 * offset is data.
219 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300220 if (offset >= inode->i_size) {
221 retval = -ENXIO;
222 goto out;
223 }
Josef Bacik982d8162011-07-18 13:21:35 -0400224 break;
225 case SEEK_HOLE:
226 /*
227 * There is a virtual hole at the end of the file, so
228 * as long as offset isn't i_size or larger, return
229 * i_size.
230 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300231 if (offset >= inode->i_size) {
232 retval = -ENXIO;
233 goto out;
234 }
Josef Bacik982d8162011-07-18 13:21:35 -0400235 offset = inode->i_size;
236 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500239 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (offset != file->f_pos) {
241 file->f_pos = offset;
242 file->f_version = 0;
243 }
244 retval = offset;
245 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800246out:
Josef Bacik982d8162011-07-18 13:21:35 -0400247 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return retval;
249}
250EXPORT_SYMBOL(default_llseek);
251
Andrew Morton965c8e52012-12-17 15:59:39 -0800252loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 loff_t (*fn)(struct file *, loff_t, int);
255
256 fn = no_llseek;
257 if (file->f_mode & FMODE_LSEEK) {
Al Viro72c2d532013-09-22 16:27:52 -0400258 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 fn = file->f_op->llseek;
260 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800261 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263EXPORT_SYMBOL(vfs_llseek);
264
Linus Torvalds9c225f22014-03-03 09:36:58 -0800265static inline struct fd fdget_pos(int fd)
266{
Al Virobd2a31d2014-03-04 14:54:22 -0500267 return __to_fd(__fdget_pos(fd));
Linus Torvalds9c225f22014-03-03 09:36:58 -0800268}
269
270static inline void fdput_pos(struct fd f)
271{
272 if (f.flags & FDPUT_POS_UNLOCK)
273 mutex_unlock(&f.file->f_pos_lock);
274 fdput(f);
275}
276
Andrew Morton965c8e52012-12-17 15:59:39 -0800277SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800280 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400281 if (!f.file)
282 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800285 if (whence <= SEEK_MAX) {
286 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 retval = res;
288 if (res != (loff_t)retval)
289 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
290 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800291 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return retval;
293}
294
Al Viro561c6732013-02-24 10:52:26 -0500295#ifdef CONFIG_COMPAT
296COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
297{
298 return sys_lseek(fd, offset, whence);
299}
300#endif
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100303SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
304 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800305 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500308 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Al Viro2903ff02012-08-28 12:52:22 -0400311 if (!f.file)
312 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800315 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 goto out_putf;
317
Al Viro2903ff02012-08-28 12:52:22 -0400318 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800319 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 retval = (int)offset;
322 if (offset >= 0) {
323 retval = -EFAULT;
324 if (!copy_to_user(result, &offset, sizeof(offset)))
325 retval = 0;
326 }
327out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500328 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return retval;
330}
331#endif
332
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100333ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
334{
335 struct kiocb kiocb;
336 ssize_t ret;
337
338 if (!file->f_op->read_iter)
339 return -EINVAL;
340
341 init_sync_kiocb(&kiocb, file);
342 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100343
344 iter->type |= READ;
345 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100346 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100347 if (ret > 0)
348 *ppos = kiocb.ki_pos;
349 return ret;
350}
351EXPORT_SYMBOL(vfs_iter_read);
352
353ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
354{
355 struct kiocb kiocb;
356 ssize_t ret;
357
358 if (!file->f_op->write_iter)
359 return -EINVAL;
360
361 init_sync_kiocb(&kiocb, file);
362 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100363
364 iter->type |= WRITE;
365 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100366 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100367 if (ret > 0)
368 *ppos = kiocb.ki_pos;
369 return ret;
370}
371EXPORT_SYMBOL(vfs_iter_write);
372
Linus Torvaldse28cc712006-01-04 16:20:40 -0800373/*
374 * rw_verify_area doesn't like huge counts. We limit
375 * them to something that fits in "int" so that others
376 * won't have to do range checks all the time.
377 */
Al Viro68d70d02013-06-19 15:26:04 +0400378int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 struct inode *inode;
381 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100382 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Al Viro496ad9a2013-01-23 17:07:38 -0500384 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800385 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100386 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500388 if (unlikely(pos < 0)) {
389 if (!unsigned_offsets(file))
390 return retval;
391 if (count >= -pos) /* both values are in 0..LLONG_MAX */
392 return -EOVERFLOW;
393 } else if (unlikely((loff_t) (pos + count) < 0)) {
394 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700395 return retval;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500398 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100399 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800400 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
401 inode, file, pos, count);
402 if (retval < 0)
403 return retval;
404 }
James Morrisc43e2592008-01-12 22:05:48 +1100405 retval = security_file_permission(file,
406 read_write == READ ? MAY_READ : MAY_WRITE);
407 if (retval)
408 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800409 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Al Viro5d5d5682015-04-03 15:41:18 -0400412static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500413{
414 struct iovec iov = { .iov_base = buf, .iov_len = len };
415 struct kiocb kiocb;
416 struct iov_iter iter;
417 ssize_t ret;
418
419 init_sync_kiocb(&kiocb, filp);
420 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500421 iov_iter_init(&iter, READ, &iov, 1, len);
422
423 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100424 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500425 *ppos = kiocb.ki_pos;
426 return ret;
427}
428
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200429ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
430 loff_t *pos)
431{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200432 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400433 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200434 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400435 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200436 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400437 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200438}
Al Viro3d04c8a2015-04-03 15:09:18 -0400439EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
442{
443 ssize_t ret;
444
445 if (!(file->f_mode & FMODE_READ))
446 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500447 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -EINVAL;
449 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
450 return -EFAULT;
451
452 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800453 if (ret >= 0) {
454 count = ret;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200455 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100456 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500457 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100458 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
James Morrisc43e2592008-01-12 22:05:48 +1100460 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 return ret;
464}
465
466EXPORT_SYMBOL(vfs_read);
467
Al Viro5d5d5682015-04-03 15:41:18 -0400468static 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 -0500469{
470 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
471 struct kiocb kiocb;
472 struct iov_iter iter;
473 ssize_t ret;
474
475 init_sync_kiocb(&kiocb, filp);
476 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500477 iov_iter_init(&iter, WRITE, &iov, 1, len);
478
479 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100480 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400481 if (ret > 0)
482 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500483 return ret;
484}
485
Al Viro493c84c2015-04-03 15:06:43 -0400486ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
487 loff_t *pos)
488{
489 if (file->f_op->write)
490 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400491 else if (file->f_op->write_iter)
492 return new_sync_write(file, p, count, pos);
493 else
494 return -EINVAL;
495}
496EXPORT_SYMBOL(__vfs_write);
497
Al Viro06ae43f2013-03-20 13:19:30 -0400498ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
499{
500 mm_segment_t old_fs;
501 const char __user *p;
502 ssize_t ret;
503
Al Viro7f7f25e2014-02-11 17:49:24 -0500504 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000505 return -EINVAL;
506
Al Viro06ae43f2013-03-20 13:19:30 -0400507 old_fs = get_fs();
508 set_fs(get_ds());
509 p = (__force const char __user *)buf;
510 if (count > MAX_RW_COUNT)
511 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400512 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400513 set_fs(old_fs);
514 if (ret > 0) {
515 fsnotify_modify(file);
516 add_wchar(current, ret);
517 }
518 inc_syscw(current);
519 return ret;
520}
521
Al Viro2ec3a122014-08-19 11:48:09 -0400522EXPORT_SYMBOL(__kernel_write);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
525{
526 ssize_t ret;
527
528 if (!(file->f_mode & FMODE_WRITE))
529 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500530 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return -EINVAL;
532 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
533 return -EFAULT;
534
535 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800536 if (ret >= 0) {
537 count = ret;
Al Viro03d95eb2013-03-20 13:04:20 -0400538 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400539 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100540 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500541 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100542 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
James Morrisc43e2592008-01-12 22:05:48 +1100544 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400545 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
548 return ret;
549}
550
551EXPORT_SYMBOL(vfs_write);
552
553static inline loff_t file_pos_read(struct file *file)
554{
555 return file->f_pos;
556}
557
558static inline void file_pos_write(struct file *file, loff_t pos)
559{
560 file->f_pos = pos;
561}
562
Heiko Carstens3cdad422009-01-14 14:14:22 +0100563SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800565 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Al Viro2903ff02012-08-28 12:52:22 -0400568 if (f.file) {
569 loff_t pos = file_pos_read(f.file);
570 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400571 if (ret >= 0)
572 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800573 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return ret;
576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Heiko Carstens3cdad422009-01-14 14:14:22 +0100578SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
579 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800581 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Al Viro2903ff02012-08-28 12:52:22 -0400584 if (f.file) {
585 loff_t pos = file_pos_read(f.file);
586 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400587 if (ret >= 0)
588 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800589 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591
592 return ret;
593}
594
Al Viro4a0fd5b2013-01-21 15:16:58 -0500595SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
596 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Al Viro2903ff02012-08-28 12:52:22 -0400598 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (pos < 0)
602 return -EINVAL;
603
Al Viro2903ff02012-08-28 12:52:22 -0400604 f = fdget(fd);
605 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400607 if (f.file->f_mode & FMODE_PREAD)
608 ret = vfs_read(f.file, buf, count, &pos);
609 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
612 return ret;
613}
614
Al Viro4a0fd5b2013-01-21 15:16:58 -0500615SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
616 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Al Viro2903ff02012-08-28 12:52:22 -0400618 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 if (pos < 0)
622 return -EINVAL;
623
Al Viro2903ff02012-08-28 12:52:22 -0400624 f = fdget(fd);
625 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400627 if (f.file->f_mode & FMODE_PWRITE)
628 ret = vfs_write(f.file, buf, count, &pos);
629 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
632 return ret;
633}
634
635/*
636 * Reduce an iovec's length in-place. Return the resulting number of segments
637 */
638unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
639{
640 unsigned long seg = 0;
641 size_t len = 0;
642
643 while (seg < nr_segs) {
644 seg++;
645 if (len + iov->iov_len >= to) {
646 iov->iov_len = to - len;
647 break;
648 }
649 len += iov->iov_len;
650 iov++;
651 }
652 return seg;
653}
Eric Sandeen19295522008-01-28 23:58:27 -0500654EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Al Viroac15ac02015-03-20 20:10:21 -0400656static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
657 loff_t *ppos, iter_fn_t fn)
Al Viro293bc982014-02-11 18:37:41 -0500658{
659 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500660 ssize_t ret;
661
662 init_sync_kiocb(&kiocb, filp);
663 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500664
Al Viroac15ac02015-03-20 20:10:21 -0400665 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100666 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500667 *ppos = kiocb.ki_pos;
668 return ret;
669}
670
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700671/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400672static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
673 loff_t *ppos, io_fn_t fn)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700674{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700675 ssize_t ret = 0;
676
Al Viroac15ac02015-03-20 20:10:21 -0400677 while (iov_iter_count(iter)) {
678 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700679 ssize_t nr;
680
Al Viroac15ac02015-03-20 20:10:21 -0400681 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700682
683 if (nr < 0) {
684 if (!ret)
685 ret = nr;
686 break;
687 }
688 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400689 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700690 break;
Al Viroac15ac02015-03-20 20:10:21 -0400691 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700692 }
693
694 return ret;
695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/* A write operation does a read from user space and vice versa */
698#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
699
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700700ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
701 unsigned long nr_segs, unsigned long fast_segs,
702 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700703 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700704{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700705 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700706 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700707 struct iovec *iov = fast_pointer;
708
Linus Torvalds435f49a2010-10-29 10:36:49 -0700709 /*
710 * SuS says "The readv() function *may* fail if the iovcnt argument
711 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
712 * traditionally returned zero for zero segments, so...
713 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700714 if (nr_segs == 0) {
715 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700716 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700717 }
718
Linus Torvalds435f49a2010-10-29 10:36:49 -0700719 /*
720 * First get the "struct iovec" from user memory and
721 * verify all the pointers
722 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700723 if (nr_segs > UIO_MAXIOV) {
724 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700725 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700726 }
727 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700728 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700729 if (iov == NULL) {
730 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700731 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700732 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700733 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700734 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
735 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700736 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700737 }
738
Linus Torvalds435f49a2010-10-29 10:36:49 -0700739 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700740 * According to the Single Unix Specification we should return EINVAL
741 * if an element length is < 0 when cast to ssize_t or if the
742 * total length would overflow the ssize_t return value of the
743 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700744 *
745 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
746 * overflow case.
747 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700748 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700749 for (seg = 0; seg < nr_segs; seg++) {
750 void __user *buf = iov[seg].iov_base;
751 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700752
753 /* see if we we're about to use an invalid len or if
754 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700755 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700756 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700757 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700758 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700759 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700760 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700761 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700762 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700763 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700764 if (len > MAX_RW_COUNT - ret) {
765 len = MAX_RW_COUNT - ret;
766 iov[seg].iov_len = len;
767 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700768 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700769 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700770out:
771 *ret_pointer = iov;
772 return ret;
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static ssize_t do_readv_writev(int type, struct file *file,
776 const struct iovec __user * uvector,
777 unsigned long nr_segs, loff_t *pos)
778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 size_t tot_len;
780 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700781 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400782 struct iov_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500785 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Al Viro0504c072015-03-21 19:40:11 -0400787 ret = import_iovec(type, uvector, nr_segs,
788 ARRAY_SIZE(iovstack), &iov, &iter);
789 if (ret < 0)
790 return ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700791
Al Viro0504c072015-03-21 19:40:11 -0400792 tot_len = iov_iter_count(&iter);
793 if (!tot_len)
794 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800796 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto out;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (type == READ) {
800 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500801 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 } else {
803 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500804 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400805 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Al Viro293bc982014-02-11 18:37:41 -0500808 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -0400809 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700810 else
Al Viroac15ac02015-03-20 20:10:21 -0400811 ret = do_loop_readv_writev(file, &iter, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Al Viro03d95eb2013-03-20 13:04:20 -0400813 if (type != READ)
814 file_end_write(file);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816out:
Al Viro0504c072015-03-21 19:40:11 -0400817 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400818 if ((ret + (type == READ)) > 0) {
819 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500820 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400821 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500822 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
828 unsigned long vlen, loff_t *pos)
829{
830 if (!(file->f_mode & FMODE_READ))
831 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500832 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return -EINVAL;
834
835 return do_readv_writev(READ, file, vec, vlen, pos);
836}
837
838EXPORT_SYMBOL(vfs_readv);
839
840ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
841 unsigned long vlen, loff_t *pos)
842{
843 if (!(file->f_mode & FMODE_WRITE))
844 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500845 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EINVAL;
847
848 return do_readv_writev(WRITE, file, vec, vlen, pos);
849}
850
851EXPORT_SYMBOL(vfs_writev);
852
Heiko Carstens3cdad422009-01-14 14:14:22 +0100853SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
854 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800856 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Al Viro2903ff02012-08-28 12:52:22 -0400859 if (f.file) {
860 loff_t pos = file_pos_read(f.file);
861 ret = vfs_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400862 if (ret >= 0)
863 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800864 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866
867 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800868 add_rchar(current, ret);
869 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return ret;
871}
872
Heiko Carstens3cdad422009-01-14 14:14:22 +0100873SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
874 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800876 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Al Viro2903ff02012-08-28 12:52:22 -0400879 if (f.file) {
880 loff_t pos = file_pos_read(f.file);
881 ret = vfs_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400882 if (ret >= 0)
883 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800884 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886
887 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800888 add_wchar(current, ret);
889 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return ret;
891}
892
Linus Torvalds601cc112009-04-03 08:03:22 -0700893static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700894{
Linus Torvalds601cc112009-04-03 08:03:22 -0700895#define HALF_LONG_BITS (BITS_PER_LONG / 2)
896 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
897}
898
899SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
900 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
901{
902 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400903 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700904 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700905
906 if (pos < 0)
907 return -EINVAL;
908
Al Viro2903ff02012-08-28 12:52:22 -0400909 f = fdget(fd);
910 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700911 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400912 if (f.file->f_mode & FMODE_PREAD)
913 ret = vfs_readv(f.file, vec, vlen, &pos);
914 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700915 }
916
917 if (ret > 0)
918 add_rchar(current, ret);
919 inc_syscr(current);
920 return ret;
921}
922
923SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700924 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700925{
Linus Torvalds601cc112009-04-03 08:03:22 -0700926 loff_t pos = pos_from_hilo(pos_h, pos_l);
Al Viro2903ff02012-08-28 12:52:22 -0400927 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700928 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700929
930 if (pos < 0)
931 return -EINVAL;
932
Al Viro2903ff02012-08-28 12:52:22 -0400933 f = fdget(fd);
934 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700935 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400936 if (f.file->f_mode & FMODE_PWRITE)
937 ret = vfs_writev(f.file, vec, vlen, &pos);
938 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700939 }
940
941 if (ret > 0)
942 add_wchar(current, ret);
943 inc_syscw(current);
944 return ret;
945}
946
Al Viro72ec3512013-03-20 10:42:10 -0400947#ifdef CONFIG_COMPAT
948
949static ssize_t compat_do_readv_writev(int type, struct file *file,
950 const struct compat_iovec __user *uvector,
951 unsigned long nr_segs, loff_t *pos)
952{
953 compat_ssize_t tot_len;
954 struct iovec iovstack[UIO_FASTIOV];
955 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400956 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -0400957 ssize_t ret;
958 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500959 iter_fn_t iter_fn;
Al Viro72ec3512013-03-20 10:42:10 -0400960
Al Viro0504c072015-03-21 19:40:11 -0400961 ret = compat_import_iovec(type, uvector, nr_segs,
962 UIO_FASTIOV, &iov, &iter);
963 if (ret < 0)
964 return ret;
Al Viro72ec3512013-03-20 10:42:10 -0400965
Al Viro0504c072015-03-21 19:40:11 -0400966 tot_len = iov_iter_count(&iter);
967 if (!tot_len)
968 goto out;
Al Viro72ec3512013-03-20 10:42:10 -0400969 ret = rw_verify_area(type, file, pos, tot_len);
970 if (ret < 0)
971 goto out;
972
Al Viro72ec3512013-03-20 10:42:10 -0400973 if (type == READ) {
974 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500975 iter_fn = file->f_op->read_iter;
Al Viro72ec3512013-03-20 10:42:10 -0400976 } else {
977 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500978 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400979 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -0400980 }
981
Al Viro293bc982014-02-11 18:37:41 -0500982 if (iter_fn)
Al Viroac15ac02015-03-20 20:10:21 -0400983 ret = do_iter_readv_writev(file, &iter, pos, iter_fn);
Al Viro03d95eb2013-03-20 13:04:20 -0400984 else
Al Viroac15ac02015-03-20 20:10:21 -0400985 ret = do_loop_readv_writev(file, &iter, pos, fn);
Al Viro72ec3512013-03-20 10:42:10 -0400986
Al Viro03d95eb2013-03-20 13:04:20 -0400987 if (type != READ)
988 file_end_write(file);
989
Al Viro72ec3512013-03-20 10:42:10 -0400990out:
Al Viro0504c072015-03-21 19:40:11 -0400991 kfree(iov);
Al Viro72ec3512013-03-20 10:42:10 -0400992 if ((ret + (type == READ)) > 0) {
993 if (type == READ)
994 fsnotify_access(file);
995 else
996 fsnotify_modify(file);
997 }
998 return ret;
999}
1000
1001static size_t compat_readv(struct file *file,
1002 const struct compat_iovec __user *vec,
1003 unsigned long vlen, loff_t *pos)
1004{
1005 ssize_t ret = -EBADF;
1006
1007 if (!(file->f_mode & FMODE_READ))
1008 goto out;
1009
1010 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001011 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001012 goto out;
1013
1014 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
1015
1016out:
1017 if (ret > 0)
1018 add_rchar(current, ret);
1019 inc_syscr(current);
1020 return ret;
1021}
1022
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001023COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001024 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001025 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001026{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001027 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001028 ssize_t ret;
1029 loff_t pos;
1030
1031 if (!f.file)
1032 return -EBADF;
1033 pos = f.file->f_pos;
1034 ret = compat_readv(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001035 if (ret >= 0)
1036 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001037 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001038 return ret;
1039}
1040
Heiko Carstens378a10f2014-03-05 10:43:51 +01001041static long __compat_sys_preadv64(unsigned long fd,
1042 const struct compat_iovec __user *vec,
1043 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001044{
1045 struct fd f;
1046 ssize_t ret;
1047
1048 if (pos < 0)
1049 return -EINVAL;
1050 f = fdget(fd);
1051 if (!f.file)
1052 return -EBADF;
1053 ret = -ESPIPE;
1054 if (f.file->f_mode & FMODE_PREAD)
1055 ret = compat_readv(f.file, vec, vlen, &pos);
1056 fdput(f);
1057 return ret;
1058}
1059
Heiko Carstens378a10f2014-03-05 10:43:51 +01001060#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1061COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1062 const struct compat_iovec __user *,vec,
1063 unsigned long, vlen, loff_t, pos)
1064{
1065 return __compat_sys_preadv64(fd, vec, vlen, pos);
1066}
1067#endif
1068
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001069COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001070 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001071 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001072{
1073 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001074
1075 return __compat_sys_preadv64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001076}
1077
1078static size_t compat_writev(struct file *file,
1079 const struct compat_iovec __user *vec,
1080 unsigned long vlen, loff_t *pos)
1081{
1082 ssize_t ret = -EBADF;
1083
1084 if (!(file->f_mode & FMODE_WRITE))
1085 goto out;
1086
1087 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001088 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001089 goto out;
1090
1091 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1092
1093out:
1094 if (ret > 0)
1095 add_wchar(current, ret);
1096 inc_syscw(current);
1097 return ret;
1098}
1099
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001100COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001101 const struct compat_iovec __user *, vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001102 compat_ulong_t, vlen)
Al Viro72ec3512013-03-20 10:42:10 -04001103{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001104 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001105 ssize_t ret;
1106 loff_t pos;
1107
1108 if (!f.file)
1109 return -EBADF;
1110 pos = f.file->f_pos;
1111 ret = compat_writev(f.file, vec, vlen, &pos);
Al Viro5faf1532013-06-15 05:49:36 +04001112 if (ret >= 0)
1113 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001114 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001115 return ret;
1116}
1117
Heiko Carstens378a10f2014-03-05 10:43:51 +01001118static long __compat_sys_pwritev64(unsigned long fd,
1119 const struct compat_iovec __user *vec,
1120 unsigned long vlen, loff_t pos)
Al Viro72ec3512013-03-20 10:42:10 -04001121{
1122 struct fd f;
1123 ssize_t ret;
1124
1125 if (pos < 0)
1126 return -EINVAL;
1127 f = fdget(fd);
1128 if (!f.file)
1129 return -EBADF;
1130 ret = -ESPIPE;
1131 if (f.file->f_mode & FMODE_PWRITE)
1132 ret = compat_writev(f.file, vec, vlen, &pos);
1133 fdput(f);
1134 return ret;
1135}
1136
Heiko Carstens378a10f2014-03-05 10:43:51 +01001137#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1138COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1139 const struct compat_iovec __user *,vec,
1140 unsigned long, vlen, loff_t, pos)
1141{
1142 return __compat_sys_pwritev64(fd, vec, vlen, pos);
1143}
1144#endif
1145
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001146COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001147 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001148 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001149{
1150 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001151
1152 return __compat_sys_pwritev64(fd, vec, vlen, pos);
Al Viro72ec3512013-03-20 10:42:10 -04001153}
1154#endif
1155
Al Viro19f4fc32013-02-24 02:17:03 -05001156static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1157 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Al Viro2903ff02012-08-28 12:52:22 -04001159 struct fd in, out;
1160 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001162 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001164 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 /*
1167 * Get input file, and verify that it is ok..
1168 */
1169 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001170 in = fdget(in_fd);
1171 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001173 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001176 if (!ppos) {
1177 pos = in.file->f_pos;
1178 } else {
1179 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001180 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001182 }
1183 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001184 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001186 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /*
1189 * Get output file, and verify that it is ok..
1190 */
1191 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001192 out = fdget(out_fd);
1193 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001195 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto fput_out;
1197 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001198 in_inode = file_inode(in.file);
1199 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001200 out_pos = out.file->f_pos;
1201 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001202 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -08001204 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (!max)
1207 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (unlikely(pos + count > max)) {
1210 retval = -EOVERFLOW;
1211 if (pos >= max)
1212 goto fput_out;
1213 count = max - pos;
1214 }
1215
Jens Axboed96e6e72007-06-11 12:18:52 +02001216 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001217#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001218 /*
1219 * We need to debate whether we can enable this or not. The
1220 * man page documents EAGAIN return for the output at least,
1221 * and the application is arguably buggy if it doesn't expect
1222 * EAGAIN on a non-blocking file descriptor.
1223 */
Al Viro2903ff02012-08-28 12:52:22 -04001224 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001225 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001226#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001227 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001228 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001229 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001232 add_rchar(current, retval);
1233 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001234 fsnotify_access(in.file);
1235 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001236 out.file->f_pos = out_pos;
1237 if (ppos)
1238 *ppos = pos;
1239 else
1240 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001243 inc_syscr(current);
1244 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001245 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 retval = -EOVERFLOW;
1247
1248fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001249 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001251 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252out:
1253 return retval;
1254}
1255
Heiko Carstens002c8972009-01-14 14:14:18 +01001256SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 loff_t pos;
1259 off_t off;
1260 ssize_t ret;
1261
1262 if (offset) {
1263 if (unlikely(get_user(off, offset)))
1264 return -EFAULT;
1265 pos = off;
1266 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1267 if (unlikely(put_user(pos, offset)))
1268 return -EFAULT;
1269 return ret;
1270 }
1271
1272 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1273}
1274
Heiko Carstens002c8972009-01-14 14:14:18 +01001275SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
1277 loff_t pos;
1278 ssize_t ret;
1279
1280 if (offset) {
1281 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1282 return -EFAULT;
1283 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1284 if (unlikely(put_user(pos, offset)))
1285 return -EFAULT;
1286 return ret;
1287 }
1288
1289 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1290}
Al Viro19f4fc32013-02-24 02:17:03 -05001291
1292#ifdef CONFIG_COMPAT
1293COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1294 compat_off_t __user *, offset, compat_size_t, count)
1295{
1296 loff_t pos;
1297 off_t off;
1298 ssize_t ret;
1299
1300 if (offset) {
1301 if (unlikely(get_user(off, offset)))
1302 return -EFAULT;
1303 pos = off;
1304 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1305 if (unlikely(put_user(pos, offset)))
1306 return -EFAULT;
1307 return ret;
1308 }
1309
1310 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1311}
1312
1313COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1314 compat_loff_t __user *, offset, compat_size_t, count)
1315{
1316 loff_t pos;
1317 ssize_t ret;
1318
1319 if (offset) {
1320 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1321 return -EFAULT;
1322 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1323 if (unlikely(put_user(pos, offset)))
1324 return -EFAULT;
1325 return ret;
1326 }
1327
1328 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1329}
1330#endif
Zach Brown29732932015-11-10 16:53:30 -05001331
1332/*
1333 * copy_file_range() differs from regular file read and write in that it
1334 * specifically allows return partial success. When it does so is up to
1335 * the copy_file_range method.
1336 */
1337ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1338 struct file *file_out, loff_t pos_out,
1339 size_t len, unsigned int flags)
1340{
1341 struct inode *inode_in = file_inode(file_in);
1342 struct inode *inode_out = file_inode(file_out);
1343 ssize_t ret;
1344
1345 if (flags != 0)
1346 return -EINVAL;
1347
1348 /* copy_file_range allows full ssize_t len, ignoring MAX_RW_COUNT */
1349 ret = rw_verify_area(READ, file_in, &pos_in, len);
1350 if (ret >= 0)
1351 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1352 if (ret < 0)
1353 return ret;
1354
1355 if (!(file_in->f_mode & FMODE_READ) ||
1356 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001357 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001358 return -EBADF;
1359
1360 /* this could be relaxed once a method supports cross-fs copies */
1361 if (inode_in->i_sb != inode_out->i_sb)
1362 return -EXDEV;
1363
1364 if (len == 0)
1365 return 0;
1366
1367 ret = mnt_want_write_file(file_out);
1368 if (ret)
1369 return ret;
1370
Anna Schumakereac70052015-11-10 16:53:33 -05001371 ret = -EOPNOTSUPP;
1372 if (file_out->f_op->copy_file_range)
1373 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1374 pos_out, len, flags);
1375 if (ret == -EOPNOTSUPP)
1376 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1377 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1378
Zach Brown29732932015-11-10 16:53:30 -05001379 if (ret > 0) {
1380 fsnotify_access(file_in);
1381 add_rchar(current, ret);
1382 fsnotify_modify(file_out);
1383 add_wchar(current, ret);
1384 }
1385 inc_syscr(current);
1386 inc_syscw(current);
1387
1388 mnt_drop_write_file(file_out);
1389
1390 return ret;
1391}
1392EXPORT_SYMBOL(vfs_copy_file_range);
1393
1394SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1395 int, fd_out, loff_t __user *, off_out,
1396 size_t, len, unsigned int, flags)
1397{
1398 loff_t pos_in;
1399 loff_t pos_out;
1400 struct fd f_in;
1401 struct fd f_out;
1402 ssize_t ret = -EBADF;
1403
1404 f_in = fdget(fd_in);
1405 if (!f_in.file)
1406 goto out2;
1407
1408 f_out = fdget(fd_out);
1409 if (!f_out.file)
1410 goto out1;
1411
1412 ret = -EFAULT;
1413 if (off_in) {
1414 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1415 goto out;
1416 } else {
1417 pos_in = f_in.file->f_pos;
1418 }
1419
1420 if (off_out) {
1421 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1422 goto out;
1423 } else {
1424 pos_out = f_out.file->f_pos;
1425 }
1426
1427 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1428 flags);
1429 if (ret > 0) {
1430 pos_in += ret;
1431 pos_out += ret;
1432
1433 if (off_in) {
1434 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1435 ret = -EFAULT;
1436 } else {
1437 f_in.file->f_pos = pos_in;
1438 }
1439
1440 if (off_out) {
1441 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1442 ret = -EFAULT;
1443 } else {
1444 f_out.file->f_pos = pos_out;
1445 }
1446 }
1447
1448out:
1449 fdput(f_out);
1450out1:
1451 fdput(f_in);
1452out2:
1453 return ret;
1454}