]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/read_write.c
Don't bother with redoing rw_verify_area() from default_file_splice_from()
[mirror_ubuntu-artful-kernel.git] / fs / read_write.c
CommitLineData
1da177e4
LT
1/*
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>
0eeca283 12#include <linux/fsnotify.h>
1da177e4 13#include <linux/security.h>
630d9c47 14#include <linux/export.h>
1da177e4 15#include <linux/syscalls.h>
e28cc715 16#include <linux/pagemap.h>
d6b29d7c 17#include <linux/splice.h>
561c6731 18#include <linux/compat.h>
ee0b3e67 19#include "read_write.h"
06ae43f3 20#include "internal.h"
1da177e4
LT
21
22#include <asm/uaccess.h>
23#include <asm/unistd.h>
24
4b6f5d20 25const struct file_operations generic_ro_fops = {
1da177e4 26 .llseek = generic_file_llseek,
543ade1f
BP
27 .read = do_sync_read,
28 .aio_read = generic_file_aio_read,
1da177e4 29 .mmap = generic_file_readonly_mmap,
534f2aaa 30 .splice_read = generic_file_splice_read,
1da177e4
LT
31};
32
33EXPORT_SYMBOL(generic_ro_fops);
34
cccb5a1e 35static inline int unsigned_offsets(struct file *file)
4a3956c7 36{
cccb5a1e 37 return file->f_mode & FMODE_UNSIGNED_OFFSET;
4a3956c7
KH
38}
39
ef3d0fd2
AK
40static loff_t lseek_execute(struct file *file, struct inode *inode,
41 loff_t offset, loff_t maxsize)
42{
43 if (offset < 0 && !unsigned_offsets(file))
44 return -EINVAL;
45 if (offset > maxsize)
46 return -EINVAL;
47
48 if (offset != file->f_pos) {
49 file->f_pos = offset;
50 file->f_version = 0;
51 }
52 return offset;
53}
54
3a8cff4f 55/**
5760495a 56 * generic_file_llseek_size - generic llseek implementation for regular files
3a8cff4f
CH
57 * @file: file structure to seek on
58 * @offset: file offset to seek to
965c8e59 59 * @whence: type of seek
e8b96eb5
ES
60 * @size: max size of this file in file system
61 * @eof: offset used for SEEK_END position
3a8cff4f 62 *
5760495a 63 * This is a variant of generic_file_llseek that allows passing in a custom
e8b96eb5 64 * maximum file size and a custom EOF position, for e.g. hashed directories
ef3d0fd2
AK
65 *
66 * Synchronization:
5760495a 67 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
ef3d0fd2
AK
68 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
69 * read/writes behave like SEEK_SET against seeks.
3a8cff4f 70 */
9465efc9 71loff_t
965c8e59 72generic_file_llseek_size(struct file *file, loff_t offset, int whence,
e8b96eb5 73 loff_t maxsize, loff_t eof)
1da177e4 74{
1da177e4
LT
75 struct inode *inode = file->f_mapping->host;
76
965c8e59 77 switch (whence) {
3a8cff4f 78 case SEEK_END:
e8b96eb5 79 offset += eof;
3a8cff4f
CH
80 break;
81 case SEEK_CUR:
5b6f1eb9
AK
82 /*
83 * Here we special-case the lseek(fd, 0, SEEK_CUR)
84 * position-querying operation. Avoid rewriting the "same"
85 * f_pos value back to the file because a concurrent read(),
86 * write() or lseek() might have altered it
87 */
88 if (offset == 0)
89 return file->f_pos;
ef3d0fd2
AK
90 /*
91 * f_lock protects against read/modify/write race with other
92 * SEEK_CURs. Note that parallel writes and reads behave
93 * like SEEK_SET.
94 */
95 spin_lock(&file->f_lock);
96 offset = lseek_execute(file, inode, file->f_pos + offset,
5760495a 97 maxsize);
ef3d0fd2
AK
98 spin_unlock(&file->f_lock);
99 return offset;
982d8165
JB
100 case SEEK_DATA:
101 /*
102 * In the generic case the entire file is data, so as long as
103 * offset isn't at the end of the file then the offset is data.
104 */
e8b96eb5 105 if (offset >= eof)
982d8165
JB
106 return -ENXIO;
107 break;
108 case SEEK_HOLE:
109 /*
110 * There is a virtual hole at the end of the file, so as long as
111 * offset isn't i_size or larger, return i_size.
112 */
e8b96eb5 113 if (offset >= eof)
982d8165 114 return -ENXIO;
e8b96eb5 115 offset = eof;
982d8165 116 break;
1da177e4 117 }
3a8cff4f 118
5760495a
AK
119 return lseek_execute(file, inode, offset, maxsize);
120}
121EXPORT_SYMBOL(generic_file_llseek_size);
122
123/**
124 * generic_file_llseek - generic llseek implementation for regular files
125 * @file: file structure to seek on
126 * @offset: file offset to seek to
965c8e59 127 * @whence: type of seek
5760495a
AK
128 *
129 * This is a generic implemenation of ->llseek useable for all normal local
130 * filesystems. It just updates the file offset to the value specified by
965c8e59 131 * @offset and @whence under i_mutex.
5760495a 132 */
965c8e59 133loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
5760495a
AK
134{
135 struct inode *inode = file->f_mapping->host;
136
965c8e59 137 return generic_file_llseek_size(file, offset, whence,
e8b96eb5
ES
138 inode->i_sb->s_maxbytes,
139 i_size_read(inode));
1da177e4 140}
9465efc9 141EXPORT_SYMBOL(generic_file_llseek);
1da177e4 142
ae6afc3f
B
143/**
144 * noop_llseek - No Operation Performed llseek implementation
145 * @file: file structure to seek on
146 * @offset: file offset to seek to
965c8e59 147 * @whence: type of seek
ae6afc3f
B
148 *
149 * This is an implementation of ->llseek useable for the rare special case when
150 * userspace expects the seek to succeed but the (device) file is actually not
151 * able to perform the seek. In this case you use noop_llseek() instead of
152 * falling back to the default implementation of ->llseek.
153 */
965c8e59 154loff_t noop_llseek(struct file *file, loff_t offset, int whence)
ae6afc3f
B
155{
156 return file->f_pos;
157}
158EXPORT_SYMBOL(noop_llseek);
159
965c8e59 160loff_t no_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
161{
162 return -ESPIPE;
163}
164EXPORT_SYMBOL(no_llseek);
165
965c8e59 166loff_t default_llseek(struct file *file, loff_t offset, int whence)
1da177e4 167{
496ad9aa 168 struct inode *inode = file_inode(file);
16abef0e 169 loff_t retval;
1da177e4 170
982d8165 171 mutex_lock(&inode->i_mutex);
965c8e59 172 switch (whence) {
7b8e8924 173 case SEEK_END:
982d8165 174 offset += i_size_read(inode);
1da177e4 175 break;
7b8e8924 176 case SEEK_CUR:
5b6f1eb9
AK
177 if (offset == 0) {
178 retval = file->f_pos;
179 goto out;
180 }
1da177e4 181 offset += file->f_pos;
982d8165
JB
182 break;
183 case SEEK_DATA:
184 /*
185 * In the generic case the entire file is data, so as
186 * long as offset isn't at the end of the file then the
187 * offset is data.
188 */
bacb2d81
DC
189 if (offset >= inode->i_size) {
190 retval = -ENXIO;
191 goto out;
192 }
982d8165
JB
193 break;
194 case SEEK_HOLE:
195 /*
196 * There is a virtual hole at the end of the file, so
197 * as long as offset isn't i_size or larger, return
198 * i_size.
199 */
bacb2d81
DC
200 if (offset >= inode->i_size) {
201 retval = -ENXIO;
202 goto out;
203 }
982d8165
JB
204 offset = inode->i_size;
205 break;
1da177e4
LT
206 }
207 retval = -EINVAL;
cccb5a1e 208 if (offset >= 0 || unsigned_offsets(file)) {
1da177e4
LT
209 if (offset != file->f_pos) {
210 file->f_pos = offset;
211 file->f_version = 0;
212 }
213 retval = offset;
214 }
5b6f1eb9 215out:
982d8165 216 mutex_unlock(&inode->i_mutex);
1da177e4
LT
217 return retval;
218}
219EXPORT_SYMBOL(default_llseek);
220
965c8e59 221loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
222{
223 loff_t (*fn)(struct file *, loff_t, int);
224
225 fn = no_llseek;
226 if (file->f_mode & FMODE_LSEEK) {
1da177e4
LT
227 if (file->f_op && file->f_op->llseek)
228 fn = file->f_op->llseek;
229 }
965c8e59 230 return fn(file, offset, whence);
1da177e4
LT
231}
232EXPORT_SYMBOL(vfs_llseek);
233
965c8e59 234SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
1da177e4
LT
235{
236 off_t retval;
2903ff01
AV
237 struct fd f = fdget(fd);
238 if (!f.file)
239 return -EBADF;
1da177e4
LT
240
241 retval = -EINVAL;
965c8e59
AM
242 if (whence <= SEEK_MAX) {
243 loff_t res = vfs_llseek(f.file, offset, whence);
1da177e4
LT
244 retval = res;
245 if (res != (loff_t)retval)
246 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
247 }
2903ff01 248 fdput(f);
1da177e4
LT
249 return retval;
250}
251
561c6731
AV
252#ifdef CONFIG_COMPAT
253COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
254{
255 return sys_lseek(fd, offset, whence);
256}
257#endif
258
1da177e4 259#ifdef __ARCH_WANT_SYS_LLSEEK
003d7ab4
HC
260SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
261 unsigned long, offset_low, loff_t __user *, result,
965c8e59 262 unsigned int, whence)
1da177e4
LT
263{
264 int retval;
2903ff01 265 struct fd f = fdget(fd);
1da177e4 266 loff_t offset;
1da177e4 267
2903ff01
AV
268 if (!f.file)
269 return -EBADF;
1da177e4
LT
270
271 retval = -EINVAL;
965c8e59 272 if (whence > SEEK_MAX)
1da177e4
LT
273 goto out_putf;
274
2903ff01 275 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 276 whence);
1da177e4
LT
277
278 retval = (int)offset;
279 if (offset >= 0) {
280 retval = -EFAULT;
281 if (!copy_to_user(result, &offset, sizeof(offset)))
282 retval = 0;
283 }
284out_putf:
2903ff01 285 fdput(f);
1da177e4
LT
286 return retval;
287}
288#endif
289
e28cc715
LT
290/*
291 * rw_verify_area doesn't like huge counts. We limit
292 * them to something that fits in "int" so that others
293 * won't have to do range checks all the time.
294 */
1da177e4
LT
295int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
296{
297 struct inode *inode;
298 loff_t pos;
c43e259c 299 int retval = -EINVAL;
1da177e4 300
496ad9aa 301 inode = file_inode(file);
e28cc715 302 if (unlikely((ssize_t) count < 0))
c43e259c 303 return retval;
1da177e4 304 pos = *ppos;
cccb5a1e
AV
305 if (unlikely(pos < 0)) {
306 if (!unsigned_offsets(file))
307 return retval;
308 if (count >= -pos) /* both values are in 0..LLONG_MAX */
309 return -EOVERFLOW;
310 } else if (unlikely((loff_t) (pos + count) < 0)) {
311 if (!unsigned_offsets(file))
4a3956c7
KH
312 return retval;
313 }
1da177e4 314
a16877ca 315 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
c43e259c 316 retval = locks_mandatory_area(
e28cc715
LT
317 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
318 inode, file, pos, count);
319 if (retval < 0)
320 return retval;
321 }
c43e259c
JM
322 retval = security_file_permission(file,
323 read_write == READ ? MAY_READ : MAY_WRITE);
324 if (retval)
325 return retval;
e28cc715 326 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
1da177e4
LT
327}
328
63e68809
BL
329static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
330{
331 set_current_state(TASK_UNINTERRUPTIBLE);
332 if (!kiocbIsKicked(iocb))
333 schedule();
334 else
335 kiocbClearKicked(iocb);
336 __set_current_state(TASK_RUNNING);
337}
338
1da177e4
LT
339ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
340{
027445c3 341 struct iovec iov = { .iov_base = buf, .iov_len = len };
1da177e4
LT
342 struct kiocb kiocb;
343 ssize_t ret;
344
345 init_sync_kiocb(&kiocb, filp);
346 kiocb.ki_pos = *ppos;
027445c3 347 kiocb.ki_left = len;
61964eba 348 kiocb.ki_nbytes = len;
027445c3
BP
349
350 for (;;) {
351 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
352 if (ret != -EIOCBRETRY)
353 break;
63e68809 354 wait_on_retry_sync_kiocb(&kiocb);
027445c3 355 }
63e68809 356
1da177e4
LT
357 if (-EIOCBQUEUED == ret)
358 ret = wait_on_sync_kiocb(&kiocb);
359 *ppos = kiocb.ki_pos;
360 return ret;
361}
362
363EXPORT_SYMBOL(do_sync_read);
364
365ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
366{
367 ssize_t ret;
368
369 if (!(file->f_mode & FMODE_READ))
370 return -EBADF;
371 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
372 return -EINVAL;
373 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
374 return -EFAULT;
375
376 ret = rw_verify_area(READ, file, pos, count);
e28cc715
LT
377 if (ret >= 0) {
378 count = ret;
c43e259c
JM
379 if (file->f_op->read)
380 ret = file->f_op->read(file, buf, count, pos);
381 else
382 ret = do_sync_read(file, buf, count, pos);
383 if (ret > 0) {
2a12a9d7 384 fsnotify_access(file);
c43e259c 385 add_rchar(current, ret);
1da177e4 386 }
c43e259c 387 inc_syscr(current);
1da177e4
LT
388 }
389
390 return ret;
391}
392
393EXPORT_SYMBOL(vfs_read);
394
395ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
396{
027445c3 397 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
1da177e4
LT
398 struct kiocb kiocb;
399 ssize_t ret;
400
401 init_sync_kiocb(&kiocb, filp);
402 kiocb.ki_pos = *ppos;
027445c3 403 kiocb.ki_left = len;
61964eba 404 kiocb.ki_nbytes = len;
027445c3
BP
405
406 for (;;) {
407 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
408 if (ret != -EIOCBRETRY)
409 break;
63e68809 410 wait_on_retry_sync_kiocb(&kiocb);
027445c3 411 }
63e68809 412
1da177e4
LT
413 if (-EIOCBQUEUED == ret)
414 ret = wait_on_sync_kiocb(&kiocb);
415 *ppos = kiocb.ki_pos;
416 return ret;
417}
418
419EXPORT_SYMBOL(do_sync_write);
420
06ae43f3
AV
421ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
422{
423 mm_segment_t old_fs;
424 const char __user *p;
425 ssize_t ret;
426
427 old_fs = get_fs();
428 set_fs(get_ds());
429 p = (__force const char __user *)buf;
430 if (count > MAX_RW_COUNT)
431 count = MAX_RW_COUNT;
432 if (file->f_op->write)
433 ret = file->f_op->write(file, p, count, pos);
434 else
435 ret = do_sync_write(file, p, count, pos);
436 set_fs(old_fs);
437 if (ret > 0) {
438 fsnotify_modify(file);
439 add_wchar(current, ret);
440 }
441 inc_syscw(current);
442 return ret;
443}
444
1da177e4
LT
445ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
446{
447 ssize_t ret;
448
449 if (!(file->f_mode & FMODE_WRITE))
450 return -EBADF;
451 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
452 return -EINVAL;
453 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
454 return -EFAULT;
455
456 ret = rw_verify_area(WRITE, file, pos, count);
e28cc715
LT
457 if (ret >= 0) {
458 count = ret;
c43e259c
JM
459 if (file->f_op->write)
460 ret = file->f_op->write(file, buf, count, pos);
461 else
462 ret = do_sync_write(file, buf, count, pos);
463 if (ret > 0) {
2a12a9d7 464 fsnotify_modify(file);
c43e259c 465 add_wchar(current, ret);
1da177e4 466 }
c43e259c 467 inc_syscw(current);
1da177e4
LT
468 }
469
470 return ret;
471}
472
473EXPORT_SYMBOL(vfs_write);
474
475static inline loff_t file_pos_read(struct file *file)
476{
477 return file->f_pos;
478}
479
480static inline void file_pos_write(struct file *file, loff_t pos)
481{
482 file->f_pos = pos;
483}
484
3cdad428 485SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
1da177e4 486{
2903ff01 487 struct fd f = fdget(fd);
1da177e4 488 ssize_t ret = -EBADF;
1da177e4 489
2903ff01
AV
490 if (f.file) {
491 loff_t pos = file_pos_read(f.file);
492 ret = vfs_read(f.file, buf, count, &pos);
493 file_pos_write(f.file, pos);
494 fdput(f);
1da177e4 495 }
1da177e4
LT
496 return ret;
497}
1da177e4 498
3cdad428
HC
499SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
500 size_t, count)
1da177e4 501{
2903ff01 502 struct fd f = fdget(fd);
1da177e4 503 ssize_t ret = -EBADF;
1da177e4 504
2903ff01
AV
505 if (f.file) {
506 loff_t pos = file_pos_read(f.file);
507 ret = vfs_write(f.file, buf, count, &pos);
508 file_pos_write(f.file, pos);
509 fdput(f);
1da177e4
LT
510 }
511
512 return ret;
513}
514
6673e0c3
HC
515SYSCALL_DEFINE(pread64)(unsigned int fd, char __user *buf,
516 size_t count, loff_t pos)
1da177e4 517{
2903ff01 518 struct fd f;
1da177e4 519 ssize_t ret = -EBADF;
1da177e4
LT
520
521 if (pos < 0)
522 return -EINVAL;
523
2903ff01
AV
524 f = fdget(fd);
525 if (f.file) {
1da177e4 526 ret = -ESPIPE;
2903ff01
AV
527 if (f.file->f_mode & FMODE_PREAD)
528 ret = vfs_read(f.file, buf, count, &pos);
529 fdput(f);
1da177e4
LT
530 }
531
532 return ret;
533}
6673e0c3
HC
534#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
535asmlinkage long SyS_pread64(long fd, long buf, long count, loff_t pos)
536{
537 return SYSC_pread64((unsigned int) fd, (char __user *) buf,
538 (size_t) count, pos);
539}
540SYSCALL_ALIAS(sys_pread64, SyS_pread64);
541#endif
1da177e4 542
6673e0c3
HC
543SYSCALL_DEFINE(pwrite64)(unsigned int fd, const char __user *buf,
544 size_t count, loff_t pos)
1da177e4 545{
2903ff01 546 struct fd f;
1da177e4 547 ssize_t ret = -EBADF;
1da177e4
LT
548
549 if (pos < 0)
550 return -EINVAL;
551
2903ff01
AV
552 f = fdget(fd);
553 if (f.file) {
1da177e4 554 ret = -ESPIPE;
2903ff01
AV
555 if (f.file->f_mode & FMODE_PWRITE)
556 ret = vfs_write(f.file, buf, count, &pos);
557 fdput(f);
1da177e4
LT
558 }
559
560 return ret;
561}
6673e0c3
HC
562#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
563asmlinkage long SyS_pwrite64(long fd, long buf, long count, loff_t pos)
564{
565 return SYSC_pwrite64((unsigned int) fd, (const char __user *) buf,
566 (size_t) count, pos);
567}
568SYSCALL_ALIAS(sys_pwrite64, SyS_pwrite64);
569#endif
1da177e4
LT
570
571/*
572 * Reduce an iovec's length in-place. Return the resulting number of segments
573 */
574unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
575{
576 unsigned long seg = 0;
577 size_t len = 0;
578
579 while (seg < nr_segs) {
580 seg++;
581 if (len + iov->iov_len >= to) {
582 iov->iov_len = to - len;
583 break;
584 }
585 len += iov->iov_len;
586 iov++;
587 }
588 return seg;
589}
19295529 590EXPORT_SYMBOL(iov_shorten);
1da177e4 591
ee0b3e67
BP
592ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
593 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
594{
595 struct kiocb kiocb;
596 ssize_t ret;
597
598 init_sync_kiocb(&kiocb, filp);
599 kiocb.ki_pos = *ppos;
600 kiocb.ki_left = len;
601 kiocb.ki_nbytes = len;
602
603 for (;;) {
604 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
605 if (ret != -EIOCBRETRY)
606 break;
607 wait_on_retry_sync_kiocb(&kiocb);
608 }
609
610 if (ret == -EIOCBQUEUED)
611 ret = wait_on_sync_kiocb(&kiocb);
612 *ppos = kiocb.ki_pos;
613 return ret;
614}
615
616/* Do it by hand, with file-ops */
617ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
618 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
619{
620 struct iovec *vector = iov;
621 ssize_t ret = 0;
622
623 while (nr_segs > 0) {
624 void __user *base;
625 size_t len;
626 ssize_t nr;
627
628 base = vector->iov_base;
629 len = vector->iov_len;
630 vector++;
631 nr_segs--;
632
633 nr = fn(filp, base, len, ppos);
634
635 if (nr < 0) {
636 if (!ret)
637 ret = nr;
638 break;
639 }
640 ret += nr;
641 if (nr != len)
642 break;
643 }
644
645 return ret;
646}
647
1da177e4
LT
648/* A write operation does a read from user space and vice versa */
649#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
650
eed4e51f
BP
651ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
652 unsigned long nr_segs, unsigned long fast_segs,
653 struct iovec *fast_pointer,
ac34ebb3 654 struct iovec **ret_pointer)
435f49a5 655{
eed4e51f 656 unsigned long seg;
435f49a5 657 ssize_t ret;
eed4e51f
BP
658 struct iovec *iov = fast_pointer;
659
435f49a5
LT
660 /*
661 * SuS says "The readv() function *may* fail if the iovcnt argument
662 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
663 * traditionally returned zero for zero segments, so...
664 */
eed4e51f
BP
665 if (nr_segs == 0) {
666 ret = 0;
435f49a5 667 goto out;
eed4e51f
BP
668 }
669
435f49a5
LT
670 /*
671 * First get the "struct iovec" from user memory and
672 * verify all the pointers
673 */
eed4e51f
BP
674 if (nr_segs > UIO_MAXIOV) {
675 ret = -EINVAL;
435f49a5 676 goto out;
eed4e51f
BP
677 }
678 if (nr_segs > fast_segs) {
435f49a5 679 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
eed4e51f
BP
680 if (iov == NULL) {
681 ret = -ENOMEM;
435f49a5 682 goto out;
eed4e51f 683 }
435f49a5 684 }
eed4e51f
BP
685 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
686 ret = -EFAULT;
435f49a5 687 goto out;
eed4e51f
BP
688 }
689
435f49a5 690 /*
eed4e51f
BP
691 * According to the Single Unix Specification we should return EINVAL
692 * if an element length is < 0 when cast to ssize_t or if the
693 * total length would overflow the ssize_t return value of the
694 * system call.
435f49a5
LT
695 *
696 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
697 * overflow case.
698 */
eed4e51f 699 ret = 0;
435f49a5
LT
700 for (seg = 0; seg < nr_segs; seg++) {
701 void __user *buf = iov[seg].iov_base;
702 ssize_t len = (ssize_t)iov[seg].iov_len;
eed4e51f
BP
703
704 /* see if we we're about to use an invalid len or if
705 * it's about to overflow ssize_t */
435f49a5 706 if (len < 0) {
eed4e51f 707 ret = -EINVAL;
435f49a5 708 goto out;
eed4e51f 709 }
ac34ebb3 710 if (type >= 0
fcf63409 711 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
eed4e51f 712 ret = -EFAULT;
435f49a5
LT
713 goto out;
714 }
715 if (len > MAX_RW_COUNT - ret) {
716 len = MAX_RW_COUNT - ret;
717 iov[seg].iov_len = len;
eed4e51f 718 }
eed4e51f 719 ret += len;
435f49a5 720 }
eed4e51f
BP
721out:
722 *ret_pointer = iov;
723 return ret;
724}
725
1da177e4
LT
726static ssize_t do_readv_writev(int type, struct file *file,
727 const struct iovec __user * uvector,
728 unsigned long nr_segs, loff_t *pos)
729{
1da177e4
LT
730 size_t tot_len;
731 struct iovec iovstack[UIO_FASTIOV];
ee0b3e67 732 struct iovec *iov = iovstack;
1da177e4 733 ssize_t ret;
1da177e4
LT
734 io_fn_t fn;
735 iov_fn_t fnv;
736
eed4e51f
BP
737 if (!file->f_op) {
738 ret = -EINVAL;
1da177e4 739 goto out;
1da177e4 740 }
1da177e4 741
eed4e51f 742 ret = rw_copy_check_uvector(type, uvector, nr_segs,
ac34ebb3 743 ARRAY_SIZE(iovstack), iovstack, &iov);
eed4e51f 744 if (ret <= 0)
1da177e4 745 goto out;
1da177e4 746
eed4e51f 747 tot_len = ret;
1da177e4 748 ret = rw_verify_area(type, file, pos, tot_len);
e28cc715 749 if (ret < 0)
411b67b4 750 goto out;
1da177e4
LT
751
752 fnv = NULL;
753 if (type == READ) {
754 fn = file->f_op->read;
ee0b3e67 755 fnv = file->f_op->aio_read;
1da177e4
LT
756 } else {
757 fn = (io_fn_t)file->f_op->write;
ee0b3e67 758 fnv = file->f_op->aio_write;
1da177e4
LT
759 }
760
ee0b3e67
BP
761 if (fnv)
762 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
763 pos, fnv);
764 else
765 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
1da177e4 766
1da177e4
LT
767out:
768 if (iov != iovstack)
769 kfree(iov);
0eeca283
RL
770 if ((ret + (type == READ)) > 0) {
771 if (type == READ)
2a12a9d7 772 fsnotify_access(file);
0eeca283 773 else
2a12a9d7 774 fsnotify_modify(file);
0eeca283 775 }
1da177e4 776 return ret;
1da177e4
LT
777}
778
779ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
780 unsigned long vlen, loff_t *pos)
781{
782 if (!(file->f_mode & FMODE_READ))
783 return -EBADF;
ee0b3e67 784 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
1da177e4
LT
785 return -EINVAL;
786
787 return do_readv_writev(READ, file, vec, vlen, pos);
788}
789
790EXPORT_SYMBOL(vfs_readv);
791
792ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
793 unsigned long vlen, loff_t *pos)
794{
795 if (!(file->f_mode & FMODE_WRITE))
796 return -EBADF;
ee0b3e67 797 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
1da177e4
LT
798 return -EINVAL;
799
800 return do_readv_writev(WRITE, file, vec, vlen, pos);
801}
802
803EXPORT_SYMBOL(vfs_writev);
804
3cdad428
HC
805SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
806 unsigned long, vlen)
1da177e4 807{
2903ff01 808 struct fd f = fdget(fd);
1da177e4 809 ssize_t ret = -EBADF;
1da177e4 810
2903ff01
AV
811 if (f.file) {
812 loff_t pos = file_pos_read(f.file);
813 ret = vfs_readv(f.file, vec, vlen, &pos);
814 file_pos_write(f.file, pos);
815 fdput(f);
1da177e4
LT
816 }
817
818 if (ret > 0)
4b98d11b
AD
819 add_rchar(current, ret);
820 inc_syscr(current);
1da177e4
LT
821 return ret;
822}
823
3cdad428
HC
824SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
825 unsigned long, vlen)
1da177e4 826{
2903ff01 827 struct fd f = fdget(fd);
1da177e4 828 ssize_t ret = -EBADF;
1da177e4 829
2903ff01
AV
830 if (f.file) {
831 loff_t pos = file_pos_read(f.file);
832 ret = vfs_writev(f.file, vec, vlen, &pos);
833 file_pos_write(f.file, pos);
834 fdput(f);
1da177e4
LT
835 }
836
837 if (ret > 0)
4b98d11b
AD
838 add_wchar(current, ret);
839 inc_syscw(current);
1da177e4
LT
840 return ret;
841}
842
601cc11d
LT
843static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
844{
845#define HALF_LONG_BITS (BITS_PER_LONG / 2)
846 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
847}
848
f3554f4b 849SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
601cc11d 850 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
f3554f4b 851{
601cc11d 852 loff_t pos = pos_from_hilo(pos_h, pos_l);
2903ff01 853 struct fd f;
f3554f4b 854 ssize_t ret = -EBADF;
f3554f4b
GH
855
856 if (pos < 0)
857 return -EINVAL;
858
2903ff01
AV
859 f = fdget(fd);
860 if (f.file) {
f3554f4b 861 ret = -ESPIPE;
2903ff01
AV
862 if (f.file->f_mode & FMODE_PREAD)
863 ret = vfs_readv(f.file, vec, vlen, &pos);
864 fdput(f);
f3554f4b
GH
865 }
866
867 if (ret > 0)
868 add_rchar(current, ret);
869 inc_syscr(current);
870 return ret;
871}
872
873SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
601cc11d 874 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
f3554f4b 875{
601cc11d 876 loff_t pos = pos_from_hilo(pos_h, pos_l);
2903ff01 877 struct fd f;
f3554f4b 878 ssize_t ret = -EBADF;
f3554f4b
GH
879
880 if (pos < 0)
881 return -EINVAL;
882
2903ff01
AV
883 f = fdget(fd);
884 if (f.file) {
f3554f4b 885 ret = -ESPIPE;
2903ff01
AV
886 if (f.file->f_mode & FMODE_PWRITE)
887 ret = vfs_writev(f.file, vec, vlen, &pos);
888 fdput(f);
f3554f4b
GH
889 }
890
891 if (ret > 0)
892 add_wchar(current, ret);
893 inc_syscw(current);
894 return ret;
895}
896
8f9c0119
CM
897ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos, size_t count,
898 loff_t max)
1da177e4 899{
2903ff01
AV
900 struct fd in, out;
901 struct inode *in_inode, *out_inode;
1da177e4
LT
902 loff_t pos;
903 ssize_t retval;
2903ff01 904 int fl;
1da177e4
LT
905
906 /*
907 * Get input file, and verify that it is ok..
908 */
909 retval = -EBADF;
2903ff01
AV
910 in = fdget(in_fd);
911 if (!in.file)
1da177e4 912 goto out;
2903ff01 913 if (!(in.file->f_mode & FMODE_READ))
1da177e4 914 goto fput_in;
1da177e4
LT
915 retval = -ESPIPE;
916 if (!ppos)
2903ff01 917 ppos = &in.file->f_pos;
1da177e4 918 else
2903ff01 919 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 920 goto fput_in;
2903ff01 921 retval = rw_verify_area(READ, in.file, ppos, count);
e28cc715 922 if (retval < 0)
1da177e4 923 goto fput_in;
e28cc715 924 count = retval;
1da177e4 925
1da177e4
LT
926 /*
927 * Get output file, and verify that it is ok..
928 */
929 retval = -EBADF;
2903ff01
AV
930 out = fdget(out_fd);
931 if (!out.file)
1da177e4 932 goto fput_in;
2903ff01 933 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4
LT
934 goto fput_out;
935 retval = -EINVAL;
496ad9aa
AV
936 in_inode = file_inode(in.file);
937 out_inode = file_inode(out.file);
2903ff01 938 retval = rw_verify_area(WRITE, out.file, &out.file->f_pos, count);
e28cc715 939 if (retval < 0)
1da177e4 940 goto fput_out;
e28cc715 941 count = retval;
1da177e4 942
1da177e4
LT
943 if (!max)
944 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
945
946 pos = *ppos;
1da177e4
LT
947 if (unlikely(pos + count > max)) {
948 retval = -EOVERFLOW;
949 if (pos >= max)
950 goto fput_out;
951 count = max - pos;
952 }
953
d96e6e71 954 fl = 0;
534f2aaa 955#if 0
d96e6e71
JA
956 /*
957 * We need to debate whether we can enable this or not. The
958 * man page documents EAGAIN return for the output at least,
959 * and the application is arguably buggy if it doesn't expect
960 * EAGAIN on a non-blocking file descriptor.
961 */
2903ff01 962 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 963 fl = SPLICE_F_NONBLOCK;
534f2aaa 964#endif
2903ff01 965 retval = do_splice_direct(in.file, ppos, out.file, count, fl);
1da177e4
LT
966
967 if (retval > 0) {
4b98d11b
AD
968 add_rchar(current, retval);
969 add_wchar(current, retval);
a68c2f12
SW
970 fsnotify_access(in.file);
971 fsnotify_modify(out.file);
1da177e4 972 }
1da177e4 973
4b98d11b
AD
974 inc_syscr(current);
975 inc_syscw(current);
1da177e4
LT
976 if (*ppos > max)
977 retval = -EOVERFLOW;
978
979fput_out:
2903ff01 980 fdput(out);
1da177e4 981fput_in:
2903ff01 982 fdput(in);
1da177e4
LT
983out:
984 return retval;
985}
986
002c8976 987SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
988{
989 loff_t pos;
990 off_t off;
991 ssize_t ret;
992
993 if (offset) {
994 if (unlikely(get_user(off, offset)))
995 return -EFAULT;
996 pos = off;
997 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
998 if (unlikely(put_user(pos, offset)))
999 return -EFAULT;
1000 return ret;
1001 }
1002
1003 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1004}
1005
002c8976 1006SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1007{
1008 loff_t pos;
1009 ssize_t ret;
1010
1011 if (offset) {
1012 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1013 return -EFAULT;
1014 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1015 if (unlikely(put_user(pos, offset)))
1016 return -EFAULT;
1017 return ret;
1018 }
1019
1020 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1021}