blob: 1ea862bc7efd203532a025b78f955c94cdc016a4 [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 Viro06ae43f32013-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
Al Viro68d70d02013-06-19 15:26:04 +0400359int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct inode *inode;
362 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100363 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Al Viro496ad9a2013-01-23 17:07:38 -0500365 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800366 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100367 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500369 if (unlikely(pos < 0)) {
370 if (!unsigned_offsets(file))
371 return retval;
372 if (count >= -pos) /* both values are in 0..LLONG_MAX */
373 return -EOVERFLOW;
374 } else if (unlikely((loff_t) (pos + count) < 0)) {
375 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700376 return retval;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500379 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
Christoph Hellwigacc15572015-12-03 12:59:49 +0100380 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
381 read_write == READ ? F_RDLCK : F_WRLCK);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800382 if (retval < 0)
383 return retval;
384 }
Al Virobc613842016-03-31 21:48:20 -0400385 return security_file_permission(file,
James Morrisc43e2592008-01-12 22:05:48 +1100386 read_write == READ ? MAY_READ : MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Al Viro5d5d5682015-04-03 15:41:18 -0400389static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500390{
391 struct iovec iov = { .iov_base = buf, .iov_len = len };
392 struct kiocb kiocb;
393 struct iov_iter iter;
394 ssize_t ret;
395
396 init_sync_kiocb(&kiocb, filp);
397 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500398 iov_iter_init(&iter, READ, &iov, 1, len);
399
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100400 ret = call_read_iter(filp, &kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100401 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500402 *ppos = kiocb.ki_pos;
403 return ret;
404}
405
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200406ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
407 loff_t *pos)
408{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200409 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400410 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200411 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400412 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200413 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400414 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200415}
Al Viro3d04c8a2015-04-03 15:09:18 -0400416EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200417
Christoph Hellwigc41fbad2017-09-01 17:39:12 +0200418int kernel_read(struct file *file, loff_t offset, char *addr,
419 unsigned long count)
420{
421 mm_segment_t old_fs;
422 loff_t pos = offset;
423 int result;
424
425 old_fs = get_fs();
426 set_fs(get_ds());
427 /* The cast to a user pointer is valid due to the set_fs() */
428 result = vfs_read(file, (void __user *)addr, count, &pos);
429 set_fs(old_fs);
430 return result;
431}
432EXPORT_SYMBOL(kernel_read);
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
435{
436 ssize_t ret;
437
438 if (!(file->f_mode & FMODE_READ))
439 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500440 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -EINVAL;
442 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
443 return -EFAULT;
444
445 ret = rw_verify_area(READ, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400446 if (!ret) {
447 if (count > MAX_RW_COUNT)
448 count = MAX_RW_COUNT;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200449 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100450 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500451 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100452 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
James Morrisc43e2592008-01-12 22:05:48 +1100454 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
457 return ret;
458}
459
460EXPORT_SYMBOL(vfs_read);
461
Al Viro5d5d5682015-04-03 15:41:18 -0400462static 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 -0500463{
464 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
465 struct kiocb kiocb;
466 struct iov_iter iter;
467 ssize_t ret;
468
469 init_sync_kiocb(&kiocb, filp);
470 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500471 iov_iter_init(&iter, WRITE, &iov, 1, len);
472
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100473 ret = call_write_iter(filp, &kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100474 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400475 if (ret > 0)
476 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500477 return ret;
478}
479
Al Viro493c84c2015-04-03 15:06:43 -0400480ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
481 loff_t *pos)
482{
483 if (file->f_op->write)
484 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400485 else if (file->f_op->write_iter)
486 return new_sync_write(file, p, count, pos);
487 else
488 return -EINVAL;
489}
490EXPORT_SYMBOL(__vfs_write);
491
Al Viro06ae43f32013-03-20 13:19:30 -0400492ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
493{
494 mm_segment_t old_fs;
495 const char __user *p;
496 ssize_t ret;
497
Al Viro7f7f25e2014-02-11 17:49:24 -0500498 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000499 return -EINVAL;
500
Al Viro06ae43f32013-03-20 13:19:30 -0400501 old_fs = get_fs();
502 set_fs(get_ds());
503 p = (__force const char __user *)buf;
504 if (count > MAX_RW_COUNT)
505 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400506 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f32013-03-20 13:19:30 -0400507 set_fs(old_fs);
508 if (ret > 0) {
509 fsnotify_modify(file);
510 add_wchar(current, ret);
511 }
512 inc_syscw(current);
513 return ret;
514}
Al Viro2ec3a122014-08-19 11:48:09 -0400515EXPORT_SYMBOL(__kernel_write);
516
Christoph Hellwigac452ac2017-09-01 17:39:11 +0200517ssize_t kernel_write(struct file *file, const char *buf, size_t count,
518 loff_t pos)
519{
520 mm_segment_t old_fs;
521 ssize_t res;
522
523 old_fs = get_fs();
524 set_fs(get_ds());
525 /* The cast to a user pointer is valid due to the set_fs() */
526 res = vfs_write(file, (__force const char __user *)buf, count, &pos);
527 set_fs(old_fs);
528
529 return res;
530}
531EXPORT_SYMBOL(kernel_write);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
534{
535 ssize_t ret;
536
537 if (!(file->f_mode & FMODE_WRITE))
538 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500539 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return -EINVAL;
541 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
542 return -EFAULT;
543
544 ret = rw_verify_area(WRITE, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400545 if (!ret) {
546 if (count > MAX_RW_COUNT)
547 count = MAX_RW_COUNT;
Al Viro03d95eb2013-03-20 13:04:20 -0400548 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400549 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100550 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500551 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100552 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
James Morrisc43e2592008-01-12 22:05:48 +1100554 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400555 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
558 return ret;
559}
560
561EXPORT_SYMBOL(vfs_write);
562
563static inline loff_t file_pos_read(struct file *file)
564{
565 return file->f_pos;
566}
567
568static inline void file_pos_write(struct file *file, loff_t pos)
569{
570 file->f_pos = pos;
571}
572
Heiko Carstens3cdad422009-01-14 14:14:22 +0100573SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800575 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Al Viro2903ff02012-08-28 12:52:22 -0400578 if (f.file) {
579 loff_t pos = file_pos_read(f.file);
580 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400581 if (ret >= 0)
582 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800583 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return ret;
586}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Heiko Carstens3cdad422009-01-14 14:14:22 +0100588SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
589 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800591 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Al Viro2903ff02012-08-28 12:52:22 -0400594 if (f.file) {
595 loff_t pos = file_pos_read(f.file);
596 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400597 if (ret >= 0)
598 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800599 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601
602 return ret;
603}
604
Al Viro4a0fd5b2013-01-21 15:16:58 -0500605SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
606 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Al Viro2903ff02012-08-28 12:52:22 -0400608 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 if (pos < 0)
612 return -EINVAL;
613
Al Viro2903ff02012-08-28 12:52:22 -0400614 f = fdget(fd);
615 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400617 if (f.file->f_mode & FMODE_PREAD)
618 ret = vfs_read(f.file, buf, count, &pos);
619 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 return ret;
623}
624
Al Viro4a0fd5b2013-01-21 15:16:58 -0500625SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
626 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Al Viro2903ff02012-08-28 12:52:22 -0400628 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (pos < 0)
632 return -EINVAL;
633
Al Viro2903ff02012-08-28 12:52:22 -0400634 f = fdget(fd);
635 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400637 if (f.file->f_mode & FMODE_PWRITE)
638 ret = vfs_write(f.file, buf, count, &pos);
639 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
642 return ret;
643}
644
645/*
646 * Reduce an iovec's length in-place. Return the resulting number of segments
647 */
648unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
649{
650 unsigned long seg = 0;
651 size_t len = 0;
652
653 while (seg < nr_segs) {
654 seg++;
655 if (len + iov->iov_len >= to) {
656 iov->iov_len = to - len;
657 break;
658 }
659 len += iov->iov_len;
660 iov++;
661 }
662 return seg;
663}
Eric Sandeen19295522008-01-28 23:58:27 -0500664EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Al Viroac15ac02015-03-20 20:10:21 -0400666static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100667 loff_t *ppos, int type, int flags)
Al Viro293bc982014-02-11 18:37:41 -0500668{
669 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500670 ssize_t ret;
671
672 init_sync_kiocb(&kiocb, filp);
Goldwyn Rodriguesfdd2f5b2017-06-20 07:05:40 -0500673 ret = kiocb_set_rw_flags(&kiocb, flags);
674 if (ret)
675 return ret;
Al Viro293bc982014-02-11 18:37:41 -0500676 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500677
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100678 if (type == READ)
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100679 ret = call_read_iter(filp, &kiocb, iter);
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100680 else
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100681 ret = call_write_iter(filp, &kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100682 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500683 *ppos = kiocb.ki_pos;
684 return ret;
685}
686
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700687/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400688static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100689 loff_t *ppos, int type, int flags)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700690{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700691 ssize_t ret = 0;
692
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100693 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100694 return -EOPNOTSUPP;
695
Al Viroac15ac02015-03-20 20:10:21 -0400696 while (iov_iter_count(iter)) {
697 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700698 ssize_t nr;
699
Miklos Szeredi0f78d062017-02-20 16:51:23 +0100700 if (type == READ) {
701 nr = filp->f_op->read(filp, iovec.iov_base,
702 iovec.iov_len, ppos);
703 } else {
704 nr = filp->f_op->write(filp, iovec.iov_base,
705 iovec.iov_len, ppos);
706 }
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700707
708 if (nr < 0) {
709 if (!ret)
710 ret = nr;
711 break;
712 }
713 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400714 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700715 break;
Al Viroac15ac02015-03-20 20:10:21 -0400716 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700717 }
718
719 return ret;
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/* A write operation does a read from user space and vice versa */
723#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
724
Vegard Nossumffecee42016-10-08 11:18:07 +0200725/**
726 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
727 * into the kernel and check that it is valid.
728 *
729 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
730 * @uvector: Pointer to the userspace array.
731 * @nr_segs: Number of elements in userspace array.
732 * @fast_segs: Number of elements in @fast_pointer.
733 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
734 * @ret_pointer: (output parameter) Pointer to a variable that will point to
735 * either @fast_pointer, a newly allocated kernel array, or NULL,
736 * depending on which array was used.
737 *
738 * This function copies an array of &struct iovec of @nr_segs from
739 * userspace into the kernel and checks that each element is valid (e.g.
740 * it does not point to a kernel address or cause overflow by being too
741 * large, etc.).
742 *
743 * As an optimization, the caller may provide a pointer to a small
744 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
745 * (the size of this array, or 0 if unused, should be given in @fast_segs).
746 *
747 * @ret_pointer will always point to the array that was used, so the
748 * caller must take care not to call kfree() on it e.g. in case the
749 * @fast_pointer array was used and it was allocated on the stack.
750 *
751 * Return: The total number of bytes covered by the iovec array on success
752 * or a negative error code on error.
753 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700754ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
755 unsigned long nr_segs, unsigned long fast_segs,
756 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700757 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700758{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700759 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700760 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700761 struct iovec *iov = fast_pointer;
762
Linus Torvalds435f49a2010-10-29 10:36:49 -0700763 /*
764 * SuS says "The readv() function *may* fail if the iovcnt argument
765 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
766 * traditionally returned zero for zero segments, so...
767 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700768 if (nr_segs == 0) {
769 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700770 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700771 }
772
Linus Torvalds435f49a2010-10-29 10:36:49 -0700773 /*
774 * First get the "struct iovec" from user memory and
775 * verify all the pointers
776 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700777 if (nr_segs > UIO_MAXIOV) {
778 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700779 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700780 }
781 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700782 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700783 if (iov == NULL) {
784 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700785 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700786 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700787 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700788 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
789 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700790 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700791 }
792
Linus Torvalds435f49a2010-10-29 10:36:49 -0700793 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700794 * According to the Single Unix Specification we should return EINVAL
795 * if an element length is < 0 when cast to ssize_t or if the
796 * total length would overflow the ssize_t return value of the
797 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700798 *
799 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
800 * overflow case.
801 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700802 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700803 for (seg = 0; seg < nr_segs; seg++) {
804 void __user *buf = iov[seg].iov_base;
805 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700806
807 /* see if we we're about to use an invalid len or if
808 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700809 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700810 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700811 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700812 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700813 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700814 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700815 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700816 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700817 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700818 if (len > MAX_RW_COUNT - ret) {
819 len = MAX_RW_COUNT - ret;
820 iov[seg].iov_len = len;
821 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700822 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700823 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700824out:
825 *ret_pointer = iov;
826 return ret;
827}
828
Al Virof5029852017-04-08 18:18:48 -0400829#ifdef CONFIG_COMPAT
830ssize_t compat_rw_copy_check_uvector(int type,
831 const struct compat_iovec __user *uvector, unsigned long nr_segs,
832 unsigned long fast_segs, struct iovec *fast_pointer,
833 struct iovec **ret_pointer)
834{
835 compat_ssize_t tot_len;
836 struct iovec *iov = *ret_pointer = fast_pointer;
837 ssize_t ret = 0;
838 int seg;
839
840 /*
841 * SuS says "The readv() function *may* fail if the iovcnt argument
842 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
843 * traditionally returned zero for zero segments, so...
844 */
845 if (nr_segs == 0)
846 goto out;
847
848 ret = -EINVAL;
849 if (nr_segs > UIO_MAXIOV)
850 goto out;
851 if (nr_segs > fast_segs) {
852 ret = -ENOMEM;
853 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
854 if (iov == NULL)
855 goto out;
856 }
857 *ret_pointer = iov;
858
859 ret = -EFAULT;
860 if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
861 goto out;
862
863 /*
864 * Single unix specification:
865 * We should -EINVAL if an element length is not >= 0 and fitting an
866 * ssize_t.
867 *
868 * In Linux, the total length is limited to MAX_RW_COUNT, there is
869 * no overflow possibility.
870 */
871 tot_len = 0;
872 ret = -EINVAL;
873 for (seg = 0; seg < nr_segs; seg++) {
874 compat_uptr_t buf;
875 compat_ssize_t len;
876
877 if (__get_user(len, &uvector->iov_len) ||
878 __get_user(buf, &uvector->iov_base)) {
879 ret = -EFAULT;
880 goto out;
881 }
882 if (len < 0) /* size_t not fitting in compat_ssize_t .. */
883 goto out;
884 if (type >= 0 &&
885 !access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
886 ret = -EFAULT;
887 goto out;
888 }
889 if (len > MAX_RW_COUNT - tot_len)
890 len = MAX_RW_COUNT - tot_len;
891 tot_len += len;
892 iov->iov_base = compat_ptr(buf);
893 iov->iov_len = (compat_size_t) len;
894 uvector++;
895 iov++;
896 }
897 ret = tot_len;
898
899out:
900 return ret;
901}
902#endif
903
Christoph Hellwig19c73582017-05-27 11:16:48 +0300904static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
905 loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 size_t tot_len;
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100908 ssize_t ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300910 if (!(file->f_mode & FMODE_READ))
911 return -EBADF;
912 if (!(file->f_mode & FMODE_CAN_READ))
913 return -EINVAL;
914
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100915 tot_len = iov_iter_count(iter);
Al Viro0504c072015-03-21 19:40:11 -0400916 if (!tot_len)
917 goto out;
Christoph Hellwig19c73582017-05-27 11:16:48 +0300918 ret = rw_verify_area(READ, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800919 if (ret < 0)
Christoph Hellwig19c73582017-05-27 11:16:48 +0300920 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Christoph Hellwig19c73582017-05-27 11:16:48 +0300922 if (file->f_op->read_iter)
923 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700924 else
Christoph Hellwig19c73582017-05-27 11:16:48 +0300925 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926out:
Christoph Hellwig19c73582017-05-27 11:16:48 +0300927 if (ret >= 0)
928 fsnotify_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Christoph Hellwig18e97102017-05-27 11:16:51 +0300932ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
933 int flags)
934{
935 if (!file->f_op->read_iter)
936 return -EINVAL;
937 return do_iter_read(file, iter, ppos, flags);
938}
939EXPORT_SYMBOL(vfs_iter_read);
940
Christoph Hellwig19c73582017-05-27 11:16:48 +0300941static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
942 loff_t *pos, int flags)
943{
944 size_t tot_len;
945 ssize_t ret = 0;
946
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300947 if (!(file->f_mode & FMODE_WRITE))
948 return -EBADF;
949 if (!(file->f_mode & FMODE_CAN_WRITE))
950 return -EINVAL;
951
Christoph Hellwig19c73582017-05-27 11:16:48 +0300952 tot_len = iov_iter_count(iter);
953 if (!tot_len)
954 return 0;
955 ret = rw_verify_area(WRITE, file, pos, tot_len);
956 if (ret < 0)
957 return ret;
958
Christoph Hellwig19c73582017-05-27 11:16:48 +0300959 if (file->f_op->write_iter)
960 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
961 else
962 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
Christoph Hellwig19c73582017-05-27 11:16:48 +0300963 if (ret > 0)
964 fsnotify_modify(file);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700965 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
Christoph Hellwigabbb65892017-05-27 11:16:52 +0300968ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
969 int flags)
970{
971 if (!file->f_op->write_iter)
972 return -EINVAL;
973 return do_iter_write(file, iter, ppos, flags);
974}
975EXPORT_SYMBOL(vfs_iter_write);
976
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300977ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
978 unsigned long vlen, loff_t *pos, int flags)
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100979{
980 struct iovec iovstack[UIO_FASTIOV];
981 struct iovec *iov = iovstack;
982 struct iov_iter iter;
983 ssize_t ret;
984
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300985 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +0300986 if (ret >= 0) {
987 ret = do_iter_read(file, &iter, pos, flags);
988 kfree(iov);
989 }
Miklos Szeredi7687a7a2017-02-20 16:51:23 +0100990
991 return ret;
992}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993EXPORT_SYMBOL(vfs_readv);
994
995ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100996 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Christoph Hellwig251b42a2017-05-27 11:16:46 +0300998 struct iovec iovstack[UIO_FASTIOV];
999 struct iovec *iov = iovstack;
1000 struct iov_iter iter;
1001 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Christoph Hellwig251b42a2017-05-27 11:16:46 +03001003 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001004 if (ret >= 0) {
Al Viro62473a22017-07-06 09:15:47 -04001005 file_start_write(file);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001006 ret = do_iter_write(file, &iter, pos, flags);
Al Viro62473a22017-07-06 09:15:47 -04001007 file_end_write(file);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001008 kfree(iov);
1009 }
Christoph Hellwig251b42a2017-05-27 11:16:46 +03001010 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012EXPORT_SYMBOL(vfs_writev);
1013
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001014static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
1015 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001017 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Al Viro2903ff02012-08-28 12:52:22 -04001020 if (f.file) {
1021 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001022 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001023 if (ret >= 0)
1024 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -08001025 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001029 add_rchar(current, ret);
1030 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return ret;
1032}
1033
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001034static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
1035 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001037 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Al Viro2903ff02012-08-28 12:52:22 -04001040 if (f.file) {
1041 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001042 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001043 if (ret >= 0)
1044 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -08001045 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047
1048 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001049 add_wchar(current, ret);
1050 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return ret;
1052}
1053
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001054static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001055{
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001056#define HALF_LONG_BITS (BITS_PER_LONG / 2)
1057 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
1058}
1059
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001060static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
1061 unsigned long vlen, loff_t pos, int flags)
Linus Torvalds601cc11d2009-04-03 08:03:22 -07001062{
Al Viro2903ff02012-08-28 12:52:22 -04001063 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001064 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001065
1066 if (pos < 0)
1067 return -EINVAL;
1068
Al Viro2903ff02012-08-28 12:52:22 -04001069 f = fdget(fd);
1070 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001071 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -04001072 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001073 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001074 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001075 }
1076
1077 if (ret > 0)
1078 add_rchar(current, ret);
1079 inc_syscr(current);
1080 return ret;
1081}
1082
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001083static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
1084 unsigned long vlen, loff_t pos, int flags)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001085{
Al Viro2903ff02012-08-28 12:52:22 -04001086 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001087 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001088
1089 if (pos < 0)
1090 return -EINVAL;
1091
Al Viro2903ff02012-08-28 12:52:22 -04001092 f = fdget(fd);
1093 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001094 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -04001095 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001096 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001097 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001098 }
1099
1100 if (ret > 0)
1101 add_wchar(current, ret);
1102 inc_syscw(current);
1103 return ret;
1104}
1105
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001106SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1107 unsigned long, vlen)
1108{
1109 return do_readv(fd, vec, vlen, 0);
1110}
1111
1112SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1113 unsigned long, vlen)
1114{
1115 return do_writev(fd, vec, vlen, 0);
1116}
1117
1118SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1119 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1120{
1121 loff_t pos = pos_from_hilo(pos_h, pos_l);
1122
1123 return do_preadv(fd, vec, vlen, pos, 0);
1124}
1125
1126SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1127 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1128 int, flags)
1129{
1130 loff_t pos = pos_from_hilo(pos_h, pos_l);
1131
1132 if (pos == -1)
1133 return do_readv(fd, vec, vlen, flags);
1134
1135 return do_preadv(fd, vec, vlen, pos, flags);
1136}
1137
1138SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1139 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1140{
1141 loff_t pos = pos_from_hilo(pos_h, pos_l);
1142
1143 return do_pwritev(fd, vec, vlen, pos, 0);
1144}
1145
1146SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1147 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1148 int, flags)
1149{
1150 loff_t pos = pos_from_hilo(pos_h, pos_l);
1151
1152 if (pos == -1)
1153 return do_writev(fd, vec, vlen, flags);
1154
1155 return do_pwritev(fd, vec, vlen, pos, flags);
1156}
1157
Al Viro72ec3512013-03-20 10:42:10 -04001158#ifdef CONFIG_COMPAT
Al Viro72ec3512013-03-20 10:42:10 -04001159static size_t compat_readv(struct file *file,
1160 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001161 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001162{
1163 struct iovec iovstack[UIO_FASTIOV];
1164 struct iovec *iov = iovstack;
1165 struct iov_iter iter;
1166 ssize_t ret;
1167
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001168 ret = compat_import_iovec(READ, vec, vlen, UIO_FASTIOV, &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001169 if (ret >= 0) {
1170 ret = do_iter_read(file, &iter, pos, flags);
1171 kfree(iov);
1172 }
Al Viro72ec3512013-03-20 10:42:10 -04001173 if (ret > 0)
1174 add_rchar(current, ret);
1175 inc_syscr(current);
1176 return ret;
1177}
1178
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001179static size_t do_compat_readv(compat_ulong_t fd,
1180 const struct compat_iovec __user *vec,
1181 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001182{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001183 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001184 ssize_t ret;
1185 loff_t pos;
1186
1187 if (!f.file)
1188 return -EBADF;
1189 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001190 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001191 if (ret >= 0)
1192 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001193 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001194 return ret;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001195
Al Viro72ec3512013-03-20 10:42:10 -04001196}
1197
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001198COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1199 const struct compat_iovec __user *,vec,
1200 compat_ulong_t, vlen)
1201{
1202 return do_compat_readv(fd, vec, vlen, 0);
1203}
1204
1205static long do_compat_preadv64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001206 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001207 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001208{
1209 struct fd f;
1210 ssize_t ret;
1211
1212 if (pos < 0)
1213 return -EINVAL;
1214 f = fdget(fd);
1215 if (!f.file)
1216 return -EBADF;
1217 ret = -ESPIPE;
1218 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001219 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001220 fdput(f);
1221 return ret;
1222}
1223
Heiko Carstens378a10f2014-03-05 10:43:51 +01001224#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1225COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1226 const struct compat_iovec __user *,vec,
1227 unsigned long, vlen, loff_t, pos)
1228{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001229 return do_compat_preadv64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001230}
1231#endif
1232
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001233COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001234 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001235 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001236{
1237 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001238
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001239 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1240}
1241
H.J. Lu3ebfd812016-07-14 12:31:53 -07001242#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1243COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1244 const struct compat_iovec __user *,vec,
1245 unsigned long, vlen, loff_t, pos, int, flags)
1246{
1247 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1248}
1249#endif
1250
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001251COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1252 const struct compat_iovec __user *,vec,
1253 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1254 int, flags)
1255{
1256 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1257
1258 if (pos == -1)
1259 return do_compat_readv(fd, vec, vlen, flags);
1260
1261 return do_compat_preadv64(fd, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001262}
1263
1264static size_t compat_writev(struct file *file,
1265 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001266 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001267{
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001268 struct iovec iovstack[UIO_FASTIOV];
1269 struct iovec *iov = iovstack;
1270 struct iov_iter iter;
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001271 ssize_t ret;
Al Viro72ec3512013-03-20 10:42:10 -04001272
Christoph Hellwig26c87fb2017-05-27 11:16:47 +03001273 ret = compat_import_iovec(WRITE, vec, vlen, UIO_FASTIOV, &iov, &iter);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001274 if (ret >= 0) {
Al Viro62473a22017-07-06 09:15:47 -04001275 file_start_write(file);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001276 ret = do_iter_write(file, &iter, pos, flags);
Al Viro62473a22017-07-06 09:15:47 -04001277 file_end_write(file);
Christoph Hellwigedab5fe2017-05-27 11:16:49 +03001278 kfree(iov);
1279 }
Al Viro72ec3512013-03-20 10:42:10 -04001280 if (ret > 0)
1281 add_wchar(current, ret);
1282 inc_syscw(current);
1283 return ret;
1284}
1285
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001286static size_t do_compat_writev(compat_ulong_t fd,
1287 const struct compat_iovec __user* vec,
1288 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001289{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001290 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001291 ssize_t ret;
1292 loff_t pos;
1293
1294 if (!f.file)
1295 return -EBADF;
1296 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001297 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001298 if (ret >= 0)
1299 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001300 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001301 return ret;
1302}
1303
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001304COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1305 const struct compat_iovec __user *, vec,
1306 compat_ulong_t, vlen)
1307{
1308 return do_compat_writev(fd, vec, vlen, 0);
1309}
1310
1311static long do_compat_pwritev64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001312 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001313 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001314{
1315 struct fd f;
1316 ssize_t ret;
1317
1318 if (pos < 0)
1319 return -EINVAL;
1320 f = fdget(fd);
1321 if (!f.file)
1322 return -EBADF;
1323 ret = -ESPIPE;
1324 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001325 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001326 fdput(f);
1327 return ret;
1328}
1329
Heiko Carstens378a10f2014-03-05 10:43:51 +01001330#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1331COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1332 const struct compat_iovec __user *,vec,
1333 unsigned long, vlen, loff_t, pos)
1334{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001335 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001336}
1337#endif
1338
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001339COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001340 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001341 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001342{
1343 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001344
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001345 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001346}
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001347
H.J. Lu3ebfd812016-07-14 12:31:53 -07001348#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1349COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1350 const struct compat_iovec __user *,vec,
1351 unsigned long, vlen, loff_t, pos, int, flags)
1352{
1353 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1354}
1355#endif
1356
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001357COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1358 const struct compat_iovec __user *,vec,
1359 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1360{
1361 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1362
1363 if (pos == -1)
1364 return do_compat_writev(fd, vec, vlen, flags);
1365
1366 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1367}
1368
Al Viro72ec3512013-03-20 10:42:10 -04001369#endif
1370
Al Viro19f4fc32013-02-24 02:17:03 -05001371static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1372 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Al Viro2903ff02012-08-28 12:52:22 -04001374 struct fd in, out;
1375 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001377 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001379 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * Get input file, and verify that it is ok..
1383 */
1384 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001385 in = fdget(in_fd);
1386 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001388 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001391 if (!ppos) {
1392 pos = in.file->f_pos;
1393 } else {
1394 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001395 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001397 }
1398 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001399 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 goto fput_in;
Al Virobc613842016-03-31 21:48:20 -04001401 if (count > MAX_RW_COUNT)
1402 count = MAX_RW_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
1405 * Get output file, and verify that it is ok..
1406 */
1407 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001408 out = fdget(out_fd);
1409 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001411 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 goto fput_out;
1413 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001414 in_inode = file_inode(in.file);
1415 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001416 out_pos = out.file->f_pos;
1417 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001418 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 goto fput_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (!max)
1422 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (unlikely(pos + count > max)) {
1425 retval = -EOVERFLOW;
1426 if (pos >= max)
1427 goto fput_out;
1428 count = max - pos;
1429 }
1430
Jens Axboed96e6e72007-06-11 12:18:52 +02001431 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001432#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001433 /*
1434 * We need to debate whether we can enable this or not. The
1435 * man page documents EAGAIN return for the output at least,
1436 * and the application is arguably buggy if it doesn't expect
1437 * EAGAIN on a non-blocking file descriptor.
1438 */
Al Viro2903ff02012-08-28 12:52:22 -04001439 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001440 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001441#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001442 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001443 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001444 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001447 add_rchar(current, retval);
1448 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001449 fsnotify_access(in.file);
1450 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001451 out.file->f_pos = out_pos;
1452 if (ppos)
1453 *ppos = pos;
1454 else
1455 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001458 inc_syscr(current);
1459 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001460 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 retval = -EOVERFLOW;
1462
1463fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001464 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001466 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467out:
1468 return retval;
1469}
1470
Heiko Carstens002c8972009-01-14 14:14:18 +01001471SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 loff_t pos;
1474 off_t off;
1475 ssize_t ret;
1476
1477 if (offset) {
1478 if (unlikely(get_user(off, offset)))
1479 return -EFAULT;
1480 pos = off;
1481 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1482 if (unlikely(put_user(pos, offset)))
1483 return -EFAULT;
1484 return ret;
1485 }
1486
1487 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1488}
1489
Heiko Carstens002c8972009-01-14 14:14:18 +01001490SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 loff_t pos;
1493 ssize_t ret;
1494
1495 if (offset) {
1496 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1497 return -EFAULT;
1498 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1499 if (unlikely(put_user(pos, offset)))
1500 return -EFAULT;
1501 return ret;
1502 }
1503
1504 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1505}
Al Viro19f4fc32013-02-24 02:17:03 -05001506
1507#ifdef CONFIG_COMPAT
1508COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1509 compat_off_t __user *, offset, compat_size_t, count)
1510{
1511 loff_t pos;
1512 off_t off;
1513 ssize_t ret;
1514
1515 if (offset) {
1516 if (unlikely(get_user(off, offset)))
1517 return -EFAULT;
1518 pos = off;
1519 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1520 if (unlikely(put_user(pos, offset)))
1521 return -EFAULT;
1522 return ret;
1523 }
1524
1525 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1526}
1527
1528COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1529 compat_loff_t __user *, offset, compat_size_t, count)
1530{
1531 loff_t pos;
1532 ssize_t ret;
1533
1534 if (offset) {
1535 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1536 return -EFAULT;
1537 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1538 if (unlikely(put_user(pos, offset)))
1539 return -EFAULT;
1540 return ret;
1541 }
1542
1543 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1544}
1545#endif
Zach Brown29732932015-11-10 16:53:30 -05001546
1547/*
1548 * copy_file_range() differs from regular file read and write in that it
1549 * specifically allows return partial success. When it does so is up to
1550 * the copy_file_range method.
1551 */
1552ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1553 struct file *file_out, loff_t pos_out,
1554 size_t len, unsigned int flags)
1555{
1556 struct inode *inode_in = file_inode(file_in);
1557 struct inode *inode_out = file_inode(file_out);
1558 ssize_t ret;
1559
1560 if (flags != 0)
1561 return -EINVAL;
1562
Amir Goldstein11cbfb12017-01-31 10:34:56 +02001563 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1564 return -EISDIR;
1565 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1566 return -EINVAL;
1567
Zach Brown29732932015-11-10 16:53:30 -05001568 ret = rw_verify_area(READ, file_in, &pos_in, len);
Al Virobc613842016-03-31 21:48:20 -04001569 if (unlikely(ret))
1570 return ret;
1571
1572 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1573 if (unlikely(ret))
Zach Brown29732932015-11-10 16:53:30 -05001574 return ret;
1575
1576 if (!(file_in->f_mode & FMODE_READ) ||
1577 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001578 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001579 return -EBADF;
1580
1581 /* this could be relaxed once a method supports cross-fs copies */
1582 if (inode_in->i_sb != inode_out->i_sb)
1583 return -EXDEV;
1584
1585 if (len == 0)
1586 return 0;
1587
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001588 file_start_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001589
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001590 /*
1591 * Try cloning first, this is supported by more file systems, and
1592 * more efficient if both clone and copy are supported (e.g. NFS).
1593 */
1594 if (file_in->f_op->clone_file_range) {
1595 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1596 file_out, pos_out, len);
1597 if (ret == 0) {
1598 ret = len;
1599 goto done;
1600 }
1601 }
1602
1603 if (file_out->f_op->copy_file_range) {
Anna Schumakereac70052015-11-10 16:53:33 -05001604 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1605 pos_out, len, flags);
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001606 if (ret != -EOPNOTSUPP)
1607 goto done;
1608 }
Anna Schumakereac70052015-11-10 16:53:33 -05001609
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001610 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1611 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1612
1613done:
Zach Brown29732932015-11-10 16:53:30 -05001614 if (ret > 0) {
1615 fsnotify_access(file_in);
1616 add_rchar(current, ret);
1617 fsnotify_modify(file_out);
1618 add_wchar(current, ret);
1619 }
Christoph Hellwiga76b5b02016-12-09 16:17:19 -08001620
Zach Brown29732932015-11-10 16:53:30 -05001621 inc_syscr(current);
1622 inc_syscw(current);
1623
Amir Goldsteinbfe219d2017-01-31 10:34:57 +02001624 file_end_write(file_out);
Zach Brown29732932015-11-10 16:53:30 -05001625
1626 return ret;
1627}
1628EXPORT_SYMBOL(vfs_copy_file_range);
1629
1630SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1631 int, fd_out, loff_t __user *, off_out,
1632 size_t, len, unsigned int, flags)
1633{
1634 loff_t pos_in;
1635 loff_t pos_out;
1636 struct fd f_in;
1637 struct fd f_out;
1638 ssize_t ret = -EBADF;
1639
1640 f_in = fdget(fd_in);
1641 if (!f_in.file)
1642 goto out2;
1643
1644 f_out = fdget(fd_out);
1645 if (!f_out.file)
1646 goto out1;
1647
1648 ret = -EFAULT;
1649 if (off_in) {
1650 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1651 goto out;
1652 } else {
1653 pos_in = f_in.file->f_pos;
1654 }
1655
1656 if (off_out) {
1657 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1658 goto out;
1659 } else {
1660 pos_out = f_out.file->f_pos;
1661 }
1662
1663 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1664 flags);
1665 if (ret > 0) {
1666 pos_in += ret;
1667 pos_out += ret;
1668
1669 if (off_in) {
1670 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1671 ret = -EFAULT;
1672 } else {
1673 f_in.file->f_pos = pos_in;
1674 }
1675
1676 if (off_out) {
1677 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1678 ret = -EFAULT;
1679 } else {
1680 f_out.file->f_pos = pos_out;
1681 }
1682 }
1683
1684out:
1685 fdput(f_out);
1686out1:
1687 fdput(f_in);
1688out2:
1689 return ret;
1690}
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001691
1692static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1693{
1694 struct inode *inode = file_inode(file);
1695
1696 if (unlikely(pos < 0))
1697 return -EINVAL;
1698
1699 if (unlikely((loff_t) (pos + len) < 0))
1700 return -EINVAL;
1701
1702 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1703 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1704 int retval;
1705
1706 retval = locks_mandatory_area(inode, file, pos, end,
1707 write ? F_WRLCK : F_RDLCK);
1708 if (retval < 0)
1709 return retval;
1710 }
1711
1712 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1713}
1714
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001715/*
1716 * Check that the two inodes are eligible for cloning, the ranges make
1717 * sense, and then flush all dirty data. Caller must ensure that the
1718 * inodes have been locked against any other modifications.
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001719 *
1720 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1721 * the usual negative error code.
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001722 */
1723int vfs_clone_file_prep_inodes(struct inode *inode_in, loff_t pos_in,
1724 struct inode *inode_out, loff_t pos_out,
1725 u64 *len, bool is_dedupe)
1726{
1727 loff_t bs = inode_out->i_sb->s_blocksize;
1728 loff_t blen;
1729 loff_t isize;
1730 bool same_inode = (inode_in == inode_out);
1731 int ret;
1732
1733 /* Don't touch certain kinds of inodes */
1734 if (IS_IMMUTABLE(inode_out))
1735 return -EPERM;
1736
1737 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1738 return -ETXTBSY;
1739
1740 /* Don't reflink dirs, pipes, sockets... */
1741 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1742 return -EISDIR;
1743 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1744 return -EINVAL;
1745
1746 /* Are we going all the way to the end? */
1747 isize = i_size_read(inode_in);
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001748 if (isize == 0)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001749 return 0;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001750
1751 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1752 if (*len == 0) {
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001753 if (is_dedupe || pos_in == isize)
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001754 return 0;
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001755 if (pos_in > isize)
1756 return -EINVAL;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001757 *len = isize - pos_in;
1758 }
1759
1760 /* Ensure offsets don't wrap and the input is inside i_size */
1761 if (pos_in + *len < pos_in || pos_out + *len < pos_out ||
1762 pos_in + *len > isize)
1763 return -EINVAL;
1764
1765 /* Don't allow dedupe past EOF in the dest file */
1766 if (is_dedupe) {
1767 loff_t disize;
1768
1769 disize = i_size_read(inode_out);
1770 if (pos_out >= disize || pos_out + *len > disize)
1771 return -EINVAL;
1772 }
1773
1774 /* If we're linking to EOF, continue to the block boundary. */
1775 if (pos_in + *len == isize)
1776 blen = ALIGN(isize, bs) - pos_in;
1777 else
1778 blen = *len;
1779
1780 /* Only reflink if we're aligned to block boundaries */
1781 if (!IS_ALIGNED(pos_in, bs) || !IS_ALIGNED(pos_in + blen, bs) ||
1782 !IS_ALIGNED(pos_out, bs) || !IS_ALIGNED(pos_out + blen, bs))
1783 return -EINVAL;
1784
1785 /* Don't allow overlapped reflink within the same file */
1786 if (same_inode) {
1787 if (pos_out + blen > pos_in && pos_out < pos_in + blen)
1788 return -EINVAL;
1789 }
1790
1791 /* Wait for the completion of any pending IOs on both files */
1792 inode_dio_wait(inode_in);
1793 if (!same_inode)
1794 inode_dio_wait(inode_out);
1795
1796 ret = filemap_write_and_wait_range(inode_in->i_mapping,
1797 pos_in, pos_in + *len - 1);
1798 if (ret)
1799 return ret;
1800
1801 ret = filemap_write_and_wait_range(inode_out->i_mapping,
1802 pos_out, pos_out + *len - 1);
1803 if (ret)
1804 return ret;
1805
1806 /*
1807 * Check that the extents are the same.
1808 */
1809 if (is_dedupe) {
1810 bool is_same = false;
1811
1812 ret = vfs_dedupe_file_range_compare(inode_in, pos_in,
1813 inode_out, pos_out, *len, &is_same);
1814 if (ret)
1815 return ret;
1816 if (!is_same)
1817 return -EBADE;
1818 }
1819
Darrick J. Wong22725ce2016-12-19 15:13:26 -08001820 return 1;
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001821}
1822EXPORT_SYMBOL(vfs_clone_file_prep_inodes);
1823
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001824int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1825 struct file *file_out, loff_t pos_out, u64 len)
1826{
1827 struct inode *inode_in = file_inode(file_in);
1828 struct inode *inode_out = file_inode(file_out);
1829 int ret;
1830
Amir Goldsteinb335e9d2016-10-26 22:34:01 +03001831 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1832 return -EISDIR;
1833 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1834 return -EINVAL;
1835
Amir Goldstein913b86e92016-09-23 11:38:10 +03001836 /*
1837 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1838 * the same mount. Practically, they only need to be on the same file
1839 * system.
1840 */
1841 if (inode_in->i_sb != inode_out->i_sb)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001842 return -EXDEV;
1843
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001844 if (!(file_in->f_mode & FMODE_READ) ||
1845 !(file_out->f_mode & FMODE_WRITE) ||
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001846 (file_out->f_flags & O_APPEND))
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001847 return -EBADF;
1848
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001849 if (!file_in->f_op->clone_file_range)
1850 return -EOPNOTSUPP;
1851
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001852 ret = clone_verify_area(file_in, pos_in, len, false);
1853 if (ret)
1854 return ret;
1855
1856 ret = clone_verify_area(file_out, pos_out, len, true);
1857 if (ret)
1858 return ret;
1859
1860 if (pos_in + len > i_size_read(inode_in))
1861 return -EINVAL;
1862
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001863 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1864 file_out, pos_out, len);
1865 if (!ret) {
1866 fsnotify_access(file_in);
1867 fsnotify_modify(file_out);
1868 }
1869
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001870 return ret;
1871}
1872EXPORT_SYMBOL(vfs_clone_file_range);
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001873
Darrick J. Wong876bec6f2016-12-09 16:18:30 -08001874/*
1875 * Read a page's worth of file data into the page cache. Return the page
1876 * locked.
1877 */
1878static struct page *vfs_dedupe_get_page(struct inode *inode, loff_t offset)
1879{
1880 struct address_space *mapping;
1881 struct page *page;
1882 pgoff_t n;
1883
1884 n = offset >> PAGE_SHIFT;
1885 mapping = inode->i_mapping;
1886 page = read_mapping_page(mapping, n, NULL);
1887 if (IS_ERR(page))
1888 return page;
1889 if (!PageUptodate(page)) {
1890 put_page(page);
1891 return ERR_PTR(-EIO);
1892 }
1893 lock_page(page);
1894 return page;
1895}
1896
1897/*
1898 * Compare extents of two files to see if they are the same.
1899 * Caller must have locked both inodes to prevent write races.
1900 */
1901int vfs_dedupe_file_range_compare(struct inode *src, loff_t srcoff,
1902 struct inode *dest, loff_t destoff,
1903 loff_t len, bool *is_same)
1904{
1905 loff_t src_poff;
1906 loff_t dest_poff;
1907 void *src_addr;
1908 void *dest_addr;
1909 struct page *src_page;
1910 struct page *dest_page;
1911 loff_t cmp_len;
1912 bool same;
1913 int error;
1914
1915 error = -EINVAL;
1916 same = true;
1917 while (len) {
1918 src_poff = srcoff & (PAGE_SIZE - 1);
1919 dest_poff = destoff & (PAGE_SIZE - 1);
1920 cmp_len = min(PAGE_SIZE - src_poff,
1921 PAGE_SIZE - dest_poff);
1922 cmp_len = min(cmp_len, len);
1923 if (cmp_len <= 0)
1924 goto out_error;
1925
1926 src_page = vfs_dedupe_get_page(src, srcoff);
1927 if (IS_ERR(src_page)) {
1928 error = PTR_ERR(src_page);
1929 goto out_error;
1930 }
1931 dest_page = vfs_dedupe_get_page(dest, destoff);
1932 if (IS_ERR(dest_page)) {
1933 error = PTR_ERR(dest_page);
1934 unlock_page(src_page);
1935 put_page(src_page);
1936 goto out_error;
1937 }
1938 src_addr = kmap_atomic(src_page);
1939 dest_addr = kmap_atomic(dest_page);
1940
1941 flush_dcache_page(src_page);
1942 flush_dcache_page(dest_page);
1943
1944 if (memcmp(src_addr + src_poff, dest_addr + dest_poff, cmp_len))
1945 same = false;
1946
1947 kunmap_atomic(dest_addr);
1948 kunmap_atomic(src_addr);
1949 unlock_page(dest_page);
1950 unlock_page(src_page);
1951 put_page(dest_page);
1952 put_page(src_page);
1953
1954 if (!same)
1955 break;
1956
1957 srcoff += cmp_len;
1958 destoff += cmp_len;
1959 len -= cmp_len;
1960 }
1961
1962 *is_same = same;
1963 return 0;
1964
1965out_error:
1966 return error;
1967}
1968EXPORT_SYMBOL(vfs_dedupe_file_range_compare);
1969
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001970int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1971{
1972 struct file_dedupe_range_info *info;
1973 struct inode *src = file_inode(file);
1974 u64 off;
1975 u64 len;
1976 int i;
1977 int ret;
1978 bool is_admin = capable(CAP_SYS_ADMIN);
1979 u16 count = same->dest_count;
1980 struct file *dst_file;
1981 loff_t dst_off;
1982 ssize_t deduped;
1983
1984 if (!(file->f_mode & FMODE_READ))
1985 return -EINVAL;
1986
1987 if (same->reserved1 || same->reserved2)
1988 return -EINVAL;
1989
1990 off = same->src_offset;
1991 len = same->src_length;
1992
1993 ret = -EISDIR;
1994 if (S_ISDIR(src->i_mode))
1995 goto out;
1996
1997 ret = -EINVAL;
1998 if (!S_ISREG(src->i_mode))
1999 goto out;
2000
2001 ret = clone_verify_area(file, off, len, false);
2002 if (ret < 0)
2003 goto out;
2004 ret = 0;
2005
Darrick J. Wong22725ce2016-12-19 15:13:26 -08002006 if (off + len > i_size_read(src))
2007 return -EINVAL;
2008
Darrick J. Wong54dbc152015-12-19 00:55:59 -08002009 /* pre-format output fields to sane values */
2010 for (i = 0; i < count; i++) {
2011 same->info[i].bytes_deduped = 0ULL;
2012 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
2013 }
2014
2015 for (i = 0, info = same->info; i < count; i++, info++) {
2016 struct inode *dst;
2017 struct fd dst_fd = fdget(info->dest_fd);
2018
2019 dst_file = dst_fd.file;
2020 if (!dst_file) {
2021 info->status = -EBADF;
2022 goto next_loop;
2023 }
2024 dst = file_inode(dst_file);
2025
2026 ret = mnt_want_write_file(dst_file);
2027 if (ret) {
2028 info->status = ret;
2029 goto next_loop;
2030 }
2031
2032 dst_off = info->dest_offset;
2033 ret = clone_verify_area(dst_file, dst_off, len, true);
2034 if (ret < 0) {
2035 info->status = ret;
2036 goto next_file;
2037 }
2038 ret = 0;
2039
2040 if (info->reserved) {
2041 info->status = -EINVAL;
2042 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2043 info->status = -EINVAL;
2044 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
2045 info->status = -EXDEV;
2046 } else if (S_ISDIR(dst->i_mode)) {
2047 info->status = -EISDIR;
2048 } else if (dst_file->f_op->dedupe_file_range == NULL) {
2049 info->status = -EINVAL;
2050 } else {
2051 deduped = dst_file->f_op->dedupe_file_range(file, off,
2052 len, dst_file,
2053 info->dest_offset);
2054 if (deduped == -EBADE)
2055 info->status = FILE_DEDUPE_RANGE_DIFFERS;
2056 else if (deduped < 0)
2057 info->status = deduped;
2058 else
2059 info->bytes_deduped += deduped;
2060 }
2061
2062next_file:
2063 mnt_drop_write_file(dst_file);
2064next_loop:
2065 fdput(dst_fd);
Darrick J. Wonge62e5602016-01-22 16:58:28 -08002066
2067 if (fatal_signal_pending(current))
2068 goto out;
Darrick J. Wong54dbc152015-12-19 00:55:59 -08002069 }
2070
2071out:
2072 return ret;
2073}
2074EXPORT_SYMBOL(vfs_dedupe_file_range);