blob: 64b61a032a5690a1d40785d64b97ce14a8a29922 [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
Ingo Molnarb12fb7f2017-02-08 18:51:33 +01007#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/stat.h>
Ingo Molnarb12fb7f2017-02-08 18:51:33 +01009#include <linux/sched/xacct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fcntl.h>
11#include <linux/file.h>
12#include <linux/uio.h>
Robert Love0eeca282005-07-12 17:06:03 -040013#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/security.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050015#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/syscalls.h>
Linus Torvaldse28cc712006-01-04 16:20:40 -080017#include <linux/pagemap.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020018#include <linux/splice.h>
Al Viro561c6732013-02-24 10:52:26 -050019#include <linux/compat.h>
Zach Brown29732932015-11-10 16:53:30 -050020#include <linux/mount.h>
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +010021#include <linux/fs.h>
Al Viro06ae43f2013-03-20 13:19:30 -040022#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080024#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/unistd.h>
26
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080027const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040029 .read_iter = generic_file_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020031 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
34EXPORT_SYMBOL(generic_ro_fops);
35
Al Virocccb5a12010-12-17 07:44:05 -050036static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070037{
Al Virocccb5a12010-12-17 07:44:05 -050038 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070039}
40
Jie Liu46a1c2c2013-06-25 12:02:13 +080041/**
42 * vfs_setpos - update the file offset for lseek
43 * @file: file structure in question
44 * @offset: file offset to seek to
45 * @maxsize: maximum file size
46 *
47 * This is a low-level filesystem helper for updating the file offset to
48 * the value specified by @offset if the given offset is valid and it is
49 * not equal to the current file offset.
50 *
51 * Return the specified offset on success and -EINVAL on invalid offset.
52 */
53loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070054{
55 if (offset < 0 && !unsigned_offsets(file))
56 return -EINVAL;
57 if (offset > maxsize)
58 return -EINVAL;
59
60 if (offset != file->f_pos) {
61 file->f_pos = offset;
62 file->f_version = 0;
63 }
64 return offset;
65}
Jie Liu46a1c2c2013-06-25 12:02:13 +080066EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070067
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020068/**
Andi Kleen57604952011-09-15 16:06:50 -070069 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020070 * @file: file structure to seek on
71 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080072 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050073 * @size: max size of this file in file system
74 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020075 *
Andi Kleen57604952011-09-15 16:06:50 -070076 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050077 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070078 *
79 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070080 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070081 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
82 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020083 */
Andi Kleen9465efc2008-06-27 11:05:24 +020084loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080085generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050086 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Andrew Morton965c8e52012-12-17 15:59:39 -080088 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020089 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050090 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020091 break;
92 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080093 /*
94 * Here we special-case the lseek(fd, 0, SEEK_CUR)
95 * position-querying operation. Avoid rewriting the "same"
96 * f_pos value back to the file because a concurrent read(),
97 * write() or lseek() might have altered it
98 */
99 if (offset == 0)
100 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700101 /*
102 * f_lock protects against read/modify/write race with other
103 * SEEK_CURs. Note that parallel writes and reads behave
104 * like SEEK_SET.
105 */
106 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800107 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700108 spin_unlock(&file->f_lock);
109 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400110 case SEEK_DATA:
111 /*
112 * In the generic case the entire file is data, so as long as
113 * offset isn't at the end of the file then the offset is data.
114 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500115 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400116 return -ENXIO;
117 break;
118 case SEEK_HOLE:
119 /*
120 * There is a virtual hole at the end of the file, so as long as
121 * offset isn't i_size or larger, return i_size.
122 */
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500123 if (offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400124 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500125 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200128
Jie Liu46a1c2c2013-06-25 12:02:13 +0800129 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700130}
131EXPORT_SYMBOL(generic_file_llseek_size);
132
133/**
134 * generic_file_llseek - generic llseek implementation for regular files
135 * @file: file structure to seek on
136 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800137 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700138 *
139 * This is a generic implemenation of ->llseek useable for all normal local
140 * filesystems. It just updates the file offset to the value specified by
Ming Lei546ae2d2013-04-29 15:06:07 -0700141 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700142 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800143loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700144{
145 struct inode *inode = file->f_mapping->host;
146
Andrew Morton965c8e52012-12-17 15:59:39 -0800147 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500148 inode->i_sb->s_maxbytes,
149 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
Andi Kleen9465efc2008-06-27 11:05:24 +0200151EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
jan Blunckae6afc32010-05-26 14:44:48 -0700153/**
Al Viro1bf9d142013-06-16 20:27:42 +0400154 * fixed_size_llseek - llseek implementation for fixed-sized devices
155 * @file: file structure to seek on
156 * @offset: file offset to seek to
157 * @whence: type of seek
158 * @size: size of the file
159 *
160 */
161loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
162{
163 switch (whence) {
164 case SEEK_SET: case SEEK_CUR: case SEEK_END:
165 return generic_file_llseek_size(file, offset, whence,
166 size, size);
167 default:
168 return -EINVAL;
169 }
170}
171EXPORT_SYMBOL(fixed_size_llseek);
172
173/**
Al Virob25472f2015-12-05 22:04:48 -0500174 * no_seek_end_llseek - llseek implementation for fixed-sized devices
175 * @file: file structure to seek on
176 * @offset: file offset to seek to
177 * @whence: type of seek
178 *
179 */
180loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
181{
182 switch (whence) {
183 case SEEK_SET: case SEEK_CUR:
184 return generic_file_llseek_size(file, offset, whence,
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +0100185 OFFSET_MAX, 0);
Al Virob25472f2015-12-05 22:04:48 -0500186 default:
187 return -EINVAL;
188 }
189}
190EXPORT_SYMBOL(no_seek_end_llseek);
191
192/**
193 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
194 * @file: file structure to seek on
195 * @offset: file offset to seek to
196 * @whence: type of seek
197 * @size: maximal offset allowed
198 *
199 */
200loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
201{
202 switch (whence) {
203 case SEEK_SET: case SEEK_CUR:
204 return generic_file_llseek_size(file, offset, whence,
205 size, 0);
206 default:
207 return -EINVAL;
208 }
209}
210EXPORT_SYMBOL(no_seek_end_llseek_size);
211
212/**
jan Blunckae6afc32010-05-26 14:44:48 -0700213 * noop_llseek - No Operation Performed llseek implementation
214 * @file: file structure to seek on
215 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800216 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700217 *
218 * This is an implementation of ->llseek useable for the rare special case when
219 * userspace expects the seek to succeed but the (device) file is actually not
220 * able to perform the seek. In this case you use noop_llseek() instead of
221 * falling back to the default implementation of ->llseek.
222 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800223loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700224{
225 return file->f_pos;
226}
227EXPORT_SYMBOL(noop_llseek);
228
Andrew Morton965c8e52012-12-17 15:59:39 -0800229loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 return -ESPIPE;
232}
233EXPORT_SYMBOL(no_llseek);
234
Andrew Morton965c8e52012-12-17 15:59:39 -0800235loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Al Viro496ad9a2013-01-23 17:07:38 -0500237 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200238 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Al Viro59551022016-01-22 15:40:57 -0500240 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -0800241 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700242 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400243 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700245 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800246 if (offset == 0) {
247 retval = file->f_pos;
248 goto out;
249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400251 break;
252 case SEEK_DATA:
253 /*
254 * In the generic case the entire file is data, so as
255 * long as offset isn't at the end of the file then the
256 * offset is data.
257 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300258 if (offset >= inode->i_size) {
259 retval = -ENXIO;
260 goto out;
261 }
Josef Bacik982d8162011-07-18 13:21:35 -0400262 break;
263 case SEEK_HOLE:
264 /*
265 * There is a virtual hole at the end of the file, so
266 * as long as offset isn't i_size or larger, return
267 * i_size.
268 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300269 if (offset >= inode->i_size) {
270 retval = -ENXIO;
271 goto out;
272 }
Josef Bacik982d8162011-07-18 13:21:35 -0400273 offset = inode->i_size;
274 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500277 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (offset != file->f_pos) {
279 file->f_pos = offset;
280 file->f_version = 0;
281 }
282 retval = offset;
283 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800284out:
Al Viro59551022016-01-22 15:40:57 -0500285 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return retval;
287}
288EXPORT_SYMBOL(default_llseek);
289
Andrew Morton965c8e52012-12-17 15:59:39 -0800290loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 loff_t (*fn)(struct file *, loff_t, int);
293
294 fn = no_llseek;
295 if (file->f_mode & FMODE_LSEEK) {
Al Viro72c2d532013-09-22 16:27:52 -0400296 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 fn = file->f_op->llseek;
298 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800299 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301EXPORT_SYMBOL(vfs_llseek);
302
Andrew Morton965c8e52012-12-17 15:59:39 -0800303SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800306 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400307 if (!f.file)
308 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800311 if (whence <= SEEK_MAX) {
312 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 retval = res;
314 if (res != (loff_t)retval)
315 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
316 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800317 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return retval;
319}
320
Al Viro561c6732013-02-24 10:52:26 -0500321#ifdef CONFIG_COMPAT
322COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
323{
324 return sys_lseek(fd, offset, whence);
325}
326#endif
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100329SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
330 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800331 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500334 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Al Viro2903ff02012-08-28 12:52:22 -0400337 if (!f.file)
338 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800341 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 goto out_putf;
343
Al Viro2903ff02012-08-28 12:52:22 -0400344 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800345 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 retval = (int)offset;
348 if (offset >= 0) {
349 retval = -EFAULT;
350 if (!copy_to_user(result, &offset, sizeof(offset)))
351 retval = 0;
352 }
353out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500354 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return retval;
356}
357#endif
358
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100359ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
360{
361 struct kiocb kiocb;
362 ssize_t ret;
363
364 if (!file->f_op->read_iter)
365 return -EINVAL;
366
367 init_sync_kiocb(&kiocb, file);
368 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100369
370 iter->type |= READ;
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100371 ret = call_read_iter(file, &kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100372 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100373 if (ret > 0)
374 *ppos = kiocb.ki_pos;
375 return ret;
376}
377EXPORT_SYMBOL(vfs_iter_read);
378
379ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
380{
381 struct kiocb kiocb;
382 ssize_t ret;
383
384 if (!file->f_op->write_iter)
385 return -EINVAL;
386
387 init_sync_kiocb(&kiocb, file);
388 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100389
390 iter->type |= WRITE;
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100391 ret = call_write_iter(file, &kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100392 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100393 if (ret > 0)
394 *ppos = kiocb.ki_pos;
395 return ret;
396}
397EXPORT_SYMBOL(vfs_iter_write);
398
Al Viro68d70d02013-06-19 15:26:04 +0400399int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct inode *inode;
402 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100403 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Al Viro496ad9a2013-01-23 17:07:38 -0500405 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800406 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100407 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500409 if (unlikely(pos < 0)) {
410 if (!unsigned_offsets(file))
411 return retval;
412 if (count >= -pos) /* both values are in 0..LLONG_MAX */
413 return -EOVERFLOW;
414 } else if (unlikely((loff_t) (pos + count) < 0)) {
415 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700416 return retval;
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500419 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
Christoph Hellwigacc15572015-12-03 12:59:49 +0100420 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
421 read_write == READ ? F_RDLCK : F_WRLCK);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800422 if (retval < 0)
423 return retval;
424 }
Al Virobc613842016-03-31 21:48:20 -0400425 return security_file_permission(file,
James Morrisc43e2592008-01-12 22:05:48 +1100426 read_write == READ ? MAY_READ : MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Al Viro5d5d5682015-04-03 15:41:18 -0400429static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500430{
431 struct iovec iov = { .iov_base = buf, .iov_len = len };
432 struct kiocb kiocb;
433 struct iov_iter iter;
434 ssize_t ret;
435
436 init_sync_kiocb(&kiocb, filp);
437 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500438 iov_iter_init(&iter, READ, &iov, 1, len);
439
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100440 ret = call_read_iter(filp, &kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100441 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500442 *ppos = kiocb.ki_pos;
443 return ret;
444}
445
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200446ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
447 loff_t *pos)
448{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200449 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400450 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200451 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400452 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200453 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400454 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200455}
Al Viro3d04c8a2015-04-03 15:09:18 -0400456EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
459{
460 ssize_t ret;
461
462 if (!(file->f_mode & FMODE_READ))
463 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500464 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -EINVAL;
466 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
467 return -EFAULT;
468
469 ret = rw_verify_area(READ, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400470 if (!ret) {
471 if (count > MAX_RW_COUNT)
472 count = MAX_RW_COUNT;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200473 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100474 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500475 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100476 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
James Morrisc43e2592008-01-12 22:05:48 +1100478 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 return ret;
482}
483
484EXPORT_SYMBOL(vfs_read);
485
Al Viro5d5d5682015-04-03 15:41:18 -0400486static 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 -0500487{
488 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
489 struct kiocb kiocb;
490 struct iov_iter iter;
491 ssize_t ret;
492
493 init_sync_kiocb(&kiocb, filp);
494 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500495 iov_iter_init(&iter, WRITE, &iov, 1, len);
496
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100497 ret = call_write_iter(filp, &kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100498 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400499 if (ret > 0)
500 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500501 return ret;
502}
503
Al Viro493c84c2015-04-03 15:06:43 -0400504ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
505 loff_t *pos)
506{
507 if (file->f_op->write)
508 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400509 else if (file->f_op->write_iter)
510 return new_sync_write(file, p, count, pos);
511 else
512 return -EINVAL;
513}
514EXPORT_SYMBOL(__vfs_write);
515
Al Viro06ae43f2013-03-20 13:19:30 -0400516ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
517{
518 mm_segment_t old_fs;
519 const char __user *p;
520 ssize_t ret;
521
Al Viro7f7f25e2014-02-11 17:49:24 -0500522 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000523 return -EINVAL;
524
Al Viro06ae43f2013-03-20 13:19:30 -0400525 old_fs = get_fs();
526 set_fs(get_ds());
527 p = (__force const char __user *)buf;
528 if (count > MAX_RW_COUNT)
529 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400530 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400531 set_fs(old_fs);
532 if (ret > 0) {
533 fsnotify_modify(file);
534 add_wchar(current, ret);
535 }
536 inc_syscw(current);
537 return ret;
538}
539
Al Viro2ec3a122014-08-19 11:48:09 -0400540EXPORT_SYMBOL(__kernel_write);
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
543{
544 ssize_t ret;
545
546 if (!(file->f_mode & FMODE_WRITE))
547 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500548 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return -EINVAL;
550 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
551 return -EFAULT;
552
553 ret = rw_verify_area(WRITE, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400554 if (!ret) {
555 if (count > MAX_RW_COUNT)
556 count = MAX_RW_COUNT;
Al Viro03d95eb2013-03-20 13:04:20 -0400557 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400558 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100559 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500560 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100561 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
James Morrisc43e2592008-01-12 22:05:48 +1100563 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400564 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566
567 return ret;
568}
569
570EXPORT_SYMBOL(vfs_write);
571
572static inline loff_t file_pos_read(struct file *file)
573{
574 return file->f_pos;
575}
576
577static inline void file_pos_write(struct file *file, loff_t pos)
578{
579 file->f_pos = pos;
580}
581
Heiko Carstens3cdad422009-01-14 14:14:22 +0100582SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800584 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Al Viro2903ff02012-08-28 12:52:22 -0400587 if (f.file) {
588 loff_t pos = file_pos_read(f.file);
589 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400590 if (ret >= 0)
591 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800592 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return ret;
595}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Heiko Carstens3cdad422009-01-14 14:14:22 +0100597SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
598 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800600 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Al Viro2903ff02012-08-28 12:52:22 -0400603 if (f.file) {
604 loff_t pos = file_pos_read(f.file);
605 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400606 if (ret >= 0)
607 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800608 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 return ret;
612}
613
Al Viro4a0fd5b2013-01-21 15:16:58 -0500614SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
615 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Al Viro2903ff02012-08-28 12:52:22 -0400617 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 if (pos < 0)
621 return -EINVAL;
622
Al Viro2903ff02012-08-28 12:52:22 -0400623 f = fdget(fd);
624 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400626 if (f.file->f_mode & FMODE_PREAD)
627 ret = vfs_read(f.file, buf, count, &pos);
628 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
631 return ret;
632}
633
Al Viro4a0fd5b2013-01-21 15:16:58 -0500634SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
635 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Al Viro2903ff02012-08-28 12:52:22 -0400637 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (pos < 0)
641 return -EINVAL;
642
Al Viro2903ff02012-08-28 12:52:22 -0400643 f = fdget(fd);
644 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400646 if (f.file->f_mode & FMODE_PWRITE)
647 ret = vfs_write(f.file, buf, count, &pos);
648 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
651 return ret;
652}
653
654/*
655 * Reduce an iovec's length in-place. Return the resulting number of segments
656 */
657unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
658{
659 unsigned long seg = 0;
660 size_t len = 0;
661
662 while (seg < nr_segs) {
663 seg++;
664 if (len + iov->iov_len >= to) {
665 iov->iov_len = to - len;
666 break;
667 }
668 len += iov->iov_len;
669 iov++;
670 }
671 return seg;
672}
Eric Sandeen19295522008-01-28 23:58:27 -0500673EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Al Viroac15ac02015-03-20 20:10:21 -0400675static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100676 loff_t *ppos, int type, int flags)
Al Viro293bc982014-02-11 18:37:41 -0500677{
678 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500679 ssize_t ret;
680
Christoph Hellwige864f392016-04-07 08:52:03 -0700681 if (flags & ~(RWF_HIPRI | RWF_DSYNC | RWF_SYNC))
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100682 return -EOPNOTSUPP;
683
Al Viro293bc982014-02-11 18:37:41 -0500684 init_sync_kiocb(&kiocb, filp);
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100685 if (flags & RWF_HIPRI)
686 kiocb.ki_flags |= IOCB_HIPRI;
Christoph Hellwige864f392016-04-07 08:52:03 -0700687 if (flags & RWF_DSYNC)
688 kiocb.ki_flags |= IOCB_DSYNC;
689 if (flags & RWF_SYNC)
690 kiocb.ki_flags |= (IOCB_DSYNC | IOCB_SYNC);
Al Viro293bc982014-02-11 18:37:41 -0500691 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500692
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100693 if (type == READ)
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100694 ret = call_read_iter(filp, &kiocb, iter);
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100695 else
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100696 ret = call_write_iter(filp, &kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100697 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500698 *ppos = kiocb.ki_pos;
699 return ret;
700}
701
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700702/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400703static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100704 loff_t *ppos, int type, int flags)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700705{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700706 ssize_t ret = 0;
707
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100708 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100709 return -EOPNOTSUPP;
710
Al Viroac15ac02015-03-20 20:10:21 -0400711 while (iov_iter_count(iter)) {
712 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700713 ssize_t nr;
714
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100715 if (type == READ) {
716 nr = filp->f_op->read(filp, iovec.iov_base,
717 iovec.iov_len, ppos);
718 } else {
719 nr = filp->f_op->write(filp, iovec.iov_base,
720 iovec.iov_len, ppos);
721 }
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700722
723 if (nr < 0) {
724 if (!ret)
725 ret = nr;
726 break;
727 }
728 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400729 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700730 break;
Al Viroac15ac02015-03-20 20:10:21 -0400731 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700732 }
733
734 return ret;
735}
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737/* A write operation does a read from user space and vice versa */
738#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
739
Vegard Nossumffecee42016-10-08 11:18:07 +0200740/**
741 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
742 * into the kernel and check that it is valid.
743 *
744 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
745 * @uvector: Pointer to the userspace array.
746 * @nr_segs: Number of elements in userspace array.
747 * @fast_segs: Number of elements in @fast_pointer.
748 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
749 * @ret_pointer: (output parameter) Pointer to a variable that will point to
750 * either @fast_pointer, a newly allocated kernel array, or NULL,
751 * depending on which array was used.
752 *
753 * This function copies an array of &struct iovec of @nr_segs from
754 * userspace into the kernel and checks that each element is valid (e.g.
755 * it does not point to a kernel address or cause overflow by being too
756 * large, etc.).
757 *
758 * As an optimization, the caller may provide a pointer to a small
759 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
760 * (the size of this array, or 0 if unused, should be given in @fast_segs).
761 *
762 * @ret_pointer will always point to the array that was used, so the
763 * caller must take care not to call kfree() on it e.g. in case the
764 * @fast_pointer array was used and it was allocated on the stack.
765 *
766 * Return: The total number of bytes covered by the iovec array on success
767 * or a negative error code on error.
768 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700769ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
770 unsigned long nr_segs, unsigned long fast_segs,
771 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700772 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700773{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700774 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700775 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700776 struct iovec *iov = fast_pointer;
777
Linus Torvalds435f49a2010-10-29 10:36:49 -0700778 /*
779 * SuS says "The readv() function *may* fail if the iovcnt argument
780 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
781 * traditionally returned zero for zero segments, so...
782 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700783 if (nr_segs == 0) {
784 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700785 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700786 }
787
Linus Torvalds435f49a2010-10-29 10:36:49 -0700788 /*
789 * First get the "struct iovec" from user memory and
790 * verify all the pointers
791 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700792 if (nr_segs > UIO_MAXIOV) {
793 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700794 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700795 }
796 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700797 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700798 if (iov == NULL) {
799 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700800 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700801 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700802 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700803 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
804 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700805 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700806 }
807
Linus Torvalds435f49a2010-10-29 10:36:49 -0700808 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700809 * According to the Single Unix Specification we should return EINVAL
810 * if an element length is < 0 when cast to ssize_t or if the
811 * total length would overflow the ssize_t return value of the
812 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700813 *
814 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
815 * overflow case.
816 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700817 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700818 for (seg = 0; seg < nr_segs; seg++) {
819 void __user *buf = iov[seg].iov_base;
820 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700821
822 /* see if we we're about to use an invalid len or if
823 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700824 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700825 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700826 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700827 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700828 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700829 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700830 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700831 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700832 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700833 if (len > MAX_RW_COUNT - ret) {
834 len = MAX_RW_COUNT - ret;
835 iov[seg].iov_len = len;
836 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700837 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700838 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700839out:
840 *ret_pointer = iov;
841 return ret;
842}
843
Al Virof5029852017-04-08 18:18:48 -0400844#ifdef CONFIG_COMPAT
845ssize_t compat_rw_copy_check_uvector(int type,
846 const struct compat_iovec __user *uvector, unsigned long nr_segs,
847 unsigned long fast_segs, struct iovec *fast_pointer,
848 struct iovec **ret_pointer)
849{
850 compat_ssize_t tot_len;
851 struct iovec *iov = *ret_pointer = fast_pointer;
852 ssize_t ret = 0;
853 int seg;
854
855 /*
856 * SuS says "The readv() function *may* fail if the iovcnt argument
857 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
858 * traditionally returned zero for zero segments, so...
859 */
860 if (nr_segs == 0)
861 goto out;
862
863 ret = -EINVAL;
864 if (nr_segs > UIO_MAXIOV)
865 goto out;
866 if (nr_segs > fast_segs) {
867 ret = -ENOMEM;
868 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
869 if (iov == NULL)
870 goto out;
871 }
872 *ret_pointer = iov;
873
874 ret = -EFAULT;
875 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
876 goto out;
877
878 /*
879 * Single unix specification:
880 * We should -EINVAL if an element length is not >= 0 and fitting an
881 * ssize_t.
882 *
883 * In Linux, the total length is limited to MAX_RW_COUNT, there is
884 * no overflow possibility.
885 */
886 tot_len = 0;
887 ret = -EINVAL;
888 for (seg = 0; seg < nr_segs; seg++) {
889 compat_uptr_t buf;
890 compat_ssize_t len;
891
892 if (__get_user(len, &uvector->iov_len) ||
893 __get_user(buf, &uvector->iov_base)) {
894 ret = -EFAULT;
895 goto out;
896 }
897 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
898 goto out;
899 if (type >= 0 &&
900 !access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
901 ret = -EFAULT;
902 goto out;
903 }
904 if (len > MAX_RW_COUNT - tot_len)
905 len = MAX_RW_COUNT - tot_len;
906 tot_len += len;
907 iov->iov_base = compat_ptr(buf);
908 iov->iov_len = (compat_size_t) len;
909 uvector++;
910 iov++;
911 }
912 ret = tot_len;
913
914out:
915 return ret;
916}
917#endif
918
Christoph Hellwig19c73582017-05-27 11:16:48 +0300919static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
920 loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 size_t tot_len;
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100923 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300925 if (!(file->f_mode & FMODE_READ))
926 return -EBADF;
927 if (!(file->f_mode & FMODE_CAN_READ))
928 return -EINVAL;
929
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100930 tot_len = iov_iter_count(iter);
Al Viro0504c072015-03-21 19:40:11 -0400931 if (!tot_len)
932 goto out;
Christoph Hellwig19c73582017-05-27 11:16:48 +0300933 ret = rw_verify_area(READ, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800934 if (ret < 0)
Christoph Hellwig19c73582017-05-27 11:16:48 +0300935 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Christoph Hellwig19c73582017-05-27 11:16:48 +0300937 if (file->f_op->read_iter)
938 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700939 else
Christoph Hellwig19c73582017-05-27 11:16:48 +0300940 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941out:
Christoph Hellwig19c73582017-05-27 11:16:48 +0300942 if (ret >= 0)
943 fsnotify_access(file);
944 return ret;
945}
946
947static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
948 loff_t *pos, int flags)
949{
950 size_t tot_len;
951 ssize_t ret = 0;
952
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300953 if (!(file->f_mode & FMODE_WRITE))
954 return -EBADF;
955 if (!(file->f_mode & FMODE_CAN_WRITE))
956 return -EINVAL;
957
Christoph Hellwig19c73582017-05-27 11:16:48 +0300958 tot_len = iov_iter_count(iter);
959 if (!tot_len)
960 return 0;
961 ret = rw_verify_area(WRITE, file, pos, tot_len);
962 if (ret < 0)
963 return ret;
964
965 file_start_write(file);
966 if (file->f_op->write_iter)
967 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
968 else
969 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
970 file_end_write(file);
971 if (ret > 0)
972 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300976ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
977 unsigned long vlen, loff_t *pos, int flags)
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100978{
979 struct iovec iovstack[UIO_FASTIOV];
980 struct iovec *iov = iovstack;
981 struct iov_iter iter;
982 ssize_t ret;
983
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300984 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300985 if (ret >= 0) {
986 ret = do_iter_read(file, &iter, pos, flags);
987 kfree(iov);
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300990 return ret;
991}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992EXPORT_SYMBOL(vfs_readv);
993
994ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100995 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300997 struct iovec iovstack[UIO_FASTIOV];
998 struct iovec *iov = iovstack;
999 struct iov_iter iter;
1000 ssize_t ret;
1001
Christoph Hellwig251b42a2017-05-27 11:16:46 +03001002 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001003 if (ret >= 0) {
1004 ret = do_iter_write(file, &iter, pos, flags);
1005 kfree(iov);
1006 }
Christoph Hellwig251b42a2017-05-27 11:16:46 +03001007 return ret;
1008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009EXPORT_SYMBOL(vfs_writev);
1010
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001011static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
1012 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001014 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Al Viro2903ff02012-08-28 12:52:22 -04001017 if (f.file) {
1018 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001019 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001020 if (ret >= 0)
1021 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -08001022 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024
1025 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001026 add_rchar(current, ret);
1027 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return ret;
1029}
1030
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001031static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
1032 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001034 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Al Viro2903ff02012-08-28 12:52:22 -04001037 if (f.file) {
1038 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001039 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001040 if (ret >= 0)
1041 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -08001042 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
1045 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001046 add_wchar(current, ret);
1047 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return ret;
1049}
1050
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001051static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001052{
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001053#define HALF_LONG_BITS (BITS_PER_LONG / 2)
1054 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1055}
1056
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001057static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
1058 unsigned long vlen, loff_t pos, int flags)
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001059{
Al Viro2903ff02012-08-28 12:52:22 -04001060 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001061 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001062
1063 if (pos < 0)
1064 return -EINVAL;
1065
Al Viro2903ff02012-08-28 12:52:22 -04001066 f = fdget(fd);
1067 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001068 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -04001069 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001070 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001071 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001072 }
1073
1074 if (ret > 0)
1075 add_rchar(current, ret);
1076 inc_syscr(current);
1077 return ret;
1078}
1079
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001080static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
1081 unsigned long vlen, loff_t pos, int flags)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001082{
Al Viro2903ff02012-08-28 12:52:22 -04001083 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001084 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001085
1086 if (pos < 0)
1087 return -EINVAL;
1088
Al Viro2903ff02012-08-28 12:52:22 -04001089 f = fdget(fd);
1090 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001091 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -04001092 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001093 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001094 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001095 }
1096
1097 if (ret > 0)
1098 add_wchar(current, ret);
1099 inc_syscw(current);
1100 return ret;
1101}
1102
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001103SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1104 unsigned long, vlen)
1105{
1106 return do_readv(fd, vec, vlen, 0);
1107}
1108
1109SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1110 unsigned long, vlen)
1111{
1112 return do_writev(fd, vec, vlen, 0);
1113}
1114
1115SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1116 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1117{
1118 loff_t pos = pos_from_hilo(pos_h, pos_l);
1119
1120 return do_preadv(fd, vec, vlen, pos, 0);
1121}
1122
1123SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1124 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1125 int, flags)
1126{
1127 loff_t pos = pos_from_hilo(pos_h, pos_l);
1128
1129 if (pos == -1)
1130 return do_readv(fd, vec, vlen, flags);
1131
1132 return do_preadv(fd, vec, vlen, pos, flags);
1133}
1134
1135SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1136 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1137{
1138 loff_t pos = pos_from_hilo(pos_h, pos_l);
1139
1140 return do_pwritev(fd, vec, vlen, pos, 0);
1141}
1142
1143SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1144 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1145 int, flags)
1146{
1147 loff_t pos = pos_from_hilo(pos_h, pos_l);
1148
1149 if (pos == -1)
1150 return do_writev(fd, vec, vlen, flags);
1151
1152 return do_pwritev(fd, vec, vlen, pos, flags);
1153}
1154
Al Viro72ec3512013-03-20 10:42:10 -04001155#ifdef CONFIG_COMPAT
Al Viro72ec3512013-03-20 10:42:10 -04001156static size_t compat_readv(struct file *file,
1157 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001158 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001159{
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001160 struct iovec iovstack[UIO_FASTIOV];
1161 struct iovec *iov = iovstack;
1162 struct iov_iter iter;
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001163 ssize_t ret;
Al Viro72ec3512013-03-20 10:42:10 -04001164
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001165 ret = compat_import_iovec(READ, vec, vlen, UIO_FASTIOV, &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001166 if (ret >= 0) {
1167 ret = do_iter_read(file, &iter, pos, flags);
1168 kfree(iov);
1169 }
Al Viro72ec3512013-03-20 10:42:10 -04001170 if (ret > 0)
1171 add_rchar(current, ret);
1172 inc_syscr(current);
1173 return ret;
1174}
1175
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001176static size_t do_compat_readv(compat_ulong_t fd,
1177 const struct compat_iovec __user *vec,
1178 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001179{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001180 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001181 ssize_t ret;
1182 loff_t pos;
1183
1184 if (!f.file)
1185 return -EBADF;
1186 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001187 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001188 if (ret >= 0)
1189 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001190 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001191 return ret;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001192
Al Viro72ec3512013-03-20 10:42:10 -04001193}
1194
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001195COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1196 const struct compat_iovec __user *,vec,
1197 compat_ulong_t, vlen)
1198{
1199 return do_compat_readv(fd, vec, vlen, 0);
1200}
1201
1202static long do_compat_preadv64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001203 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001204 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001205{
1206 struct fd f;
1207 ssize_t ret;
1208
1209 if (pos < 0)
1210 return -EINVAL;
1211 f = fdget(fd);
1212 if (!f.file)
1213 return -EBADF;
1214 ret = -ESPIPE;
1215 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001216 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001217 fdput(f);
1218 return ret;
1219}
1220
Heiko Carstens378a10f2014-03-05 10:43:51 +01001221#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1222COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1223 const struct compat_iovec __user *,vec,
1224 unsigned long, vlen, loff_t, pos)
1225{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001226 return do_compat_preadv64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001227}
1228#endif
1229
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001230COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001231 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001232 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001233{
1234 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001235
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001236 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1237}
1238
H.J. Lu3ebfd812016-07-14 12:31:53 -07001239#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1240COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1241 const struct compat_iovec __user *,vec,
1242 unsigned long, vlen, loff_t, pos, int, flags)
1243{
1244 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1245}
1246#endif
1247
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001248COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1249 const struct compat_iovec __user *,vec,
1250 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1251 int, flags)
1252{
1253 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1254
1255 if (pos == -1)
1256 return do_compat_readv(fd, vec, vlen, flags);
1257
1258 return do_compat_preadv64(fd, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001259}
1260
1261static size_t compat_writev(struct file *file,
1262 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001263 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001264{
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001265 struct iovec iovstack[UIO_FASTIOV];
1266 struct iovec *iov = iovstack;
1267 struct iov_iter iter;
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001268 ssize_t ret;
Al Viro72ec3512013-03-20 10:42:10 -04001269
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001270 ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001271 if (ret >= 0) {
1272 ret = do_iter_write(file, &iter, pos, flags);
1273 kfree(iov);
1274 }
Al Viro72ec3512013-03-20 10:42:10 -04001275 if (ret > 0)
1276 add_wchar(current, ret);
1277 inc_syscw(current);
1278 return ret;
1279}
1280
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001281static size_t do_compat_writev(compat_ulong_t fd,
1282 const struct compat_iovec __user* vec,
1283 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001284{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001285 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001286 ssize_t ret;
1287 loff_t pos;
1288
1289 if (!f.file)
1290 return -EBADF;
1291 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001292 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001293 if (ret >= 0)
1294 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001295 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001296 return ret;
1297}
1298
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001299COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1300 const struct compat_iovec __user *, vec,
1301 compat_ulong_t, vlen)
1302{
1303 return do_compat_writev(fd, vec, vlen, 0);
1304}
1305
1306static long do_compat_pwritev64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001307 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001308 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001309{
1310 struct fd f;
1311 ssize_t ret;
1312
1313 if (pos < 0)
1314 return -EINVAL;
1315 f = fdget(fd);
1316 if (!f.file)
1317 return -EBADF;
1318 ret = -ESPIPE;
1319 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001320 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001321 fdput(f);
1322 return ret;
1323}
1324
Heiko Carstens378a10f2014-03-05 10:43:51 +01001325#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1326COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1327 const struct compat_iovec __user *,vec,
1328 unsigned long, vlen, loff_t, pos)
1329{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001330 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001331}
1332#endif
1333
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001334COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001335 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001336 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001337{
1338 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001339
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001340 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001341}
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001342
H.J. Lu3ebfd812016-07-14 12:31:53 -07001343#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1344COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1345 const struct compat_iovec __user *,vec,
1346 unsigned long, vlen, loff_t, pos, int, flags)
1347{
1348 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1349}
1350#endif
1351
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001352COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1353 const struct compat_iovec __user *,vec,
1354 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1355{
1356 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1357
1358 if (pos == -1)
1359 return do_compat_writev(fd, vec, vlen, flags);
1360
1361 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1362}
1363
Al Viro72ec3512013-03-20 10:42:10 -04001364#endif
1365
Al Viro19f4fc32013-02-24 02:17:03 -05001366static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1367 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Al Viro2903ff02012-08-28 12:52:22 -04001369 struct fd in, out;
1370 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001372 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001374 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 /*
1377 * Get input file, and verify that it is ok..
1378 */
1379 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001380 in = fdget(in_fd);
1381 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001383 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001386 if (!ppos) {
1387 pos = in.file->f_pos;
1388 } else {
1389 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001390 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001392 }
1393 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001394 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 goto fput_in;
Al Virobc613842016-03-31 21:48:20 -04001396 if (count > MAX_RW_COUNT)
1397 count = MAX_RW_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * Get output file, and verify that it is ok..
1401 */
1402 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001403 out = fdget(out_fd);
1404 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001406 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 goto fput_out;
1408 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001409 in_inode = file_inode(in.file);
1410 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001411 out_pos = out.file->f_pos;
1412 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001413 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 goto fput_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (!max)
1417 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (unlikely(pos + count > max)) {
1420 retval = -EOVERFLOW;
1421 if (pos >= max)
1422 goto fput_out;
1423 count = max - pos;
1424 }
1425
Jens Axboed96e6e72007-06-11 12:18:52 +02001426 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001427#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001428 /*
1429 * We need to debate whether we can enable this or not. The
1430 * man page documents EAGAIN return for the output at least,
1431 * and the application is arguably buggy if it doesn't expect
1432 * EAGAIN on a non-blocking file descriptor.
1433 */
Al Viro2903ff02012-08-28 12:52:22 -04001434 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001435 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001436#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001437 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001438 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001439 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001442 add_rchar(current, retval);
1443 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001444 fsnotify_access(in.file);
1445 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001446 out.file->f_pos = out_pos;
1447 if (ppos)
1448 *ppos = pos;
1449 else
1450 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001453 inc_syscr(current);
1454 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001455 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 retval = -EOVERFLOW;
1457
1458fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001459 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001461 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462out:
1463 return retval;
1464}
1465
Heiko Carstens002c8972009-01-14 14:14:18 +01001466SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
1468 loff_t pos;
1469 off_t off;
1470 ssize_t ret;
1471
1472 if (offset) {
1473 if (unlikely(get_user(off, offset)))
1474 return -EFAULT;
1475 pos = off;
1476 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1477 if (unlikely(put_user(pos, offset)))
1478 return -EFAULT;
1479 return ret;
1480 }
1481
1482 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1483}
1484
Heiko Carstens002c8972009-01-14 14:14:18 +01001485SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 loff_t pos;
1488 ssize_t ret;
1489
1490 if (offset) {
1491 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1492 return -EFAULT;
1493 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1494 if (unlikely(put_user(pos, offset)))
1495 return -EFAULT;
1496 return ret;
1497 }
1498
1499 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1500}
Al Viro19f4fc32013-02-24 02:17:03 -05001501
1502#ifdef CONFIG_COMPAT
1503COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1504 compat_off_t __user *, offset, compat_size_t, count)
1505{
1506 loff_t pos;
1507 off_t off;
1508 ssize_t ret;
1509
1510 if (offset) {
1511 if (unlikely(get_user(off, offset)))
1512 return -EFAULT;
1513 pos = off;
1514 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1515 if (unlikely(put_user(pos, offset)))
1516 return -EFAULT;
1517 return ret;
1518 }
1519
1520 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1521}
1522
1523COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1524 compat_loff_t __user *, offset, compat_size_t, count)
1525{
1526 loff_t pos;
1527 ssize_t ret;
1528
1529 if (offset) {
1530 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1531 return -EFAULT;
1532 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1533 if (unlikely(put_user(pos, offset)))
1534 return -EFAULT;
1535 return ret;
1536 }
1537
1538 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1539}
1540#endif
Zach Brown29732932015-11-10 16:53:30 -05001541
1542/*
1543 * copy_file_range() differs from regular file read and write in that it
1544 * specifically allows return partial success. When it does so is up to
1545 * the copy_file_range method.
1546 */
1547ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1548 struct file *file_out, loff_t pos_out,
1549 size_t len, unsigned int flags)
1550{
1551 struct inode *inode_in = file_inode(file_in);
1552 struct inode *inode_out = file_inode(file_out);
1553 ssize_t ret;
1554
1555 if (flags != 0)
1556 return -EINVAL;
1557
Amir Goldstein11cbfb12017-01-31 10:34:56 +02001558 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1559 return -EISDIR;
1560 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1561 return -EINVAL;
1562
Zach Brown29732932015-11-10 16:53:30 -05001563 ret = rw_verify_area(READ, file_in, &pos_in, len);
Al Virobc613842016-03-31 21:48:20 -04001564 if (unlikely(ret))
1565 return ret;
1566
1567 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1568 if (unlikely(ret))
Zach Brown29732932015-11-10 16:53:30 -05001569 return ret;
1570
1571 if (!(file_in->f_mode & FMODE_READ) ||
1572 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001573 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001574 return -EBADF;
1575
1576 /* this could be relaxed once a method supports cross-fs copies */
1577 if (inode_in->i_sb != inode_out->i_sb)
1578 return -EXDEV;
1579
1580 if (len == 0)
1581 return 0;
1582
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001583 file_start_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001584
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001585 /*
1586 * Try cloning first, this is supported by more file systems, and
1587 * more efficient if both clone and copy are supported (e.g. NFS).
1588 */
1589 if (file_in->f_op->clone_file_range) {
1590 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1591 file_out, pos_out, len);
1592 if (ret == 0) {
1593 ret = len;
1594 goto done;
1595 }
1596 }
1597
1598 if (file_out->f_op->copy_file_range) {
Anna Schumakereac70052015-11-10 16:53:33 -05001599 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1600 pos_out, len, flags);
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001601 if (ret != -EOPNOTSUPP)
1602 goto done;
1603 }
Anna Schumakereac70052015-11-10 16:53:33 -05001604
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001605 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1606 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1607
1608done:
Zach Brown29732932015-11-10 16:53:30 -05001609 if (ret > 0) {
1610 fsnotify_access(file_in);
1611 add_rchar(current, ret);
1612 fsnotify_modify(file_out);
1613 add_wchar(current, ret);
1614 }
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001615
Zach Brown29732932015-11-10 16:53:30 -05001616 inc_syscr(current);
1617 inc_syscw(current);
1618
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001619 file_end_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001620
1621 return ret;
1622}
1623EXPORT_SYMBOL(vfs_copy_file_range);
1624
1625SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1626 int, fd_out, loff_t __user *, off_out,
1627 size_t, len, unsigned int, flags)
1628{
1629 loff_t pos_in;
1630 loff_t pos_out;
1631 struct fd f_in;
1632 struct fd f_out;
1633 ssize_t ret = -EBADF;
1634
1635 f_in = fdget(fd_in);
1636 if (!f_in.file)
1637 goto out2;
1638
1639 f_out = fdget(fd_out);
1640 if (!f_out.file)
1641 goto out1;
1642
1643 ret = -EFAULT;
1644 if (off_in) {
1645 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1646 goto out;
1647 } else {
1648 pos_in = f_in.file->f_pos;
1649 }
1650
1651 if (off_out) {
1652 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1653 goto out;
1654 } else {
1655 pos_out = f_out.file->f_pos;
1656 }
1657
1658 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1659 flags);
1660 if (ret > 0) {
1661 pos_in += ret;
1662 pos_out += ret;
1663
1664 if (off_in) {
1665 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1666 ret = -EFAULT;
1667 } else {
1668 f_in.file->f_pos = pos_in;
1669 }
1670
1671 if (off_out) {
1672 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1673 ret = -EFAULT;
1674 } else {
1675 f_out.file->f_pos = pos_out;
1676 }
1677 }
1678
1679out:
1680 fdput(f_out);
1681out1:
1682 fdput(f_in);
1683out2:
1684 return ret;
1685}
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001686
1687static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1688{
1689 struct inode *inode = file_inode(file);
1690
1691 if (unlikely(pos < 0))
1692 return -EINVAL;
1693
1694 if (unlikely((loff_t) (pos + len) < 0))
1695 return -EINVAL;
1696
1697 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1698 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1699 int retval;
1700
1701 retval = locks_mandatory_area(inode, file, pos, end,
1702 write ? F_WRLCK : F_RDLCK);
1703 if (retval < 0)
1704 return retval;
1705 }
1706
1707 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1708}
1709
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001710/*
1711 * Check that the two inodes are eligible for cloning, the ranges make
1712 * sense, and then flush all dirty data. Caller must ensure that the
1713 * inodes have been locked against any other modifications.
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001714 *
1715 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1716 * the usual negative error code.
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001717 */
1718int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1719 struct inode *inode_out, loff_t pos_out,
1720 u64 *len, bool is_dedupe)
1721{
1722 loff_t bs = inode_out->i_sb->s_blocksize;
1723 loff_t blen;
1724 loff_t isize;
1725 bool same_inode = (inode_in == inode_out);
1726 int ret;
1727
1728 /* Don't touch certain kinds of inodes */
1729 if (IS_IMMUTABLE(inode_out))
1730 return -EPERM;
1731
1732 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1733 return -ETXTBSY;
1734
1735 /* Don't reflink dirs, pipes, sockets... */
1736 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1737 return -EISDIR;
1738 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1739 return -EINVAL;
1740
1741 /* Are we going all the way to the end? */
1742 isize = i_size_read(inode_in);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001743 if (isize == 0)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001744 return 0;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001745
1746 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1747 if (*len == 0) {
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001748 if (is_dedupe || pos_in == isize)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001749 return 0;
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001750 if (pos_in > isize)
1751 return -EINVAL;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001752 *len = isize - pos_in;
1753 }
1754
1755 /* Ensure offsets don't wrap and the input is inside i_size */
1756 if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1757 pos_in + *len > isize)
1758 return -EINVAL;
1759
1760 /* Don't allow dedupe past EOF in the dest file */
1761 if (is_dedupe) {
1762 loff_t disize;
1763
1764 disize = i_size_read(inode_out);
1765 if (pos_out >= disize || pos_out + *len > disize)
1766 return -EINVAL;
1767 }
1768
1769 /* If we're linking to EOF, continue to the block boundary. */
1770 if (pos_in + *len == isize)
1771 blen = ALIGN(isize, bs) - pos_in;
1772 else
1773 blen = *len;
1774
1775 /* Only reflink if we're aligned to block boundaries */
1776 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1777 !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1778 return -EINVAL;
1779
1780 /* Don't allow overlapped reflink within the same file */
1781 if (same_inode) {
1782 if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1783 return -EINVAL;
1784 }
1785
1786 /* Wait for the completion of any pending IOs on both files */
1787 inode_dio_wait(inode_in);
1788 if (!same_inode)
1789 inode_dio_wait(inode_out);
1790
1791 ret = filemap_write_and_wait_range(inode_in->i_mapping,
1792 pos_in, pos_in + *len - 1);
1793 if (ret)
1794 return ret;
1795
1796 ret = filemap_write_and_wait_range(inode_out->i_mapping,
1797 pos_out, pos_out + *len - 1);
1798 if (ret)
1799 return ret;
1800
1801 /*
1802 * Check that the extents are the same.
1803 */
1804 if (is_dedupe) {
1805 bool is_same = false;
1806
1807 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1808 inode_out, pos_out, *len, &is_same);
1809 if (ret)
1810 return ret;
1811 if (!is_same)
1812 return -EBADE;
1813 }
1814
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001815 return 1;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001816}
1817EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1818
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001819int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1820 struct file *file_out, loff_t pos_out, u64 len)
1821{
1822 struct inode *inode_in = file_inode(file_in);
1823 struct inode *inode_out = file_inode(file_out);
1824 int ret;
1825
Amir Goldsteinb335e9d2016-10-26 22:34:01 +03001826 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1827 return -EISDIR;
1828 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1829 return -EINVAL;
1830
Amir Goldstein913b86e2016-09-23 11:38:10 +03001831 /*
1832 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1833 * the same mount. Practically, they only need to be on the same file
1834 * system.
1835 */
1836 if (inode_in->i_sb != inode_out->i_sb)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001837 return -EXDEV;
1838
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001839 if (!(file_in->f_mode & FMODE_READ) ||
1840 !(file_out->f_mode & FMODE_WRITE) ||
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001841 (file_out->f_flags & O_APPEND))
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001842 return -EBADF;
1843
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001844 if (!file_in->f_op->clone_file_range)
1845 return -EOPNOTSUPP;
1846
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001847 ret = clone_verify_area(file_in, pos_in, len, false);
1848 if (ret)
1849 return ret;
1850
1851 ret = clone_verify_area(file_out, pos_out, len, true);
1852 if (ret)
1853 return ret;
1854
1855 if (pos_in + len > i_size_read(inode_in))
1856 return -EINVAL;
1857
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001858 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1859 file_out, pos_out, len);
1860 if (!ret) {
1861 fsnotify_access(file_in);
1862 fsnotify_modify(file_out);
1863 }
1864
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001865 return ret;
1866}
1867EXPORT_SYMBOL(vfs_clone_file_range);
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001868
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001869/*
1870 * Read a page's worth of file data into the page cache. Return the page
1871 * locked.
1872 */
1873static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1874{
1875 struct address_space *mapping;
1876 struct page *page;
1877 pgoff_t n;
1878
1879 n = offset >> PAGE_SHIFT;
1880 mapping = inode->i_mapping;
1881 page = read_mapping_page(mapping, n, NULL);
1882 if (IS_ERR(page))
1883 return page;
1884 if (!PageUptodate(page)) {
1885 put_page(page);
1886 return ERR_PTR(-EIO);
1887 }
1888 lock_page(page);
1889 return page;
1890}
1891
1892/*
1893 * Compare extents of two files to see if they are the same.
1894 * Caller must have locked both inodes to prevent write races.
1895 */
1896int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1897 struct inode *dest, loff_t destoff,
1898 loff_t len, bool *is_same)
1899{
1900 loff_t src_poff;
1901 loff_t dest_poff;
1902 void *src_addr;
1903 void *dest_addr;
1904 struct page *src_page;
1905 struct page *dest_page;
1906 loff_t cmp_len;
1907 bool same;
1908 int error;
1909
1910 error = -EINVAL;
1911 same = true;
1912 while (len) {
1913 src_poff = srcoff & (PAGE_SIZE - 1);
1914 dest_poff = destoff & (PAGE_SIZE - 1);
1915 cmp_len = min(PAGE_SIZE - src_poff,
1916 PAGE_SIZE - dest_poff);
1917 cmp_len = min(cmp_len, len);
1918 if (cmp_len <= 0)
1919 goto out_error;
1920
1921 src_page = vfs_dedupe_get_page(src, srcoff);
1922 if (IS_ERR(src_page)) {
1923 error = PTR_ERR(src_page);
1924 goto out_error;
1925 }
1926 dest_page = vfs_dedupe_get_page(dest, destoff);
1927 if (IS_ERR(dest_page)) {
1928 error = PTR_ERR(dest_page);
1929 unlock_page(src_page);
1930 put_page(src_page);
1931 goto out_error;
1932 }
1933 src_addr = kmap_atomic(src_page);
1934 dest_addr = kmap_atomic(dest_page);
1935
1936 flush_dcache_page(src_page);
1937 flush_dcache_page(dest_page);
1938
1939 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1940 same = false;
1941
1942 kunmap_atomic(dest_addr);
1943 kunmap_atomic(src_addr);
1944 unlock_page(dest_page);
1945 unlock_page(src_page);
1946 put_page(dest_page);
1947 put_page(src_page);
1948
1949 if (!same)
1950 break;
1951
1952 srcoff += cmp_len;
1953 destoff += cmp_len;
1954 len -= cmp_len;
1955 }
1956
1957 *is_same = same;
1958 return 0;
1959
1960out_error:
1961 return error;
1962}
1963EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
1964
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001965int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1966{
1967 struct file_dedupe_range_info *info;
1968 struct inode *src = file_inode(file);
1969 u64 off;
1970 u64 len;
1971 int i;
1972 int ret;
1973 bool is_admin = capable(CAP_SYS_ADMIN);
1974 u16 count = same->dest_count;
1975 struct file *dst_file;
1976 loff_t dst_off;
1977 ssize_t deduped;
1978
1979 if (!(file->f_mode & FMODE_READ))
1980 return -EINVAL;
1981
1982 if (same->reserved1 || same->reserved2)
1983 return -EINVAL;
1984
1985 off = same->src_offset;
1986 len = same->src_length;
1987
1988 ret = -EISDIR;
1989 if (S_ISDIR(src->i_mode))
1990 goto out;
1991
1992 ret = -EINVAL;
1993 if (!S_ISREG(src->i_mode))
1994 goto out;
1995
1996 ret = clone_verify_area(file, off, len, false);
1997 if (ret < 0)
1998 goto out;
1999 ret = 0;
2000
Darrick J. Wong22725ce2016-12-19 15:13:26 -08002001 if (off + len > i_size_read(src))
2002 return -EINVAL;
2003
Darrick J. Wong54dbc152015-12-19 00:55:59 -08002004 /* pre-format output fields to sane values */
2005 for (i = 0; i < count; i++) {
2006 same->info[i].bytes_deduped = 0ULL;
2007 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2008 }
2009
2010 for (i = 0, info = same->info; i < count; i++, info++) {
2011 struct inode *dst;
2012 struct fd dst_fd = fdget(info->dest_fd);
2013
2014 dst_file = dst_fd.file;
2015 if (!dst_file) {
2016 info->status = -EBADF;
2017 goto next_loop;
2018 }
2019 dst = file_inode(dst_file);
2020
2021 ret = mnt_want_write_file(dst_file);
2022 if (ret) {
2023 info->status = ret;
2024 goto next_loop;
2025 }
2026
2027 dst_off = info->dest_offset;
2028 ret = clone_verify_area(dst_file, dst_off, len, true);
2029 if (ret < 0) {
2030 info->status = ret;
2031 goto next_file;
2032 }
2033 ret = 0;
2034
2035 if (info->reserved) {
2036 info->status = -EINVAL;
2037 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2038 info->status = -EINVAL;
2039 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
2040 info->status = -EXDEV;
2041 } else if (S_ISDIR(dst->i_mode)) {
2042 info->status = -EISDIR;
2043 } else if (dst_file->f_op->dedupe_file_range == NULL) {
2044 info->status = -EINVAL;
2045 } else {
2046 deduped = dst_file->f_op->dedupe_file_range(file, off,
2047 len, dst_file,
2048 info->dest_offset);
2049 if (deduped == -EBADE)
2050 info->status = FILE_DEDUPE_RANGE_DIFFERS;
2051 else if (deduped < 0)
2052 info->status = deduped;
2053 else
2054 info->bytes_deduped += deduped;
2055 }
2056
2057next_file:
2058 mnt_drop_write_file(dst_file);
2059next_loop:
2060 fdput(dst_fd);
Darrick J. Wonge62e5602016-01-22 16:58:28 -08002061
2062 if (fatal_signal_pending(current))
2063 goto out;
Darrick J. Wong54dbc152015-12-19 00:55:59 -08002064 }
2065
2066out:
2067 return ret;
2068}
2069EXPORT_SYMBOL(vfs_dedupe_file_range);