drm/i915: Make __wait_seqno non-static and rename to __i915_wait_seqno
[deliverable/linux.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>
a27bb332 12#include <linux/aio.h>
0eeca283 13#include <linux/fsnotify.h>
1da177e4 14#include <linux/security.h>
630d9c47 15#include <linux/export.h>
1da177e4 16#include <linux/syscalls.h>
e28cc715 17#include <linux/pagemap.h>
d6b29d7c 18#include <linux/splice.h>
561c6731 19#include <linux/compat.h>
06ae43f3 20#include "internal.h"
1da177e4
LT
21
22#include <asm/uaccess.h>
23#include <asm/unistd.h>
24
c0bd14af
AV
25typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
26typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *,
27 unsigned long, loff_t);
293bc982 28typedef ssize_t (*iter_fn_t)(struct kiocb *, struct iov_iter *);
c0bd14af 29
4b6f5d20 30const struct file_operations generic_ro_fops = {
1da177e4 31 .llseek = generic_file_llseek,
aad4f8bb
AV
32 .read = new_sync_read,
33 .read_iter = generic_file_read_iter,
1da177e4 34 .mmap = generic_file_readonly_mmap,
534f2aaa 35 .splice_read = generic_file_splice_read,
1da177e4
LT
36};
37
38EXPORT_SYMBOL(generic_ro_fops);
39
cccb5a1e 40static inline int unsigned_offsets(struct file *file)
4a3956c7 41{
cccb5a1e 42 return file->f_mode & FMODE_UNSIGNED_OFFSET;
4a3956c7
KH
43}
44
46a1c2c7
JL
45/**
46 * vfs_setpos - update the file offset for lseek
47 * @file: file structure in question
48 * @offset: file offset to seek to
49 * @maxsize: maximum file size
50 *
51 * This is a low-level filesystem helper for updating the file offset to
52 * the value specified by @offset if the given offset is valid and it is
53 * not equal to the current file offset.
54 *
55 * Return the specified offset on success and -EINVAL on invalid offset.
56 */
57loff_t vfs_setpos(struct file *file, loff_t offset, loff_t maxsize)
ef3d0fd2
AK
58{
59 if (offset < 0 && !unsigned_offsets(file))
60 return -EINVAL;
61 if (offset > maxsize)
62 return -EINVAL;
63
64 if (offset != file->f_pos) {
65 file->f_pos = offset;
66 file->f_version = 0;
67 }
68 return offset;
69}
46a1c2c7 70EXPORT_SYMBOL(vfs_setpos);
ef3d0fd2 71
3a8cff4f 72/**
5760495a 73 * generic_file_llseek_size - generic llseek implementation for regular files
3a8cff4f
CH
74 * @file: file structure to seek on
75 * @offset: file offset to seek to
965c8e59 76 * @whence: type of seek
e8b96eb5
ES
77 * @size: max size of this file in file system
78 * @eof: offset used for SEEK_END position
3a8cff4f 79 *
5760495a 80 * This is a variant of generic_file_llseek that allows passing in a custom
e8b96eb5 81 * maximum file size and a custom EOF position, for e.g. hashed directories
ef3d0fd2
AK
82 *
83 * Synchronization:
5760495a 84 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
ef3d0fd2
AK
85 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
86 * read/writes behave like SEEK_SET against seeks.
3a8cff4f 87 */
9465efc9 88loff_t
965c8e59 89generic_file_llseek_size(struct file *file, loff_t offset, int whence,
e8b96eb5 90 loff_t maxsize, loff_t eof)
1da177e4 91{
965c8e59 92 switch (whence) {
3a8cff4f 93 case SEEK_END:
e8b96eb5 94 offset += eof;
3a8cff4f
CH
95 break;
96 case SEEK_CUR:
5b6f1eb9
AK
97 /*
98 * Here we special-case the lseek(fd, 0, SEEK_CUR)
99 * position-querying operation. Avoid rewriting the "same"
100 * f_pos value back to the file because a concurrent read(),
101 * write() or lseek() might have altered it
102 */
103 if (offset == 0)
104 return file->f_pos;
ef3d0fd2
AK
105 /*
106 * f_lock protects against read/modify/write race with other
107 * SEEK_CURs. Note that parallel writes and reads behave
108 * like SEEK_SET.
109 */
110 spin_lock(&file->f_lock);
46a1c2c7 111 offset = vfs_setpos(file, file->f_pos + offset, maxsize);
ef3d0fd2
AK
112 spin_unlock(&file->f_lock);
113 return offset;
982d8165
JB
114 case SEEK_DATA:
115 /*
116 * In the generic case the entire file is data, so as long as
117 * offset isn't at the end of the file then the offset is data.
118 */
e8b96eb5 119 if (offset >= eof)
982d8165
JB
120 return -ENXIO;
121 break;
122 case SEEK_HOLE:
123 /*
124 * There is a virtual hole at the end of the file, so as long as
125 * offset isn't i_size or larger, return i_size.
126 */
e8b96eb5 127 if (offset >= eof)
982d8165 128 return -ENXIO;
e8b96eb5 129 offset = eof;
982d8165 130 break;
1da177e4 131 }
3a8cff4f 132
46a1c2c7 133 return vfs_setpos(file, offset, maxsize);
5760495a
AK
134}
135EXPORT_SYMBOL(generic_file_llseek_size);
136
137/**
138 * generic_file_llseek - generic llseek implementation for regular files
139 * @file: file structure to seek on
140 * @offset: file offset to seek to
965c8e59 141 * @whence: type of seek
5760495a
AK
142 *
143 * This is a generic implemenation of ->llseek useable for all normal local
144 * filesystems. It just updates the file offset to the value specified by
546ae2d2 145 * @offset and @whence.
5760495a 146 */
965c8e59 147loff_t generic_file_llseek(struct file *file, loff_t offset, int whence)
5760495a
AK
148{
149 struct inode *inode = file->f_mapping->host;
150
965c8e59 151 return generic_file_llseek_size(file, offset, whence,
e8b96eb5
ES
152 inode->i_sb->s_maxbytes,
153 i_size_read(inode));
1da177e4 154}
9465efc9 155EXPORT_SYMBOL(generic_file_llseek);
1da177e4 156
1bf9d14d
AV
157/**
158 * fixed_size_llseek - llseek implementation for fixed-sized devices
159 * @file: file structure to seek on
160 * @offset: file offset to seek to
161 * @whence: type of seek
162 * @size: size of the file
163 *
164 */
165loff_t fixed_size_llseek(struct file *file, loff_t offset, int whence, loff_t size)
166{
167 switch (whence) {
168 case SEEK_SET: case SEEK_CUR: case SEEK_END:
169 return generic_file_llseek_size(file, offset, whence,
170 size, size);
171 default:
172 return -EINVAL;
173 }
174}
175EXPORT_SYMBOL(fixed_size_llseek);
176
ae6afc3f
B
177/**
178 * noop_llseek - No Operation Performed llseek implementation
179 * @file: file structure to seek on
180 * @offset: file offset to seek to
965c8e59 181 * @whence: type of seek
ae6afc3f
B
182 *
183 * This is an implementation of ->llseek useable for the rare special case when
184 * userspace expects the seek to succeed but the (device) file is actually not
185 * able to perform the seek. In this case you use noop_llseek() instead of
186 * falling back to the default implementation of ->llseek.
187 */
965c8e59 188loff_t noop_llseek(struct file *file, loff_t offset, int whence)
ae6afc3f
B
189{
190 return file->f_pos;
191}
192EXPORT_SYMBOL(noop_llseek);
193
965c8e59 194loff_t no_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
195{
196 return -ESPIPE;
197}
198EXPORT_SYMBOL(no_llseek);
199
965c8e59 200loff_t default_llseek(struct file *file, loff_t offset, int whence)
1da177e4 201{
496ad9aa 202 struct inode *inode = file_inode(file);
16abef0e 203 loff_t retval;
1da177e4 204
982d8165 205 mutex_lock(&inode->i_mutex);
965c8e59 206 switch (whence) {
7b8e8924 207 case SEEK_END:
982d8165 208 offset += i_size_read(inode);
1da177e4 209 break;
7b8e8924 210 case SEEK_CUR:
5b6f1eb9
AK
211 if (offset == 0) {
212 retval = file->f_pos;
213 goto out;
214 }
1da177e4 215 offset += file->f_pos;
982d8165
JB
216 break;
217 case SEEK_DATA:
218 /*
219 * In the generic case the entire file is data, so as
220 * long as offset isn't at the end of the file then the
221 * offset is data.
222 */
bacb2d81
DC
223 if (offset >= inode->i_size) {
224 retval = -ENXIO;
225 goto out;
226 }
982d8165
JB
227 break;
228 case SEEK_HOLE:
229 /*
230 * There is a virtual hole at the end of the file, so
231 * as long as offset isn't i_size or larger, return
232 * i_size.
233 */
bacb2d81
DC
234 if (offset >= inode->i_size) {
235 retval = -ENXIO;
236 goto out;
237 }
982d8165
JB
238 offset = inode->i_size;
239 break;
1da177e4
LT
240 }
241 retval = -EINVAL;
cccb5a1e 242 if (offset >= 0 || unsigned_offsets(file)) {
1da177e4
LT
243 if (offset != file->f_pos) {
244 file->f_pos = offset;
245 file->f_version = 0;
246 }
247 retval = offset;
248 }
5b6f1eb9 249out:
982d8165 250 mutex_unlock(&inode->i_mutex);
1da177e4
LT
251 return retval;
252}
253EXPORT_SYMBOL(default_llseek);
254
965c8e59 255loff_t vfs_llseek(struct file *file, loff_t offset, int whence)
1da177e4
LT
256{
257 loff_t (*fn)(struct file *, loff_t, int);
258
259 fn = no_llseek;
260 if (file->f_mode & FMODE_LSEEK) {
72c2d531 261 if (file->f_op->llseek)
1da177e4
LT
262 fn = file->f_op->llseek;
263 }
965c8e59 264 return fn(file, offset, whence);
1da177e4
LT
265}
266EXPORT_SYMBOL(vfs_llseek);
267
9c225f26
LT
268static inline struct fd fdget_pos(int fd)
269{
bd2a31d5 270 return __to_fd(__fdget_pos(fd));
9c225f26
LT
271}
272
273static inline void fdput_pos(struct fd f)
274{
275 if (f.flags & FDPUT_POS_UNLOCK)
276 mutex_unlock(&f.file->f_pos_lock);
277 fdput(f);
278}
279
965c8e59 280SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence)
1da177e4
LT
281{
282 off_t retval;
9c225f26 283 struct fd f = fdget_pos(fd);
2903ff01
AV
284 if (!f.file)
285 return -EBADF;
1da177e4
LT
286
287 retval = -EINVAL;
965c8e59
AM
288 if (whence <= SEEK_MAX) {
289 loff_t res = vfs_llseek(f.file, offset, whence);
1da177e4
LT
290 retval = res;
291 if (res != (loff_t)retval)
292 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
293 }
9c225f26 294 fdput_pos(f);
1da177e4
LT
295 return retval;
296}
297
561c6731
AV
298#ifdef CONFIG_COMPAT
299COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence)
300{
301 return sys_lseek(fd, offset, whence);
302}
303#endif
304
1da177e4 305#ifdef __ARCH_WANT_SYS_LLSEEK
003d7ab4
HC
306SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
307 unsigned long, offset_low, loff_t __user *, result,
965c8e59 308 unsigned int, whence)
1da177e4
LT
309{
310 int retval;
d7a15f8d 311 struct fd f = fdget_pos(fd);
1da177e4 312 loff_t offset;
1da177e4 313
2903ff01
AV
314 if (!f.file)
315 return -EBADF;
1da177e4
LT
316
317 retval = -EINVAL;
965c8e59 318 if (whence > SEEK_MAX)
1da177e4
LT
319 goto out_putf;
320
2903ff01 321 offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low,
965c8e59 322 whence);
1da177e4
LT
323
324 retval = (int)offset;
325 if (offset >= 0) {
326 retval = -EFAULT;
327 if (!copy_to_user(result, &offset, sizeof(offset)))
328 retval = 0;
329 }
330out_putf:
d7a15f8d 331 fdput_pos(f);
1da177e4
LT
332 return retval;
333}
334#endif
335
e28cc715
LT
336/*
337 * rw_verify_area doesn't like huge counts. We limit
338 * them to something that fits in "int" so that others
339 * won't have to do range checks all the time.
340 */
68d70d03 341int rw_verify_area(int read_write, struct file *file, const loff_t *ppos, size_t count)
1da177e4
LT
342{
343 struct inode *inode;
344 loff_t pos;
c43e259c 345 int retval = -EINVAL;
1da177e4 346
496ad9aa 347 inode = file_inode(file);
e28cc715 348 if (unlikely((ssize_t) count < 0))
c43e259c 349 return retval;
1da177e4 350 pos = *ppos;
cccb5a1e
AV
351 if (unlikely(pos < 0)) {
352 if (!unsigned_offsets(file))
353 return retval;
354 if (count >= -pos) /* both values are in 0..LLONG_MAX */
355 return -EOVERFLOW;
356 } else if (unlikely((loff_t) (pos + count) < 0)) {
357 if (!unsigned_offsets(file))
4a3956c7
KH
358 return retval;
359 }
1da177e4 360
a16877ca 361 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
c43e259c 362 retval = locks_mandatory_area(
e28cc715
LT
363 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
364 inode, file, pos, count);
365 if (retval < 0)
366 return retval;
367 }
c43e259c
JM
368 retval = security_file_permission(file,
369 read_write == READ ? MAY_READ : MAY_WRITE);
370 if (retval)
371 return retval;
e28cc715 372 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
1da177e4
LT
373}
374
375ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
376{
027445c3 377 struct iovec iov = { .iov_base = buf, .iov_len = len };
1da177e4
LT
378 struct kiocb kiocb;
379 ssize_t ret;
380
381 init_sync_kiocb(&kiocb, filp);
382 kiocb.ki_pos = *ppos;
61964eba 383 kiocb.ki_nbytes = len;
027445c3 384
41003a7b 385 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
1da177e4
LT
386 if (-EIOCBQUEUED == ret)
387 ret = wait_on_sync_kiocb(&kiocb);
388 *ppos = kiocb.ki_pos;
389 return ret;
390}
391
392EXPORT_SYMBOL(do_sync_read);
393
293bc982
AV
394ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
395{
396 struct iovec iov = { .iov_base = buf, .iov_len = len };
397 struct kiocb kiocb;
398 struct iov_iter iter;
399 ssize_t ret;
400
401 init_sync_kiocb(&kiocb, filp);
402 kiocb.ki_pos = *ppos;
403 kiocb.ki_nbytes = len;
404 iov_iter_init(&iter, READ, &iov, 1, len);
405
406 ret = filp->f_op->read_iter(&kiocb, &iter);
407 if (-EIOCBQUEUED == ret)
408 ret = wait_on_sync_kiocb(&kiocb);
409 *ppos = kiocb.ki_pos;
410 return ret;
411}
412
413EXPORT_SYMBOL(new_sync_read);
414
1da177e4
LT
415ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
416{
417 ssize_t ret;
418
419 if (!(file->f_mode & FMODE_READ))
420 return -EBADF;
7f7f25e8 421 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4
LT
422 return -EINVAL;
423 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
424 return -EFAULT;
425
426 ret = rw_verify_area(READ, file, pos, count);
e28cc715
LT
427 if (ret >= 0) {
428 count = ret;
c43e259c
JM
429 if (file->f_op->read)
430 ret = file->f_op->read(file, buf, count, pos);
293bc982 431 else if (file->f_op->aio_read)
c43e259c 432 ret = do_sync_read(file, buf, count, pos);
293bc982
AV
433 else
434 ret = new_sync_read(file, buf, count, pos);
c43e259c 435 if (ret > 0) {
2a12a9d7 436 fsnotify_access(file);
c43e259c 437 add_rchar(current, ret);
1da177e4 438 }
c43e259c 439 inc_syscr(current);
1da177e4
LT
440 }
441
442 return ret;
443}
444
445EXPORT_SYMBOL(vfs_read);
446
447ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
448{
027445c3 449 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
1da177e4
LT
450 struct kiocb kiocb;
451 ssize_t ret;
452
453 init_sync_kiocb(&kiocb, filp);
454 kiocb.ki_pos = *ppos;
61964eba 455 kiocb.ki_nbytes = len;
027445c3 456
41003a7b 457 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
1da177e4
LT
458 if (-EIOCBQUEUED == ret)
459 ret = wait_on_sync_kiocb(&kiocb);
460 *ppos = kiocb.ki_pos;
461 return ret;
462}
463
464EXPORT_SYMBOL(do_sync_write);
465
293bc982
AV
466ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
467{
468 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
469 struct kiocb kiocb;
470 struct iov_iter iter;
471 ssize_t ret;
472
473 init_sync_kiocb(&kiocb, filp);
474 kiocb.ki_pos = *ppos;
475 kiocb.ki_nbytes = len;
476 iov_iter_init(&iter, WRITE, &iov, 1, len);
477
478 ret = filp->f_op->write_iter(&kiocb, &iter);
479 if (-EIOCBQUEUED == ret)
480 ret = wait_on_sync_kiocb(&kiocb);
481 *ppos = kiocb.ki_pos;
482 return ret;
483}
484
485EXPORT_SYMBOL(new_sync_write);
486
06ae43f3
AV
487ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
488{
489 mm_segment_t old_fs;
490 const char __user *p;
491 ssize_t ret;
492
7f7f25e8 493 if (!(file->f_mode & FMODE_CAN_WRITE))
3e84f48e
AV
494 return -EINVAL;
495
06ae43f3
AV
496 old_fs = get_fs();
497 set_fs(get_ds());
498 p = (__force const char __user *)buf;
499 if (count > MAX_RW_COUNT)
500 count = MAX_RW_COUNT;
501 if (file->f_op->write)
502 ret = file->f_op->write(file, p, count, pos);
293bc982 503 else if (file->f_op->aio_write)
06ae43f3 504 ret = do_sync_write(file, p, count, pos);
293bc982
AV
505 else
506 ret = new_sync_write(file, p, count, pos);
06ae43f3
AV
507 set_fs(old_fs);
508 if (ret > 0) {
509 fsnotify_modify(file);
510 add_wchar(current, ret);
511 }
512 inc_syscw(current);
513 return ret;
514}
515
2ec3a12a
AV
516EXPORT_SYMBOL(__kernel_write);
517
1da177e4
LT
518ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
519{
520 ssize_t ret;
521
522 if (!(file->f_mode & FMODE_WRITE))
523 return -EBADF;
7f7f25e8 524 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4
LT
525 return -EINVAL;
526 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
527 return -EFAULT;
528
529 ret = rw_verify_area(WRITE, file, pos, count);
e28cc715
LT
530 if (ret >= 0) {
531 count = ret;
03d95eb2 532 file_start_write(file);
c43e259c
JM
533 if (file->f_op->write)
534 ret = file->f_op->write(file, buf, count, pos);
293bc982 535 else if (file->f_op->aio_write)
c43e259c 536 ret = do_sync_write(file, buf, count, pos);
293bc982
AV
537 else
538 ret = new_sync_write(file, buf, count, pos);
c43e259c 539 if (ret > 0) {
2a12a9d7 540 fsnotify_modify(file);
c43e259c 541 add_wchar(current, ret);
1da177e4 542 }
c43e259c 543 inc_syscw(current);
03d95eb2 544 file_end_write(file);
1da177e4
LT
545 }
546
547 return ret;
548}
549
550EXPORT_SYMBOL(vfs_write);
551
552static inline loff_t file_pos_read(struct file *file)
553{
554 return file->f_pos;
555}
556
557static inline void file_pos_write(struct file *file, loff_t pos)
558{
559 file->f_pos = pos;
560}
561
3cdad428 562SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
1da177e4 563{
9c225f26 564 struct fd f = fdget_pos(fd);
1da177e4 565 ssize_t ret = -EBADF;
1da177e4 566
2903ff01
AV
567 if (f.file) {
568 loff_t pos = file_pos_read(f.file);
569 ret = vfs_read(f.file, buf, count, &pos);
5faf153e
AV
570 if (ret >= 0)
571 file_pos_write(f.file, pos);
9c225f26 572 fdput_pos(f);
1da177e4 573 }
1da177e4
LT
574 return ret;
575}
1da177e4 576
3cdad428
HC
577SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
578 size_t, count)
1da177e4 579{
9c225f26 580 struct fd f = fdget_pos(fd);
1da177e4 581 ssize_t ret = -EBADF;
1da177e4 582
2903ff01
AV
583 if (f.file) {
584 loff_t pos = file_pos_read(f.file);
585 ret = vfs_write(f.file, buf, count, &pos);
5faf153e
AV
586 if (ret >= 0)
587 file_pos_write(f.file, pos);
9c225f26 588 fdput_pos(f);
1da177e4
LT
589 }
590
591 return ret;
592}
593
4a0fd5bf
AV
594SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf,
595 size_t, count, loff_t, pos)
1da177e4 596{
2903ff01 597 struct fd f;
1da177e4 598 ssize_t ret = -EBADF;
1da177e4
LT
599
600 if (pos < 0)
601 return -EINVAL;
602
2903ff01
AV
603 f = fdget(fd);
604 if (f.file) {
1da177e4 605 ret = -ESPIPE;
2903ff01
AV
606 if (f.file->f_mode & FMODE_PREAD)
607 ret = vfs_read(f.file, buf, count, &pos);
608 fdput(f);
1da177e4
LT
609 }
610
611 return ret;
612}
613
4a0fd5bf
AV
614SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf,
615 size_t, count, loff_t, pos)
1da177e4 616{
2903ff01 617 struct fd f;
1da177e4 618 ssize_t ret = -EBADF;
1da177e4
LT
619
620 if (pos < 0)
621 return -EINVAL;
622
2903ff01
AV
623 f = fdget(fd);
624 if (f.file) {
1da177e4 625 ret = -ESPIPE;
2903ff01
AV
626 if (f.file->f_mode & FMODE_PWRITE)
627 ret = vfs_write(f.file, buf, count, &pos);
628 fdput(f);
1da177e4
LT
629 }
630
631 return ret;
632}
633
634/*
635 * Reduce an iovec's length in-place. Return the resulting number of segments
636 */
637unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
638{
639 unsigned long seg = 0;
640 size_t len = 0;
641
642 while (seg < nr_segs) {
643 seg++;
644 if (len + iov->iov_len >= to) {
645 iov->iov_len = to - len;
646 break;
647 }
648 len += iov->iov_len;
649 iov++;
650 }
651 return seg;
652}
19295529 653EXPORT_SYMBOL(iov_shorten);
1da177e4 654
293bc982
AV
655static ssize_t do_iter_readv_writev(struct file *filp, int rw, const struct iovec *iov,
656 unsigned long nr_segs, size_t len, loff_t *ppos, iter_fn_t fn)
657{
658 struct kiocb kiocb;
659 struct iov_iter iter;
660 ssize_t ret;
661
662 init_sync_kiocb(&kiocb, filp);
663 kiocb.ki_pos = *ppos;
664 kiocb.ki_nbytes = len;
665
666 iov_iter_init(&iter, rw, iov, nr_segs, len);
667 ret = fn(&kiocb, &iter);
668 if (ret == -EIOCBQUEUED)
669 ret = wait_on_sync_kiocb(&kiocb);
670 *ppos = kiocb.ki_pos;
671 return ret;
672}
673
72ec3516 674static ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
ee0b3e67
BP
675 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
676{
677 struct kiocb kiocb;
678 ssize_t ret;
679
680 init_sync_kiocb(&kiocb, filp);
681 kiocb.ki_pos = *ppos;
ee0b3e67
BP
682 kiocb.ki_nbytes = len;
683
41003a7b 684 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
ee0b3e67
BP
685 if (ret == -EIOCBQUEUED)
686 ret = wait_on_sync_kiocb(&kiocb);
687 *ppos = kiocb.ki_pos;
688 return ret;
689}
690
691/* Do it by hand, with file-ops */
72ec3516 692static ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
ee0b3e67
BP
693 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
694{
695 struct iovec *vector = iov;
696 ssize_t ret = 0;
697
698 while (nr_segs > 0) {
699 void __user *base;
700 size_t len;
701 ssize_t nr;
702
703 base = vector->iov_base;
704 len = vector->iov_len;
705 vector++;
706 nr_segs--;
707
708 nr = fn(filp, base, len, ppos);
709
710 if (nr < 0) {
711 if (!ret)
712 ret = nr;
713 break;
714 }
715 ret += nr;
716 if (nr != len)
717 break;
718 }
719
720 return ret;
721}
722
1da177e4
LT
723/* A write operation does a read from user space and vice versa */
724#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
725
eed4e51f
BP
726ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
727 unsigned long nr_segs, unsigned long fast_segs,
728 struct iovec *fast_pointer,
ac34ebb3 729 struct iovec **ret_pointer)
435f49a5 730{
eed4e51f 731 unsigned long seg;
435f49a5 732 ssize_t ret;
eed4e51f
BP
733 struct iovec *iov = fast_pointer;
734
435f49a5
LT
735 /*
736 * SuS says "The readv() function *may* fail if the iovcnt argument
737 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
738 * traditionally returned zero for zero segments, so...
739 */
eed4e51f
BP
740 if (nr_segs == 0) {
741 ret = 0;
435f49a5 742 goto out;
eed4e51f
BP
743 }
744
435f49a5
LT
745 /*
746 * First get the "struct iovec" from user memory and
747 * verify all the pointers
748 */
eed4e51f
BP
749 if (nr_segs > UIO_MAXIOV) {
750 ret = -EINVAL;
435f49a5 751 goto out;
eed4e51f
BP
752 }
753 if (nr_segs > fast_segs) {
435f49a5 754 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
eed4e51f
BP
755 if (iov == NULL) {
756 ret = -ENOMEM;
435f49a5 757 goto out;
eed4e51f 758 }
435f49a5 759 }
eed4e51f
BP
760 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
761 ret = -EFAULT;
435f49a5 762 goto out;
eed4e51f
BP
763 }
764
435f49a5 765 /*
eed4e51f
BP
766 * According to the Single Unix Specification we should return EINVAL
767 * if an element length is < 0 when cast to ssize_t or if the
768 * total length would overflow the ssize_t return value of the
769 * system call.
435f49a5
LT
770 *
771 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
772 * overflow case.
773 */
eed4e51f 774 ret = 0;
435f49a5
LT
775 for (seg = 0; seg < nr_segs; seg++) {
776 void __user *buf = iov[seg].iov_base;
777 ssize_t len = (ssize_t)iov[seg].iov_len;
eed4e51f
BP
778
779 /* see if we we're about to use an invalid len or if
780 * it's about to overflow ssize_t */
435f49a5 781 if (len < 0) {
eed4e51f 782 ret = -EINVAL;
435f49a5 783 goto out;
eed4e51f 784 }
ac34ebb3 785 if (type >= 0
fcf63409 786 && unlikely(!access_ok(vrfy_dir(type), buf, len))) {
eed4e51f 787 ret = -EFAULT;
435f49a5
LT
788 goto out;
789 }
790 if (len > MAX_RW_COUNT - ret) {
791 len = MAX_RW_COUNT - ret;
792 iov[seg].iov_len = len;
eed4e51f 793 }
eed4e51f 794 ret += len;
435f49a5 795 }
eed4e51f
BP
796out:
797 *ret_pointer = iov;
798 return ret;
799}
800
1da177e4
LT
801static ssize_t do_readv_writev(int type, struct file *file,
802 const struct iovec __user * uvector,
803 unsigned long nr_segs, loff_t *pos)
804{
1da177e4
LT
805 size_t tot_len;
806 struct iovec iovstack[UIO_FASTIOV];
ee0b3e67 807 struct iovec *iov = iovstack;
1da177e4 808 ssize_t ret;
1da177e4
LT
809 io_fn_t fn;
810 iov_fn_t fnv;
293bc982 811 iter_fn_t iter_fn;
1da177e4 812
eed4e51f 813 ret = rw_copy_check_uvector(type, uvector, nr_segs,
ac34ebb3 814 ARRAY_SIZE(iovstack), iovstack, &iov);
eed4e51f 815 if (ret <= 0)
1da177e4 816 goto out;
1da177e4 817
eed4e51f 818 tot_len = ret;
1da177e4 819 ret = rw_verify_area(type, file, pos, tot_len);
e28cc715 820 if (ret < 0)
411b67b4 821 goto out;
1da177e4
LT
822
823 fnv = NULL;
824 if (type == READ) {
825 fn = file->f_op->read;
ee0b3e67 826 fnv = file->f_op->aio_read;
293bc982 827 iter_fn = file->f_op->read_iter;
1da177e4
LT
828 } else {
829 fn = (io_fn_t)file->f_op->write;
ee0b3e67 830 fnv = file->f_op->aio_write;
293bc982 831 iter_fn = file->f_op->write_iter;
03d95eb2 832 file_start_write(file);
1da177e4
LT
833 }
834
293bc982
AV
835 if (iter_fn)
836 ret = do_iter_readv_writev(file, type, iov, nr_segs, tot_len,
837 pos, iter_fn);
838 else if (fnv)
ee0b3e67
BP
839 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
840 pos, fnv);
841 else
842 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
1da177e4 843
03d95eb2
AV
844 if (type != READ)
845 file_end_write(file);
846
1da177e4
LT
847out:
848 if (iov != iovstack)
849 kfree(iov);
0eeca283
RL
850 if ((ret + (type == READ)) > 0) {
851 if (type == READ)
2a12a9d7 852 fsnotify_access(file);
0eeca283 853 else
2a12a9d7 854 fsnotify_modify(file);
0eeca283 855 }
1da177e4 856 return ret;
1da177e4
LT
857}
858
859ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
860 unsigned long vlen, loff_t *pos)
861{
862 if (!(file->f_mode & FMODE_READ))
863 return -EBADF;
7f7f25e8 864 if (!(file->f_mode & FMODE_CAN_READ))
1da177e4
LT
865 return -EINVAL;
866
867 return do_readv_writev(READ, file, vec, vlen, pos);
868}
869
870EXPORT_SYMBOL(vfs_readv);
871
872ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
873 unsigned long vlen, loff_t *pos)
874{
875 if (!(file->f_mode & FMODE_WRITE))
876 return -EBADF;
7f7f25e8 877 if (!(file->f_mode & FMODE_CAN_WRITE))
1da177e4
LT
878 return -EINVAL;
879
880 return do_readv_writev(WRITE, file, vec, vlen, pos);
881}
882
883EXPORT_SYMBOL(vfs_writev);
884
3cdad428
HC
885SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
886 unsigned long, vlen)
1da177e4 887{
9c225f26 888 struct fd f = fdget_pos(fd);
1da177e4 889 ssize_t ret = -EBADF;
1da177e4 890
2903ff01
AV
891 if (f.file) {
892 loff_t pos = file_pos_read(f.file);
893 ret = vfs_readv(f.file, vec, vlen, &pos);
5faf153e
AV
894 if (ret >= 0)
895 file_pos_write(f.file, pos);
9c225f26 896 fdput_pos(f);
1da177e4
LT
897 }
898
899 if (ret > 0)
4b98d11b
AD
900 add_rchar(current, ret);
901 inc_syscr(current);
1da177e4
LT
902 return ret;
903}
904
3cdad428
HC
905SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
906 unsigned long, vlen)
1da177e4 907{
9c225f26 908 struct fd f = fdget_pos(fd);
1da177e4 909 ssize_t ret = -EBADF;
1da177e4 910
2903ff01
AV
911 if (f.file) {
912 loff_t pos = file_pos_read(f.file);
913 ret = vfs_writev(f.file, vec, vlen, &pos);
5faf153e
AV
914 if (ret >= 0)
915 file_pos_write(f.file, pos);
9c225f26 916 fdput_pos(f);
1da177e4
LT
917 }
918
919 if (ret > 0)
4b98d11b
AD
920 add_wchar(current, ret);
921 inc_syscw(current);
1da177e4
LT
922 return ret;
923}
924
601cc11d
LT
925static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
926{
927#define HALF_LONG_BITS (BITS_PER_LONG / 2)
928 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
929}
930
f3554f4b 931SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
601cc11d 932 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
f3554f4b 933{
601cc11d 934 loff_t pos = pos_from_hilo(pos_h, pos_l);
2903ff01 935 struct fd f;
f3554f4b 936 ssize_t ret = -EBADF;
f3554f4b
GH
937
938 if (pos < 0)
939 return -EINVAL;
940
2903ff01
AV
941 f = fdget(fd);
942 if (f.file) {
f3554f4b 943 ret = -ESPIPE;
2903ff01
AV
944 if (f.file->f_mode & FMODE_PREAD)
945 ret = vfs_readv(f.file, vec, vlen, &pos);
946 fdput(f);
f3554f4b
GH
947 }
948
949 if (ret > 0)
950 add_rchar(current, ret);
951 inc_syscr(current);
952 return ret;
953}
954
955SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
601cc11d 956 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
f3554f4b 957{
601cc11d 958 loff_t pos = pos_from_hilo(pos_h, pos_l);
2903ff01 959 struct fd f;
f3554f4b 960 ssize_t ret = -EBADF;
f3554f4b
GH
961
962 if (pos < 0)
963 return -EINVAL;
964
2903ff01
AV
965 f = fdget(fd);
966 if (f.file) {
f3554f4b 967 ret = -ESPIPE;
2903ff01
AV
968 if (f.file->f_mode & FMODE_PWRITE)
969 ret = vfs_writev(f.file, vec, vlen, &pos);
970 fdput(f);
f3554f4b
GH
971 }
972
973 if (ret > 0)
974 add_wchar(current, ret);
975 inc_syscw(current);
976 return ret;
977}
978
72ec3516
AV
979#ifdef CONFIG_COMPAT
980
981static ssize_t compat_do_readv_writev(int type, struct file *file,
982 const struct compat_iovec __user *uvector,
983 unsigned long nr_segs, loff_t *pos)
984{
985 compat_ssize_t tot_len;
986 struct iovec iovstack[UIO_FASTIOV];
987 struct iovec *iov = iovstack;
988 ssize_t ret;
989 io_fn_t fn;
990 iov_fn_t fnv;
293bc982 991 iter_fn_t iter_fn;
72ec3516 992
72ec3516
AV
993 ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
994 UIO_FASTIOV, iovstack, &iov);
995 if (ret <= 0)
996 goto out;
997
998 tot_len = ret;
999 ret = rw_verify_area(type, file, pos, tot_len);
1000 if (ret < 0)
1001 goto out;
1002
1003 fnv = NULL;
1004 if (type == READ) {
1005 fn = file->f_op->read;
1006 fnv = file->f_op->aio_read;
293bc982 1007 iter_fn = file->f_op->read_iter;
72ec3516
AV
1008 } else {
1009 fn = (io_fn_t)file->f_op->write;
1010 fnv = file->f_op->aio_write;
293bc982 1011 iter_fn = file->f_op->write_iter;
03d95eb2 1012 file_start_write(file);
72ec3516
AV
1013 }
1014
293bc982
AV
1015 if (iter_fn)
1016 ret = do_iter_readv_writev(file, type, iov, nr_segs, tot_len,
1017 pos, iter_fn);
1018 else if (fnv)
72ec3516
AV
1019 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1020 pos, fnv);
03d95eb2 1021 else
72ec3516
AV
1022 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
1023
03d95eb2
AV
1024 if (type != READ)
1025 file_end_write(file);
1026
72ec3516
AV
1027out:
1028 if (iov != iovstack)
1029 kfree(iov);
1030 if ((ret + (type == READ)) > 0) {
1031 if (type == READ)
1032 fsnotify_access(file);
1033 else
1034 fsnotify_modify(file);
1035 }
1036 return ret;
1037}
1038
1039static size_t compat_readv(struct file *file,
1040 const struct compat_iovec __user *vec,
1041 unsigned long vlen, loff_t *pos)
1042{
1043 ssize_t ret = -EBADF;
1044
1045 if (!(file->f_mode & FMODE_READ))
1046 goto out;
1047
1048 ret = -EINVAL;
7f7f25e8 1049 if (!(file->f_mode & FMODE_CAN_READ))
72ec3516
AV
1050 goto out;
1051
1052 ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
1053
1054out:
1055 if (ret > 0)
1056 add_rchar(current, ret);
1057 inc_syscr(current);
1058 return ret;
1059}
1060
dfd948e3 1061COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
72ec3516 1062 const struct compat_iovec __user *,vec,
dfd948e3 1063 compat_ulong_t, vlen)
72ec3516 1064{
9c225f26 1065 struct fd f = fdget_pos(fd);
72ec3516
AV
1066 ssize_t ret;
1067 loff_t pos;
1068
1069 if (!f.file)
1070 return -EBADF;
1071 pos = f.file->f_pos;
1072 ret = compat_readv(f.file, vec, vlen, &pos);
5faf153e
AV
1073 if (ret >= 0)
1074 f.file->f_pos = pos;
9c225f26 1075 fdput_pos(f);
72ec3516
AV
1076 return ret;
1077}
1078
378a10f3
HC
1079static long __compat_sys_preadv64(unsigned long fd,
1080 const struct compat_iovec __user *vec,
1081 unsigned long vlen, loff_t pos)
72ec3516
AV
1082{
1083 struct fd f;
1084 ssize_t ret;
1085
1086 if (pos < 0)
1087 return -EINVAL;
1088 f = fdget(fd);
1089 if (!f.file)
1090 return -EBADF;
1091 ret = -ESPIPE;
1092 if (f.file->f_mode & FMODE_PREAD)
1093 ret = compat_readv(f.file, vec, vlen, &pos);
1094 fdput(f);
1095 return ret;
1096}
1097
378a10f3
HC
1098#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1099COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1100 const struct compat_iovec __user *,vec,
1101 unsigned long, vlen, loff_t, pos)
1102{
1103 return __compat_sys_preadv64(fd, vec, vlen, pos);
1104}
1105#endif
1106
dfd948e3 1107COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
72ec3516 1108 const struct compat_iovec __user *,vec,
dfd948e3 1109 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1110{
1111 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3
HC
1112
1113 return __compat_sys_preadv64(fd, vec, vlen, pos);
72ec3516
AV
1114}
1115
1116static size_t compat_writev(struct file *file,
1117 const struct compat_iovec __user *vec,
1118 unsigned long vlen, loff_t *pos)
1119{
1120 ssize_t ret = -EBADF;
1121
1122 if (!(file->f_mode & FMODE_WRITE))
1123 goto out;
1124
1125 ret = -EINVAL;
7f7f25e8 1126 if (!(file->f_mode & FMODE_CAN_WRITE))
72ec3516
AV
1127 goto out;
1128
1129 ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1130
1131out:
1132 if (ret > 0)
1133 add_wchar(current, ret);
1134 inc_syscw(current);
1135 return ret;
1136}
1137
dfd948e3 1138COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
72ec3516 1139 const struct compat_iovec __user *, vec,
dfd948e3 1140 compat_ulong_t, vlen)
72ec3516 1141{
9c225f26 1142 struct fd f = fdget_pos(fd);
72ec3516
AV
1143 ssize_t ret;
1144 loff_t pos;
1145
1146 if (!f.file)
1147 return -EBADF;
1148 pos = f.file->f_pos;
1149 ret = compat_writev(f.file, vec, vlen, &pos);
5faf153e
AV
1150 if (ret >= 0)
1151 f.file->f_pos = pos;
9c225f26 1152 fdput_pos(f);
72ec3516
AV
1153 return ret;
1154}
1155
378a10f3
HC
1156static long __compat_sys_pwritev64(unsigned long fd,
1157 const struct compat_iovec __user *vec,
1158 unsigned long vlen, loff_t pos)
72ec3516
AV
1159{
1160 struct fd f;
1161 ssize_t ret;
1162
1163 if (pos < 0)
1164 return -EINVAL;
1165 f = fdget(fd);
1166 if (!f.file)
1167 return -EBADF;
1168 ret = -ESPIPE;
1169 if (f.file->f_mode & FMODE_PWRITE)
1170 ret = compat_writev(f.file, vec, vlen, &pos);
1171 fdput(f);
1172 return ret;
1173}
1174
378a10f3
HC
1175#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1176COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1177 const struct compat_iovec __user *,vec,
1178 unsigned long, vlen, loff_t, pos)
1179{
1180 return __compat_sys_pwritev64(fd, vec, vlen, pos);
1181}
1182#endif
1183
dfd948e3 1184COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
72ec3516 1185 const struct compat_iovec __user *,vec,
dfd948e3 1186 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
72ec3516
AV
1187{
1188 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
378a10f3
HC
1189
1190 return __compat_sys_pwritev64(fd, vec, vlen, pos);
72ec3516
AV
1191}
1192#endif
1193
19f4fc3a
AV
1194static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
1195 size_t count, loff_t max)
1da177e4 1196{
2903ff01
AV
1197 struct fd in, out;
1198 struct inode *in_inode, *out_inode;
1da177e4 1199 loff_t pos;
7995bd28 1200 loff_t out_pos;
1da177e4 1201 ssize_t retval;
2903ff01 1202 int fl;
1da177e4
LT
1203
1204 /*
1205 * Get input file, and verify that it is ok..
1206 */
1207 retval = -EBADF;
2903ff01
AV
1208 in = fdget(in_fd);
1209 if (!in.file)
1da177e4 1210 goto out;
2903ff01 1211 if (!(in.file->f_mode & FMODE_READ))
1da177e4 1212 goto fput_in;
1da177e4 1213 retval = -ESPIPE;
7995bd28
AV
1214 if (!ppos) {
1215 pos = in.file->f_pos;
1216 } else {
1217 pos = *ppos;
2903ff01 1218 if (!(in.file->f_mode & FMODE_PREAD))
1da177e4 1219 goto fput_in;
7995bd28
AV
1220 }
1221 retval = rw_verify_area(READ, in.file, &pos, count);
e28cc715 1222 if (retval < 0)
1da177e4 1223 goto fput_in;
e28cc715 1224 count = retval;
1da177e4 1225
1da177e4
LT
1226 /*
1227 * Get output file, and verify that it is ok..
1228 */
1229 retval = -EBADF;
2903ff01
AV
1230 out = fdget(out_fd);
1231 if (!out.file)
1da177e4 1232 goto fput_in;
2903ff01 1233 if (!(out.file->f_mode & FMODE_WRITE))
1da177e4
LT
1234 goto fput_out;
1235 retval = -EINVAL;
496ad9aa
AV
1236 in_inode = file_inode(in.file);
1237 out_inode = file_inode(out.file);
7995bd28
AV
1238 out_pos = out.file->f_pos;
1239 retval = rw_verify_area(WRITE, out.file, &out_pos, count);
e28cc715 1240 if (retval < 0)
1da177e4 1241 goto fput_out;
e28cc715 1242 count = retval;
1da177e4 1243
1da177e4
LT
1244 if (!max)
1245 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
1246
1da177e4
LT
1247 if (unlikely(pos + count > max)) {
1248 retval = -EOVERFLOW;
1249 if (pos >= max)
1250 goto fput_out;
1251 count = max - pos;
1252 }
1253
d96e6e71 1254 fl = 0;
534f2aaa 1255#if 0
d96e6e71
JA
1256 /*
1257 * We need to debate whether we can enable this or not. The
1258 * man page documents EAGAIN return for the output at least,
1259 * and the application is arguably buggy if it doesn't expect
1260 * EAGAIN on a non-blocking file descriptor.
1261 */
2903ff01 1262 if (in.file->f_flags & O_NONBLOCK)
d96e6e71 1263 fl = SPLICE_F_NONBLOCK;
534f2aaa 1264#endif
50cd2c57 1265 file_start_write(out.file);
7995bd28 1266 retval = do_splice_direct(in.file, &pos, out.file, &out_pos, count, fl);
50cd2c57 1267 file_end_write(out.file);
1da177e4
LT
1268
1269 if (retval > 0) {
4b98d11b
AD
1270 add_rchar(current, retval);
1271 add_wchar(current, retval);
a68c2f12
SW
1272 fsnotify_access(in.file);
1273 fsnotify_modify(out.file);
7995bd28
AV
1274 out.file->f_pos = out_pos;
1275 if (ppos)
1276 *ppos = pos;
1277 else
1278 in.file->f_pos = pos;
1da177e4 1279 }
1da177e4 1280
4b98d11b
AD
1281 inc_syscr(current);
1282 inc_syscw(current);
7995bd28 1283 if (pos > max)
1da177e4
LT
1284 retval = -EOVERFLOW;
1285
1286fput_out:
2903ff01 1287 fdput(out);
1da177e4 1288fput_in:
2903ff01 1289 fdput(in);
1da177e4
LT
1290out:
1291 return retval;
1292}
1293
002c8976 1294SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
1da177e4
LT
1295{
1296 loff_t pos;
1297 off_t off;
1298 ssize_t ret;
1299
1300 if (offset) {
1301 if (unlikely(get_user(off, offset)))
1302 return -EFAULT;
1303 pos = off;
1304 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1305 if (unlikely(put_user(pos, offset)))
1306 return -EFAULT;
1307 return ret;
1308 }
1309
1310 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1311}
1312
002c8976 1313SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
1da177e4
LT
1314{
1315 loff_t pos;
1316 ssize_t ret;
1317
1318 if (offset) {
1319 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1320 return -EFAULT;
1321 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1322 if (unlikely(put_user(pos, offset)))
1323 return -EFAULT;
1324 return ret;
1325 }
1326
1327 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1328}
19f4fc3a
AV
1329
1330#ifdef CONFIG_COMPAT
1331COMPAT_SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd,
1332 compat_off_t __user *, offset, compat_size_t, count)
1333{
1334 loff_t pos;
1335 off_t off;
1336 ssize_t ret;
1337
1338 if (offset) {
1339 if (unlikely(get_user(off, offset)))
1340 return -EFAULT;
1341 pos = off;
1342 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
1343 if (unlikely(put_user(pos, offset)))
1344 return -EFAULT;
1345 return ret;
1346 }
1347
1348 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1349}
1350
1351COMPAT_SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd,
1352 compat_loff_t __user *, offset, compat_size_t, count)
1353{
1354 loff_t pos;
1355 ssize_t ret;
1356
1357 if (offset) {
1358 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
1359 return -EFAULT;
1360 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
1361 if (unlikely(put_user(pos, offset)))
1362 return -EFAULT;
1363 return ret;
1364 }
1365
1366 return do_sendfile(out_fd, in_fd, NULL, count, 0);
1367}
1368#endif
This page took 0.762929 seconds and 5 git commands to generate.