blob: b1a0e6ca218f67a997172e0c8f22501d1395ab7c [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>
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +010020#include <linux/fs.h>
Al Viro06ae43f2013-03-20 13:19:30 -040021#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/uaccess.h>
24#include <asm/unistd.h>
25
Al Viroc0bd14af2013-05-04 15:00:54 -040026typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
Al Viro293bc982014-02-11 18:37:41 -050027typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
Al Viroc0bd14af2013-05-04 15:00:54 -040028
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080029const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040031 .read_iter = generic_file_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020033 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
36EXPORT_SYMBOL(generic_ro_fops);
37
Al Virocccb5a12010-12-17 07:44:05 -050038static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070039{
Al Virocccb5a12010-12-17 07:44:05 -050040 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070041}
42
Jie Liu46a1c2c2013-06-25 12:02:13 +080043/**
44 * vfs_setpos - update the file offset for lseek
45 * @file: file structure in question
46 * @offset: file offset to seek to
47 * @maxsize: maximum file size
48 *
49 * This is a low-level filesystem helper for updating the file offset to
50 * the value specified by @offset if the given offset is valid and it is
51 * not equal to the current file offset.
52 *
53 * Return the specified offset on success and -EINVAL on invalid offset.
54 */
55loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070056{
57 if (offset < 0 && !unsigned_offsets(file))
58 return -EINVAL;
59 if (offset > maxsize)
60 return -EINVAL;
61
62 if (offset != file->f_pos) {
63 file->f_pos = offset;
64 file->f_version = 0;
65 }
66 return offset;
67}
Jie Liu46a1c2c2013-06-25 12:02:13 +080068EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070069
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020070/**
Andi Kleen57604952011-09-15 16:06:50 -070071 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020072 * @file: file structure to seek on
73 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080074 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050075 * @size: max size of this file in file system
76 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020077 *
Andi Kleen57604952011-09-15 16:06:50 -070078 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050079 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070080 *
81 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070082 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070083 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
84 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020085 */
Andi Kleen9465efc2008-06-27 11:05:24 +020086loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080087generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050088 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Andrew Morton965c8e52012-12-17 15:59:39 -080090 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020091 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050092 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020093 break;
94 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080095 /*
96 * Here we special-case the lseek(fd, 0, SEEK_CUR)
97 * position-querying operation. Avoid rewriting the "same"
98 * f_pos value back to the file because a concurrent read(),
99 * write() or lseek() might have altered it
100 */
101 if (offset == 0)
102 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700103 /*
104 * f_lock protects against read/modify/write race with other
105 * SEEK_CURs. Note that parallel writes and reads behave
106 * like SEEK_SET.
107 */
108 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800109 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700110 spin_unlock(&file->f_lock);
111 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400112 case SEEK_DATA:
113 /*
114 * In the generic case the entire file is data, so as long as
115 * offset isn't at the end of the file then the offset is data.
116 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500117 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400118 return -ENXIO;
119 break;
120 case SEEK_HOLE:
121 /*
122 * There is a virtual hole at the end of the file, so as long as
123 * offset isn't i_size or larger, return i_size.
124 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500125 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400126 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500127 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200130
Jie Liu46a1c2c2013-06-25 12:02:13 +0800131 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700132}
133EXPORT_SYMBOL(generic_file_llseek_size);
134
135/**
136 * generic_file_llseek - generic llseek implementation for regular files
137 * @file: file structure to seek on
138 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800139 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700140 *
141 * This is a generic implemenation of ->llseek useable for all normal local
142 * filesystems. It just updates the file offset to the value specified by
Ming Lei546ae2d2013-04-29 15:06:07 -0700143 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700144 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800145loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700146{
147 struct inode *inode = file->f_mapping->host;
148
Andrew Morton965c8e52012-12-17 15:59:39 -0800149 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500150 inode->i_sb->s_maxbytes,
151 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
Andi Kleen9465efc2008-06-27 11:05:24 +0200153EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
jan Blunckae6afc32010-05-26 14:44:48 -0700155/**
Al Viro1bf9d142013-06-16 20:27:42 +0400156 * fixed_size_llseek - llseek implementation for fixed-sized devices
157 * @file: file structure to seek on
158 * @offset: file offset to seek to
159 * @whence: type of seek
160 * @size: size of the file
161 *
162 */
163loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
164{
165 switch (whence) {
166 case SEEK_SET: case SEEK_CUR: case SEEK_END:
167 return generic_file_llseek_size(file, offset, whence,
168 size, size);
169 default:
170 return -EINVAL;
171 }
172}
173EXPORT_SYMBOL(fixed_size_llseek);
174
175/**
Al Virob25472f2015-12-05 22:04:48 -0500176 * no_seek_end_llseek - llseek implementation for fixed-sized devices
177 * @file: file structure to seek on
178 * @offset: file offset to seek to
179 * @whence: type of seek
180 *
181 */
182loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
183{
184 switch (whence) {
185 case SEEK_SET: case SEEK_CUR:
186 return generic_file_llseek_size(file, offset, whence,
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +0100187 OFFSET_MAX, 0);
Al Virob25472f2015-12-05 22:04:48 -0500188 default:
189 return -EINVAL;
190 }
191}
192EXPORT_SYMBOL(no_seek_end_llseek);
193
194/**
195 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
196 * @file: file structure to seek on
197 * @offset: file offset to seek to
198 * @whence: type of seek
199 * @size: maximal offset allowed
200 *
201 */
202loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
203{
204 switch (whence) {
205 case SEEK_SET: case SEEK_CUR:
206 return generic_file_llseek_size(file, offset, whence,
207 size, 0);
208 default:
209 return -EINVAL;
210 }
211}
212EXPORT_SYMBOL(no_seek_end_llseek_size);
213
214/**
jan Blunckae6afc32010-05-26 14:44:48 -0700215 * noop_llseek - No Operation Performed llseek implementation
216 * @file: file structure to seek on
217 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800218 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700219 *
220 * This is an implementation of ->llseek useable for the rare special case when
221 * userspace expects the seek to succeed but the (device) file is actually not
222 * able to perform the seek. In this case you use noop_llseek() instead of
223 * falling back to the default implementation of ->llseek.
224 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800225loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700226{
227 return file->f_pos;
228}
229EXPORT_SYMBOL(noop_llseek);
230
Andrew Morton965c8e52012-12-17 15:59:39 -0800231loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 return -ESPIPE;
234}
235EXPORT_SYMBOL(no_llseek);
236
Andrew Morton965c8e52012-12-17 15:59:39 -0800237loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Al Viro496ad9a2013-01-23 17:07:38 -0500239 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200240 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Al Viro59551022016-01-22 15:40:57 -0500242 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -0800243 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700244 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400245 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700247 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800248 if (offset == 0) {
249 retval = file->f_pos;
250 goto out;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400253 break;
254 case SEEK_DATA:
255 /*
256 * In the generic case the entire file is data, so as
257 * long as offset isn't at the end of the file then the
258 * offset is data.
259 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300260 if (offset >= inode->i_size) {
261 retval = -ENXIO;
262 goto out;
263 }
Josef Bacik982d8162011-07-18 13:21:35 -0400264 break;
265 case SEEK_HOLE:
266 /*
267 * There is a virtual hole at the end of the file, so
268 * as long as offset isn't i_size or larger, return
269 * i_size.
270 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300271 if (offset >= inode->i_size) {
272 retval = -ENXIO;
273 goto out;
274 }
Josef Bacik982d8162011-07-18 13:21:35 -0400275 offset = inode->i_size;
276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500279 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (offset != file->f_pos) {
281 file->f_pos = offset;
282 file->f_version = 0;
283 }
284 retval = offset;
285 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800286out:
Al Viro59551022016-01-22 15:40:57 -0500287 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return retval;
289}
290EXPORT_SYMBOL(default_llseek);
291
Andrew Morton965c8e52012-12-17 15:59:39 -0800292loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 loff_t (*fn)(struct file *, loff_t, int);
295
296 fn = no_llseek;
297 if (file->f_mode & FMODE_LSEEK) {
Al Viro72c2d532013-09-22 16:27:52 -0400298 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 fn = file->f_op->llseek;
300 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800301 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303EXPORT_SYMBOL(vfs_llseek);
304
Linus Torvalds9c225f22014-03-03 09:36:58 -0800305static inline struct fd fdget_pos(int fd)
306{
Al Virobd2a31d2014-03-04 14:54:22 -0500307 return __to_fd(__fdget_pos(fd));
Linus Torvalds9c225f22014-03-03 09:36:58 -0800308}
309
310static inline void fdput_pos(struct fd f)
311{
312 if (f.flags & FDPUT_POS_UNLOCK)
313 mutex_unlock(&f.file->f_pos_lock);
314 fdput(f);
315}
316
Andrew Morton965c8e52012-12-17 15:59:39 -0800317SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800320 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400321 if (!f.file)
322 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800325 if (whence <= SEEK_MAX) {
326 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 retval = res;
328 if (res != (loff_t)retval)
329 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
330 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800331 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return retval;
333}
334
Al Viro561c6732013-02-24 10:52:26 -0500335#ifdef CONFIG_COMPAT
336COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
337{
338 return sys_lseek(fd, offset, whence);
339}
340#endif
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100343SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
344 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800345 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500348 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Al Viro2903ff02012-08-28 12:52:22 -0400351 if (!f.file)
352 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800355 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto out_putf;
357
Al Viro2903ff02012-08-28 12:52:22 -0400358 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800359 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 retval = (int)offset;
362 if (offset >= 0) {
363 retval = -EFAULT;
364 if (!copy_to_user(result, &offset, sizeof(offset)))
365 retval = 0;
366 }
367out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500368 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return retval;
370}
371#endif
372
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100373ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
374{
375 struct kiocb kiocb;
376 ssize_t ret;
377
378 if (!file->f_op->read_iter)
379 return -EINVAL;
380
381 init_sync_kiocb(&kiocb, file);
382 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100383
384 iter->type |= READ;
385 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100386 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100387 if (ret > 0)
388 *ppos = kiocb.ki_pos;
389 return ret;
390}
391EXPORT_SYMBOL(vfs_iter_read);
392
393ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
394{
395 struct kiocb kiocb;
396 ssize_t ret;
397
398 if (!file->f_op->write_iter)
399 return -EINVAL;
400
401 init_sync_kiocb(&kiocb, file);
402 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100403
404 iter->type |= WRITE;
405 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100406 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100407 if (ret > 0)
408 *ppos = kiocb.ki_pos;
409 return ret;
410}
411EXPORT_SYMBOL(vfs_iter_write);
412
Al Viro68d70d02013-06-19 15:26:04 +0400413int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct inode *inode;
416 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100417 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Al Viro496ad9a2013-01-23 17:07:38 -0500419 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800420 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100421 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500423 if (unlikely(pos < 0)) {
424 if (!unsigned_offsets(file))
425 return retval;
426 if (count >= -pos) /* both values are in 0..LLONG_MAX */
427 return -EOVERFLOW;
428 } else if (unlikely((loff_t) (pos + count) < 0)) {
429 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700430 return retval;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500433 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
Christoph Hellwigacc15572015-12-03 12:59:49 +0100434 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
435 read_write == READ ? F_RDLCK : F_WRLCK);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800436 if (retval < 0)
437 return retval;
438 }
Al Virobc613842016-03-31 21:48:20 -0400439 return security_file_permission(file,
James Morrisc43e2592008-01-12 22:05:48 +1100440 read_write == READ ? MAY_READ : MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Al Viro5d5d5682015-04-03 15:41:18 -0400443static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500444{
445 struct iovec iov = { .iov_base = buf, .iov_len = len };
446 struct kiocb kiocb;
447 struct iov_iter iter;
448 ssize_t ret;
449
450 init_sync_kiocb(&kiocb, filp);
451 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500452 iov_iter_init(&iter, READ, &iov, 1, len);
453
454 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100455 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500456 *ppos = kiocb.ki_pos;
457 return ret;
458}
459
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200460ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
461 loff_t *pos)
462{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200463 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400464 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200465 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400466 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200467 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400468 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200469}
Al Viro3d04c8a2015-04-03 15:09:18 -0400470EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
473{
474 ssize_t ret;
475
476 if (!(file->f_mode & FMODE_READ))
477 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500478 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -EINVAL;
480 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
481 return -EFAULT;
482
483 ret = rw_verify_area(READ, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400484 if (!ret) {
485 if (count > MAX_RW_COUNT)
486 count = MAX_RW_COUNT;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200487 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100488 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500489 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100490 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
James Morrisc43e2592008-01-12 22:05:48 +1100492 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494
495 return ret;
496}
497
498EXPORT_SYMBOL(vfs_read);
499
Al Viro5d5d5682015-04-03 15:41:18 -0400500static 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 -0500501{
502 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
503 struct kiocb kiocb;
504 struct iov_iter iter;
505 ssize_t ret;
506
507 init_sync_kiocb(&kiocb, filp);
508 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500509 iov_iter_init(&iter, WRITE, &iov, 1, len);
510
511 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100512 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400513 if (ret > 0)
514 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500515 return ret;
516}
517
Al Viro493c84c2015-04-03 15:06:43 -0400518ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
519 loff_t *pos)
520{
521 if (file->f_op->write)
522 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400523 else if (file->f_op->write_iter)
524 return new_sync_write(file, p, count, pos);
525 else
526 return -EINVAL;
527}
528EXPORT_SYMBOL(__vfs_write);
529
Al Viro06ae43f2013-03-20 13:19:30 -0400530ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
531{
532 mm_segment_t old_fs;
533 const char __user *p;
534 ssize_t ret;
535
Al Viro7f7f25e2014-02-11 17:49:24 -0500536 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000537 return -EINVAL;
538
Al Viro06ae43f2013-03-20 13:19:30 -0400539 old_fs = get_fs();
540 set_fs(get_ds());
541 p = (__force const char __user *)buf;
542 if (count > MAX_RW_COUNT)
543 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400544 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400545 set_fs(old_fs);
546 if (ret > 0) {
547 fsnotify_modify(file);
548 add_wchar(current, ret);
549 }
550 inc_syscw(current);
551 return ret;
552}
553
Al Viro2ec3a122014-08-19 11:48:09 -0400554EXPORT_SYMBOL(__kernel_write);
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
557{
558 ssize_t ret;
559
560 if (!(file->f_mode & FMODE_WRITE))
561 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500562 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return -EINVAL;
564 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
565 return -EFAULT;
566
567 ret = rw_verify_area(WRITE, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400568 if (!ret) {
569 if (count > MAX_RW_COUNT)
570 count = MAX_RW_COUNT;
Al Viro03d95eb2013-03-20 13:04:20 -0400571 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400572 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100573 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500574 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100575 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
James Morrisc43e2592008-01-12 22:05:48 +1100577 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400578 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
581 return ret;
582}
583
584EXPORT_SYMBOL(vfs_write);
585
586static inline loff_t file_pos_read(struct file *file)
587{
588 return file->f_pos;
589}
590
591static inline void file_pos_write(struct file *file, loff_t pos)
592{
593 file->f_pos = pos;
594}
595
Heiko Carstens3cdad422009-01-14 14:14:22 +0100596SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800598 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Al Viro2903ff02012-08-28 12:52:22 -0400601 if (f.file) {
602 loff_t pos = file_pos_read(f.file);
603 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400604 if (ret >= 0)
605 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800606 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return ret;
609}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Heiko Carstens3cdad422009-01-14 14:14:22 +0100611SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
612 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800614 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Al Viro2903ff02012-08-28 12:52:22 -0400617 if (f.file) {
618 loff_t pos = file_pos_read(f.file);
619 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400620 if (ret >= 0)
621 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800622 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624
625 return ret;
626}
627
Al Viro4a0fd5b2013-01-21 15:16:58 -0500628SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
629 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Al Viro2903ff02012-08-28 12:52:22 -0400631 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 if (pos < 0)
635 return -EINVAL;
636
Al Viro2903ff02012-08-28 12:52:22 -0400637 f = fdget(fd);
638 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400640 if (f.file->f_mode & FMODE_PREAD)
641 ret = vfs_read(f.file, buf, count, &pos);
642 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644
645 return ret;
646}
647
Al Viro4a0fd5b2013-01-21 15:16:58 -0500648SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
649 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Al Viro2903ff02012-08-28 12:52:22 -0400651 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (pos < 0)
655 return -EINVAL;
656
Al Viro2903ff02012-08-28 12:52:22 -0400657 f = fdget(fd);
658 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400660 if (f.file->f_mode & FMODE_PWRITE)
661 ret = vfs_write(f.file, buf, count, &pos);
662 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 return ret;
666}
667
668/*
669 * Reduce an iovec's length in-place. Return the resulting number of segments
670 */
671unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
672{
673 unsigned long seg = 0;
674 size_t len = 0;
675
676 while (seg < nr_segs) {
677 seg++;
678 if (len + iov->iov_len >= to) {
679 iov->iov_len = to - len;
680 break;
681 }
682 len += iov->iov_len;
683 iov++;
684 }
685 return seg;
686}
Eric Sandeen19295522008-01-28 23:58:27 -0500687EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Al Viroac15ac02015-03-20 20:10:21 -0400689static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100690 loff_t *ppos, iter_fn_t fn, int flags)
Al Viro293bc982014-02-11 18:37:41 -0500691{
692 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500693 ssize_t ret;
694
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100695 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100696 return -EOPNOTSUPP;
697
Al Viro293bc982014-02-11 18:37:41 -0500698 init_sync_kiocb(&kiocb, filp);
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100699 if (flags & RWF_HIPRI)
700 kiocb.ki_flags |= IOCB_HIPRI;
Al Viro293bc982014-02-11 18:37:41 -0500701 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500702
Al Viroac15ac02015-03-20 20:10:21 -0400703 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100704 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500705 *ppos = kiocb.ki_pos;
706 return ret;
707}
708
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700709/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400710static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100711 loff_t *ppos, io_fn_t fn, int flags)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700712{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700713 ssize_t ret = 0;
714
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100715 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100716 return -EOPNOTSUPP;
717
Al Viroac15ac02015-03-20 20:10:21 -0400718 while (iov_iter_count(iter)) {
719 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700720 ssize_t nr;
721
Al Viroac15ac02015-03-20 20:10:21 -0400722 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700723
724 if (nr < 0) {
725 if (!ret)
726 ret = nr;
727 break;
728 }
729 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400730 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700731 break;
Al Viroac15ac02015-03-20 20:10:21 -0400732 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700733 }
734
735 return ret;
736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/* A write operation does a read from user space and vice versa */
739#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
740
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700741ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
742 unsigned long nr_segs, unsigned long fast_segs,
743 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700744 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700745{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700746 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700747 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700748 struct iovec *iov = fast_pointer;
749
Linus Torvalds435f49a2010-10-29 10:36:49 -0700750 /*
751 * SuS says "The readv() function *may* fail if the iovcnt argument
752 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
753 * traditionally returned zero for zero segments, so...
754 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700755 if (nr_segs == 0) {
756 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700757 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700758 }
759
Linus Torvalds435f49a2010-10-29 10:36:49 -0700760 /*
761 * First get the "struct iovec" from user memory and
762 * verify all the pointers
763 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700764 if (nr_segs > UIO_MAXIOV) {
765 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700766 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700767 }
768 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700769 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700770 if (iov == NULL) {
771 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700772 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700773 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700774 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700775 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
776 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700777 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700778 }
779
Linus Torvalds435f49a2010-10-29 10:36:49 -0700780 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700781 * According to the Single Unix Specification we should return EINVAL
782 * if an element length is < 0 when cast to ssize_t or if the
783 * total length would overflow the ssize_t return value of the
784 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700785 *
786 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
787 * overflow case.
788 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700789 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700790 for (seg = 0; seg < nr_segs; seg++) {
791 void __user *buf = iov[seg].iov_base;
792 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700793
794 /* see if we we're about to use an invalid len or if
795 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700796 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700797 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700798 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700799 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700800 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700801 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700802 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700803 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700804 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700805 if (len > MAX_RW_COUNT - ret) {
806 len = MAX_RW_COUNT - ret;
807 iov[seg].iov_len = len;
808 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700809 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700810 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700811out:
812 *ret_pointer = iov;
813 return ret;
814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816static ssize_t do_readv_writev(int type, struct file *file,
817 const struct iovec __user * uvector,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100818 unsigned long nr_segs, loff_t *pos,
819 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 size_t tot_len;
822 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700823 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400824 struct iov_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500827 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Al Viro0504c072015-03-21 19:40:11 -0400829 ret = import_iovec(type, uvector, nr_segs,
830 ARRAY_SIZE(iovstack), &iov, &iter);
831 if (ret < 0)
832 return ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700833
Al Viro0504c072015-03-21 19:40:11 -0400834 tot_len = iov_iter_count(&iter);
835 if (!tot_len)
836 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800838 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 goto out;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (type == READ) {
842 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500843 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 } else {
845 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500846 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400847 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Al Viro293bc982014-02-11 18:37:41 -0500850 if (iter_fn)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100851 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700852 else
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100853 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Al Viro03d95eb2013-03-20 13:04:20 -0400855 if (type != READ)
856 file_end_write(file);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858out:
Al Viro0504c072015-03-21 19:40:11 -0400859 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400860 if ((ret + (type == READ)) > 0) {
861 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500862 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400863 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500864 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100870 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 if (!(file->f_mode & FMODE_READ))
873 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500874 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return -EINVAL;
876
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100877 return do_readv_writev(READ, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
880EXPORT_SYMBOL(vfs_readv);
881
882ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100883 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 if (!(file->f_mode & FMODE_WRITE))
886 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500887 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return -EINVAL;
889
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100890 return do_readv_writev(WRITE, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893EXPORT_SYMBOL(vfs_writev);
894
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100895static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
896 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800898 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Al Viro2903ff02012-08-28 12:52:22 -0400901 if (f.file) {
902 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100903 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400904 if (ret >= 0)
905 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800906 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
909 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800910 add_rchar(current, ret);
911 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return ret;
913}
914
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100915static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
916 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800918 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Al Viro2903ff02012-08-28 12:52:22 -0400921 if (f.file) {
922 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100923 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400924 if (ret >= 0)
925 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800926 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928
929 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800930 add_wchar(current, ret);
931 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return ret;
933}
934
Linus Torvalds601cc112009-04-03 08:03:22 -0700935static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700936{
Linus Torvalds601cc112009-04-03 08:03:22 -0700937#define HALF_LONG_BITS (BITS_PER_LONG / 2)
938 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
939}
940
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100941static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
942 unsigned long vlen, loff_t pos, int flags)
Linus Torvalds601cc112009-04-03 08:03:22 -0700943{
Al Viro2903ff02012-08-28 12:52:22 -0400944 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700945 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700946
947 if (pos < 0)
948 return -EINVAL;
949
Al Viro2903ff02012-08-28 12:52:22 -0400950 f = fdget(fd);
951 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700952 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400953 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100954 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400955 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700956 }
957
958 if (ret > 0)
959 add_rchar(current, ret);
960 inc_syscr(current);
961 return ret;
962}
963
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100964static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
965 unsigned long vlen, loff_t pos, int flags)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700966{
Al Viro2903ff02012-08-28 12:52:22 -0400967 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700968 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700969
970 if (pos < 0)
971 return -EINVAL;
972
Al Viro2903ff02012-08-28 12:52:22 -0400973 f = fdget(fd);
974 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700975 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400976 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100977 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400978 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700979 }
980
981 if (ret > 0)
982 add_wchar(current, ret);
983 inc_syscw(current);
984 return ret;
985}
986
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100987SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
988 unsigned long, vlen)
989{
990 return do_readv(fd, vec, vlen, 0);
991}
992
993SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
994 unsigned long, vlen)
995{
996 return do_writev(fd, vec, vlen, 0);
997}
998
999SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1000 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1001{
1002 loff_t pos = pos_from_hilo(pos_h, pos_l);
1003
1004 return do_preadv(fd, vec, vlen, pos, 0);
1005}
1006
1007SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1008 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1009 int, flags)
1010{
1011 loff_t pos = pos_from_hilo(pos_h, pos_l);
1012
1013 if (pos == -1)
1014 return do_readv(fd, vec, vlen, flags);
1015
1016 return do_preadv(fd, vec, vlen, pos, flags);
1017}
1018
1019SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1020 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1021{
1022 loff_t pos = pos_from_hilo(pos_h, pos_l);
1023
1024 return do_pwritev(fd, vec, vlen, pos, 0);
1025}
1026
1027SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1028 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1029 int, flags)
1030{
1031 loff_t pos = pos_from_hilo(pos_h, pos_l);
1032
1033 if (pos == -1)
1034 return do_writev(fd, vec, vlen, flags);
1035
1036 return do_pwritev(fd, vec, vlen, pos, flags);
1037}
1038
Al Viro72ec3512013-03-20 10:42:10 -04001039#ifdef CONFIG_COMPAT
1040
1041static ssize_t compat_do_readv_writev(int type, struct file *file,
1042 const struct compat_iovec __user *uvector,
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001043 unsigned long nr_segs, loff_t *pos,
1044 int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001045{
1046 compat_ssize_t tot_len;
1047 struct iovec iovstack[UIO_FASTIOV];
1048 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -04001049 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -04001050 ssize_t ret;
1051 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -05001052 iter_fn_t iter_fn;
Al Viro72ec3512013-03-20 10:42:10 -04001053
Al Viro0504c072015-03-21 19:40:11 -04001054 ret = compat_import_iovec(type, uvector, nr_segs,
1055 UIO_FASTIOV, &iov, &iter);
1056 if (ret < 0)
1057 return ret;
Al Viro72ec3512013-03-20 10:42:10 -04001058
Al Viro0504c072015-03-21 19:40:11 -04001059 tot_len = iov_iter_count(&iter);
1060 if (!tot_len)
1061 goto out;
Al Viro72ec3512013-03-20 10:42:10 -04001062 ret = rw_verify_area(type, file, pos, tot_len);
1063 if (ret < 0)
1064 goto out;
1065
Al Viro72ec3512013-03-20 10:42:10 -04001066 if (type == READ) {
1067 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -05001068 iter_fn = file->f_op->read_iter;
Al Viro72ec3512013-03-20 10:42:10 -04001069 } else {
1070 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -05001071 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -04001072 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -04001073 }
1074
Al Viro293bc982014-02-11 18:37:41 -05001075 if (iter_fn)
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001076 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
Al Viro03d95eb2013-03-20 13:04:20 -04001077 else
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001078 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001079
Al Viro03d95eb2013-03-20 13:04:20 -04001080 if (type != READ)
1081 file_end_write(file);
1082
Al Viro72ec3512013-03-20 10:42:10 -04001083out:
Al Viro0504c072015-03-21 19:40:11 -04001084 kfree(iov);
Al Viro72ec3512013-03-20 10:42:10 -04001085 if ((ret + (type == READ)) > 0) {
1086 if (type == READ)
1087 fsnotify_access(file);
1088 else
1089 fsnotify_modify(file);
1090 }
1091 return ret;
1092}
1093
1094static size_t compat_readv(struct file *file,
1095 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001096 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001097{
1098 ssize_t ret = -EBADF;
1099
1100 if (!(file->f_mode & FMODE_READ))
1101 goto out;
1102
1103 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001104 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001105 goto out;
1106
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001107 ret = compat_do_readv_writev(READ, file, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001108
1109out:
1110 if (ret > 0)
1111 add_rchar(current, ret);
1112 inc_syscr(current);
1113 return ret;
1114}
1115
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001116static size_t do_compat_readv(compat_ulong_t fd,
1117 const struct compat_iovec __user *vec,
1118 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001119{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001120 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001121 ssize_t ret;
1122 loff_t pos;
1123
1124 if (!f.file)
1125 return -EBADF;
1126 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001127 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001128 if (ret >= 0)
1129 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001130 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001131 return ret;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001132
Al Viro72ec3512013-03-20 10:42:10 -04001133}
1134
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001135COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1136 const struct compat_iovec __user *,vec,
1137 compat_ulong_t, vlen)
1138{
1139 return do_compat_readv(fd, vec, vlen, 0);
1140}
1141
1142static long do_compat_preadv64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001143 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001144 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001145{
1146 struct fd f;
1147 ssize_t ret;
1148
1149 if (pos < 0)
1150 return -EINVAL;
1151 f = fdget(fd);
1152 if (!f.file)
1153 return -EBADF;
1154 ret = -ESPIPE;
1155 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001156 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001157 fdput(f);
1158 return ret;
1159}
1160
Heiko Carstens378a10f2014-03-05 10:43:51 +01001161#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1162COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1163 const struct compat_iovec __user *,vec,
1164 unsigned long, vlen, loff_t, pos)
1165{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001166 return do_compat_preadv64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001167}
1168#endif
1169
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001170COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001171 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001172 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001173{
1174 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001175
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001176 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1177}
1178
1179COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1180 const struct compat_iovec __user *,vec,
1181 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1182 int, flags)
1183{
1184 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1185
1186 if (pos == -1)
1187 return do_compat_readv(fd, vec, vlen, flags);
1188
1189 return do_compat_preadv64(fd, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001190}
1191
1192static size_t compat_writev(struct file *file,
1193 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001194 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001195{
1196 ssize_t ret = -EBADF;
1197
1198 if (!(file->f_mode & FMODE_WRITE))
1199 goto out;
1200
1201 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001202 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001203 goto out;
1204
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001205 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001206
1207out:
1208 if (ret > 0)
1209 add_wchar(current, ret);
1210 inc_syscw(current);
1211 return ret;
1212}
1213
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001214static size_t do_compat_writev(compat_ulong_t fd,
1215 const struct compat_iovec __user* vec,
1216 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001217{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001218 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001219 ssize_t ret;
1220 loff_t pos;
1221
1222 if (!f.file)
1223 return -EBADF;
1224 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001225 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001226 if (ret >= 0)
1227 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001228 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001229 return ret;
1230}
1231
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001232COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1233 const struct compat_iovec __user *, vec,
1234 compat_ulong_t, vlen)
1235{
1236 return do_compat_writev(fd, vec, vlen, 0);
1237}
1238
1239static long do_compat_pwritev64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001240 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001241 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001242{
1243 struct fd f;
1244 ssize_t ret;
1245
1246 if (pos < 0)
1247 return -EINVAL;
1248 f = fdget(fd);
1249 if (!f.file)
1250 return -EBADF;
1251 ret = -ESPIPE;
1252 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001253 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001254 fdput(f);
1255 return ret;
1256}
1257
Heiko Carstens378a10f2014-03-05 10:43:51 +01001258#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1259COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1260 const struct compat_iovec __user *,vec,
1261 unsigned long, vlen, loff_t, pos)
1262{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001263 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001264}
1265#endif
1266
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001267COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001268 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001269 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001270{
1271 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001272
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001273 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001274}
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001275
1276COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1277 const struct compat_iovec __user *,vec,
1278 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1279{
1280 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1281
1282 if (pos == -1)
1283 return do_compat_writev(fd, vec, vlen, flags);
1284
1285 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1286}
1287
Al Viro72ec3512013-03-20 10:42:10 -04001288#endif
1289
Al Viro19f4fc32013-02-24 02:17:03 -05001290static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1291 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Al Viro2903ff02012-08-28 12:52:22 -04001293 struct fd in, out;
1294 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001296 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001298 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /*
1301 * Get input file, and verify that it is ok..
1302 */
1303 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001304 in = fdget(in_fd);
1305 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001307 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001310 if (!ppos) {
1311 pos = in.file->f_pos;
1312 } else {
1313 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001314 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001316 }
1317 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001318 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 goto fput_in;
Al Virobc613842016-03-31 21:48:20 -04001320 if (count > MAX_RW_COUNT)
1321 count = MAX_RW_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /*
1324 * Get output file, and verify that it is ok..
1325 */
1326 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001327 out = fdget(out_fd);
1328 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001330 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 goto fput_out;
1332 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001333 in_inode = file_inode(in.file);
1334 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001335 out_pos = out.file->f_pos;
1336 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001337 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 goto fput_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (!max)
1341 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (unlikely(pos + count > max)) {
1344 retval = -EOVERFLOW;
1345 if (pos >= max)
1346 goto fput_out;
1347 count = max - pos;
1348 }
1349
Jens Axboed96e6e72007-06-11 12:18:52 +02001350 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001351#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001352 /*
1353 * We need to debate whether we can enable this or not. The
1354 * man page documents EAGAIN return for the output at least,
1355 * and the application is arguably buggy if it doesn't expect
1356 * EAGAIN on a non-blocking file descriptor.
1357 */
Al Viro2903ff02012-08-28 12:52:22 -04001358 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001359 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001360#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001361 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001362 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001363 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001366 add_rchar(current, retval);
1367 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001368 fsnotify_access(in.file);
1369 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001370 out.file->f_pos = out_pos;
1371 if (ppos)
1372 *ppos = pos;
1373 else
1374 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001377 inc_syscr(current);
1378 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001379 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 retval = -EOVERFLOW;
1381
1382fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001383 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001385 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386out:
1387 return retval;
1388}
1389
Heiko Carstens002c8972009-01-14 14:14:18 +01001390SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 loff_t pos;
1393 off_t off;
1394 ssize_t ret;
1395
1396 if (offset) {
1397 if (unlikely(get_user(off, offset)))
1398 return -EFAULT;
1399 pos = off;
1400 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1401 if (unlikely(put_user(pos, offset)))
1402 return -EFAULT;
1403 return ret;
1404 }
1405
1406 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1407}
1408
Heiko Carstens002c8972009-01-14 14:14:18 +01001409SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 loff_t pos;
1412 ssize_t ret;
1413
1414 if (offset) {
1415 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1416 return -EFAULT;
1417 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1418 if (unlikely(put_user(pos, offset)))
1419 return -EFAULT;
1420 return ret;
1421 }
1422
1423 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1424}
Al Viro19f4fc32013-02-24 02:17:03 -05001425
1426#ifdef CONFIG_COMPAT
1427COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1428 compat_off_t __user *, offset, compat_size_t, count)
1429{
1430 loff_t pos;
1431 off_t off;
1432 ssize_t ret;
1433
1434 if (offset) {
1435 if (unlikely(get_user(off, offset)))
1436 return -EFAULT;
1437 pos = off;
1438 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1439 if (unlikely(put_user(pos, offset)))
1440 return -EFAULT;
1441 return ret;
1442 }
1443
1444 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1445}
1446
1447COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1448 compat_loff_t __user *, offset, compat_size_t, count)
1449{
1450 loff_t pos;
1451 ssize_t ret;
1452
1453 if (offset) {
1454 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1455 return -EFAULT;
1456 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1457 if (unlikely(put_user(pos, offset)))
1458 return -EFAULT;
1459 return ret;
1460 }
1461
1462 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1463}
1464#endif
Zach Brown29732932015-11-10 16:53:30 -05001465
1466/*
1467 * copy_file_range() differs from regular file read and write in that it
1468 * specifically allows return partial success. When it does so is up to
1469 * the copy_file_range method.
1470 */
1471ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1472 struct file *file_out, loff_t pos_out,
1473 size_t len, unsigned int flags)
1474{
1475 struct inode *inode_in = file_inode(file_in);
1476 struct inode *inode_out = file_inode(file_out);
1477 ssize_t ret;
1478
1479 if (flags != 0)
1480 return -EINVAL;
1481
Zach Brown29732932015-11-10 16:53:30 -05001482 ret = rw_verify_area(READ, file_in, &pos_in, len);
Al Virobc613842016-03-31 21:48:20 -04001483 if (unlikely(ret))
1484 return ret;
1485
1486 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1487 if (unlikely(ret))
Zach Brown29732932015-11-10 16:53:30 -05001488 return ret;
1489
1490 if (!(file_in->f_mode & FMODE_READ) ||
1491 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001492 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001493 return -EBADF;
1494
1495 /* this could be relaxed once a method supports cross-fs copies */
1496 if (inode_in->i_sb != inode_out->i_sb)
1497 return -EXDEV;
1498
1499 if (len == 0)
1500 return 0;
1501
1502 ret = mnt_want_write_file(file_out);
1503 if (ret)
1504 return ret;
1505
Anna Schumakereac70052015-11-10 16:53:33 -05001506 ret = -EOPNOTSUPP;
1507 if (file_out->f_op->copy_file_range)
1508 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1509 pos_out, len, flags);
1510 if (ret == -EOPNOTSUPP)
1511 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1512 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1513
Zach Brown29732932015-11-10 16:53:30 -05001514 if (ret > 0) {
1515 fsnotify_access(file_in);
1516 add_rchar(current, ret);
1517 fsnotify_modify(file_out);
1518 add_wchar(current, ret);
1519 }
1520 inc_syscr(current);
1521 inc_syscw(current);
1522
1523 mnt_drop_write_file(file_out);
1524
1525 return ret;
1526}
1527EXPORT_SYMBOL(vfs_copy_file_range);
1528
1529SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1530 int, fd_out, loff_t __user *, off_out,
1531 size_t, len, unsigned int, flags)
1532{
1533 loff_t pos_in;
1534 loff_t pos_out;
1535 struct fd f_in;
1536 struct fd f_out;
1537 ssize_t ret = -EBADF;
1538
1539 f_in = fdget(fd_in);
1540 if (!f_in.file)
1541 goto out2;
1542
1543 f_out = fdget(fd_out);
1544 if (!f_out.file)
1545 goto out1;
1546
1547 ret = -EFAULT;
1548 if (off_in) {
1549 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1550 goto out;
1551 } else {
1552 pos_in = f_in.file->f_pos;
1553 }
1554
1555 if (off_out) {
1556 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1557 goto out;
1558 } else {
1559 pos_out = f_out.file->f_pos;
1560 }
1561
1562 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1563 flags);
1564 if (ret > 0) {
1565 pos_in += ret;
1566 pos_out += ret;
1567
1568 if (off_in) {
1569 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1570 ret = -EFAULT;
1571 } else {
1572 f_in.file->f_pos = pos_in;
1573 }
1574
1575 if (off_out) {
1576 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1577 ret = -EFAULT;
1578 } else {
1579 f_out.file->f_pos = pos_out;
1580 }
1581 }
1582
1583out:
1584 fdput(f_out);
1585out1:
1586 fdput(f_in);
1587out2:
1588 return ret;
1589}
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001590
1591static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1592{
1593 struct inode *inode = file_inode(file);
1594
1595 if (unlikely(pos < 0))
1596 return -EINVAL;
1597
1598 if (unlikely((loff_t) (pos + len) < 0))
1599 return -EINVAL;
1600
1601 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1602 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1603 int retval;
1604
1605 retval = locks_mandatory_area(inode, file, pos, end,
1606 write ? F_WRLCK : F_RDLCK);
1607 if (retval < 0)
1608 return retval;
1609 }
1610
1611 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1612}
1613
1614int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1615 struct file *file_out, loff_t pos_out, u64 len)
1616{
1617 struct inode *inode_in = file_inode(file_in);
1618 struct inode *inode_out = file_inode(file_out);
1619 int ret;
1620
1621 if (inode_in->i_sb != inode_out->i_sb ||
1622 file_in->f_path.mnt != file_out->f_path.mnt)
1623 return -EXDEV;
1624
1625 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1626 return -EISDIR;
1627 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001628 return -EINVAL;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001629
1630 if (!(file_in->f_mode & FMODE_READ) ||
1631 !(file_out->f_mode & FMODE_WRITE) ||
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001632 (file_out->f_flags & O_APPEND))
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001633 return -EBADF;
1634
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001635 if (!file_in->f_op->clone_file_range)
1636 return -EOPNOTSUPP;
1637
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001638 ret = clone_verify_area(file_in, pos_in, len, false);
1639 if (ret)
1640 return ret;
1641
1642 ret = clone_verify_area(file_out, pos_out, len, true);
1643 if (ret)
1644 return ret;
1645
1646 if (pos_in + len > i_size_read(inode_in))
1647 return -EINVAL;
1648
1649 ret = mnt_want_write_file(file_out);
1650 if (ret)
1651 return ret;
1652
1653 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1654 file_out, pos_out, len);
1655 if (!ret) {
1656 fsnotify_access(file_in);
1657 fsnotify_modify(file_out);
1658 }
1659
1660 mnt_drop_write_file(file_out);
1661 return ret;
1662}
1663EXPORT_SYMBOL(vfs_clone_file_range);
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001664
1665int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1666{
1667 struct file_dedupe_range_info *info;
1668 struct inode *src = file_inode(file);
1669 u64 off;
1670 u64 len;
1671 int i;
1672 int ret;
1673 bool is_admin = capable(CAP_SYS_ADMIN);
1674 u16 count = same->dest_count;
1675 struct file *dst_file;
1676 loff_t dst_off;
1677 ssize_t deduped;
1678
1679 if (!(file->f_mode & FMODE_READ))
1680 return -EINVAL;
1681
1682 if (same->reserved1 || same->reserved2)
1683 return -EINVAL;
1684
1685 off = same->src_offset;
1686 len = same->src_length;
1687
1688 ret = -EISDIR;
1689 if (S_ISDIR(src->i_mode))
1690 goto out;
1691
1692 ret = -EINVAL;
1693 if (!S_ISREG(src->i_mode))
1694 goto out;
1695
1696 ret = clone_verify_area(file, off, len, false);
1697 if (ret < 0)
1698 goto out;
1699 ret = 0;
1700
1701 /* pre-format output fields to sane values */
1702 for (i = 0; i < count; i++) {
1703 same->info[i].bytes_deduped = 0ULL;
1704 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
1705 }
1706
1707 for (i = 0, info = same->info; i < count; i++, info++) {
1708 struct inode *dst;
1709 struct fd dst_fd = fdget(info->dest_fd);
1710
1711 dst_file = dst_fd.file;
1712 if (!dst_file) {
1713 info->status = -EBADF;
1714 goto next_loop;
1715 }
1716 dst = file_inode(dst_file);
1717
1718 ret = mnt_want_write_file(dst_file);
1719 if (ret) {
1720 info->status = ret;
1721 goto next_loop;
1722 }
1723
1724 dst_off = info->dest_offset;
1725 ret = clone_verify_area(dst_file, dst_off, len, true);
1726 if (ret < 0) {
1727 info->status = ret;
1728 goto next_file;
1729 }
1730 ret = 0;
1731
1732 if (info->reserved) {
1733 info->status = -EINVAL;
1734 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
1735 info->status = -EINVAL;
1736 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
1737 info->status = -EXDEV;
1738 } else if (S_ISDIR(dst->i_mode)) {
1739 info->status = -EISDIR;
1740 } else if (dst_file->f_op->dedupe_file_range == NULL) {
1741 info->status = -EINVAL;
1742 } else {
1743 deduped = dst_file->f_op->dedupe_file_range(file, off,
1744 len, dst_file,
1745 info->dest_offset);
1746 if (deduped == -EBADE)
1747 info->status = FILE_DEDUPE_RANGE_DIFFERS;
1748 else if (deduped < 0)
1749 info->status = deduped;
1750 else
1751 info->bytes_deduped += deduped;
1752 }
1753
1754next_file:
1755 mnt_drop_write_file(dst_file);
1756next_loop:
1757 fdput(dst_fd);
Darrick J. Wonge62e5602016-01-22 16:58:28 -08001758
1759 if (fatal_signal_pending(current))
1760 goto out;
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001761 }
1762
1763out:
1764 return ret;
1765}
1766EXPORT_SYMBOL(vfs_dedupe_file_range);