blob: 6ab67b860159b237c0f46a52a10f4e0e697cb146 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/read_write.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <linux/slab.h>
8#include <linux/stat.h>
9#include <linux/fcntl.h>
10#include <linux/file.h>
11#include <linux/uio.h>
Robert Love0eeca282005-07-12 17:06:03 -040012#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/security.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/syscalls.h>
Linus Torvaldse28cc712006-01-04 16:20:40 -080016#include <linux/pagemap.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020017#include <linux/splice.h>
Al Viro561c6732013-02-24 10:52:26 -050018#include <linux/compat.h>
Zach Brown29732932015-11-10 16:53:30 -050019#include <linux/mount.h>
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +010020#include <linux/fs.h>
Al Viro06ae43f2013-03-20 13:19:30 -040021#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/uaccess.h>
24#include <asm/unistd.h>
25
Al Viroc0bd14af2013-05-04 15:00:54 -040026typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
Al Viro293bc982014-02-11 18:37:41 -050027typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
Al Viroc0bd14af2013-05-04 15:00:54 -040028
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080029const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040031 .read_iter = generic_file_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020033 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
36EXPORT_SYMBOL(generic_ro_fops);
37
Al Virocccb5a12010-12-17 07:44:05 -050038static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070039{
Al Virocccb5a12010-12-17 07:44:05 -050040 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070041}
42
Jie Liu46a1c2c2013-06-25 12:02:13 +080043/**
44 * vfs_setpos - update the file offset for lseek
45 * @file: file structure in question
46 * @offset: file offset to seek to
47 * @maxsize: maximum file size
48 *
49 * This is a low-level filesystem helper for updating the file offset to
50 * the value specified by @offset if the given offset is valid and it is
51 * not equal to the current file offset.
52 *
53 * Return the specified offset on success and -EINVAL on invalid offset.
54 */
55loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070056{
57 if (offset < 0 && !unsigned_offsets(file))
58 return -EINVAL;
59 if (offset > maxsize)
60 return -EINVAL;
61
62 if (offset != file->f_pos) {
63 file->f_pos = offset;
64 file->f_version = 0;
65 }
66 return offset;
67}
Jie Liu46a1c2c2013-06-25 12:02:13 +080068EXPORT_SYMBOL(vfs_setpos);
Andi Kleenef3d0fd2011-09-15 16:06:48 -070069
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020070/**
Andi Kleen57604952011-09-15 16:06:50 -070071 * generic_file_llseek_size - generic llseek implementation for regular files
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020072 * @file: file structure to seek on
73 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -080074 * @whence: type of seek
Eric Sandeene8b96eb2012-04-30 13:11:29 -050075 * @size: max size of this file in file system
76 * @eof: offset used for SEEK_END position
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020077 *
Andi Kleen57604952011-09-15 16:06:50 -070078 * This is a variant of generic_file_llseek that allows passing in a custom
Eric Sandeene8b96eb2012-04-30 13:11:29 -050079 * maximum file size and a custom EOF position, for e.g. hashed directories
Andi Kleenef3d0fd2011-09-15 16:06:48 -070080 *
81 * Synchronization:
Andi Kleen57604952011-09-15 16:06:50 -070082 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
Andi Kleenef3d0fd2011-09-15 16:06:48 -070083 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
84 * read/writes behave like SEEK_SET against seeks.
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020085 */
Andi Kleen9465efc2008-06-27 11:05:24 +020086loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -080087generic_file_llseek_size(struct file *file, loff_t offset, int whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -050088 loff_t maxsize, loff_t eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Andrew Morton965c8e52012-12-17 15:59:39 -080090 switch (whence) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020091 case SEEK_END:
Eric Sandeene8b96eb2012-04-30 13:11:29 -050092 offset += eof;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020093 break;
94 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080095 /*
96 * Here we special-case the lseek(fd, 0, SEEK_CUR)
97 * position-querying operation. Avoid rewriting the "same"
98 * f_pos value back to the file because a concurrent read(),
99 * write() or lseek() might have altered it
100 */
101 if (offset == 0)
102 return file->f_pos;
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700103 /*
104 * f_lock protects against read/modify/write race with other
105 * SEEK_CURs. Note that parallel writes and reads behave
106 * like SEEK_SET.
107 */
108 spin_lock(&file->f_lock);
Jie Liu46a1c2c2013-06-25 12:02:13 +0800109 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
Andi Kleenef3d0fd2011-09-15 16:06:48 -0700110 spin_unlock(&file->f_lock);
111 return offset;
Josef Bacik982d8162011-07-18 13:21:35 -0400112 case SEEK_DATA:
113 /*
114 * In the generic case the entire file is data, so as long as
115 * offset isn't at the end of the file then the offset is data.
116 */
Andreas Gruenbacherf3e2e7f2017-09-25 12:23:03 +0200117 if ((unsigned long long)offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400118 return -ENXIO;
119 break;
120 case SEEK_HOLE:
121 /*
122 * There is a virtual hole at the end of the file, so as long as
123 * offset isn't i_size or larger, return i_size.
124 */
Andreas Gruenbacherf3e2e7f2017-09-25 12:23:03 +0200125 if ((unsigned long long)offset >= eof)
Josef Bacik982d8162011-07-18 13:21:35 -0400126 return -ENXIO;
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500127 offset = eof;
Josef Bacik982d8162011-07-18 13:21:35 -0400128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200130
Jie Liu46a1c2c2013-06-25 12:02:13 +0800131 return vfs_setpos(file, offset, maxsize);
Andi Kleen57604952011-09-15 16:06:50 -0700132}
133EXPORT_SYMBOL(generic_file_llseek_size);
134
135/**
136 * generic_file_llseek - generic llseek implementation for regular files
137 * @file: file structure to seek on
138 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800139 * @whence: type of seek
Andi Kleen57604952011-09-15 16:06:50 -0700140 *
141 * This is a generic implemenation of ->llseek useable for all normal local
142 * filesystems. It just updates the file offset to the value specified by
Ming Lei546ae2d2013-04-29 15:06:07 -0700143 * @offset and @whence.
Andi Kleen57604952011-09-15 16:06:50 -0700144 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800145loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
Andi Kleen57604952011-09-15 16:06:50 -0700146{
147 struct inode *inode = file->f_mapping->host;
148
Andrew Morton965c8e52012-12-17 15:59:39 -0800149 return generic_file_llseek_size(file, offset, whence,
Eric Sandeene8b96eb2012-04-30 13:11:29 -0500150 inode->i_sb->s_maxbytes,
151 i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
Andi Kleen9465efc2008-06-27 11:05:24 +0200153EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
jan Blunckae6afc32010-05-26 14:44:48 -0700155/**
Al Viro1bf9d142013-06-16 20:27:42 +0400156 * fixed_size_llseek - llseek implementation for fixed-sized devices
157 * @file: file structure to seek on
158 * @offset: file offset to seek to
159 * @whence: type of seek
160 * @size: size of the file
161 *
162 */
163loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
164{
165 switch (whence) {
166 case SEEK_SET: case SEEK_CUR: case SEEK_END:
167 return generic_file_llseek_size(file, offset, whence,
168 size, size);
169 default:
170 return -EINVAL;
171 }
172}
173EXPORT_SYMBOL(fixed_size_llseek);
174
175/**
Al Virob25472f2015-12-05 22:04:48 -0500176 * no_seek_end_llseek - llseek implementation for fixed-sized devices
177 * @file: file structure to seek on
178 * @offset: file offset to seek to
179 * @whence: type of seek
180 *
181 */
182loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
183{
184 switch (whence) {
185 case SEEK_SET: case SEEK_CUR:
186 return generic_file_llseek_size(file, offset, whence,
Wouter van Kesteren2feb55f2016-02-16 22:20:59 +0100187 OFFSET_MAX, 0);
Al Virob25472f2015-12-05 22:04:48 -0500188 default:
189 return -EINVAL;
190 }
191}
192EXPORT_SYMBOL(no_seek_end_llseek);
193
194/**
195 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
196 * @file: file structure to seek on
197 * @offset: file offset to seek to
198 * @whence: type of seek
199 * @size: maximal offset allowed
200 *
201 */
202loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
203{
204 switch (whence) {
205 case SEEK_SET: case SEEK_CUR:
206 return generic_file_llseek_size(file, offset, whence,
207 size, 0);
208 default:
209 return -EINVAL;
210 }
211}
212EXPORT_SYMBOL(no_seek_end_llseek_size);
213
214/**
jan Blunckae6afc32010-05-26 14:44:48 -0700215 * noop_llseek - No Operation Performed llseek implementation
216 * @file: file structure to seek on
217 * @offset: file offset to seek to
Andrew Morton965c8e52012-12-17 15:59:39 -0800218 * @whence: type of seek
jan Blunckae6afc32010-05-26 14:44:48 -0700219 *
220 * This is an implementation of ->llseek useable for the rare special case when
221 * userspace expects the seek to succeed but the (device) file is actually not
222 * able to perform the seek. In this case you use noop_llseek() instead of
223 * falling back to the default implementation of ->llseek.
224 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800225loff_t noop_llseek(struct file *file, loff_t offset, int whence)
jan Blunckae6afc32010-05-26 14:44:48 -0700226{
227 return file->f_pos;
228}
229EXPORT_SYMBOL(noop_llseek);
230
Andrew Morton965c8e52012-12-17 15:59:39 -0800231loff_t no_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 return -ESPIPE;
234}
235EXPORT_SYMBOL(no_llseek);
236
Andrew Morton965c8e52012-12-17 15:59:39 -0800237loff_t default_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Al Viro496ad9a2013-01-23 17:07:38 -0500239 struct inode *inode = file_inode(file);
David Sterba16abef02008-04-22 15:09:22 +0200240 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Al Viro59551022016-01-22 15:40:57 -0500242 inode_lock(inode);
Andrew Morton965c8e52012-12-17 15:59:39 -0800243 switch (whence) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700244 case SEEK_END:
Josef Bacik982d8162011-07-18 13:21:35 -0400245 offset += i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700247 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800248 if (offset == 0) {
249 retval = file->f_pos;
250 goto out;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 offset += file->f_pos;
Josef Bacik982d8162011-07-18 13:21:35 -0400253 break;
254 case SEEK_DATA:
255 /*
256 * In the generic case the entire file is data, so as
257 * long as offset isn't at the end of the file then the
258 * offset is data.
259 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300260 if (offset >= inode->i_size) {
261 retval = -ENXIO;
262 goto out;
263 }
Josef Bacik982d8162011-07-18 13:21:35 -0400264 break;
265 case SEEK_HOLE:
266 /*
267 * There is a virtual hole at the end of the file, so
268 * as long as offset isn't i_size or larger, return
269 * i_size.
270 */
Dan Carpenterbacb2d82011-07-26 17:25:20 +0300271 if (offset >= inode->i_size) {
272 retval = -ENXIO;
273 goto out;
274 }
Josef Bacik982d8162011-07-18 13:21:35 -0400275 offset = inode->i_size;
276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500279 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (offset != file->f_pos) {
281 file->f_pos = offset;
282 file->f_version = 0;
283 }
284 retval = offset;
285 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800286out:
Al Viro59551022016-01-22 15:40:57 -0500287 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return retval;
289}
290EXPORT_SYMBOL(default_llseek);
291
Andrew Morton965c8e52012-12-17 15:59:39 -0800292loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 loff_t (*fn)(struct file *, loff_t, int);
295
296 fn = no_llseek;
297 if (file->f_mode & FMODE_LSEEK) {
Al Viro72c2d532013-09-22 16:27:52 -0400298 if (file->f_op->llseek)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 fn = file->f_op->llseek;
300 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800301 return fn(file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303EXPORT_SYMBOL(vfs_llseek);
304
Andrew Morton965c8e52012-12-17 15:59:39 -0800305SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 off_t retval;
Linus Torvalds9c225f22014-03-03 09:36:58 -0800308 struct fd f = fdget_pos(fd);
Al Viro2903ff02012-08-28 12:52:22 -0400309 if (!f.file)
310 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800313 if (whence <= SEEK_MAX) {
314 loff_t res = vfs_llseek(f.file, offset, whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 retval = res;
316 if (res != (loff_t)retval)
317 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
318 }
Linus Torvalds9c225f22014-03-03 09:36:58 -0800319 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return retval;
321}
322
Al Viro561c6732013-02-24 10:52:26 -0500323#ifdef CONFIG_COMPAT
324COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
325{
326 return sys_lseek(fd, offset, whence);
327}
328#endif
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100331SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
332 unsigned long, offset_low, loff_t __user *, result,
Andrew Morton965c8e52012-12-17 15:59:39 -0800333 unsigned int, whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 int retval;
Eric Biggersd7a15f82014-03-16 14:24:08 -0500336 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Viro2903ff02012-08-28 12:52:22 -0400339 if (!f.file)
340 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800343 if (whence > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 goto out_putf;
345
Al Viro2903ff02012-08-28 12:52:22 -0400346 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
Andrew Morton965c8e52012-12-17 15:59:39 -0800347 whence);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 retval = (int)offset;
350 if (offset >= 0) {
351 retval = -EFAULT;
352 if (!copy_to_user(result, &offset, sizeof(offset)))
353 retval = 0;
354 }
355out_putf:
Eric Biggersd7a15f82014-03-16 14:24:08 -0500356 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return retval;
358}
359#endif
360
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100361ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos)
362{
363 struct kiocb kiocb;
364 ssize_t ret;
365
366 if (!file->f_op->read_iter)
367 return -EINVAL;
368
369 init_sync_kiocb(&kiocb, file);
370 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100371
372 iter->type |= READ;
373 ret = file->f_op->read_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100374 BUG_ON(ret == -EIOCBQUEUED);
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100375 if (ret > 0)
376 *ppos = kiocb.ki_pos;
377 return ret;
378}
379EXPORT_SYMBOL(vfs_iter_read);
380
381ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos)
382{
383 struct kiocb kiocb;
384 ssize_t ret;
385
386 if (!file->f_op->write_iter)
387 return -EINVAL;
388
389 init_sync_kiocb(&kiocb, file);
390 kiocb.ki_pos = *ppos;
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100391
392 iter->type |= WRITE;
393 ret = file->f_op->write_iter(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100394 BUG_ON(ret == -EIOCBQUEUED);
Jimmy Durand Wesolowskic5cc9332019-01-31 15:19:39 +0100395 if (ret > 0) {
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100396 *ppos = kiocb.ki_pos;
Jimmy Durand Wesolowskic5cc9332019-01-31 15:19:39 +0100397 fsnotify_modify(file);
398 }
Christoph Hellwigdbe4e192015-01-25 21:11:59 +0100399 return ret;
400}
401EXPORT_SYMBOL(vfs_iter_write);
402
Al Viro68d70d02013-06-19 15:26:04 +0400403int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct inode *inode;
406 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100407 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Al Viro496ad9a2013-01-23 17:07:38 -0500409 inode = file_inode(file);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800410 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100411 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500413 if (unlikely(pos < 0)) {
414 if (!unsigned_offsets(file))
415 return retval;
416 if (count >= -pos) /* both values are in 0..LLONG_MAX */
417 return -EOVERFLOW;
418 } else if (unlikely((loff_t) (pos + count) < 0)) {
419 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700420 return retval;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500423 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
Christoph Hellwigacc15572015-12-03 12:59:49 +0100424 retval = locks_mandatory_area(inode, file, pos, pos + count - 1,
425 read_write == READ ? F_RDLCK : F_WRLCK);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800426 if (retval < 0)
427 return retval;
428 }
Al Virobc613842016-03-31 21:48:20 -0400429 return security_file_permission(file,
James Morrisc43e2592008-01-12 22:05:48 +1100430 read_write == READ ? MAY_READ : MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Al Viro5d5d5682015-04-03 15:41:18 -0400433static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Al Viro293bc982014-02-11 18:37:41 -0500434{
435 struct iovec iov = { .iov_base = buf, .iov_len = len };
436 struct kiocb kiocb;
437 struct iov_iter iter;
438 ssize_t ret;
439
440 init_sync_kiocb(&kiocb, filp);
441 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500442 iov_iter_init(&iter, READ, &iov, 1, len);
443
444 ret = filp->f_op->read_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100445 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500446 *ppos = kiocb.ki_pos;
447 return ret;
448}
449
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200450ssize_t __vfs_read(struct file *file, char __user *buf, size_t count,
451 loff_t *pos)
452{
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200453 if (file->f_op->read)
Al Viro3d04c8a2015-04-03 15:09:18 -0400454 return file->f_op->read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200455 else if (file->f_op->read_iter)
Al Viro3d04c8a2015-04-03 15:09:18 -0400456 return new_sync_read(file, buf, count, pos);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200457 else
Al Viro3d04c8a2015-04-03 15:09:18 -0400458 return -EINVAL;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200459}
Al Viro3d04c8a2015-04-03 15:09:18 -0400460EXPORT_SYMBOL(__vfs_read);
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
463{
464 ssize_t ret;
465
466 if (!(file->f_mode & FMODE_READ))
467 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500468 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -EINVAL;
470 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
471 return -EFAULT;
472
473 ret = rw_verify_area(READ, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400474 if (!ret) {
475 if (count > MAX_RW_COUNT)
476 count = MAX_RW_COUNT;
Dmitry Kasatkin6fb50322014-11-05 17:01:17 +0200477 ret = __vfs_read(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100478 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500479 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100480 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
James Morrisc43e2592008-01-12 22:05:48 +1100482 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 return ret;
486}
487
488EXPORT_SYMBOL(vfs_read);
489
Al Viro5d5d5682015-04-03 15:41:18 -0400490static 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 -0500491{
492 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
493 struct kiocb kiocb;
494 struct iov_iter iter;
495 ssize_t ret;
496
497 init_sync_kiocb(&kiocb, filp);
498 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500499 iov_iter_init(&iter, WRITE, &iov, 1, len);
500
501 ret = filp->f_op->write_iter(&kiocb, &iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100502 BUG_ON(ret == -EIOCBQUEUED);
Al Virof765b132015-04-06 20:50:38 -0400503 if (ret > 0)
504 *ppos = kiocb.ki_pos;
Al Viro293bc982014-02-11 18:37:41 -0500505 return ret;
506}
507
Al Viro493c84c2015-04-03 15:06:43 -0400508ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
509 loff_t *pos)
510{
511 if (file->f_op->write)
512 return file->f_op->write(file, p, count, pos);
Al Viro493c84c2015-04-03 15:06:43 -0400513 else if (file->f_op->write_iter)
514 return new_sync_write(file, p, count, pos);
515 else
516 return -EINVAL;
517}
518EXPORT_SYMBOL(__vfs_write);
519
Al Viro06ae43f2013-03-20 13:19:30 -0400520ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
521{
522 mm_segment_t old_fs;
523 const char __user *p;
524 ssize_t ret;
525
Al Viro7f7f25e2014-02-11 17:49:24 -0500526 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro3e84f482013-03-27 15:20:30 +0000527 return -EINVAL;
528
Al Viro06ae43f2013-03-20 13:19:30 -0400529 old_fs = get_fs();
530 set_fs(get_ds());
531 p = (__force const char __user *)buf;
532 if (count > MAX_RW_COUNT)
533 count = MAX_RW_COUNT;
Al Viro493c84c2015-04-03 15:06:43 -0400534 ret = __vfs_write(file, p, count, pos);
Al Viro06ae43f2013-03-20 13:19:30 -0400535 set_fs(old_fs);
536 if (ret > 0) {
537 fsnotify_modify(file);
538 add_wchar(current, ret);
539 }
540 inc_syscw(current);
541 return ret;
542}
543
Al Viro2ec3a122014-08-19 11:48:09 -0400544EXPORT_SYMBOL(__kernel_write);
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
547{
548 ssize_t ret;
549
550 if (!(file->f_mode & FMODE_WRITE))
551 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500552 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return -EINVAL;
554 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
555 return -EFAULT;
556
557 ret = rw_verify_area(WRITE, file, pos, count);
Al Virobc613842016-03-31 21:48:20 -0400558 if (!ret) {
559 if (count > MAX_RW_COUNT)
560 count = MAX_RW_COUNT;
Al Viro03d95eb2013-03-20 13:04:20 -0400561 file_start_write(file);
Al Viro493c84c2015-04-03 15:06:43 -0400562 ret = __vfs_write(file, buf, count, pos);
James Morrisc43e2592008-01-12 22:05:48 +1100563 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500564 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100565 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
James Morrisc43e2592008-01-12 22:05:48 +1100567 inc_syscw(current);
Al Viro03d95eb2013-03-20 13:04:20 -0400568 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 return ret;
572}
573
574EXPORT_SYMBOL(vfs_write);
575
576static inline loff_t file_pos_read(struct file *file)
577{
578 return file->f_pos;
579}
580
581static inline void file_pos_write(struct file *file, loff_t pos)
582{
583 file->f_pos = pos;
584}
585
Heiko Carstens3cdad422009-01-14 14:14:22 +0100586SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800588 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Al Viro2903ff02012-08-28 12:52:22 -0400591 if (f.file) {
592 loff_t pos = file_pos_read(f.file);
593 ret = vfs_read(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400594 if (ret >= 0)
595 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800596 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return ret;
599}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Heiko Carstens3cdad422009-01-14 14:14:22 +0100601SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
602 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800604 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Al Viro2903ff02012-08-28 12:52:22 -0400607 if (f.file) {
608 loff_t pos = file_pos_read(f.file);
609 ret = vfs_write(f.file, buf, count, &pos);
Al Viro5faf1532013-06-15 05:49:36 +0400610 if (ret >= 0)
611 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800612 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
615 return ret;
616}
617
Al Viro4a0fd5b2013-01-21 15:16:58 -0500618SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
619 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Al Viro2903ff02012-08-28 12:52:22 -0400621 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 if (pos < 0)
625 return -EINVAL;
626
Al Viro2903ff02012-08-28 12:52:22 -0400627 f = fdget(fd);
628 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400630 if (f.file->f_mode & FMODE_PREAD)
631 ret = vfs_read(f.file, buf, count, &pos);
632 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
635 return ret;
636}
637
Al Viro4a0fd5b2013-01-21 15:16:58 -0500638SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
639 size_t, count, loff_t, pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Al Viro2903ff02012-08-28 12:52:22 -0400641 struct fd f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 if (pos < 0)
645 return -EINVAL;
646
Al Viro2903ff02012-08-28 12:52:22 -0400647 f = fdget(fd);
648 if (f.file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400650 if (f.file->f_mode & FMODE_PWRITE)
651 ret = vfs_write(f.file, buf, count, &pos);
652 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
655 return ret;
656}
657
658/*
659 * Reduce an iovec's length in-place. Return the resulting number of segments
660 */
661unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
662{
663 unsigned long seg = 0;
664 size_t len = 0;
665
666 while (seg < nr_segs) {
667 seg++;
668 if (len + iov->iov_len >= to) {
669 iov->iov_len = to - len;
670 break;
671 }
672 len += iov->iov_len;
673 iov++;
674 }
675 return seg;
676}
Eric Sandeen19295522008-01-28 23:58:27 -0500677EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Al Viroac15ac02015-03-20 20:10:21 -0400679static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100680 loff_t *ppos, iter_fn_t fn, int flags)
Al Viro293bc982014-02-11 18:37:41 -0500681{
682 struct kiocb kiocb;
Al Viro293bc982014-02-11 18:37:41 -0500683 ssize_t ret;
684
Christoph Hellwige864f392016-04-07 08:52:03 -0700685 if (flags & ~(RWF_HIPRI | RWF_DSYNC | RWF_SYNC))
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100686 return -EOPNOTSUPP;
687
Al Viro293bc982014-02-11 18:37:41 -0500688 init_sync_kiocb(&kiocb, filp);
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100689 if (flags & RWF_HIPRI)
690 kiocb.ki_flags |= IOCB_HIPRI;
Christoph Hellwige864f392016-04-07 08:52:03 -0700691 if (flags & RWF_DSYNC)
692 kiocb.ki_flags |= IOCB_DSYNC;
693 if (flags & RWF_SYNC)
694 kiocb.ki_flags |= (IOCB_DSYNC | IOCB_SYNC);
Al Viro293bc982014-02-11 18:37:41 -0500695 kiocb.ki_pos = *ppos;
Al Viro293bc982014-02-11 18:37:41 -0500696
Al Viroac15ac02015-03-20 20:10:21 -0400697 ret = fn(&kiocb, iter);
Christoph Hellwig599bd192015-02-11 19:59:44 +0100698 BUG_ON(ret == -EIOCBQUEUED);
Al Viro293bc982014-02-11 18:37:41 -0500699 *ppos = kiocb.ki_pos;
700 return ret;
701}
702
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700703/* Do it by hand, with file-ops */
Al Viroac15ac02015-03-20 20:10:21 -0400704static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100705 loff_t *ppos, io_fn_t fn, int flags)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700706{
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700707 ssize_t ret = 0;
708
Christoph Hellwig97be7eb2016-03-03 16:04:01 +0100709 if (flags & ~RWF_HIPRI)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100710 return -EOPNOTSUPP;
711
Al Viroac15ac02015-03-20 20:10:21 -0400712 while (iov_iter_count(iter)) {
713 struct iovec iovec = iov_iter_iovec(iter);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700714 ssize_t nr;
715
Al Viroac15ac02015-03-20 20:10:21 -0400716 nr = fn(filp, iovec.iov_base, iovec.iov_len, ppos);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700717
718 if (nr < 0) {
719 if (!ret)
720 ret = nr;
721 break;
722 }
723 ret += nr;
Al Viroac15ac02015-03-20 20:10:21 -0400724 if (nr != iovec.iov_len)
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700725 break;
Al Viroac15ac02015-03-20 20:10:21 -0400726 iov_iter_advance(iter, nr);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700727 }
728
729 return ret;
730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732/* A write operation does a read from user space and vice versa */
733#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
734
Vegard Nossumffecee42016-10-08 11:18:07 +0200735/**
736 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
737 * into the kernel and check that it is valid.
738 *
739 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
740 * @uvector: Pointer to the userspace array.
741 * @nr_segs: Number of elements in userspace array.
742 * @fast_segs: Number of elements in @fast_pointer.
743 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
744 * @ret_pointer: (output parameter) Pointer to a variable that will point to
745 * either @fast_pointer, a newly allocated kernel array, or NULL,
746 * depending on which array was used.
747 *
748 * This function copies an array of &struct iovec of @nr_segs from
749 * userspace into the kernel and checks that each element is valid (e.g.
750 * it does not point to a kernel address or cause overflow by being too
751 * large, etc.).
752 *
753 * As an optimization, the caller may provide a pointer to a small
754 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
755 * (the size of this array, or 0 if unused, should be given in @fast_segs).
756 *
757 * @ret_pointer will always point to the array that was used, so the
758 * caller must take care not to call kfree() on it e.g. in case the
759 * @fast_pointer array was used and it was allocated on the stack.
760 *
761 * Return: The total number of bytes covered by the iovec array on success
762 * or a negative error code on error.
763 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700764ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
765 unsigned long nr_segs, unsigned long fast_segs,
766 struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700767 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700768{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700769 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700770 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700771 struct iovec *iov = fast_pointer;
772
Linus Torvalds435f49a2010-10-29 10:36:49 -0700773 /*
774 * SuS says "The readv() function *may* fail if the iovcnt argument
775 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
776 * traditionally returned zero for zero segments, so...
777 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700778 if (nr_segs == 0) {
779 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700780 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700781 }
782
Linus Torvalds435f49a2010-10-29 10:36:49 -0700783 /*
784 * First get the "struct iovec" from user memory and
785 * verify all the pointers
786 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700787 if (nr_segs > UIO_MAXIOV) {
788 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700789 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700790 }
791 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700792 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700793 if (iov == NULL) {
794 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700795 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700796 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700797 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700798 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
799 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700800 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700801 }
802
Linus Torvalds435f49a2010-10-29 10:36:49 -0700803 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700804 * According to the Single Unix Specification we should return EINVAL
805 * if an element length is < 0 when cast to ssize_t or if the
806 * total length would overflow the ssize_t return value of the
807 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700808 *
809 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
810 * overflow case.
811 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700812 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700813 for (seg = 0; seg < nr_segs; seg++) {
814 void __user *buf = iov[seg].iov_base;
815 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700816
817 /* see if we we're about to use an invalid len or if
818 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700819 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700820 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700821 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700822 }
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700823 if (type >= 0
Christopher Yeohfcf63402011-10-31 17:06:39 -0700824 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700825 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700826 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700827 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700828 if (len > MAX_RW_COUNT - ret) {
829 len = MAX_RW_COUNT - ret;
830 iov[seg].iov_len = len;
831 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700832 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700833 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700834out:
835 *ret_pointer = iov;
836 return ret;
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static ssize_t do_readv_writev(int type, struct file *file,
840 const struct iovec __user * uvector,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100841 unsigned long nr_segs, loff_t *pos,
842 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 size_t tot_len;
845 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700846 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -0400847 struct iov_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -0500850 iter_fn_t iter_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Al Viro0504c072015-03-21 19:40:11 -0400852 ret = import_iovec(type, uvector, nr_segs,
853 ARRAY_SIZE(iovstack), &iov, &iter);
854 if (ret < 0)
855 return ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700856
Al Viro0504c072015-03-21 19:40:11 -0400857 tot_len = iov_iter_count(&iter);
858 if (!tot_len)
859 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800861 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto out;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (type == READ) {
865 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -0500866 iter_fn = file->f_op->read_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 } else {
868 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -0500869 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -0400870 file_start_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Al Viro293bc982014-02-11 18:37:41 -0500873 if (iter_fn)
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100874 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700875 else
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100876 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Al Viro03d95eb2013-03-20 13:04:20 -0400878 if (type != READ)
879 file_end_write(file);
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881out:
Al Viro0504c072015-03-21 19:40:11 -0400882 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400883 if ((ret + (type == READ)) > 0) {
884 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500885 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400886 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500887 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100893 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 if (!(file->f_mode & FMODE_READ))
896 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500897 if (!(file->f_mode & FMODE_CAN_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EINVAL;
899
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100900 return do_readv_writev(READ, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903EXPORT_SYMBOL(vfs_readv);
904
905ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100906 unsigned long vlen, loff_t *pos, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 if (!(file->f_mode & FMODE_WRITE))
909 return -EBADF;
Al Viro7f7f25e2014-02-11 17:49:24 -0500910 if (!(file->f_mode & FMODE_CAN_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -EINVAL;
912
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100913 return do_readv_writev(WRITE, file, vec, vlen, pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
915
916EXPORT_SYMBOL(vfs_writev);
917
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100918static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
919 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800921 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Al Viro2903ff02012-08-28 12:52:22 -0400924 if (f.file) {
925 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100926 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400927 if (ret >= 0)
928 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800929 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800933 add_rchar(current, ret);
934 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return ret;
936}
937
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100938static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
939 unsigned long vlen, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Linus Torvalds9c225f22014-03-03 09:36:58 -0800941 struct fd f = fdget_pos(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 ssize_t ret = -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Al Viro2903ff02012-08-28 12:52:22 -0400944 if (f.file) {
945 loff_t pos = file_pos_read(f.file);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100946 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +0400947 if (ret >= 0)
948 file_pos_write(f.file, pos);
Linus Torvalds9c225f22014-03-03 09:36:58 -0800949 fdput_pos(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800953 add_wchar(current, ret);
954 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return ret;
956}
957
Linus Torvalds601cc112009-04-03 08:03:22 -0700958static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700959{
Linus Torvalds601cc112009-04-03 08:03:22 -0700960#define HALF_LONG_BITS (BITS_PER_LONG / 2)
961 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
962}
963
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100964static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
965 unsigned long vlen, loff_t pos, int flags)
Linus Torvalds601cc112009-04-03 08:03:22 -0700966{
Al Viro2903ff02012-08-28 12:52:22 -0400967 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700968 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700969
970 if (pos < 0)
971 return -EINVAL;
972
Al Viro2903ff02012-08-28 12:52:22 -0400973 f = fdget(fd);
974 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700975 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400976 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100977 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400978 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700979 }
980
981 if (ret > 0)
982 add_rchar(current, ret);
983 inc_syscr(current);
984 return ret;
985}
986
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100987static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
988 unsigned long vlen, loff_t pos, int flags)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700989{
Al Viro2903ff02012-08-28 12:52:22 -0400990 struct fd f;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700991 ssize_t ret = -EBADF;
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700992
993 if (pos < 0)
994 return -EINVAL;
995
Al Viro2903ff02012-08-28 12:52:22 -0400996 f = fdget(fd);
997 if (f.file) {
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700998 ret = -ESPIPE;
Al Viro2903ff02012-08-28 12:52:22 -0400999 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001000 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
Al Viro2903ff02012-08-28 12:52:22 -04001001 fdput(f);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -07001002 }
1003
1004 if (ret > 0)
1005 add_wchar(current, ret);
1006 inc_syscw(current);
1007 return ret;
1008}
1009
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001010SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1011 unsigned long, vlen)
1012{
1013 return do_readv(fd, vec, vlen, 0);
1014}
1015
1016SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1017 unsigned long, vlen)
1018{
1019 return do_writev(fd, vec, vlen, 0);
1020}
1021
1022SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1023 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1024{
1025 loff_t pos = pos_from_hilo(pos_h, pos_l);
1026
1027 return do_preadv(fd, vec, vlen, pos, 0);
1028}
1029
1030SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1031 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1032 int, flags)
1033{
1034 loff_t pos = pos_from_hilo(pos_h, pos_l);
1035
1036 if (pos == -1)
1037 return do_readv(fd, vec, vlen, flags);
1038
1039 return do_preadv(fd, vec, vlen, pos, flags);
1040}
1041
1042SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1043 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1044{
1045 loff_t pos = pos_from_hilo(pos_h, pos_l);
1046
1047 return do_pwritev(fd, vec, vlen, pos, 0);
1048}
1049
1050SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1051 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
1052 int, flags)
1053{
1054 loff_t pos = pos_from_hilo(pos_h, pos_l);
1055
1056 if (pos == -1)
1057 return do_writev(fd, vec, vlen, flags);
1058
1059 return do_pwritev(fd, vec, vlen, pos, flags);
1060}
1061
Al Viro72ec3512013-03-20 10:42:10 -04001062#ifdef CONFIG_COMPAT
1063
1064static ssize_t compat_do_readv_writev(int type, struct file *file,
1065 const struct compat_iovec __user *uvector,
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001066 unsigned long nr_segs, loff_t *pos,
1067 int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001068{
1069 compat_ssize_t tot_len;
1070 struct iovec iovstack[UIO_FASTIOV];
1071 struct iovec *iov = iovstack;
Al Viroac15ac02015-03-20 20:10:21 -04001072 struct iov_iter iter;
Al Viro72ec3512013-03-20 10:42:10 -04001073 ssize_t ret;
1074 io_fn_t fn;
Al Viro293bc982014-02-11 18:37:41 -05001075 iter_fn_t iter_fn;
Al Viro72ec3512013-03-20 10:42:10 -04001076
Al Viro0504c072015-03-21 19:40:11 -04001077 ret = compat_import_iovec(type, uvector, nr_segs,
1078 UIO_FASTIOV, &iov, &iter);
1079 if (ret < 0)
1080 return ret;
Al Viro72ec3512013-03-20 10:42:10 -04001081
Al Viro0504c072015-03-21 19:40:11 -04001082 tot_len = iov_iter_count(&iter);
1083 if (!tot_len)
1084 goto out;
Al Viro72ec3512013-03-20 10:42:10 -04001085 ret = rw_verify_area(type, file, pos, tot_len);
1086 if (ret < 0)
1087 goto out;
1088
Al Viro72ec3512013-03-20 10:42:10 -04001089 if (type == READ) {
1090 fn = file->f_op->read;
Al Viro293bc982014-02-11 18:37:41 -05001091 iter_fn = file->f_op->read_iter;
Al Viro72ec3512013-03-20 10:42:10 -04001092 } else {
1093 fn = (io_fn_t)file->f_op->write;
Al Viro293bc982014-02-11 18:37:41 -05001094 iter_fn = file->f_op->write_iter;
Al Viro03d95eb2013-03-20 13:04:20 -04001095 file_start_write(file);
Al Viro72ec3512013-03-20 10:42:10 -04001096 }
1097
Al Viro293bc982014-02-11 18:37:41 -05001098 if (iter_fn)
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001099 ret = do_iter_readv_writev(file, &iter, pos, iter_fn, flags);
Al Viro03d95eb2013-03-20 13:04:20 -04001100 else
Christoph Hellwig793b80e2016-03-03 16:03:58 +01001101 ret = do_loop_readv_writev(file, &iter, pos, fn, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001102
Al Viro03d95eb2013-03-20 13:04:20 -04001103 if (type != READ)
1104 file_end_write(file);
1105
Al Viro72ec3512013-03-20 10:42:10 -04001106out:
Al Viro0504c072015-03-21 19:40:11 -04001107 kfree(iov);
Al Viro72ec3512013-03-20 10:42:10 -04001108 if ((ret + (type == READ)) > 0) {
1109 if (type == READ)
1110 fsnotify_access(file);
1111 else
1112 fsnotify_modify(file);
1113 }
1114 return ret;
1115}
1116
1117static size_t compat_readv(struct file *file,
1118 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001119 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001120{
1121 ssize_t ret = -EBADF;
1122
1123 if (!(file->f_mode & FMODE_READ))
1124 goto out;
1125
1126 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001127 if (!(file->f_mode & FMODE_CAN_READ))
Al Viro72ec3512013-03-20 10:42:10 -04001128 goto out;
1129
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001130 ret = compat_do_readv_writev(READ, file, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001131
1132out:
1133 if (ret > 0)
1134 add_rchar(current, ret);
1135 inc_syscr(current);
1136 return ret;
1137}
1138
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001139static size_t do_compat_readv(compat_ulong_t fd,
1140 const struct compat_iovec __user *vec,
1141 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001142{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001143 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001144 ssize_t ret;
1145 loff_t pos;
1146
1147 if (!f.file)
1148 return -EBADF;
1149 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001150 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001151 if (ret >= 0)
1152 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001153 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001154 return ret;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001155
Al Viro72ec3512013-03-20 10:42:10 -04001156}
1157
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001158COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
1159 const struct compat_iovec __user *,vec,
1160 compat_ulong_t, vlen)
1161{
1162 return do_compat_readv(fd, vec, vlen, 0);
1163}
1164
1165static long do_compat_preadv64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001166 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001167 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001168{
1169 struct fd f;
1170 ssize_t ret;
1171
1172 if (pos < 0)
1173 return -EINVAL;
1174 f = fdget(fd);
1175 if (!f.file)
1176 return -EBADF;
1177 ret = -ESPIPE;
1178 if (f.file->f_mode & FMODE_PREAD)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001179 ret = compat_readv(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001180 fdput(f);
1181 return ret;
1182}
1183
Heiko Carstens378a10f2014-03-05 10:43:51 +01001184#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1185COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1186 const struct compat_iovec __user *,vec,
1187 unsigned long, vlen, loff_t, pos)
1188{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001189 return do_compat_preadv64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001190}
1191#endif
1192
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001193COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001194 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001195 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001196{
1197 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001198
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001199 return do_compat_preadv64(fd, vec, vlen, pos, 0);
1200}
1201
H.J. Lu3ebfd812016-07-14 12:31:53 -07001202#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1203COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
1204 const struct compat_iovec __user *,vec,
1205 unsigned long, vlen, loff_t, pos, int, flags)
1206{
Aurelien Jarno24c6f9f2018-12-06 20:05:34 +01001207 if (pos == -1)
1208 return do_compat_readv(fd, vec, vlen, flags);
1209
H.J. Lu3ebfd812016-07-14 12:31:53 -07001210 return do_compat_preadv64(fd, vec, vlen, pos, flags);
1211}
1212#endif
1213
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001214COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
1215 const struct compat_iovec __user *,vec,
1216 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
1217 int, flags)
1218{
1219 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1220
1221 if (pos == -1)
1222 return do_compat_readv(fd, vec, vlen, flags);
1223
1224 return do_compat_preadv64(fd, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001225}
1226
1227static size_t compat_writev(struct file *file,
1228 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001229 unsigned long vlen, loff_t *pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001230{
1231 ssize_t ret = -EBADF;
1232
1233 if (!(file->f_mode & FMODE_WRITE))
1234 goto out;
1235
1236 ret = -EINVAL;
Al Viro7f7f25e2014-02-11 17:49:24 -05001237 if (!(file->f_mode & FMODE_CAN_WRITE))
Al Viro72ec3512013-03-20 10:42:10 -04001238 goto out;
1239
Christoph Hellwig222aa342017-06-16 11:08:24 +02001240 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001241
1242out:
1243 if (ret > 0)
1244 add_wchar(current, ret);
1245 inc_syscw(current);
1246 return ret;
1247}
1248
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001249static size_t do_compat_writev(compat_ulong_t fd,
1250 const struct compat_iovec __user* vec,
1251 compat_ulong_t vlen, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001252{
Linus Torvalds9c225f22014-03-03 09:36:58 -08001253 struct fd f = fdget_pos(fd);
Al Viro72ec3512013-03-20 10:42:10 -04001254 ssize_t ret;
1255 loff_t pos;
1256
1257 if (!f.file)
1258 return -EBADF;
1259 pos = f.file->f_pos;
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001260 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro5faf1532013-06-15 05:49:36 +04001261 if (ret >= 0)
1262 f.file->f_pos = pos;
Linus Torvalds9c225f22014-03-03 09:36:58 -08001263 fdput_pos(f);
Al Viro72ec3512013-03-20 10:42:10 -04001264 return ret;
1265}
1266
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001267COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1268 const struct compat_iovec __user *, vec,
1269 compat_ulong_t, vlen)
1270{
1271 return do_compat_writev(fd, vec, vlen, 0);
1272}
1273
1274static long do_compat_pwritev64(unsigned long fd,
Heiko Carstens378a10f2014-03-05 10:43:51 +01001275 const struct compat_iovec __user *vec,
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001276 unsigned long vlen, loff_t pos, int flags)
Al Viro72ec3512013-03-20 10:42:10 -04001277{
1278 struct fd f;
1279 ssize_t ret;
1280
1281 if (pos < 0)
1282 return -EINVAL;
1283 f = fdget(fd);
1284 if (!f.file)
1285 return -EBADF;
1286 ret = -ESPIPE;
1287 if (f.file->f_mode & FMODE_PWRITE)
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001288 ret = compat_writev(f.file, vec, vlen, &pos, flags);
Al Viro72ec3512013-03-20 10:42:10 -04001289 fdput(f);
1290 return ret;
1291}
1292
Heiko Carstens378a10f2014-03-05 10:43:51 +01001293#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1294COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1295 const struct compat_iovec __user *,vec,
1296 unsigned long, vlen, loff_t, pos)
1297{
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001298 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Heiko Carstens378a10f2014-03-05 10:43:51 +01001299}
1300#endif
1301
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001302COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
Al Viro72ec3512013-03-20 10:42:10 -04001303 const struct compat_iovec __user *,vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -08001304 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
Al Viro72ec3512013-03-20 10:42:10 -04001305{
1306 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
Heiko Carstens378a10f2014-03-05 10:43:51 +01001307
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001308 return do_compat_pwritev64(fd, vec, vlen, pos, 0);
Al Viro72ec3512013-03-20 10:42:10 -04001309}
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001310
H.J. Lu3ebfd812016-07-14 12:31:53 -07001311#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1312COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
1313 const struct compat_iovec __user *,vec,
1314 unsigned long, vlen, loff_t, pos, int, flags)
1315{
Aurelien Jarno24c6f9f2018-12-06 20:05:34 +01001316 if (pos == -1)
1317 return do_compat_writev(fd, vec, vlen, flags);
1318
H.J. Lu3ebfd812016-07-14 12:31:53 -07001319 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1320}
1321#endif
1322
Milosz Tanskif17d8b32016-03-03 16:03:59 +01001323COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
1324 const struct compat_iovec __user *,vec,
1325 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, int, flags)
1326{
1327 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1328
1329 if (pos == -1)
1330 return do_compat_writev(fd, vec, vlen, flags);
1331
1332 return do_compat_pwritev64(fd, vec, vlen, pos, flags);
1333}
1334
Al Viro72ec3512013-03-20 10:42:10 -04001335#endif
1336
Al Viro19f4fc32013-02-24 02:17:03 -05001337static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1338 size_t count, loff_t max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Al Viro2903ff02012-08-28 12:52:22 -04001340 struct fd in, out;
1341 struct inode *in_inode, *out_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 loff_t pos;
Al Viro7995bd22013-06-20 18:58:36 +04001343 loff_t out_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 ssize_t retval;
Al Viro2903ff02012-08-28 12:52:22 -04001345 int fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /*
1348 * Get input file, and verify that it is ok..
1349 */
1350 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001351 in = fdget(in_fd);
1352 if (!in.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 goto out;
Al Viro2903ff02012-08-28 12:52:22 -04001354 if (!(in.file->f_mode & FMODE_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 retval = -ESPIPE;
Al Viro7995bd22013-06-20 18:58:36 +04001357 if (!ppos) {
1358 pos = in.file->f_pos;
1359 } else {
1360 pos = *ppos;
Al Viro2903ff02012-08-28 12:52:22 -04001361 if (!(in.file->f_mode & FMODE_PREAD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto fput_in;
Al Viro7995bd22013-06-20 18:58:36 +04001363 }
1364 retval = rw_verify_area(READ, in.file, &pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001365 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 goto fput_in;
Al Virobc613842016-03-31 21:48:20 -04001367 if (count > MAX_RW_COUNT)
1368 count = MAX_RW_COUNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /*
1371 * Get output file, and verify that it is ok..
1372 */
1373 retval = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -04001374 out = fdget(out_fd);
1375 if (!out.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto fput_in;
Al Viro2903ff02012-08-28 12:52:22 -04001377 if (!(out.file->f_mode & FMODE_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 goto fput_out;
1379 retval = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -05001380 in_inode = file_inode(in.file);
1381 out_inode = file_inode(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001382 out_pos = out.file->f_pos;
1383 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -08001384 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 goto fput_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (!max)
1388 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (unlikely(pos + count > max)) {
1391 retval = -EOVERFLOW;
1392 if (pos >= max)
1393 goto fput_out;
1394 count = max - pos;
1395 }
1396
Jens Axboed96e6e72007-06-11 12:18:52 +02001397 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001398#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +02001399 /*
1400 * We need to debate whether we can enable this or not. The
1401 * man page documents EAGAIN return for the output at least,
1402 * and the application is arguably buggy if it doesn't expect
1403 * EAGAIN on a non-blocking file descriptor.
1404 */
Al Viro2903ff02012-08-28 12:52:22 -04001405 if (in.file->f_flags & O_NONBLOCK)
Jens Axboed96e6e72007-06-11 12:18:52 +02001406 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +02001407#endif
Al Viro50cd2c52013-05-23 20:10:34 -04001408 file_start_write(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001409 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
Al Viro50cd2c52013-05-23 20:10:34 -04001410 file_end_write(out.file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001413 add_rchar(current, retval);
1414 add_wchar(current, retval);
Scott Wolchoka68c2f12012-12-20 15:05:52 -08001415 fsnotify_access(in.file);
1416 fsnotify_modify(out.file);
Al Viro7995bd22013-06-20 18:58:36 +04001417 out.file->f_pos = out_pos;
1418 if (ppos)
1419 *ppos = pos;
1420 else
1421 in.file->f_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Alexey Dobriyan4b98d112007-02-10 01:46:45 -08001424 inc_syscr(current);
1425 inc_syscw(current);
Al Viro7995bd22013-06-20 18:58:36 +04001426 if (pos > max)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 retval = -EOVERFLOW;
1428
1429fput_out:
Al Viro2903ff02012-08-28 12:52:22 -04001430 fdput(out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431fput_in:
Al Viro2903ff02012-08-28 12:52:22 -04001432 fdput(in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433out:
1434 return retval;
1435}
1436
Heiko Carstens002c8972009-01-14 14:14:18 +01001437SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
1439 loff_t pos;
1440 off_t off;
1441 ssize_t ret;
1442
1443 if (offset) {
1444 if (unlikely(get_user(off, offset)))
1445 return -EFAULT;
1446 pos = off;
1447 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1448 if (unlikely(put_user(pos, offset)))
1449 return -EFAULT;
1450 return ret;
1451 }
1452
1453 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1454}
1455
Heiko Carstens002c8972009-01-14 14:14:18 +01001456SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 loff_t pos;
1459 ssize_t ret;
1460
1461 if (offset) {
1462 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1463 return -EFAULT;
1464 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1465 if (unlikely(put_user(pos, offset)))
1466 return -EFAULT;
1467 return ret;
1468 }
1469
1470 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1471}
Al Viro19f4fc32013-02-24 02:17:03 -05001472
1473#ifdef CONFIG_COMPAT
1474COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1475 compat_off_t __user *, offset, compat_size_t, count)
1476{
1477 loff_t pos;
1478 off_t off;
1479 ssize_t ret;
1480
1481 if (offset) {
1482 if (unlikely(get_user(off, offset)))
1483 return -EFAULT;
1484 pos = off;
1485 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1486 if (unlikely(put_user(pos, offset)))
1487 return -EFAULT;
1488 return ret;
1489 }
1490
1491 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1492}
1493
1494COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1495 compat_loff_t __user *, offset, compat_size_t, count)
1496{
1497 loff_t pos;
1498 ssize_t ret;
1499
1500 if (offset) {
1501 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1502 return -EFAULT;
1503 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1504 if (unlikely(put_user(pos, offset)))
1505 return -EFAULT;
1506 return ret;
1507 }
1508
1509 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1510}
1511#endif
Zach Brown29732932015-11-10 16:53:30 -05001512
1513/*
1514 * copy_file_range() differs from regular file read and write in that it
1515 * specifically allows return partial success. When it does so is up to
1516 * the copy_file_range method.
1517 */
1518ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1519 struct file *file_out, loff_t pos_out,
1520 size_t len, unsigned int flags)
1521{
1522 struct inode *inode_in = file_inode(file_in);
1523 struct inode *inode_out = file_inode(file_out);
1524 ssize_t ret;
1525
1526 if (flags != 0)
1527 return -EINVAL;
1528
Amir Goldstein27db1f02017-01-31 10:34:56 +02001529 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1530 return -EISDIR;
1531 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
1532 return -EINVAL;
1533
Zach Brown29732932015-11-10 16:53:30 -05001534 ret = rw_verify_area(READ, file_in, &pos_in, len);
Al Virobc613842016-03-31 21:48:20 -04001535 if (unlikely(ret))
1536 return ret;
1537
1538 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1539 if (unlikely(ret))
Zach Brown29732932015-11-10 16:53:30 -05001540 return ret;
1541
1542 if (!(file_in->f_mode & FMODE_READ) ||
1543 !(file_out->f_mode & FMODE_WRITE) ||
Anna Schumakereac70052015-11-10 16:53:33 -05001544 (file_out->f_flags & O_APPEND))
Zach Brown29732932015-11-10 16:53:30 -05001545 return -EBADF;
1546
1547 /* this could be relaxed once a method supports cross-fs copies */
1548 if (inode_in->i_sb != inode_out->i_sb)
1549 return -EXDEV;
1550
1551 if (len == 0)
1552 return 0;
1553
1554 ret = mnt_want_write_file(file_out);
1555 if (ret)
1556 return ret;
1557
Anna Schumakereac70052015-11-10 16:53:33 -05001558 ret = -EOPNOTSUPP;
1559 if (file_out->f_op->copy_file_range)
1560 ret = file_out->f_op->copy_file_range(file_in, pos_in, file_out,
1561 pos_out, len, flags);
1562 if (ret == -EOPNOTSUPP)
1563 ret = do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1564 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1565
Zach Brown29732932015-11-10 16:53:30 -05001566 if (ret > 0) {
1567 fsnotify_access(file_in);
1568 add_rchar(current, ret);
1569 fsnotify_modify(file_out);
1570 add_wchar(current, ret);
1571 }
1572 inc_syscr(current);
1573 inc_syscw(current);
1574
1575 mnt_drop_write_file(file_out);
1576
1577 return ret;
1578}
1579EXPORT_SYMBOL(vfs_copy_file_range);
1580
1581SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1582 int, fd_out, loff_t __user *, off_out,
1583 size_t, len, unsigned int, flags)
1584{
1585 loff_t pos_in;
1586 loff_t pos_out;
1587 struct fd f_in;
1588 struct fd f_out;
1589 ssize_t ret = -EBADF;
1590
1591 f_in = fdget(fd_in);
1592 if (!f_in.file)
1593 goto out2;
1594
1595 f_out = fdget(fd_out);
1596 if (!f_out.file)
1597 goto out1;
1598
1599 ret = -EFAULT;
1600 if (off_in) {
1601 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1602 goto out;
1603 } else {
1604 pos_in = f_in.file->f_pos;
1605 }
1606
1607 if (off_out) {
1608 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1609 goto out;
1610 } else {
1611 pos_out = f_out.file->f_pos;
1612 }
1613
1614 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1615 flags);
1616 if (ret > 0) {
1617 pos_in += ret;
1618 pos_out += ret;
1619
1620 if (off_in) {
1621 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1622 ret = -EFAULT;
1623 } else {
1624 f_in.file->f_pos = pos_in;
1625 }
1626
1627 if (off_out) {
1628 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1629 ret = -EFAULT;
1630 } else {
1631 f_out.file->f_pos = pos_out;
1632 }
1633 }
1634
1635out:
1636 fdput(f_out);
1637out1:
1638 fdput(f_in);
1639out2:
1640 return ret;
1641}
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001642
1643static int clone_verify_area(struct file *file, loff_t pos, u64 len, bool write)
1644{
1645 struct inode *inode = file_inode(file);
1646
1647 if (unlikely(pos < 0))
1648 return -EINVAL;
1649
1650 if (unlikely((loff_t) (pos + len) < 0))
1651 return -EINVAL;
1652
1653 if (unlikely(inode->i_flctx && mandatory_lock(inode))) {
1654 loff_t end = len ? pos + len - 1 : OFFSET_MAX;
1655 int retval;
1656
1657 retval = locks_mandatory_area(inode, file, pos, end,
1658 write ? F_WRLCK : F_RDLCK);
1659 if (retval < 0)
1660 return retval;
1661 }
1662
1663 return security_file_permission(file, write ? MAY_WRITE : MAY_READ);
1664}
1665
1666int vfs_clone_file_range(struct file *file_in, loff_t pos_in,
1667 struct file *file_out, loff_t pos_out, u64 len)
1668{
1669 struct inode *inode_in = file_inode(file_in);
1670 struct inode *inode_out = file_inode(file_out);
1671 int ret;
1672
1673 if (inode_in->i_sb != inode_out->i_sb ||
1674 file_in->f_path.mnt != file_out->f_path.mnt)
1675 return -EXDEV;
1676
1677 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
1678 return -EISDIR;
1679 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
Darrick J. Wongd79bdd52015-12-19 00:55:52 -08001680 return -EINVAL;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001681
1682 if (!(file_in->f_mode & FMODE_READ) ||
1683 !(file_out->f_mode & FMODE_WRITE) ||
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001684 (file_out->f_flags & O_APPEND))
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001685 return -EBADF;
1686
Christoph Hellwig0fcbf992016-02-26 18:53:12 +01001687 if (!file_in->f_op->clone_file_range)
1688 return -EOPNOTSUPP;
1689
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001690 ret = clone_verify_area(file_in, pos_in, len, false);
1691 if (ret)
1692 return ret;
1693
1694 ret = clone_verify_area(file_out, pos_out, len, true);
1695 if (ret)
1696 return ret;
1697
1698 if (pos_in + len > i_size_read(inode_in))
1699 return -EINVAL;
1700
1701 ret = mnt_want_write_file(file_out);
1702 if (ret)
1703 return ret;
1704
1705 ret = file_in->f_op->clone_file_range(file_in, pos_in,
1706 file_out, pos_out, len);
1707 if (!ret) {
1708 fsnotify_access(file_in);
1709 fsnotify_modify(file_out);
1710 }
1711
1712 mnt_drop_write_file(file_out);
1713 return ret;
1714}
1715EXPORT_SYMBOL(vfs_clone_file_range);
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001716
1717int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same)
1718{
1719 struct file_dedupe_range_info *info;
1720 struct inode *src = file_inode(file);
1721 u64 off;
1722 u64 len;
1723 int i;
1724 int ret;
1725 bool is_admin = capable(CAP_SYS_ADMIN);
1726 u16 count = same->dest_count;
1727 struct file *dst_file;
1728 loff_t dst_off;
1729 ssize_t deduped;
1730
1731 if (!(file->f_mode & FMODE_READ))
1732 return -EINVAL;
1733
1734 if (same->reserved1 || same->reserved2)
1735 return -EINVAL;
1736
1737 off = same->src_offset;
1738 len = same->src_length;
1739
1740 ret = -EISDIR;
1741 if (S_ISDIR(src->i_mode))
1742 goto out;
1743
1744 ret = -EINVAL;
1745 if (!S_ISREG(src->i_mode))
1746 goto out;
1747
1748 ret = clone_verify_area(file, off, len, false);
1749 if (ret < 0)
1750 goto out;
1751 ret = 0;
1752
1753 /* pre-format output fields to sane values */
1754 for (i = 0; i < count; i++) {
1755 same->info[i].bytes_deduped = 0ULL;
1756 same->info[i].status = FILE_DEDUPE_RANGE_SAME;
1757 }
1758
1759 for (i = 0, info = same->info; i < count; i++, info++) {
1760 struct inode *dst;
1761 struct fd dst_fd = fdget(info->dest_fd);
1762
1763 dst_file = dst_fd.file;
1764 if (!dst_file) {
1765 info->status = -EBADF;
1766 goto next_loop;
1767 }
1768 dst = file_inode(dst_file);
1769
1770 ret = mnt_want_write_file(dst_file);
1771 if (ret) {
1772 info->status = ret;
1773 goto next_loop;
1774 }
1775
1776 dst_off = info->dest_offset;
1777 ret = clone_verify_area(dst_file, dst_off, len, true);
1778 if (ret < 0) {
1779 info->status = ret;
1780 goto next_file;
1781 }
1782 ret = 0;
1783
1784 if (info->reserved) {
1785 info->status = -EINVAL;
1786 } else if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
1787 info->status = -EINVAL;
1788 } else if (file->f_path.mnt != dst_file->f_path.mnt) {
1789 info->status = -EXDEV;
1790 } else if (S_ISDIR(dst->i_mode)) {
1791 info->status = -EISDIR;
1792 } else if (dst_file->f_op->dedupe_file_range == NULL) {
1793 info->status = -EINVAL;
1794 } else {
1795 deduped = dst_file->f_op->dedupe_file_range(file, off,
1796 len, dst_file,
1797 info->dest_offset);
1798 if (deduped == -EBADE)
1799 info->status = FILE_DEDUPE_RANGE_DIFFERS;
1800 else if (deduped < 0)
1801 info->status = deduped;
1802 else
1803 info->bytes_deduped += deduped;
1804 }
1805
1806next_file:
1807 mnt_drop_write_file(dst_file);
1808next_loop:
1809 fdput(dst_fd);
Darrick J. Wonge62e5602016-01-22 16:58:28 -08001810
1811 if (fatal_signal_pending(current))
1812 goto out;
Darrick J. Wong54dbc152015-12-19 00:55:59 -08001813 }
1814
1815out:
1816 return ret;
1817}
1818EXPORT_SYMBOL(vfs_dedupe_file_range);