]> git.ipfire.org Git - people/ms/linux.git/blame - fs/read_write.c
riscv: compat: Support TASK_SIZE for compat mode
[people/ms/linux.git] / fs / read_write.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * linux/fs/read_write.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
b12fb7f4 8#include <linux/slab.h>
1da177e4 9#include <linux/stat.h>
b12fb7f4 10#include <linux/sched/xacct.h>
1da177e4
LT
11#include <linux/fcntl.h>
12#include <linux/file.h>
13#include <linux/uio.h>
0eeca283 14#include <linux/fsnotify.h>
1da177e4 15#include <linux/security.h>
630d9c47 16#include <linux/export.h>
1da177e4 17#include <linux/syscalls.h>
e28cc715 18#include <linux/pagemap.h>
d6b29d7c 19#include <linux/splice.h>
561c6731 20#include <linux/compat.h>
29732938 21#include <linux/mount.h>
2feb55f8 22#include <linux/fs.h>
06ae43f3 23#include "internal.h"
1da177e4 24
7c0f6ba6 25#include <linux/uaccess.h>
1da177e4
LT
26#include <asm/unistd.h>
27
4b6f5d20 28const struct file_operations generic_ro_fops = {
1da177e4 29 .llseek = generic_file_llseek,
aad4f8bb 30 .read_iter = generic_file_read_iter,
1da177e4 31 .mmap = generic_file_readonly_mmap,
534f2aaa 32 .splice_read = generic_file_splice_read,
1da177e4
LT
33};
34
35EXPORT_SYMBOL(generic_ro_fops);
36
ddef7ed2 37static inline bool unsigned_offsets(struct file *file)
4a3956c7 38{
cccb5a1e 39 return file->f_mode & FMODE_UNSIGNED_OFFSET;
4a3956c7
KH
40}
41
46a1c2c7
JL
42/**
43 * vfs_setpos - update the file offset for lseek
44 * @file: file structure in question
45 * @offset: file offset to seek to
46 * @maxsize: maximum file size
47 *
48 * This is a low-level filesystem helper for updating the file offset to
49 * the value specified by @offset if the given offset is valid and it is
50 * not equal to the current file offset.
51 *
52 * Return the specified offset on success and -EINVAL on invalid offset.
53 */
54loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
ef3d0fd2
AK
55{
56 if (offset < 0 && !unsigned_offsets(file))
57 return -EINVAL;
58 if (offset > maxsize)
59 return -EINVAL;
60
61 if (offset != file->f_pos) {
62 file->f_pos = offset;
63 file->f_version = 0;
64 }
65 return offset;
66}
46a1c2c7 67EXPORT_SYMBOL(vfs_setpos);
ef3d0fd2 68
3a8cff4f 69/**
5760495a 70 * generic_file_llseek_size - generic llseek implementation for regular files
3a8cff4f
CH
71 * @file: file structure to seek on
72 * @offset: file offset to seek to
965c8e59 73 * @whence: type of seek
e8b96eb5
ES
74 * @size: max size of this file in file system
75 * @eof: offset used for SEEK_END position
3a8cff4f 76 *
5760495a 77 * This is a variant of generic_file_llseek that allows passing in a custom
e8b96eb5 78 * maximum file size and a custom EOF position, for e.g. hashed directories
ef3d0fd2
AK
79 *
80 * Synchronization:
5760495a 81 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
ef3d0fd2
AK
82 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
83 * read/writes behave like SEEK_SET against seeks.
3a8cff4f 84 */
9465efc9 85loff_t
965c8e59 86generic_file_llseek_size(struct file *file, loff_t offset, int whence,
e8b96eb5 87 loff_t maxsize, loff_t eof)
1da177e4 88{
965c8e59 89 switch (whence) {
3a8cff4f 90 case SEEK_END:
e8b96eb5 91 offset += eof;
3a8cff4f
CH
92 break;
93 case SEEK_CUR:
5b6f1eb9
AK
94 /*
95 * Here we special-case the lseek(fd, 0, SEEK_CUR)
96 * position-querying operation. Avoid rewriting the "same"
97 * f_pos value back to the file because a concurrent read(),
98 * write() or lseek() might have altered it
99 */
100 if (offset == 0)
101 return file->f_pos;
ef3d0fd2
AK
102 /*
103 * f_lock protects against read/modify/write race with other
104 * SEEK_CURs. Note that parallel writes and reads behave
105 * like SEEK_SET.
106 */
107 spin_lock(&file->f_lock);
46a1c2c7 108 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
ef3d0fd2
AK
109 spin_unlock(&file->f_lock);
110 return offset;
982d8165
JB
111 case SEEK_DATA:
112 /*
113 * In the generic case the entire file is data, so as long as
114 * offset isn't at the end of the file then the offset is data.
115 */
fc46820b 116 if ((unsigned long long)offset >= eof)
982d8165
JB
117 return -ENXIO;
118 break;
119 case SEEK_HOLE:
120 /*
121 * There is a virtual hole at the end of the file, so as long as
122 * offset isn't i_size or larger, return i_size.
123 */
fc46820b 124 if ((unsigned long long)offset >= eof)
982d8165 125 return -ENXIO;
e8b96eb5 126 offset = eof;
982d8165 127 break;
1da177e4 128 }
3a8cff4f 129
46a1c2c7 130 return vfs_setpos(file, offset, maxsize);
5760495a
AK
131}
132EXPORT_SYMBOL(generic_file_llseek_size);
133
134/**
135 * generic_file_llseek - generic llseek implementation for regular files
136 * @file: file structure to seek on
137 * @offset: file offset to seek to
965c8e59 138 * @whence: type of seek
5760495a
AK
139 *
140 * This is a generic implemenation of ->llseek useable for all normal local
141 * filesystems. It just updates the file offset to the value specified by
546ae2d2 142 * @offset and @whence.
5760495a 143 */
965c8e59 144loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
5760495a
AK
145{
146 struct inode *inode = file->f_mapping->host;
147
965c8e59 148 return generic_file_llseek_size(file, offset, whence,
e8b96eb5
ES
149 inode->i_sb->s_maxbytes,
150 i_size_read(inode));
1da177e4 151}
9465efc9 152EXPORT_SYMBOL(generic_file_llseek);
1da177e4 153
1bf9d14d
AV
154/**
155 * fixed_size_llseek - llseek implementation for fixed-sized devices
156 * @file: file structure to seek on
157 * @offset: file offset to seek to
158 * @whence: type of seek
159 * @size: size of the file
160 *
161 */
162loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
163{
164 switch (whence) {
165 case SEEK_SET: case SEEK_CUR: case SEEK_END:
166 return generic_file_llseek_size(file, offset, whence,
167 size, size);
168 default:
169 return -EINVAL;
170 }
171}
172EXPORT_SYMBOL(fixed_size_llseek);
173
b25472f9
AV
174/**
175 * no_seek_end_llseek - llseek implementation for fixed-sized devices
176 * @file: file structure to seek on
177 * @offset: file offset to seek to
178 * @whence: type of seek
179 *
180 */
181loff_t no_seek_end_llseek(struct file *file, loff_t offset, int whence)
182{
183 switch (whence) {
184 case SEEK_SET: case SEEK_CUR:
185 return generic_file_llseek_size(file, offset, whence,
2feb55f8 186 OFFSET_MAX, 0);
b25472f9
AV
187 default:
188 return -EINVAL;
189 }
190}
191EXPORT_SYMBOL(no_seek_end_llseek);
192
193/**
194 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
195 * @file: file structure to seek on
196 * @offset: file offset to seek to
197 * @whence: type of seek
198 * @size: maximal offset allowed
199 *
200 */
201loff_t no_seek_end_llseek_size(struct file *file, loff_t offset, int whence, loff_t size)
202{
203 switch (whence) {
204 case SEEK_SET: case SEEK_CUR:
205 return generic_file_llseek_size(file, offset, whence,
206 size, 0);
207 default:
208 return -EINVAL;
209 }
210}
211EXPORT_SYMBOL(no_seek_end_llseek_size);
212
ae6afc3f
B
213/**
214 * noop_llseek - No Operation Performed llseek implementation
215 * @file: file structure to seek on
216 * @offset: file offset to seek to
965c8e59 217 * @whence: type of seek
ae6afc3f
B
218 *
219 * This is an implementation of ->llseek useable for the rare special case when
220 * userspace expects the seek to succeed but the (device) file is actually not
221 * able to perform the seek. In this case you use noop_llseek() instead of
222 * falling back to the default implementation of ->llseek.
223 */
965c8e59 224loff_t noop_llseek(struct file *file, loff_t offset, int whence)
ae6afc3f
B
225{
226 return file->f_pos;
227}
228EXPORT_SYMBOL(noop_llseek);
229
965c8e59 230loff_t no_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
231{
232 return -ESPIPE;
233}
234EXPORT_SYMBOL(no_llseek);
235
965c8e59 236loff_t default_llseek(struct file *file, loff_t offset, int whence)
1da177e4 237{
496ad9aa 238 struct inode *inode = file_inode(file);
16abef0e 239 loff_t retval;
1da177e4 240
5955102c 241 inode_lock(inode);
965c8e59 242 switch (whence) {
7b8e8924 243 case SEEK_END:
982d8165 244 offset += i_size_read(inode);
1da177e4 245 break;
7b8e8924 246 case SEEK_CUR:
5b6f1eb9
AK
247 if (offset == 0) {
248 retval = file->f_pos;
249 goto out;
250 }
1da177e4 251 offset += file->f_pos;
982d8165
JB
252 break;
253 case SEEK_DATA:
254 /*
255 * In the generic case the entire file is data, so as
256 * long as offset isn't at the end of the file then the
257 * offset is data.
258 */
bacb2d81
DC
259 if (offset >= inode->i_size) {
260 retval = -ENXIO;
261 goto out;
262 }
982d8165
JB
263 break;
264 case SEEK_HOLE:
265 /*
266 * There is a virtual hole at the end of the file, so
267 * as long as offset isn't i_size or larger, return
268 * i_size.
269 */
bacb2d81
DC
270 if (offset >= inode->i_size) {
271 retval = -ENXIO;
272 goto out;
273 }
982d8165
JB
274 offset = inode->i_size;
275 break;
1da177e4
LT
276 }
277 retval = -EINVAL;
cccb5a1e 278 if (offset >= 0 || unsigned_offsets(file)) {
1da177e4
LT
279 if (offset != file->f_pos) {
280 file->f_pos = offset;
281 file->f_version = 0;
282 }
283 retval = offset;
284 }
5b6f1eb9 285out:
5955102c 286 inode_unlock(inode);
1da177e4
LT
287 return retval;
288}
289EXPORT_SYMBOL(default_llseek);
290
965c8e59 291loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
292{
293 loff_t (*fn)(struct file *, loff_t, int);
294
295 fn = no_llseek;
296 if (file->f_mode & FMODE_LSEEK) {
72c2d531 297 if (file->f_op->llseek)
1da177e4
LT
298 fn = file->f_op->llseek;
299 }
965c8e59 300 return fn(file, offset, whence);
1da177e4
LT
301}
302EXPORT_SYMBOL(vfs_llseek);
303
bef17329 304static off_t ksys_lseek(unsigned int fd, off_t offset, unsigned int whence)
1da177e4
LT
305{
306 off_t retval;
9c225f26 307 struct fd f = fdget_pos(fd);
2903ff01
AV
308 if (!f.file)
309 return -EBADF;
1da177e4
LT
310
311 retval = -EINVAL;
965c8e59
AM
312 if (whence <= SEEK_MAX) {
313 loff_t res = vfs_llseek(f.file, offset, whence);
1da177e4
LT
314 retval = res;
315 if (res != (loff_t)retval)
316 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
317 }
9c225f26 318 fdput_pos(f);
1da177e4
LT
319 return retval;
320}
321
76847e43
DB
322SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
323{
324 return ksys_lseek(fd, offset, whence);
325}
326
561c6731
AV
327#ifdef CONFIG_COMPAT
328COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
329{
76847e43 330 return ksys_lseek(fd, offset, whence);
561c6731
AV
331}
332#endif
333
9e62ccec
MS
334#if !defined(CONFIG_64BIT) || defined(CONFIG_COMPAT) || \
335 defined(__ARCH_WANT_SYS_LLSEEK)
003d7ab4
HC
336SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
337 unsigned long, offset_low, loff_t __user *, result,
965c8e59 338 unsigned int, whence)
1da177e4
LT
339{
340 int retval;
d7a15f8d 341 struct fd f = fdget_pos(fd);
1da177e4 342 loff_t offset;
1da177e4 343
2903ff01
AV
344 if (!f.file)
345 return -EBADF;
1da177e4
LT
346
347 retval = -EINVAL;
965c8e59 348 if (whence > SEEK_MAX)
1da177e4
LT
349 goto out_putf;
350
2903ff01 351 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 352 whence);
1da177e4
LT
353
354 retval = (int)offset;
355 if (offset >= 0) {
356 retval = -EFAULT;
357 if (!copy_to_user(result, &offset, sizeof(offset)))
358 retval = 0;
359 }
360out_putf:
d7a15f8d 361 fdput_pos(f);
1da177e4
LT
362 return retval;
363}
364#endif
365
68d70d03 366int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
1da177e4 367{
e28cc715 368 if (unlikely((ssize_t) count < 0))
2949e842 369 return -EINVAL;
1da177e4 370
438ab720
KS
371 if (ppos) {
372 loff_t pos = *ppos;
373
374 if (unlikely(pos < 0)) {
375 if (!unsigned_offsets(file))
2949e842 376 return -EINVAL;
438ab720
KS
377 if (count >= -pos) /* both values are in 0..LLONG_MAX */
378 return -EOVERFLOW;
379 } else if (unlikely((loff_t) (pos + count) < 0)) {
380 if (!unsigned_offsets(file))
2949e842 381 return -EINVAL;
438ab720 382 }
e28cc715 383 }
438ab720 384
bc61384d 385 return security_file_permission(file,
c43e259c 386 read_write == READ ? MAY_READ : MAY_WRITE);
1da177e4 387}
87112933 388EXPORT_SYMBOL(rw_verify_area);
1da177e4 389
5d5d5689 390static ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
391{
392 struct iovec iov = { .iov_base = buf, .iov_len = len };
393 struct kiocb kiocb;
394 struct iov_iter iter;
395 ssize_t ret;
396
397 init_sync_kiocb(&kiocb, filp);
438ab720 398 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982
AV
399 iov_iter_init(&iter, READ, &iov, 1, len);
400
bb7462b6 401 ret = call_read_iter(filp, &kiocb, &iter);
599bd19b 402 BUG_ON(ret == -EIOCBQUEUED);
438ab720
KS
403 if (ppos)
404 *ppos = kiocb.ki_pos;
293bc982
AV
405 return ret;
406}
407
4d03e3cc
CH
408static int warn_unsupported(struct file *file, const char *op)
409{
410 pr_warn_ratelimited(
411 "kernel %s not supported for file %pD4 (pid: %d comm: %.20s)\n",
412 op, file, current->pid, current->comm);
413 return -EINVAL;
414}
415
61a707c5
CH
416ssize_t __kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
417{
4d03e3cc
CH
418 struct kvec iov = {
419 .iov_base = buf,
420 .iov_len = min_t(size_t, count, MAX_RW_COUNT),
421 };
422 struct kiocb kiocb;
423 struct iov_iter iter;
61a707c5
CH
424 ssize_t ret;
425
426 if (WARN_ON_ONCE(!(file->f_mode & FMODE_READ)))
427 return -EINVAL;
428 if (!(file->f_mode & FMODE_CAN_READ))
429 return -EINVAL;
4d03e3cc
CH
430 /*
431 * Also fail if ->read_iter and ->read are both wired up as that
432 * implies very convoluted semantics.
433 */
434 if (unlikely(!file->f_op->read_iter || file->f_op->read))
435 return warn_unsupported(file, "read");
61a707c5 436
4d03e3cc 437 init_sync_kiocb(&kiocb, file);
7b84b665 438 kiocb.ki_pos = pos ? *pos : 0;
4d03e3cc
CH
439 iov_iter_kvec(&iter, READ, &iov, 1, iov.iov_len);
440 ret = file->f_op->read_iter(&kiocb, &iter);
61a707c5 441 if (ret > 0) {
7b84b665
MWO
442 if (pos)
443 *pos = kiocb.ki_pos;
61a707c5
CH
444 fsnotify_access(file);
445 add_rchar(current, ret);
446 }
447 inc_syscr(current);
448 return ret;
449}
450
bdd1d2d3 451ssize_t kernel_read(struct file *file, void *buf, size_t count, loff_t *pos)
c41fbad0 452{
6209dd91 453 ssize_t ret;
c41fbad0 454
6209dd91
CH
455 ret = rw_verify_area(READ, file, pos, count);
456 if (ret)
457 return ret;
458 return __kernel_read(file, buf, count, pos);
c41fbad0
CH
459}
460EXPORT_SYMBOL(kernel_read);
6fb5032e 461
1da177e4
LT
462ssize_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;
7f7f25e8 468 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4 469 return -EINVAL;
96d4f267 470 if (unlikely(!access_ok(buf, count)))
1da177e4
LT
471 return -EFAULT;
472
473 ret = rw_verify_area(READ, file, pos, count);
775802c0
CH
474 if (ret)
475 return ret;
476 if (count > MAX_RW_COUNT)
477 count = MAX_RW_COUNT;
1da177e4 478
775802c0
CH
479 if (file->f_op->read)
480 ret = file->f_op->read(file, buf, count, pos);
481 else if (file->f_op->read_iter)
482 ret = new_sync_read(file, buf, count, pos);
483 else
484 ret = -EINVAL;
485 if (ret > 0) {
486 fsnotify_access(file);
487 add_rchar(current, ret);
488 }
489 inc_syscr(current);
1da177e4
LT
490 return ret;
491}
492
5d5d5689 493static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
293bc982
AV
494{
495 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
496 struct kiocb kiocb;
497 struct iov_iter iter;
498 ssize_t ret;
499
500 init_sync_kiocb(&kiocb, filp);
438ab720 501 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982
AV
502 iov_iter_init(&iter, WRITE, &iov, 1, len);
503
bb7462b6 504 ret = call_write_iter(filp, &kiocb, &iter);
599bd19b 505 BUG_ON(ret == -EIOCBQUEUED);
438ab720 506 if (ret > 0 && ppos)
f765b134 507 *ppos = kiocb.ki_pos;
293bc982
AV
508 return ret;
509}
510
81238b2c 511/* caller is responsible for file_start_write/file_end_write */
73e18f7c 512ssize_t __kernel_write(struct file *file, const void *buf, size_t count, loff_t *pos)
06ae43f3 513{
4d03e3cc
CH
514 struct kvec iov = {
515 .iov_base = (void *)buf,
516 .iov_len = min_t(size_t, count, MAX_RW_COUNT),
517 };
518 struct kiocb kiocb;
519 struct iov_iter iter;
06ae43f3
AV
520 ssize_t ret;
521
a01ac27b
CH
522 if (WARN_ON_ONCE(!(file->f_mode & FMODE_WRITE)))
523 return -EBADF;
7f7f25e8 524 if (!(file->f_mode & FMODE_CAN_WRITE))
3e84f48e 525 return -EINVAL;
4d03e3cc
CH
526 /*
527 * Also fail if ->write_iter and ->write are both wired up as that
528 * implies very convoluted semantics.
529 */
530 if (unlikely(!file->f_op->write_iter || file->f_op->write))
531 return warn_unsupported(file, "write");
3e84f48e 532
4d03e3cc 533 init_sync_kiocb(&kiocb, file);
4c207ef4 534 kiocb.ki_pos = pos ? *pos : 0;
4d03e3cc
CH
535 iov_iter_kvec(&iter, WRITE, &iov, 1, iov.iov_len);
536 ret = file->f_op->write_iter(&kiocb, &iter);
06ae43f3 537 if (ret > 0) {
4c207ef4
MWO
538 if (pos)
539 *pos = kiocb.ki_pos;
06ae43f3
AV
540 fsnotify_modify(file);
541 add_wchar(current, ret);
542 }
543 inc_syscw(current);
544 return ret;
545}
90fb7027
LT
546/*
547 * This "EXPORT_SYMBOL_GPL()" is more of a "EXPORT_SYMBOL_DONTUSE()",
548 * but autofs is one of the few internal kernel users that actually
549 * wants this _and_ can be built as a module. So we need to export
550 * this symbol for autofs, even though it really isn't appropriate
551 * for any other kernel modules.
552 */
553EXPORT_SYMBOL_GPL(__kernel_write);
2ec3a12a 554
e13ec939
CH
555ssize_t kernel_write(struct file *file, const void *buf, size_t count,
556 loff_t *pos)
ac452aca 557{
81238b2c 558 ssize_t ret;
ac452aca 559
81238b2c
CH
560 ret = rw_verify_area(WRITE, file, pos, count);
561 if (ret)
562 return ret;
ac452aca 563
81238b2c
CH
564 file_start_write(file);
565 ret = __kernel_write(file, buf, count, pos);
566 file_end_write(file);
567 return ret;
ac452aca
CH
568}
569EXPORT_SYMBOL(kernel_write);
570
1da177e4
LT
571ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
572{
573 ssize_t ret;
574
575 if (!(file->f_mode & FMODE_WRITE))
576 return -EBADF;
7f7f25e8 577 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4 578 return -EINVAL;
96d4f267 579 if (unlikely(!access_ok(buf, count)))
1da177e4
LT
580 return -EFAULT;
581
582 ret = rw_verify_area(WRITE, file, pos, count);
53ad8626
CH
583 if (ret)
584 return ret;
585 if (count > MAX_RW_COUNT)
586 count = MAX_RW_COUNT;
587 file_start_write(file);
588 if (file->f_op->write)
589 ret = file->f_op->write(file, buf, count, pos);
590 else if (file->f_op->write_iter)
591 ret = new_sync_write(file, buf, count, pos);
592 else
593 ret = -EINVAL;
594 if (ret > 0) {
595 fsnotify_modify(file);
596 add_wchar(current, ret);
1da177e4 597 }
53ad8626
CH
598 inc_syscw(current);
599 file_end_write(file);
1da177e4
LT
600 return ret;
601}
602
438ab720
KS
603/* file_ppos returns &file->f_pos or NULL if file is stream */
604static inline loff_t *file_ppos(struct file *file)
1da177e4 605{
438ab720 606 return file->f_mode & FMODE_STREAM ? NULL : &file->f_pos;
1da177e4
LT
607}
608
3ce4a7bf 609ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count)
1da177e4 610{
9c225f26 611 struct fd f = fdget_pos(fd);
1da177e4 612 ssize_t ret = -EBADF;
1da177e4 613
2903ff01 614 if (f.file) {
438ab720
KS
615 loff_t pos, *ppos = file_ppos(f.file);
616 if (ppos) {
617 pos = *ppos;
618 ppos = &pos;
619 }
620 ret = vfs_read(f.file, buf, count, ppos);
621 if (ret >= 0 && ppos)
622 f.file->f_pos = pos;
9c225f26 623 fdput_pos(f);
1da177e4 624 }
1da177e4
LT
625 return ret;
626}
1da177e4 627
3ce4a7bf
DB
628SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
629{
630 return ksys_read(fd, buf, count);
631}
632
e7a3e8b2 633ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count)
1da177e4 634{
9c225f26 635 struct fd f = fdget_pos(fd);
1da177e4 636 ssize_t ret = -EBADF;
1da177e4 637
2903ff01 638 if (f.file) {
438ab720
KS
639 loff_t pos, *ppos = file_ppos(f.file);
640 if (ppos) {
641 pos = *ppos;
642 ppos = &pos;
643 }
644 ret = vfs_write(f.file, buf, count, ppos);
645 if (ret >= 0 && ppos)
646 f.file->f_pos = pos;
9c225f26 647 fdput_pos(f);
1da177e4
LT
648 }
649
650 return ret;
651}
652
e7a3e8b2
DB
653SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
654 size_t, count)
655{
656 return ksys_write(fd, buf, count);
657}
658
36028d5d
DB
659ssize_t ksys_pread64(unsigned int fd, char __user *buf, size_t count,
660 loff_t pos)
1da177e4 661{
2903ff01 662 struct fd f;
1da177e4 663 ssize_t ret = -EBADF;
1da177e4
LT
664
665 if (pos < 0)
666 return -EINVAL;
667
2903ff01
AV
668 f = fdget(fd);
669 if (f.file) {
1da177e4 670 ret = -ESPIPE;
2903ff01
AV
671 if (f.file->f_mode & FMODE_PREAD)
672 ret = vfs_read(f.file, buf, count, &pos);
673 fdput(f);
1da177e4
LT
674 }
675
676 return ret;
677}
678
36028d5d
DB
679SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
680 size_t, count, loff_t, pos)
681{
682 return ksys_pread64(fd, buf, count, pos);
683}
684
685ssize_t ksys_pwrite64(unsigned int fd, const char __user *buf,
686 size_t count, loff_t pos)
1da177e4 687{
2903ff01 688 struct fd f;
1da177e4 689 ssize_t ret = -EBADF;
1da177e4
LT
690
691 if (pos < 0)
692 return -EINVAL;
693
2903ff01
AV
694 f = fdget(fd);
695 if (f.file) {
1da177e4 696 ret = -ESPIPE;
2903ff01
AV
697 if (f.file->f_mode & FMODE_PWRITE)
698 ret = vfs_write(f.file, buf, count, &pos);
699 fdput(f);
1da177e4
LT
700 }
701
702 return ret;
703}
704
36028d5d
DB
705SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
706 size_t, count, loff_t, pos)
707{
708 return ksys_pwrite64(fd, buf, count, pos);
709}
710
ac15ac06 711static ssize_t do_iter_readv_writev(struct file *filp, struct iov_iter *iter,
ddef7ed2 712 loff_t *ppos, int type, rwf_t flags)
293bc982
AV
713{
714 struct kiocb kiocb;
293bc982
AV
715 ssize_t ret;
716
717 init_sync_kiocb(&kiocb, filp);
fdd2f5b7
GR
718 ret = kiocb_set_rw_flags(&kiocb, flags);
719 if (ret)
720 return ret;
438ab720 721 kiocb.ki_pos = (ppos ? *ppos : 0);
293bc982 722
0f78d06a 723 if (type == READ)
bb7462b6 724 ret = call_read_iter(filp, &kiocb, iter);
0f78d06a 725 else
bb7462b6 726 ret = call_write_iter(filp, &kiocb, iter);
599bd19b 727 BUG_ON(ret == -EIOCBQUEUED);
438ab720
KS
728 if (ppos)
729 *ppos = kiocb.ki_pos;
293bc982
AV
730 return ret;
731}
732
ee0b3e67 733/* Do it by hand, with file-ops */
ac15ac06 734static ssize_t do_loop_readv_writev(struct file *filp, struct iov_iter *iter,
ddef7ed2 735 loff_t *ppos, int type, rwf_t flags)
ee0b3e67 736{
ee0b3e67
BP
737 ssize_t ret = 0;
738
97be7ebe 739 if (flags & ~RWF_HIPRI)
793b80ef
CH
740 return -EOPNOTSUPP;
741
ac15ac06
AV
742 while (iov_iter_count(iter)) {
743 struct iovec iovec = iov_iter_iovec(iter);
ee0b3e67
BP
744 ssize_t nr;
745
0f78d06a
MS
746 if (type == READ) {
747 nr = filp->f_op->read(filp, iovec.iov_base,
748 iovec.iov_len, ppos);
749 } else {
750 nr = filp->f_op->write(filp, iovec.iov_base,
751 iovec.iov_len, ppos);
752 }
ee0b3e67
BP
753
754 if (nr < 0) {
755 if (!ret)
756 ret = nr;
757 break;
758 }
759 ret += nr;
ac15ac06 760 if (nr != iovec.iov_len)
ee0b3e67 761 break;
ac15ac06 762 iov_iter_advance(iter, nr);
ee0b3e67
BP
763 }
764
765 return ret;
766}
767
19c73586 768static ssize_t do_iter_read(struct file *file, struct iov_iter *iter,
ddef7ed2 769 loff_t *pos, rwf_t flags)
1da177e4 770{
1da177e4 771 size_t tot_len;
7687a7a4 772 ssize_t ret = 0;
1da177e4 773
edab5fe3
CH
774 if (!(file->f_mode & FMODE_READ))
775 return -EBADF;
776 if (!(file->f_mode & FMODE_CAN_READ))
777 return -EINVAL;
778
7687a7a4 779 tot_len = iov_iter_count(iter);
0504c074
AV
780 if (!tot_len)
781 goto out;
19c73586 782 ret = rw_verify_area(READ, file, pos, tot_len);
e28cc715 783 if (ret < 0)
19c73586 784 return ret;
1da177e4 785
19c73586
CH
786 if (file->f_op->read_iter)
787 ret = do_iter_readv_writev(file, iter, pos, READ, flags);
ee0b3e67 788 else
19c73586 789 ret = do_loop_readv_writev(file, iter, pos, READ, flags);
1da177e4 790out:
19c73586
CH
791 if (ret >= 0)
792 fsnotify_access(file);
1da177e4 793 return ret;
1da177e4
LT
794}
795
5dcdc43e
JX
796ssize_t vfs_iocb_iter_read(struct file *file, struct kiocb *iocb,
797 struct iov_iter *iter)
798{
799 size_t tot_len;
800 ssize_t ret = 0;
801
802 if (!file->f_op->read_iter)
803 return -EINVAL;
804 if (!(file->f_mode & FMODE_READ))
805 return -EBADF;
806 if (!(file->f_mode & FMODE_CAN_READ))
807 return -EINVAL;
808
809 tot_len = iov_iter_count(iter);
810 if (!tot_len)
811 goto out;
812 ret = rw_verify_area(READ, file, &iocb->ki_pos, tot_len);
813 if (ret < 0)
814 return ret;
815
816 ret = call_read_iter(file, iocb, iter);
817out:
818 if (ret >= 0)
819 fsnotify_access(file);
820 return ret;
821}
822EXPORT_SYMBOL(vfs_iocb_iter_read);
823
18e9710e 824ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos,
ddef7ed2 825 rwf_t flags)
7687a7a4 826{
18e9710e
CH
827 if (!file->f_op->read_iter)
828 return -EINVAL;
829 return do_iter_read(file, iter, ppos, flags);
830}
831EXPORT_SYMBOL(vfs_iter_read);
7687a7a4 832
19c73586 833static ssize_t do_iter_write(struct file *file, struct iov_iter *iter,
ddef7ed2 834 loff_t *pos, rwf_t flags)
19c73586
CH
835{
836 size_t tot_len;
837 ssize_t ret = 0;
03d95eb2 838
edab5fe3
CH
839 if (!(file->f_mode & FMODE_WRITE))
840 return -EBADF;
841 if (!(file->f_mode & FMODE_CAN_WRITE))
842 return -EINVAL;
843
19c73586
CH
844 tot_len = iov_iter_count(iter);
845 if (!tot_len)
846 return 0;
847 ret = rw_verify_area(WRITE, file, pos, tot_len);
7687a7a4
MS
848 if (ret < 0)
849 return ret;
850
19c73586
CH
851 if (file->f_op->write_iter)
852 ret = do_iter_readv_writev(file, iter, pos, WRITE, flags);
853 else
854 ret = do_loop_readv_writev(file, iter, pos, WRITE, flags);
19c73586
CH
855 if (ret > 0)
856 fsnotify_modify(file);
7687a7a4
MS
857 return ret;
858}
859
5dcdc43e
JX
860ssize_t vfs_iocb_iter_write(struct file *file, struct kiocb *iocb,
861 struct iov_iter *iter)
862{
863 size_t tot_len;
864 ssize_t ret = 0;
865
866 if (!file->f_op->write_iter)
867 return -EINVAL;
868 if (!(file->f_mode & FMODE_WRITE))
869 return -EBADF;
870 if (!(file->f_mode & FMODE_CAN_WRITE))
871 return -EINVAL;
872
873 tot_len = iov_iter_count(iter);
874 if (!tot_len)
875 return 0;
876 ret = rw_verify_area(WRITE, file, &iocb->ki_pos, tot_len);
877 if (ret < 0)
878 return ret;
879
880 ret = call_write_iter(file, iocb, iter);
881 if (ret > 0)
882 fsnotify_modify(file);
883
884 return ret;
885}
886EXPORT_SYMBOL(vfs_iocb_iter_write);
887
abbb6589 888ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos,
ddef7ed2 889 rwf_t flags)
abbb6589
CH
890{
891 if (!file->f_op->write_iter)
892 return -EINVAL;
893 return do_iter_write(file, iter, ppos, flags);
894}
895EXPORT_SYMBOL(vfs_iter_write);
896
36e2c742 897static ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
ddef7ed2 898 unsigned long vlen, loff_t *pos, rwf_t flags)
1da177e4 899{
7687a7a4
MS
900 struct iovec iovstack[UIO_FASTIOV];
901 struct iovec *iov = iovstack;
902 struct iov_iter iter;
903 ssize_t ret;
1da177e4 904
251b42a1 905 ret = import_iovec(READ, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3
CH
906 if (ret >= 0) {
907 ret = do_iter_read(file, &iter, pos, flags);
908 kfree(iov);
909 }
1da177e4 910
251b42a1
CH
911 return ret;
912}
1da177e4 913
9725d4ce 914static ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
ddef7ed2 915 unsigned long vlen, loff_t *pos, rwf_t flags)
1da177e4 916{
251b42a1
CH
917 struct iovec iovstack[UIO_FASTIOV];
918 struct iovec *iov = iovstack;
919 struct iov_iter iter;
920 ssize_t ret;
1da177e4 921
251b42a1 922 ret = import_iovec(WRITE, vec, vlen, ARRAY_SIZE(iovstack), &iov, &iter);
edab5fe3 923 if (ret >= 0) {
62473a2d 924 file_start_write(file);
edab5fe3 925 ret = do_iter_write(file, &iter, pos, flags);
62473a2d 926 file_end_write(file);
edab5fe3
CH
927 kfree(iov);
928 }
251b42a1 929 return ret;
1da177e4 930}
1da177e4 931
f17d8b35 932static ssize_t do_readv(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 933 unsigned long vlen, rwf_t flags)
1da177e4 934{
9c225f26 935 struct fd f = fdget_pos(fd);
1da177e4 936 ssize_t ret = -EBADF;
1da177e4 937
2903ff01 938 if (f.file) {
438ab720
KS
939 loff_t pos, *ppos = file_ppos(f.file);
940 if (ppos) {
941 pos = *ppos;
942 ppos = &pos;
943 }
944 ret = vfs_readv(f.file, vec, vlen, ppos, flags);
945 if (ret >= 0 && ppos)
946 f.file->f_pos = pos;
9c225f26 947 fdput_pos(f);
1da177e4
LT
948 }
949
950 if (ret > 0)
4b98d11b
AD
951 add_rchar(current, ret);
952 inc_syscr(current);
1da177e4
LT
953 return ret;
954}
955
f17d8b35 956static ssize_t do_writev(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 957 unsigned long vlen, rwf_t flags)
1da177e4 958{
9c225f26 959 struct fd f = fdget_pos(fd);
1da177e4 960 ssize_t ret = -EBADF;
1da177e4 961
2903ff01 962 if (f.file) {
438ab720
KS
963 loff_t pos, *ppos = file_ppos(f.file);
964 if (ppos) {
965 pos = *ppos;
966 ppos = &pos;
967 }
968 ret = vfs_writev(f.file, vec, vlen, ppos, flags);
969 if (ret >= 0 && ppos)
970 f.file->f_pos = pos;
9c225f26 971 fdput_pos(f);
1da177e4
LT
972 }
973
974 if (ret > 0)
4b98d11b
AD
975 add_wchar(current, ret);
976 inc_syscw(current);
1da177e4
LT
977 return ret;
978}
979
601cc11d
LT
980static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
981{
982#define HALF_LONG_BITS (BITS_PER_LONG / 2)
983 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
984}
985
f17d8b35 986static ssize_t do_preadv(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 987 unsigned long vlen, loff_t pos, rwf_t flags)
f3554f4b 988{
2903ff01 989 struct fd f;
f3554f4b 990 ssize_t ret = -EBADF;
f3554f4b
GH
991
992 if (pos < 0)
993 return -EINVAL;
994
2903ff01
AV
995 f = fdget(fd);
996 if (f.file) {
f3554f4b 997 ret = -ESPIPE;
2903ff01 998 if (f.file->f_mode & FMODE_PREAD)
f17d8b35 999 ret = vfs_readv(f.file, vec, vlen, &pos, flags);
2903ff01 1000 fdput(f);
f3554f4b
GH
1001 }
1002
1003 if (ret > 0)
1004 add_rchar(current, ret);
1005 inc_syscr(current);
1006 return ret;
1007}
1008
f17d8b35 1009static ssize_t do_pwritev(unsigned long fd, const struct iovec __user *vec,
ddef7ed2 1010 unsigned long vlen, loff_t pos, rwf_t flags)
f3554f4b 1011{
2903ff01 1012 struct fd f;
f3554f4b 1013 ssize_t ret = -EBADF;
f3554f4b
GH
1014
1015 if (pos < 0)
1016 return -EINVAL;
1017
2903ff01
AV
1018 f = fdget(fd);
1019 if (f.file) {
f3554f4b 1020 ret = -ESPIPE;
2903ff01 1021 if (f.file->f_mode & FMODE_PWRITE)
f17d8b35 1022 ret = vfs_writev(f.file, vec, vlen, &pos, flags);
2903ff01 1023 fdput(f);
f3554f4b
GH
1024 }
1025
1026 if (ret > 0)
1027 add_wchar(current, ret);
1028 inc_syscw(current);
1029 return ret;
1030}
1031
f17d8b35
MT
1032SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
1033 unsigned long, vlen)
1034{
1035 return do_readv(fd, vec, vlen, 0);
1036}
1037
1038SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
1039 unsigned long, vlen)
1040{
1041 return do_writev(fd, vec, vlen, 0);
1042}
1043
1044SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
1045 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1046{
1047 loff_t pos = pos_from_hilo(pos_h, pos_l);
1048
1049 return do_preadv(fd, vec, vlen, pos, 0);
1050}
1051
1052SYSCALL_DEFINE6(preadv2, unsigned long, fd, const struct iovec __user *, vec,
1053 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
ddef7ed2 1054 rwf_t, flags)
f17d8b35
MT
1055{
1056 loff_t pos = pos_from_hilo(pos_h, pos_l);
1057
1058 if (pos == -1)
1059 return do_readv(fd, vec, vlen, flags);
1060
1061 return do_preadv(fd, vec, vlen, pos, flags);
1062}
1063
1064SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
1065 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
1066{
1067 loff_t pos = pos_from_hilo(pos_h, pos_l);
1068
1069 return do_pwritev(fd, vec, vlen, pos, 0);
1070}
1071
1072SYSCALL_DEFINE6(pwritev2, unsigned long, fd, const struct iovec __user *, vec,
1073 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h,
ddef7ed2 1074 rwf_t, flags)
f17d8b35
MT
1075{
1076 loff_t pos = pos_from_hilo(pos_h, pos_l);
1077
1078 if (pos == -1)
1079 return do_writev(fd, vec, vlen, flags);
1080
1081 return do_pwritev(fd, vec, vlen, pos, flags);
1082}
1083
3523a9d4
CH
1084/*
1085 * Various compat syscalls. Note that they all pretend to take a native
1086 * iovec - import_iovec will properly treat those as compat_iovecs based on
1087 * in_compat_syscall().
1088 */
72ec3516 1089#ifdef CONFIG_COMPAT
378a10f3
HC
1090#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1091COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
3523a9d4 1092 const struct iovec __user *, vec,
378a10f3
HC
1093 unsigned long, vlen, loff_t, pos)
1094{
3523a9d4 1095 return do_preadv(fd, vec, vlen, pos, 0);
378a10f3
HC
1096}
1097#endif
1098
dfd948e3 1099COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
3523a9d4 1100 const struct iovec __user *, vec,
dfd948e3 1101 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1102{
1103 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1104
3523a9d4 1105 return do_preadv(fd, vec, vlen, pos, 0);
f17d8b35
MT
1106}
1107
3ebfd81f
L
1108#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1109COMPAT_SYSCALL_DEFINE5(preadv64v2, unsigned long, fd,
3523a9d4 1110 const struct iovec __user *, vec,
ddef7ed2 1111 unsigned long, vlen, loff_t, pos, rwf_t, flags)
3ebfd81f 1112{
cc4b1242 1113 if (pos == -1)
3523a9d4
CH
1114 return do_readv(fd, vec, vlen, flags);
1115 return do_preadv(fd, vec, vlen, pos, flags);
3ebfd81f
L
1116}
1117#endif
1118
f17d8b35 1119COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd,
3523a9d4 1120 const struct iovec __user *, vec,
f17d8b35 1121 compat_ulong_t, vlen, u32, pos_low, u32, pos_high,
ddef7ed2 1122 rwf_t, flags)
f17d8b35
MT
1123{
1124 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1125
1126 if (pos == -1)
3523a9d4
CH
1127 return do_readv(fd, vec, vlen, flags);
1128 return do_preadv(fd, vec, vlen, pos, flags);
72ec3516
AV
1129}
1130
378a10f3
HC
1131#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1132COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
3523a9d4 1133 const struct iovec __user *, vec,
378a10f3
HC
1134 unsigned long, vlen, loff_t, pos)
1135{
3523a9d4 1136 return do_pwritev(fd, vec, vlen, pos, 0);
378a10f3
HC
1137}
1138#endif
1139
dfd948e3 1140COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
3523a9d4 1141 const struct iovec __user *,vec,
dfd948e3 1142 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1143{
1144 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3 1145
3523a9d4 1146 return do_pwritev(fd, vec, vlen, pos, 0);
72ec3516 1147}
f17d8b35 1148
3ebfd81f
L
1149#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1150COMPAT_SYSCALL_DEFINE5(pwritev64v2, unsigned long, fd,
3523a9d4 1151 const struct iovec __user *, vec,
ddef7ed2 1152 unsigned long, vlen, loff_t, pos, rwf_t, flags)
3ebfd81f 1153{
cc4b1242 1154 if (pos == -1)
3523a9d4
CH
1155 return do_writev(fd, vec, vlen, flags);
1156 return do_pwritev(fd, vec, vlen, pos, flags);
3ebfd81f
L
1157}
1158#endif
1159
f17d8b35 1160COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd,
3523a9d4 1161 const struct iovec __user *,vec,
ddef7ed2 1162 compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags)
f17d8b35
MT
1163{
1164 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1165
1166 if (pos == -1)
3523a9d4
CH
1167 return do_writev(fd, vec, vlen, flags);
1168 return do_pwritev(fd, vec, vlen, pos, flags);
72ec3516 1169}
3523a9d4 1170#endif /* CONFIG_COMPAT */
72ec3516 1171
19f4fc3a
AV
1172static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1173 size_t count, loff_t max)
1da177e4 1174{
2903ff01
AV
1175 struct fd in, out;
1176 struct inode *in_inode, *out_inode;
b964bf53 1177 struct pipe_inode_info *opipe;
1da177e4 1178 loff_t pos;
7995bd28 1179 loff_t out_pos;
1da177e4 1180 ssize_t retval;
2903ff01 1181 int fl;
1da177e4
LT
1182
1183 /*
1184 * Get input file, and verify that it is ok..
1185 */
1186 retval = -EBADF;
2903ff01
AV
1187 in = fdget(in_fd);
1188 if (!in.file)
1da177e4 1189 goto out;
2903ff01 1190 if (!(in.file->f_mode & FMODE_READ))
1da177e4 1191 goto fput_in;
1da177e4 1192 retval = -ESPIPE;
7995bd28
AV
1193 if (!ppos) {
1194 pos = in.file->f_pos;
1195 } else {
1196 pos = *ppos;
2903ff01 1197 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 1198 goto fput_in;
7995bd28
AV
1199 }
1200 retval = rw_verify_area(READ, in.file, &pos, count);
e28cc715 1201 if (retval < 0)
1da177e4 1202 goto fput_in;
bc61384d
AV
1203 if (count > MAX_RW_COUNT)
1204 count = MAX_RW_COUNT;
1da177e4 1205
1da177e4
LT
1206 /*
1207 * Get output file, and verify that it is ok..
1208 */
1209 retval = -EBADF;
2903ff01
AV
1210 out = fdget(out_fd);
1211 if (!out.file)
1da177e4 1212 goto fput_in;
2903ff01 1213 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4 1214 goto fput_out;
496ad9aa
AV
1215 in_inode = file_inode(in.file);
1216 out_inode = file_inode(out.file);
7995bd28 1217 out_pos = out.file->f_pos;
1da177e4 1218
1da177e4
LT
1219 if (!max)
1220 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1221
1da177e4
LT
1222 if (unlikely(pos + count > max)) {
1223 retval = -EOVERFLOW;
1224 if (pos >= max)
1225 goto fput_out;
1226 count = max - pos;
1227 }
1228
d96e6e71 1229 fl = 0;
534f2aaa 1230#if 0
d96e6e71
JA
1231 /*
1232 * We need to debate whether we can enable this or not. The
1233 * man page documents EAGAIN return for the output at least,
1234 * and the application is arguably buggy if it doesn't expect
1235 * EAGAIN on a non-blocking file descriptor.
1236 */
2903ff01 1237 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 1238 fl = SPLICE_F_NONBLOCK;
534f2aaa 1239#endif
b964bf53
AV
1240 opipe = get_pipe_info(out.file, true);
1241 if (!opipe) {
1242 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
1243 if (retval < 0)
1244 goto fput_out;
1245 file_start_write(out.file);
1246 retval = do_splice_direct(in.file, &pos, out.file, &out_pos,
1247 count, fl);
1248 file_end_write(out.file);
1249 } else {
1250 retval = splice_file_to_pipe(in.file, opipe, &pos, count, fl);
1251 }
1da177e4
LT
1252
1253 if (retval > 0) {
4b98d11b
AD
1254 add_rchar(current, retval);
1255 add_wchar(current, retval);
a68c2f12
SW
1256 fsnotify_access(in.file);
1257 fsnotify_modify(out.file);
7995bd28
AV
1258 out.file->f_pos = out_pos;
1259 if (ppos)
1260 *ppos = pos;
1261 else
1262 in.file->f_pos = pos;
1da177e4 1263 }
1da177e4 1264
4b98d11b
AD
1265 inc_syscr(current);
1266 inc_syscw(current);
7995bd28 1267 if (pos > max)
1da177e4
LT
1268 retval = -EOVERFLOW;
1269
1270fput_out:
2903ff01 1271 fdput(out);
1da177e4 1272fput_in:
2903ff01 1273 fdput(in);
1da177e4
LT
1274out:
1275 return retval;
1276}
1277
002c8976 1278SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
1279{
1280 loff_t pos;
1281 off_t off;
1282 ssize_t ret;
1283
1284 if (offset) {
1285 if (unlikely(get_user(off, offset)))
1286 return -EFAULT;
1287 pos = off;
1288 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1289 if (unlikely(put_user(pos, offset)))
1290 return -EFAULT;
1291 return ret;
1292 }
1293
1294 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1295}
1296
002c8976 1297SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1298{
1299 loff_t pos;
1300 ssize_t ret;
1301
1302 if (offset) {
1303 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1304 return -EFAULT;
1305 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1306 if (unlikely(put_user(pos, offset)))
1307 return -EFAULT;
1308 return ret;
1309 }
1310
1311 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1312}
19f4fc3a
AV
1313
1314#ifdef CONFIG_COMPAT
1315COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1316 compat_off_t __user *, offset, compat_size_t, count)
1317{
1318 loff_t pos;
1319 off_t off;
1320 ssize_t ret;
1321
1322 if (offset) {
1323 if (unlikely(get_user(off, offset)))
1324 return -EFAULT;
1325 pos = off;
1326 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1327 if (unlikely(put_user(pos, offset)))
1328 return -EFAULT;
1329 return ret;
1330 }
1331
1332 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1333}
1334
1335COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1336 compat_loff_t __user *, offset, compat_size_t, count)
1337{
1338 loff_t pos;
1339 ssize_t ret;
1340
1341 if (offset) {
1342 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1343 return -EFAULT;
1344 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1345 if (unlikely(put_user(pos, offset)))
1346 return -EFAULT;
1347 return ret;
1348 }
1349
1350 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1351}
1352#endif
29732938 1353
f16acc9d
DC
1354/**
1355 * generic_copy_file_range - copy data between two files
1356 * @file_in: file structure to read from
1357 * @pos_in: file offset to read from
1358 * @file_out: file structure to write data to
1359 * @pos_out: file offset to write data to
1360 * @len: amount of data to copy
1361 * @flags: copy flags
1362 *
1363 * This is a generic filesystem helper to copy data from one file to another.
1364 * It has no constraints on the source or destination file owners - the files
1365 * can belong to different superblocks and different filesystem types. Short
1366 * copies are allowed.
1367 *
1368 * This should be called from the @file_out filesystem, as per the
1369 * ->copy_file_range() method.
1370 *
1371 * Returns the number of bytes copied or a negative error indicating the
1372 * failure.
1373 */
1374
1375ssize_t generic_copy_file_range(struct file *file_in, loff_t pos_in,
1376 struct file *file_out, loff_t pos_out,
1377 size_t len, unsigned int flags)
1378{
1379 return do_splice_direct(file_in, &pos_in, file_out, &pos_out,
1380 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0);
1381}
1382EXPORT_SYMBOL(generic_copy_file_range);
1383
64bf5ff5
DC
1384static ssize_t do_copy_file_range(struct file *file_in, loff_t pos_in,
1385 struct file *file_out, loff_t pos_out,
1386 size_t len, unsigned int flags)
1387{
5dae222a
AG
1388 /*
1389 * Although we now allow filesystems to handle cross sb copy, passing
1390 * a file of the wrong filesystem type to filesystem driver can result
1391 * in an attempt to dereference the wrong type of ->private_data, so
1392 * avoid doing that until we really have a good reason. NFS defines
1393 * several different file_system_type structures, but they all end up
1394 * using the same ->copy_file_range() function pointer.
1395 */
1396 if (file_out->f_op->copy_file_range &&
1397 file_out->f_op->copy_file_range == file_in->f_op->copy_file_range)
64bf5ff5
DC
1398 return file_out->f_op->copy_file_range(file_in, pos_in,
1399 file_out, pos_out,
1400 len, flags);
1401
1402 return generic_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1403 flags);
1404}
1405
407e9c63
DW
1406/*
1407 * Performs necessary checks before doing a file copy
1408 *
1409 * Can adjust amount of bytes to copy via @req_count argument.
1410 * Returns appropriate error code that caller should return or
1411 * zero in case the copy should be allowed.
1412 */
1413static int generic_copy_file_checks(struct file *file_in, loff_t pos_in,
1414 struct file *file_out, loff_t pos_out,
1415 size_t *req_count, unsigned int flags)
1416{
1417 struct inode *inode_in = file_inode(file_in);
1418 struct inode *inode_out = file_inode(file_out);
1419 uint64_t count = *req_count;
1420 loff_t size_in;
1421 int ret;
1422
1423 ret = generic_file_rw_checks(file_in, file_out);
1424 if (ret)
1425 return ret;
1426
1427 /* Don't touch certain kinds of inodes */
1428 if (IS_IMMUTABLE(inode_out))
1429 return -EPERM;
1430
1431 if (IS_SWAPFILE(inode_in) || IS_SWAPFILE(inode_out))
1432 return -ETXTBSY;
1433
1434 /* Ensure offsets don't wrap. */
1435 if (pos_in + count < pos_in || pos_out + count < pos_out)
1436 return -EOVERFLOW;
1437
1438 /* Shorten the copy to EOF */
1439 size_in = i_size_read(inode_in);
1440 if (pos_in >= size_in)
1441 count = 0;
1442 else
1443 count = min(count, size_in - (uint64_t)pos_in);
1444
1445 ret = generic_write_check_limits(file_out, pos_out, &count);
1446 if (ret)
1447 return ret;
1448
1449 /* Don't allow overlapped copying within the same file. */
1450 if (inode_in == inode_out &&
1451 pos_out + count > pos_in &&
1452 pos_out < pos_in + count)
1453 return -EINVAL;
1454
1455 *req_count = count;
1456 return 0;
1457}
1458
29732938
ZB
1459/*
1460 * copy_file_range() differs from regular file read and write in that it
1461 * specifically allows return partial success. When it does so is up to
1462 * the copy_file_range method.
1463 */
1464ssize_t vfs_copy_file_range(struct file *file_in, loff_t pos_in,
1465 struct file *file_out, loff_t pos_out,
1466 size_t len, unsigned int flags)
1467{
29732938
ZB
1468 ssize_t ret;
1469
1470 if (flags != 0)
1471 return -EINVAL;
1472
96e6e8f4
AG
1473 ret = generic_copy_file_checks(file_in, pos_in, file_out, pos_out, &len,
1474 flags);
a3171351
AG
1475 if (unlikely(ret))
1476 return ret;
11cbfb10 1477
29732938 1478 ret = rw_verify_area(READ, file_in, &pos_in, len);
bc61384d
AV
1479 if (unlikely(ret))
1480 return ret;
1481
1482 ret = rw_verify_area(WRITE, file_out, &pos_out, len);
1483 if (unlikely(ret))
29732938
ZB
1484 return ret;
1485
29732938
ZB
1486 if (len == 0)
1487 return 0;
1488
bfe219d3 1489 file_start_write(file_out);
29732938 1490
a76b5b04
CH
1491 /*
1492 * Try cloning first, this is supported by more file systems, and
1493 * more efficient if both clone and copy are supported (e.g. NFS).
1494 */
5dae222a
AG
1495 if (file_in->f_op->remap_file_range &&
1496 file_inode(file_in)->i_sb == file_inode(file_out)->i_sb) {
42ec3d4c
DW
1497 loff_t cloned;
1498
1499 cloned = file_in->f_op->remap_file_range(file_in, pos_in,
1500 file_out, pos_out,
eca3654e
DW
1501 min_t(loff_t, MAX_RW_COUNT, len),
1502 REMAP_FILE_CAN_SHORTEN);
42ec3d4c
DW
1503 if (cloned > 0) {
1504 ret = cloned;
a76b5b04
CH
1505 goto done;
1506 }
1507 }
1508
64bf5ff5
DC
1509 ret = do_copy_file_range(file_in, pos_in, file_out, pos_out, len,
1510 flags);
1511 WARN_ON_ONCE(ret == -EOPNOTSUPP);
a76b5b04 1512done:
29732938
ZB
1513 if (ret > 0) {
1514 fsnotify_access(file_in);
1515 add_rchar(current, ret);
1516 fsnotify_modify(file_out);
1517 add_wchar(current, ret);
1518 }
a76b5b04 1519
29732938
ZB
1520 inc_syscr(current);
1521 inc_syscw(current);
1522
bfe219d3 1523 file_end_write(file_out);
29732938
ZB
1524
1525 return ret;
1526}
1527EXPORT_SYMBOL(vfs_copy_file_range);
1528
1529SYSCALL_DEFINE6(copy_file_range, int, fd_in, loff_t __user *, off_in,
1530 int, fd_out, loff_t __user *, off_out,
1531 size_t, len, unsigned int, flags)
1532{
1533 loff_t pos_in;
1534 loff_t pos_out;
1535 struct fd f_in;
1536 struct fd f_out;
1537 ssize_t ret = -EBADF;
1538
1539 f_in = fdget(fd_in);
1540 if (!f_in.file)
1541 goto out2;
1542
1543 f_out = fdget(fd_out);
1544 if (!f_out.file)
1545 goto out1;
1546
1547 ret = -EFAULT;
1548 if (off_in) {
1549 if (copy_from_user(&pos_in, off_in, sizeof(loff_t)))
1550 goto out;
1551 } else {
1552 pos_in = f_in.file->f_pos;
1553 }
1554
1555 if (off_out) {
1556 if (copy_from_user(&pos_out, off_out, sizeof(loff_t)))
1557 goto out;
1558 } else {
1559 pos_out = f_out.file->f_pos;
1560 }
1561
1562 ret = vfs_copy_file_range(f_in.file, pos_in, f_out.file, pos_out, len,
1563 flags);
1564 if (ret > 0) {
1565 pos_in += ret;
1566 pos_out += ret;
1567
1568 if (off_in) {
1569 if (copy_to_user(off_in, &pos_in, sizeof(loff_t)))
1570 ret = -EFAULT;
1571 } else {
1572 f_in.file->f_pos = pos_in;
1573 }
1574
1575 if (off_out) {
1576 if (copy_to_user(off_out, &pos_out, sizeof(loff_t)))
1577 ret = -EFAULT;
1578 } else {
1579 f_out.file->f_pos = pos_out;
1580 }
1581 }
1582
1583out:
1584 fdput(f_out);
1585out1:
1586 fdput(f_in);
1587out2:
1588 return ret;
1589}
04b38d60 1590
edc58dd0 1591/*
407e9c63
DW
1592 * Don't operate on ranges the page cache doesn't support, and don't exceed the
1593 * LFS limits. If pos is under the limit it becomes a short access. If it
1594 * exceeds the limit we return -EFBIG.
edc58dd0 1595 */
407e9c63 1596int generic_write_check_limits(struct file *file, loff_t pos, loff_t *count)
edc58dd0 1597{
407e9c63
DW
1598 struct inode *inode = file->f_mapping->host;
1599 loff_t max_size = inode->i_sb->s_maxbytes;
1600 loff_t limit = rlimit(RLIMIT_FSIZE);
edc58dd0 1601
407e9c63
DW
1602 if (limit != RLIM_INFINITY) {
1603 if (pos >= limit) {
1604 send_sig(SIGXFSZ, current, 0);
1605 return -EFBIG;
edc58dd0 1606 }
407e9c63
DW
1607 *count = min(*count, limit - pos);
1608 }
edc58dd0 1609
407e9c63
DW
1610 if (!(file->f_flags & O_LARGEFILE))
1611 max_size = MAX_NON_LFS;
c32e5f39 1612
407e9c63
DW
1613 if (unlikely(pos >= max_size))
1614 return -EFBIG;
c32e5f39 1615
407e9c63 1616 *count = min(*count, max_size - pos);
c32e5f39 1617
c32e5f39 1618 return 0;
c32e5f39 1619}
04b38d60 1620
f6f7a25a
OS
1621/* Like generic_write_checks(), but takes size of write instead of iter. */
1622int generic_write_checks_count(struct kiocb *iocb, loff_t *count)
876bec6f 1623{
407e9c63
DW
1624 struct file *file = iocb->ki_filp;
1625 struct inode *inode = file->f_mapping->host;
876bec6f 1626
407e9c63 1627 if (IS_SWAPFILE(inode))
876bec6f
DW
1628 return -ETXTBSY;
1629
f6f7a25a 1630 if (!*count)
407e9c63 1631 return 0;
5de4480a 1632
407e9c63
DW
1633 if (iocb->ki_flags & IOCB_APPEND)
1634 iocb->ki_pos = i_size_read(inode);
1b4f42a1 1635
407e9c63
DW
1636 if ((iocb->ki_flags & IOCB_NOWAIT) && !(iocb->ki_flags & IOCB_DIRECT))
1637 return -EINVAL;
1b4f42a1 1638
f6f7a25a
OS
1639 return generic_write_check_limits(iocb->ki_filp, iocb->ki_pos, count);
1640}
1641EXPORT_SYMBOL(generic_write_checks_count);
1642
1643/*
1644 * Performs necessary checks before doing a write
1645 *
1646 * Can adjust writing position or amount of bytes to write.
1647 * Returns appropriate error code that caller should return or
1648 * zero in case that write should be allowed.
1649 */
1650ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
1651{
1652 loff_t count = iov_iter_count(from);
1653 int ret;
1654
1655 ret = generic_write_checks_count(iocb, &count);
1b4f42a1
MS
1656 if (ret)
1657 return ret;
1658
407e9c63
DW
1659 iov_iter_truncate(from, count);
1660 return iov_iter_count(from);
1b4f42a1 1661}
407e9c63 1662EXPORT_SYMBOL(generic_write_checks);
1b4f42a1 1663
407e9c63
DW
1664/*
1665 * Performs common checks before doing a file copy/clone
1666 * from @file_in to @file_out.
1667 */
1668int generic_file_rw_checks(struct file *file_in, struct file *file_out)
54dbc151 1669{
407e9c63
DW
1670 struct inode *inode_in = file_inode(file_in);
1671 struct inode *inode_out = file_inode(file_out);
54dbc151 1672
407e9c63
DW
1673 /* Don't copy dirs, pipes, sockets... */
1674 if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
494633fa 1675 return -EISDIR;
407e9c63 1676 if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
22725ce4
DW
1677 return -EINVAL;
1678
407e9c63
DW
1679 if (!(file_in->f_mode & FMODE_READ) ||
1680 !(file_out->f_mode & FMODE_WRITE) ||
1681 (file_out->f_flags & O_APPEND))
1682 return -EBADF;
1b4f42a1 1683
407e9c63 1684 return 0;
54dbc151 1685}