blob: 12a216021f8734543ee9863f8400886d50a49ddb [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
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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
Andrew Morton965c8e52012-12-17 15:59:39 -0800305SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800308 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400309 if (!f.file)
310 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800313 if (whence <= SEEK_MAX) {
314 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 retval = res;
316 if (res != (loff_t)retval)
317 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
318 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800319 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return retval;
321}
322
Al Viro561c6732013-02-24 10:52:26 -0500323#ifdef CONFIG_COMPAT
324COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
325{
326 return sys_lseek(fd, offset, whence);
327}
328#endif
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100331SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
332 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800333 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500336 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Viro2903ff02012-08-28 12:52:22 -0400339 if (!f.file)
340 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800343 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 goto out_putf;
345
Al Viro2903ff02012-08-28 12:52:22 -0400346 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800347 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 retval = (int)offset;
350 if (offset >= 0) {
351 retval = -EFAULT;
352 if (!copy_to_user(result, &offset, sizeof(offset)))
353 retval = 0;
354 }
355out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500356 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return retval;
358}
359#endif
360
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100361ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
362{
363 struct kiocb kiocb;
364 ssize_t ret;
365
366 if (!file->f_op->read_iter)
367 return -EINVAL;
368
369 init_sync_kiocb(&kiocb, file);
370 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100371
372 iter->type |= READ;
373 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100374 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100375 if (ret > 0)
376 *ppos = kiocb.ki_pos;
377 return ret;
378}
379EXPORT_SYMBOL(vfs_iter_read);
380
381ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
382{
383 struct kiocb kiocb;
384 ssize_t ret;
385
386 if (!file->f_op->write_iter)
387 return -EINVAL;
388
389 init_sync_kiocb(&kiocb, file);
390 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100391
392 iter->type |= WRITE;
393 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100394 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100395 if (ret > 0)
396 *ppos = kiocb.ki_pos;
397 return ret;
398}
399EXPORT_SYMBOL(vfs_iter_write);
400
Al Viro68d70d02013-06-19 15:26:04 +0400401int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 struct inode *inode;
404 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100405 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Al Viro496ad9a2013-01-23 17:07:38 -0500407 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800408 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100409 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500411 if (unlikely(pos < 0)) {
412 if (!unsigned_offsets(file))
413 return retval;
414 if (count >= -pos) /* both values are in 0..LLONG_MAX */
415 return -EOVERFLOW;
416 } else if (unlikely((loff_t) (pos + count) < 0)) {
417 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700418 return retval;
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500421 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
Christoph Hellwigacc15572015-12-03 12:59:49 +0100422 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
423 read_write == READ ? F_RDLCK : F_WRLCK);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800424 if (retval < 0)
425 return retval;
426 }
Al Virobc613842016-03-31 21:48:20 -0400427 return security_file_permission(file,
James Morrisc43e2592008-01-12 22:05:48 +1100428 read_write == READ ? MAY_READ : MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Al Viro5d5d5682015-04-03 15:41:18 -0400431static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500432{
433 struct iovec iov = { .iov_base = buf, .iov_len = len };
434 struct kiocb kiocb;
435 struct iov_iter iter;
436 ssize_t ret;
437
438 init_sync_kiocb(&kiocb, filp);
439 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500440 iov_iter_init(&iter, READ, &iov, 1, len);
441
442 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100443 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500444 *ppos = kiocb.ki_pos;
445 return ret;
446}
447
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200448ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
449 loff_t *pos)
450{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200451 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400452 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200453 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400454 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200455 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400456 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200457}
Al Viro3d04c8a2015-04-03 15:09:18 -0400458EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
461{
462 ssize_t ret;
463
464 if (!(file->f_mode & FMODE_READ))
465 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500466 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return -EINVAL;
468 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
469 return -EFAULT;
470
471 ret = rw_verify_area(READ, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400472 if (!ret) {
473 if (count > MAX_RW_COUNT)
474 count = MAX_RW_COUNT;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200475 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100476 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500477 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100478 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
James Morrisc43e2592008-01-12 22:05:48 +1100480 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 return ret;
484}
485
486EXPORT_SYMBOL(vfs_read);
487
Al Viro5d5d5682015-04-03 15:41:18 -0400488static 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 -0500489{
490 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
491 struct kiocb kiocb;
492 struct iov_iter iter;
493 ssize_t ret;
494
495 init_sync_kiocb(&kiocb, filp);
496 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500497 iov_iter_init(&iter, WRITE, &iov, 1, len);
498
499 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100500 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400501 if (ret > 0)
502 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500503 return ret;
504}
505
Al Viro493c84c2015-04-03 15:06:43 -0400506ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
507 loff_t *pos)
508{
509 if (file->f_op->write)
510 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400511 else if (file->f_op->write_iter)
512 return new_sync_write(file, p, count, pos);
513 else
514 return -EINVAL;
515}
516EXPORT_SYMBOL(__vfs_write);
517
Al Viro06ae43f2013-03-20 13:19:30 -0400518ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
519{
520 mm_segment_t old_fs;
521 const char __user *p;
522 ssize_t ret;
523
Al Viro7f7f25e2014-02-11 17:49:24 -0500524 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000525 return -EINVAL;
526
Al Viro06ae43f2013-03-20 13:19:30 -0400527 old_fs = get_fs();
528 set_fs(get_ds());
529 p = (__force const char __user *)buf;
530 if (count > MAX_RW_COUNT)
531 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400532 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400533 set_fs(old_fs);
534 if (ret > 0) {
535 fsnotify_modify(file);
536 add_wchar(current, ret);
537 }
538 inc_syscw(current);
539 return ret;
540}
541
Al Viro2ec3a122014-08-19 11:48:09 -0400542EXPORT_SYMBOL(__kernel_write);
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
545{
546 ssize_t ret;
547
548 if (!(file->f_mode & FMODE_WRITE))
549 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500550 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return -EINVAL;
552 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
553 return -EFAULT;
554
555 ret = rw_verify_area(WRITE, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400556 if (!ret) {
557 if (count > MAX_RW_COUNT)
558 count = MAX_RW_COUNT;
Al Viro03d95eb2013-03-20 13:04:20 -0400559 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400560 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100561 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500562 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100563 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
James Morrisc43e2592008-01-12 22:05:48 +1100565 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400566 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568
569 return ret;
570}
571
572EXPORT_SYMBOL(vfs_write);
573
574static inline loff_t file_pos_read(struct file *file)
575{
576 return file->f_pos;
577}
578
579static inline void file_pos_write(struct file *file, loff_t pos)
580{
581 file->f_pos = pos;
582}
583
Heiko Carstens3cdad422009-01-14 14:14:22 +0100584SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800586 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Al Viro2903ff02012-08-28 12:52:22 -0400589 if (f.file) {
590 loff_t pos = file_pos_read(f.file);
591 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400592 if (ret >= 0)
593 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800594 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return ret;
597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Heiko Carstens3cdad422009-01-14 14:14:22 +0100599SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
600 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800602 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Al Viro2903ff02012-08-28 12:52:22 -0400605 if (f.file) {
606 loff_t pos = file_pos_read(f.file);
607 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400608 if (ret >= 0)
609 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800610 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 return ret;
614}
615
Al Viro4a0fd5b2013-01-21 15:16:58 -0500616SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
617 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Al Viro2903ff02012-08-28 12:52:22 -0400619 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (pos < 0)
623 return -EINVAL;
624
Al Viro2903ff02012-08-28 12:52:22 -0400625 f = fdget(fd);
626 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400628 if (f.file->f_mode & FMODE_PREAD)
629 ret = vfs_read(f.file, buf, count, &pos);
630 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
633 return ret;
634}
635
Al Viro4a0fd5b2013-01-21 15:16:58 -0500636SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
637 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Al Viro2903ff02012-08-28 12:52:22 -0400639 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 if (pos < 0)
643 return -EINVAL;
644
Al Viro2903ff02012-08-28 12:52:22 -0400645 f = fdget(fd);
646 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400648 if (f.file->f_mode & FMODE_PWRITE)
649 ret = vfs_write(f.file, buf, count, &pos);
650 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652
653 return ret;
654}
655
656/*
657 * Reduce an iovec's length in-place. Return the resulting number of segments
658 */
659unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
660{
661 unsigned long seg = 0;
662 size_t len = 0;
663
664 while (seg < nr_segs) {
665 seg++;
666 if (len + iov->iov_len >= to) {
667 iov->iov_len = to - len;
668 break;
669 }
670 len += iov->iov_len;
671 iov++;
672 }
673 return seg;
674}
Eric Sandeen19295522008-01-28 23:58:27 -0500675EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Al Viroac15ac02015-03-20 20:10:21 -0400677static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100678 loff_t *ppos, iter_fn_t fn, int flags)
Al Viro293bc982014-02-11 18:37:41 -0500679{
680 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500681 ssize_t ret;
682
Christoph Hellwige864f392016-04-07 08:52:03 -0700683 if (flags & ~(RWF_HIPRI | RWF_DSYNC | RWF_SYNC))
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100684 return -EOPNOTSUPP;
685
Al Viro293bc982014-02-11 18:37:41 -0500686 init_sync_kiocb(&kiocb, filp);
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100687 if (flags & RWF_HIPRI)
688 kiocb.ki_flags |= IOCB_HIPRI;
Christoph Hellwige864f392016-04-07 08:52:03 -0700689 if (flags & RWF_DSYNC)
690 kiocb.ki_flags |= IOCB_DSYNC;
691 if (flags & RWF_SYNC)
692 kiocb.ki_flags |= (IOCB_DSYNC | IOCB_SYNC);
Al Viro293bc982014-02-11 18:37:41 -0500693 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500694
Al Viroac15ac02015-03-20 20:10:21 -0400695 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100696 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500697 *ppos = kiocb.ki_pos;
698 return ret;
699}
700
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700701/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400702static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100703 loff_t *ppos, io_fn_t fn, int flags)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700704{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700705 ssize_t ret = 0;
706
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100707 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100708 return -EOPNOTSUPP;
709
Al Viroac15ac02015-03-20 20:10:21 -0400710 while (iov_iter_count(iter)) {
711 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700712 ssize_t nr;
713
Al Viroac15ac02015-03-20 20:10:21 -0400714 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700715
716 if (nr < 0) {
717 if (!ret)
718 ret = nr;
719 break;
720 }
721 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400722 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700723 break;
Al Viroac15ac02015-03-20 20:10:21 -0400724 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700725 }
726
727 return ret;
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/* A write operation does a read from user space and vice versa */
731#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
732
Vegard Nossumffecee42016-10-08 11:18:07 +0200733/**
734 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
735 * into the kernel and check that it is valid.
736 *
737 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
738 * @uvector: Pointer to the userspace array.
739 * @nr_segs: Number of elements in userspace array.
740 * @fast_segs: Number of elements in @fast_pointer.
741 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
742 * @ret_pointer: (output parameter) Pointer to a variable that will point to
743 * either @fast_pointer, a newly allocated kernel array, or NULL,
744 * depending on which array was used.
745 *
746 * This function copies an array of &struct iovec of @nr_segs from
747 * userspace into the kernel and checks that each element is valid (e.g.
748 * it does not point to a kernel address or cause overflow by being too
749 * large, etc.).
750 *
751 * As an optimization, the caller may provide a pointer to a small
752 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
753 * (the size of this array, or 0 if unused, should be given in @fast_segs).
754 *
755 * @ret_pointer will always point to the array that was used, so the
756 * caller must take care not to call kfree() on it e.g. in case the
757 * @fast_pointer array was used and it was allocated on the stack.
758 *
759 * Return: The total number of bytes covered by the iovec array on success
760 * or a negative error code on error.
761 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700762ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
763 unsigned long nr_segs, unsigned long fast_segs,
764 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700765 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700766{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700767 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700768 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700769 struct iovec *iov = fast_pointer;
770
Linus Torvalds435f49a2010-10-29 10:36:49 -0700771 /*
772 * SuS says "The readv() function *may* fail if the iovcnt argument
773 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
774 * traditionally returned zero for zero segments, so...
775 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700776 if (nr_segs == 0) {
777 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700778 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700779 }
780
Linus Torvalds435f49a2010-10-29 10:36:49 -0700781 /*
782 * First get the "struct iovec" from user memory and
783 * verify all the pointers
784 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700785 if (nr_segs > UIO_MAXIOV) {
786 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700787 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700788 }
789 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700790 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700791 if (iov == NULL) {
792 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700793 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700794 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700795 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700796 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
797 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700798 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700799 }
800
Linus Torvalds435f49a2010-10-29 10:36:49 -0700801 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700802 * According to the Single Unix Specification we should return EINVAL
803 * if an element length is < 0 when cast to ssize_t or if the
804 * total length would overflow the ssize_t return value of the
805 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700806 *
807 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
808 * overflow case.
809 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700810 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700811 for (seg = 0; seg < nr_segs; seg++) {
812 void __user *buf = iov[seg].iov_base;
813 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700814
815 /* see if we we're about to use an invalid len or if
816 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700817 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700818 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700819 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700820 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700821 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700822 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700823 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700824 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700825 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700826 if (len > MAX_RW_COUNT - ret) {
827 len = MAX_RW_COUNT - ret;
828 iov[seg].iov_len = len;
829 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700830 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700831 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700832out:
833 *ret_pointer = iov;
834 return ret;
835}
836
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100837static ssize_t __do_readv_writev(int type, struct file *file,
838 struct iov_iter *iter, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 size_t tot_len;
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100841 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500843 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100845 tot_len = iov_iter_count(iter);
Al Viro0504c072015-03-21 19:40:11 -0400846 if (!tot_len)
847 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800849 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto out;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (type == READ) {
853 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500854 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 } else {
856 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500857 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400858 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
Al Viro293bc982014-02-11 18:37:41 -0500861 if (iter_fn)
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100862 ret = do_iter_readv_writev(file, iter, pos, iter_fn, flags);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700863 else
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100864 ret = do_loop_readv_writev(file, iter, pos, fn, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Al Viro03d95eb2013-03-20 13:04:20 -0400866 if (type != READ)
867 file_end_write(file);
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869out:
Robert Love0eeca282005-07-12 17:06:03 -0400870 if ((ret + (type == READ)) > 0) {
871 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500872 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400873 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500874 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100879static ssize_t do_readv_writev(int type, struct file *file,
880 const struct iovec __user *uvector,
881 unsigned long nr_segs, loff_t *pos,
882 int flags)
883{
884 struct iovec iovstack[UIO_FASTIOV];
885 struct iovec *iov = iovstack;
886 struct iov_iter iter;
887 ssize_t ret;
888
889 ret = import_iovec(type, uvector, nr_segs,
890 ARRAY_SIZE(iovstack), &iov, &iter);
891 if (ret < 0)
892 return ret;
893
894 ret = __do_readv_writev(type, file, &iter, pos, flags);
895 kfree(iov);
896
897 return ret;
898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100901 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
903 if (!(file->f_mode & FMODE_READ))
904 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500905 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return -EINVAL;
907
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100908 return do_readv_writev(READ, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
911EXPORT_SYMBOL(vfs_readv);
912
913ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100914 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 if (!(file->f_mode & FMODE_WRITE))
917 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500918 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return -EINVAL;
920
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100921 return do_readv_writev(WRITE, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924EXPORT_SYMBOL(vfs_writev);
925
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100926static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
927 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800929 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Al Viro2903ff02012-08-28 12:52:22 -0400932 if (f.file) {
933 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100934 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400935 if (ret >= 0)
936 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800937 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939
940 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800941 add_rchar(current, ret);
942 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return ret;
944}
945
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100946static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
947 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800949 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Al Viro2903ff02012-08-28 12:52:22 -0400952 if (f.file) {
953 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100954 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400955 if (ret >= 0)
956 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800957 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
960 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800961 add_wchar(current, ret);
962 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return ret;
964}
965
Linus Torvalds601cc112009-04-03 08:03:22 -0700966static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700967{
Linus Torvalds601cc112009-04-03 08:03:22 -0700968#define HALF_LONG_BITS (BITS_PER_LONG / 2)
969 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
970}
971
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100972static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
973 unsigned long vlen, loff_t pos, int flags)
Linus Torvalds601cc112009-04-03 08:03:22 -0700974{
Al Viro2903ff02012-08-28 12:52:22 -0400975 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700976 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700977
978 if (pos < 0)
979 return -EINVAL;
980
Al Viro2903ff02012-08-28 12:52:22 -0400981 f = fdget(fd);
982 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700983 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400984 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100985 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400986 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700987 }
988
989 if (ret > 0)
990 add_rchar(current, ret);
991 inc_syscr(current);
992 return ret;
993}
994
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100995static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
996 unsigned long vlen, loff_t pos, int flags)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700997{
Al Viro2903ff02012-08-28 12:52:22 -0400998 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700999 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001000
1001 if (pos < 0)
1002 return -EINVAL;
1003
Al Viro2903ff02012-08-28 12:52:22 -04001004 f = fdget(fd);
1005 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001006 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -04001007 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001008 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001009 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001010 }
1011
1012 if (ret > 0)
1013 add_wchar(current, ret);
1014 inc_syscw(current);
1015 return ret;
1016}
1017
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001018SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1019 unsigned long, vlen)
1020{
1021 return do_readv(fd, vec, vlen, 0);
1022}
1023
1024SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1025 unsigned long, vlen)
1026{
1027 return do_writev(fd, vec, vlen, 0);
1028}
1029
1030SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1031 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1032{
1033 loff_t pos = pos_from_hilo(pos_h, pos_l);
1034
1035 return do_preadv(fd, vec, vlen, pos, 0);
1036}
1037
1038SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1039 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1040 int, flags)
1041{
1042 loff_t pos = pos_from_hilo(pos_h, pos_l);
1043
1044 if (pos == -1)
1045 return do_readv(fd, vec, vlen, flags);
1046
1047 return do_preadv(fd, vec, vlen, pos, flags);
1048}
1049
1050SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1051 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1052{
1053 loff_t pos = pos_from_hilo(pos_h, pos_l);
1054
1055 return do_pwritev(fd, vec, vlen, pos, 0);
1056}
1057
1058SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1059 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1060 int, flags)
1061{
1062 loff_t pos = pos_from_hilo(pos_h, pos_l);
1063
1064 if (pos == -1)
1065 return do_writev(fd, vec, vlen, flags);
1066
1067 return do_pwritev(fd, vec, vlen, pos, flags);
1068}
1069
Al Viro72ec3512013-03-20 10:42:10 -04001070#ifdef CONFIG_COMPAT
1071
1072static ssize_t compat_do_readv_writev(int type, struct file *file,
1073 const struct compat_iovec __user *uvector,
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001074 unsigned long nr_segs, loff_t *pos,
1075 int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001076{
Al Viro72ec3512013-03-20 10:42:10 -04001077 struct iovec iovstack[UIO_FASTIOV];
1078 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -04001079 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -04001080 ssize_t ret;
Al Viro72ec3512013-03-20 10:42:10 -04001081
Al Viro0504c072015-03-21 19:40:11 -04001082 ret = compat_import_iovec(type, uvector, nr_segs,
1083 UIO_FASTIOV, &iov, &iter);
1084 if (ret < 0)
1085 return ret;
Al Viro72ec3512013-03-20 10:42:10 -04001086
Miklos Szeredi7687a7a2017-02-20 16:51:23 +01001087 ret = __do_readv_writev(type, file, &iter, pos, flags);
Al Viro0504c072015-03-21 19:40:11 -04001088 kfree(iov);
Miklos Szeredi7687a7a2017-02-20 16:51:23 +01001089
Al Viro72ec3512013-03-20 10:42:10 -04001090 return ret;
1091}
1092
1093static size_t compat_readv(struct file *file,
1094 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001095 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001096{
1097 ssize_t ret = -EBADF;
1098
1099 if (!(file->f_mode & FMODE_READ))
1100 goto out;
1101
1102 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001103 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001104 goto out;
1105
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001106 ret = compat_do_readv_writev(READ, file, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001107
1108out:
1109 if (ret > 0)
1110 add_rchar(current, ret);
1111 inc_syscr(current);
1112 return ret;
1113}
1114
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001115static size_t do_compat_readv(compat_ulong_t fd,
1116 const struct compat_iovec __user *vec,
1117 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001118{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001119 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001120 ssize_t ret;
1121 loff_t pos;
1122
1123 if (!f.file)
1124 return -EBADF;
1125 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001126 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001127 if (ret >= 0)
1128 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001129 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001130 return ret;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001131
Al Viro72ec3512013-03-20 10:42:10 -04001132}
1133
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001134COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1135 const struct compat_iovec __user *,vec,
1136 compat_ulong_t, vlen)
1137{
1138 return do_compat_readv(fd, vec, vlen, 0);
1139}
1140
1141static long do_compat_preadv64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001142 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001143 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001144{
1145 struct fd f;
1146 ssize_t ret;
1147
1148 if (pos < 0)
1149 return -EINVAL;
1150 f = fdget(fd);
1151 if (!f.file)
1152 return -EBADF;
1153 ret = -ESPIPE;
1154 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001155 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001156 fdput(f);
1157 return ret;
1158}
1159
Heiko Carstens378a10f2014-03-05 10:43:51 +01001160#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1161COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1162 const struct compat_iovec __user *,vec,
1163 unsigned long, vlen, loff_t, pos)
1164{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001165 return do_compat_preadv64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001166}
1167#endif
1168
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001169COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001170 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001171 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001172{
1173 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001174
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001175 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1176}
1177
H.J. Lu3ebfd812016-07-14 12:31:53 -07001178#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1179COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1180 const struct compat_iovec __user *,vec,
1181 unsigned long, vlen, loff_t, pos, int, flags)
1182{
1183 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1184}
1185#endif
1186
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001187COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1188 const struct compat_iovec __user *,vec,
1189 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1190 int, flags)
1191{
1192 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1193
1194 if (pos == -1)
1195 return do_compat_readv(fd, vec, vlen, flags);
1196
1197 return do_compat_preadv64(fd, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001198}
1199
1200static size_t compat_writev(struct file *file,
1201 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001202 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001203{
1204 ssize_t ret = -EBADF;
1205
1206 if (!(file->f_mode & FMODE_WRITE))
1207 goto out;
1208
1209 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001210 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001211 goto out;
1212
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001213 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001214
1215out:
1216 if (ret > 0)
1217 add_wchar(current, ret);
1218 inc_syscw(current);
1219 return ret;
1220}
1221
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001222static size_t do_compat_writev(compat_ulong_t fd,
1223 const struct compat_iovec __user* vec,
1224 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001225{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001226 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001227 ssize_t ret;
1228 loff_t pos;
1229
1230 if (!f.file)
1231 return -EBADF;
1232 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001233 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001234 if (ret >= 0)
1235 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001236 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001237 return ret;
1238}
1239
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001240COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1241 const struct compat_iovec __user *, vec,
1242 compat_ulong_t, vlen)
1243{
1244 return do_compat_writev(fd, vec, vlen, 0);
1245}
1246
1247static long do_compat_pwritev64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001248 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001249 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001250{
1251 struct fd f;
1252 ssize_t ret;
1253
1254 if (pos < 0)
1255 return -EINVAL;
1256 f = fdget(fd);
1257 if (!f.file)
1258 return -EBADF;
1259 ret = -ESPIPE;
1260 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001261 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001262 fdput(f);
1263 return ret;
1264}
1265
Heiko Carstens378a10f2014-03-05 10:43:51 +01001266#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1267COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1268 const struct compat_iovec __user *,vec,
1269 unsigned long, vlen, loff_t, pos)
1270{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001271 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001272}
1273#endif
1274
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001275COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001276 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001277 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001278{
1279 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001280
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001281 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001282}
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001283
H.J. Lu3ebfd812016-07-14 12:31:53 -07001284#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1285COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1286 const struct compat_iovec __user *,vec,
1287 unsigned long, vlen, loff_t, pos, int, flags)
1288{
1289 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1290}
1291#endif
1292
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001293COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1294 const struct compat_iovec __user *,vec,
1295 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1296{
1297 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1298
1299 if (pos == -1)
1300 return do_compat_writev(fd, vec, vlen, flags);
1301
1302 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1303}
1304
Al Viro72ec3512013-03-20 10:42:10 -04001305#endif
1306
Al Viro19f4fc32013-02-24 02:17:03 -05001307static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1308 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Al Viro2903ff02012-08-28 12:52:22 -04001310 struct fd in, out;
1311 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001313 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001315 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * Get input file, and verify that it is ok..
1319 */
1320 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001321 in = fdget(in_fd);
1322 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001324 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001327 if (!ppos) {
1328 pos = in.file->f_pos;
1329 } else {
1330 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001331 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001333 }
1334 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001335 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 goto fput_in;
Al Virobc613842016-03-31 21:48:20 -04001337 if (count > MAX_RW_COUNT)
1338 count = MAX_RW_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /*
1341 * Get output file, and verify that it is ok..
1342 */
1343 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001344 out = fdget(out_fd);
1345 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001347 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 goto fput_out;
1349 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001350 in_inode = file_inode(in.file);
1351 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001352 out_pos = out.file->f_pos;
1353 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001354 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 goto fput_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (!max)
1358 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (unlikely(pos + count > max)) {
1361 retval = -EOVERFLOW;
1362 if (pos >= max)
1363 goto fput_out;
1364 count = max - pos;
1365 }
1366
Jens Axboed96e6e72007-06-11 12:18:52 +02001367 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001368#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001369 /*
1370 * We need to debate whether we can enable this or not. The
1371 * man page documents EAGAIN return for the output at least,
1372 * and the application is arguably buggy if it doesn't expect
1373 * EAGAIN on a non-blocking file descriptor.
1374 */
Al Viro2903ff02012-08-28 12:52:22 -04001375 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001376 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001377#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001378 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001379 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001380 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001383 add_rchar(current, retval);
1384 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001385 fsnotify_access(in.file);
1386 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001387 out.file->f_pos = out_pos;
1388 if (ppos)
1389 *ppos = pos;
1390 else
1391 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001394 inc_syscr(current);
1395 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001396 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 retval = -EOVERFLOW;
1398
1399fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001400 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001402 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403out:
1404 return retval;
1405}
1406
Heiko Carstens002c8972009-01-14 14:14:18 +01001407SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 loff_t pos;
1410 off_t off;
1411 ssize_t ret;
1412
1413 if (offset) {
1414 if (unlikely(get_user(off, offset)))
1415 return -EFAULT;
1416 pos = off;
1417 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
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}
1425
Heiko Carstens002c8972009-01-14 14:14:18 +01001426SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
1428 loff_t pos;
1429 ssize_t ret;
1430
1431 if (offset) {
1432 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1433 return -EFAULT;
1434 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1435 if (unlikely(put_user(pos, offset)))
1436 return -EFAULT;
1437 return ret;
1438 }
1439
1440 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1441}
Al Viro19f4fc32013-02-24 02:17:03 -05001442
1443#ifdef CONFIG_COMPAT
1444COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1445 compat_off_t __user *, offset, compat_size_t, count)
1446{
1447 loff_t pos;
1448 off_t off;
1449 ssize_t ret;
1450
1451 if (offset) {
1452 if (unlikely(get_user(off, offset)))
1453 return -EFAULT;
1454 pos = off;
1455 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1456 if (unlikely(put_user(pos, offset)))
1457 return -EFAULT;
1458 return ret;
1459 }
1460
1461 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1462}
1463
1464COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1465 compat_loff_t __user *, offset, compat_size_t, count)
1466{
1467 loff_t pos;
1468 ssize_t ret;
1469
1470 if (offset) {
1471 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1472 return -EFAULT;
1473 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1474 if (unlikely(put_user(pos, offset)))
1475 return -EFAULT;
1476 return ret;
1477 }
1478
1479 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1480}
1481#endif
Zach Brown29732932015-11-10 16:53:30 -05001482
1483/*
1484 * copy_file_range() differs from regular file read and write in that it
1485 * specifically allows return partial success. When it does so is up to
1486 * the copy_file_range method.
1487 */
1488ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1489 struct file *file_out, loff_t pos_out,
1490 size_t len, unsigned int flags)
1491{
1492 struct inode *inode_in = file_inode(file_in);
1493 struct inode *inode_out = file_inode(file_out);
1494 ssize_t ret;
1495
1496 if (flags != 0)
1497 return -EINVAL;
1498
Amir Goldstein11cbfb12017-01-31 10:34:56 +02001499 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1500 return -EISDIR;
1501 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1502 return -EINVAL;
1503
Zach Brown29732932015-11-10 16:53:30 -05001504 ret = rw_verify_area(READ, file_in, &pos_in, len);
Al Virobc613842016-03-31 21:48:20 -04001505 if (unlikely(ret))
1506 return ret;
1507
1508 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1509 if (unlikely(ret))
Zach Brown29732932015-11-10 16:53:30 -05001510 return ret;
1511
1512 if (!(file_in->f_mode & FMODE_READ) ||
1513 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001514 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001515 return -EBADF;
1516
1517 /* this could be relaxed once a method supports cross-fs copies */
1518 if (inode_in->i_sb != inode_out->i_sb)
1519 return -EXDEV;
1520
1521 if (len == 0)
1522 return 0;
1523
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001524 file_start_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001525
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001526 /*
1527 * Try cloning first, this is supported by more file systems, and
1528 * more efficient if both clone and copy are supported (e.g. NFS).
1529 */
1530 if (file_in->f_op->clone_file_range) {
1531 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1532 file_out, pos_out, len);
1533 if (ret == 0) {
1534 ret = len;
1535 goto done;
1536 }
1537 }
1538
1539 if (file_out->f_op->copy_file_range) {
Anna Schumakereac70052015-11-10 16:53:33 -05001540 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1541 pos_out, len, flags);
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001542 if (ret != -EOPNOTSUPP)
1543 goto done;
1544 }
Anna Schumakereac70052015-11-10 16:53:33 -05001545
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001546 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1547 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1548
1549done:
Zach Brown29732932015-11-10 16:53:30 -05001550 if (ret > 0) {
1551 fsnotify_access(file_in);
1552 add_rchar(current, ret);
1553 fsnotify_modify(file_out);
1554 add_wchar(current, ret);
1555 }
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001556
Zach Brown29732932015-11-10 16:53:30 -05001557 inc_syscr(current);
1558 inc_syscw(current);
1559
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001560 file_end_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001561
1562 return ret;
1563}
1564EXPORT_SYMBOL(vfs_copy_file_range);
1565
1566SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1567 int, fd_out, loff_t __user *, off_out,
1568 size_t, len, unsigned int, flags)
1569{
1570 loff_t pos_in;
1571 loff_t pos_out;
1572 struct fd f_in;
1573 struct fd f_out;
1574 ssize_t ret = -EBADF;
1575
1576 f_in = fdget(fd_in);
1577 if (!f_in.file)
1578 goto out2;
1579
1580 f_out = fdget(fd_out);
1581 if (!f_out.file)
1582 goto out1;
1583
1584 ret = -EFAULT;
1585 if (off_in) {
1586 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1587 goto out;
1588 } else {
1589 pos_in = f_in.file->f_pos;
1590 }
1591
1592 if (off_out) {
1593 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1594 goto out;
1595 } else {
1596 pos_out = f_out.file->f_pos;
1597 }
1598
1599 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1600 flags);
1601 if (ret > 0) {
1602 pos_in += ret;
1603 pos_out += ret;
1604
1605 if (off_in) {
1606 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1607 ret = -EFAULT;
1608 } else {
1609 f_in.file->f_pos = pos_in;
1610 }
1611
1612 if (off_out) {
1613 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1614 ret = -EFAULT;
1615 } else {
1616 f_out.file->f_pos = pos_out;
1617 }
1618 }
1619
1620out:
1621 fdput(f_out);
1622out1:
1623 fdput(f_in);
1624out2:
1625 return ret;
1626}
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001627
1628static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1629{
1630 struct inode *inode = file_inode(file);
1631
1632 if (unlikely(pos < 0))
1633 return -EINVAL;
1634
1635 if (unlikely((loff_t) (pos + len) < 0))
1636 return -EINVAL;
1637
1638 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1639 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1640 int retval;
1641
1642 retval = locks_mandatory_area(inode, file, pos, end,
1643 write ? F_WRLCK : F_RDLCK);
1644 if (retval < 0)
1645 return retval;
1646 }
1647
1648 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1649}
1650
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001651/*
1652 * Check that the two inodes are eligible for cloning, the ranges make
1653 * sense, and then flush all dirty data. Caller must ensure that the
1654 * inodes have been locked against any other modifications.
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001655 *
1656 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1657 * the usual negative error code.
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001658 */
1659int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1660 struct inode *inode_out, loff_t pos_out,
1661 u64 *len, bool is_dedupe)
1662{
1663 loff_t bs = inode_out->i_sb->s_blocksize;
1664 loff_t blen;
1665 loff_t isize;
1666 bool same_inode = (inode_in == inode_out);
1667 int ret;
1668
1669 /* Don't touch certain kinds of inodes */
1670 if (IS_IMMUTABLE(inode_out))
1671 return -EPERM;
1672
1673 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1674 return -ETXTBSY;
1675
1676 /* Don't reflink dirs, pipes, sockets... */
1677 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1678 return -EISDIR;
1679 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1680 return -EINVAL;
1681
1682 /* Are we going all the way to the end? */
1683 isize = i_size_read(inode_in);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001684 if (isize == 0)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001685 return 0;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001686
1687 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1688 if (*len == 0) {
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001689 if (is_dedupe || pos_in == isize)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001690 return 0;
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001691 if (pos_in > isize)
1692 return -EINVAL;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001693 *len = isize - pos_in;
1694 }
1695
1696 /* Ensure offsets don't wrap and the input is inside i_size */
1697 if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1698 pos_in + *len > isize)
1699 return -EINVAL;
1700
1701 /* Don't allow dedupe past EOF in the dest file */
1702 if (is_dedupe) {
1703 loff_t disize;
1704
1705 disize = i_size_read(inode_out);
1706 if (pos_out >= disize || pos_out + *len > disize)
1707 return -EINVAL;
1708 }
1709
1710 /* If we're linking to EOF, continue to the block boundary. */
1711 if (pos_in + *len == isize)
1712 blen = ALIGN(isize, bs) - pos_in;
1713 else
1714 blen = *len;
1715
1716 /* Only reflink if we're aligned to block boundaries */
1717 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1718 !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1719 return -EINVAL;
1720
1721 /* Don't allow overlapped reflink within the same file */
1722 if (same_inode) {
1723 if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1724 return -EINVAL;
1725 }
1726
1727 /* Wait for the completion of any pending IOs on both files */
1728 inode_dio_wait(inode_in);
1729 if (!same_inode)
1730 inode_dio_wait(inode_out);
1731
1732 ret = filemap_write_and_wait_range(inode_in->i_mapping,
1733 pos_in, pos_in + *len - 1);
1734 if (ret)
1735 return ret;
1736
1737 ret = filemap_write_and_wait_range(inode_out->i_mapping,
1738 pos_out, pos_out + *len - 1);
1739 if (ret)
1740 return ret;
1741
1742 /*
1743 * Check that the extents are the same.
1744 */
1745 if (is_dedupe) {
1746 bool is_same = false;
1747
1748 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1749 inode_out, pos_out, *len, &is_same);
1750 if (ret)
1751 return ret;
1752 if (!is_same)
1753 return -EBADE;
1754 }
1755
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001756 return 1;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001757}
1758EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1759
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001760int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1761 struct file *file_out, loff_t pos_out, u64 len)
1762{
1763 struct inode *inode_in = file_inode(file_in);
1764 struct inode *inode_out = file_inode(file_out);
1765 int ret;
1766
Amir Goldsteinb335e9d2016-10-26 22:34:01 +03001767 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1768 return -EISDIR;
1769 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1770 return -EINVAL;
1771
Amir Goldstein913b86e92016-09-23 11:38:10 +03001772 /*
1773 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1774 * the same mount. Practically, they only need to be on the same file
1775 * system.
1776 */
1777 if (inode_in->i_sb != inode_out->i_sb)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001778 return -EXDEV;
1779
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001780 if (!(file_in->f_mode & FMODE_READ) ||
1781 !(file_out->f_mode & FMODE_WRITE) ||
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001782 (file_out->f_flags & O_APPEND))
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001783 return -EBADF;
1784
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001785 if (!file_in->f_op->clone_file_range)
1786 return -EOPNOTSUPP;
1787
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001788 ret = clone_verify_area(file_in, pos_in, len, false);
1789 if (ret)
1790 return ret;
1791
1792 ret = clone_verify_area(file_out, pos_out, len, true);
1793 if (ret)
1794 return ret;
1795
1796 if (pos_in + len > i_size_read(inode_in))
1797 return -EINVAL;
1798
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001799 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1800 file_out, pos_out, len);
1801 if (!ret) {
1802 fsnotify_access(file_in);
1803 fsnotify_modify(file_out);
1804 }
1805
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001806 return ret;
1807}
1808EXPORT_SYMBOL(vfs_clone_file_range);
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001809
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001810/*
1811 * Read a page's worth of file data into the page cache. Return the page
1812 * locked.
1813 */
1814static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1815{
1816 struct address_space *mapping;
1817 struct page *page;
1818 pgoff_t n;
1819
1820 n = offset >> PAGE_SHIFT;
1821 mapping = inode->i_mapping;
1822 page = read_mapping_page(mapping, n, NULL);
1823 if (IS_ERR(page))
1824 return page;
1825 if (!PageUptodate(page)) {
1826 put_page(page);
1827 return ERR_PTR(-EIO);
1828 }
1829 lock_page(page);
1830 return page;
1831}
1832
1833/*
1834 * Compare extents of two files to see if they are the same.
1835 * Caller must have locked both inodes to prevent write races.
1836 */
1837int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1838 struct inode *dest, loff_t destoff,
1839 loff_t len, bool *is_same)
1840{
1841 loff_t src_poff;
1842 loff_t dest_poff;
1843 void *src_addr;
1844 void *dest_addr;
1845 struct page *src_page;
1846 struct page *dest_page;
1847 loff_t cmp_len;
1848 bool same;
1849 int error;
1850
1851 error = -EINVAL;
1852 same = true;
1853 while (len) {
1854 src_poff = srcoff & (PAGE_SIZE - 1);
1855 dest_poff = destoff & (PAGE_SIZE - 1);
1856 cmp_len = min(PAGE_SIZE - src_poff,
1857 PAGE_SIZE - dest_poff);
1858 cmp_len = min(cmp_len, len);
1859 if (cmp_len <= 0)
1860 goto out_error;
1861
1862 src_page = vfs_dedupe_get_page(src, srcoff);
1863 if (IS_ERR(src_page)) {
1864 error = PTR_ERR(src_page);
1865 goto out_error;
1866 }
1867 dest_page = vfs_dedupe_get_page(dest, destoff);
1868 if (IS_ERR(dest_page)) {
1869 error = PTR_ERR(dest_page);
1870 unlock_page(src_page);
1871 put_page(src_page);
1872 goto out_error;
1873 }
1874 src_addr = kmap_atomic(src_page);
1875 dest_addr = kmap_atomic(dest_page);
1876
1877 flush_dcache_page(src_page);
1878 flush_dcache_page(dest_page);
1879
1880 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1881 same = false;
1882
1883 kunmap_atomic(dest_addr);
1884 kunmap_atomic(src_addr);
1885 unlock_page(dest_page);
1886 unlock_page(src_page);
1887 put_page(dest_page);
1888 put_page(src_page);
1889
1890 if (!same)
1891 break;
1892
1893 srcoff += cmp_len;
1894 destoff += cmp_len;
1895 len -= cmp_len;
1896 }
1897
1898 *is_same = same;
1899 return 0;
1900
1901out_error:
1902 return error;
1903}
1904EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
1905
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001906int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1907{
1908 struct file_dedupe_range_info *info;
1909 struct inode *src = file_inode(file);
1910 u64 off;
1911 u64 len;
1912 int i;
1913 int ret;
1914 bool is_admin = capable(CAP_SYS_ADMIN);
1915 u16 count = same->dest_count;
1916 struct file *dst_file;
1917 loff_t dst_off;
1918 ssize_t deduped;
1919
1920 if (!(file->f_mode & FMODE_READ))
1921 return -EINVAL;
1922
1923 if (same->reserved1 || same->reserved2)
1924 return -EINVAL;
1925
1926 off = same->src_offset;
1927 len = same->src_length;
1928
1929 ret = -EISDIR;
1930 if (S_ISDIR(src->i_mode))
1931 goto out;
1932
1933 ret = -EINVAL;
1934 if (!S_ISREG(src->i_mode))
1935 goto out;
1936
1937 ret = clone_verify_area(file, off, len, false);
1938 if (ret < 0)
1939 goto out;
1940 ret = 0;
1941
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001942 if (off + len > i_size_read(src))
1943 return -EINVAL;
1944
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001945 /* pre-format output fields to sane values */
1946 for (i = 0; i < count; i++) {
1947 same->info[i].bytes_deduped = 0ULL;
1948 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
1949 }
1950
1951 for (i = 0, info = same->info; i < count; i++, info++) {
1952 struct inode *dst;
1953 struct fd dst_fd = fdget(info->dest_fd);
1954
1955 dst_file = dst_fd.file;
1956 if (!dst_file) {
1957 info->status = -EBADF;
1958 goto next_loop;
1959 }
1960 dst = file_inode(dst_file);
1961
1962 ret = mnt_want_write_file(dst_file);
1963 if (ret) {
1964 info->status = ret;
1965 goto next_loop;
1966 }
1967
1968 dst_off = info->dest_offset;
1969 ret = clone_verify_area(dst_file, dst_off, len, true);
1970 if (ret < 0) {
1971 info->status = ret;
1972 goto next_file;
1973 }
1974 ret = 0;
1975
1976 if (info->reserved) {
1977 info->status = -EINVAL;
1978 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
1979 info->status = -EINVAL;
1980 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
1981 info->status = -EXDEV;
1982 } else if (S_ISDIR(dst->i_mode)) {
1983 info->status = -EISDIR;
1984 } else if (dst_file->f_op->dedupe_file_range == NULL) {
1985 info->status = -EINVAL;
1986 } else {
1987 deduped = dst_file->f_op->dedupe_file_range(file, off,
1988 len, dst_file,
1989 info->dest_offset);
1990 if (deduped == -EBADE)
1991 info->status = FILE_DEDUPE_RANGE_DIFFERS;
1992 else if (deduped < 0)
1993 info->status = deduped;
1994 else
1995 info->bytes_deduped += deduped;
1996 }
1997
1998next_file:
1999 mnt_drop_write_file(dst_file);
2000next_loop:
2001 fdput(dst_fd);
Darrick J. Wonge62e5602016-01-22 16:58:28 -08002002
2003 if (fatal_signal_pending(current))
2004 goto out;
Darrick J. Wong54dbc152015-12-19 00:55:59 -08002005 }
2006
2007out:
2008 return ret;
2009}
2010EXPORT_SYMBOL(vfs_dedupe_file_range);