ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / read_write.c
blobea1f94cc722e0c942111b9849cedf8b1aef1d86a
1 /*
2 * linux/fs/read_write.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
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>
12 #include <linux/smp_lock.h>
13 #include <linux/fsnotify.h>
14 #include <linux/security.h>
15 #include <linux/module.h>
16 #include <linux/syscalls.h>
17 #include <linux/pagemap.h>
18 #include <linux/splice.h>
19 #include "read_write.h"
21 #include <asm/uaccess.h>
22 #include <asm/unistd.h>
24 const struct file_operations generic_ro_fops = {
25 .llseek = generic_file_llseek,
26 .read = do_sync_read,
27 .aio_read = generic_file_aio_read,
28 .mmap = generic_file_readonly_mmap,
29 .splice_read = generic_file_splice_read,
32 EXPORT_SYMBOL(generic_ro_fops);
34 loff_t generic_file_llseek(struct file *file, loff_t offset, int origin)
36 long long retval;
37 struct inode *inode = file->f_mapping->host;
39 mutex_lock(&inode->i_mutex);
40 switch (origin) {
41 case SEEK_END:
42 offset += inode->i_size;
43 break;
44 case SEEK_CUR:
45 offset += file->f_pos;
47 retval = -EINVAL;
48 if (offset>=0 && offset<=inode->i_sb->s_maxbytes) {
49 if (offset != file->f_pos) {
50 file->f_pos = offset;
51 file->f_version = 0;
53 retval = offset;
55 mutex_unlock(&inode->i_mutex);
56 return retval;
59 EXPORT_SYMBOL(generic_file_llseek);
61 loff_t remote_llseek(struct file *file, loff_t offset, int origin)
63 long long retval;
65 lock_kernel();
66 switch (origin) {
67 case SEEK_END:
68 offset += i_size_read(file->f_path.dentry->d_inode);
69 break;
70 case SEEK_CUR:
71 offset += file->f_pos;
73 retval = -EINVAL;
74 if (offset>=0 && offset<=file->f_path.dentry->d_inode->i_sb->s_maxbytes) {
75 if (offset != file->f_pos) {
76 file->f_pos = offset;
77 file->f_version = 0;
79 retval = offset;
81 unlock_kernel();
82 return retval;
84 EXPORT_SYMBOL(remote_llseek);
86 loff_t no_llseek(struct file *file, loff_t offset, int origin)
88 return -ESPIPE;
90 EXPORT_SYMBOL(no_llseek);
92 loff_t default_llseek(struct file *file, loff_t offset, int origin)
94 long long retval;
96 lock_kernel();
97 switch (origin) {
98 case SEEK_END:
99 offset += i_size_read(file->f_path.dentry->d_inode);
100 break;
101 case SEEK_CUR:
102 offset += file->f_pos;
104 retval = -EINVAL;
105 if (offset >= 0) {
106 if (offset != file->f_pos) {
107 file->f_pos = offset;
108 file->f_version = 0;
110 retval = offset;
112 unlock_kernel();
113 return retval;
115 EXPORT_SYMBOL(default_llseek);
117 loff_t vfs_llseek(struct file *file, loff_t offset, int origin)
119 loff_t (*fn)(struct file *, loff_t, int);
121 fn = no_llseek;
122 if (file->f_mode & FMODE_LSEEK) {
123 fn = default_llseek;
124 if (file->f_op && file->f_op->llseek)
125 fn = file->f_op->llseek;
127 return fn(file, offset, origin);
129 EXPORT_SYMBOL(vfs_llseek);
131 asmlinkage off_t sys_lseek(unsigned int fd, off_t offset, unsigned int origin)
133 off_t retval;
134 struct file * file;
135 int fput_needed;
137 retval = -EBADF;
138 file = fget_light(fd, &fput_needed);
139 if (!file)
140 goto bad;
142 retval = -EINVAL;
143 if (origin <= SEEK_MAX) {
144 loff_t res = vfs_llseek(file, offset, origin);
145 retval = res;
146 if (res != (loff_t)retval)
147 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
149 fput_light(file, fput_needed);
150 bad:
151 return retval;
154 #ifdef __ARCH_WANT_SYS_LLSEEK
155 asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high,
156 unsigned long offset_low, loff_t __user * result,
157 unsigned int origin)
159 int retval;
160 struct file * file;
161 loff_t offset;
162 int fput_needed;
164 retval = -EBADF;
165 file = fget_light(fd, &fput_needed);
166 if (!file)
167 goto bad;
169 retval = -EINVAL;
170 if (origin > SEEK_MAX)
171 goto out_putf;
173 offset = vfs_llseek(file, ((loff_t) offset_high << 32) | offset_low,
174 origin);
176 retval = (int)offset;
177 if (offset >= 0) {
178 retval = -EFAULT;
179 if (!copy_to_user(result, &offset, sizeof(offset)))
180 retval = 0;
182 out_putf:
183 fput_light(file, fput_needed);
184 bad:
185 return retval;
187 #endif
190 * rw_verify_area doesn't like huge counts. We limit
191 * them to something that fits in "int" so that others
192 * won't have to do range checks all the time.
194 #define MAX_RW_COUNT (INT_MAX & PAGE_CACHE_MASK)
196 int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
198 struct inode *inode;
199 loff_t pos;
201 inode = file->f_path.dentry->d_inode;
202 if (unlikely((ssize_t) count < 0))
203 goto Einval;
204 pos = *ppos;
205 if (unlikely((pos < 0) || (loff_t) (pos + count) < 0))
206 goto Einval;
208 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
209 int retval = locks_mandatory_area(
210 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
211 inode, file, pos, count);
212 if (retval < 0)
213 return retval;
215 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
217 Einval:
218 return -EINVAL;
221 static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
223 set_current_state(TASK_UNINTERRUPTIBLE);
224 if (!kiocbIsKicked(iocb))
225 schedule();
226 else
227 kiocbClearKicked(iocb);
228 __set_current_state(TASK_RUNNING);
231 ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
233 struct iovec iov = { .iov_base = buf, .iov_len = len };
234 struct kiocb kiocb;
235 ssize_t ret;
237 init_sync_kiocb(&kiocb, filp);
238 kiocb.ki_pos = *ppos;
239 kiocb.ki_left = len;
241 for (;;) {
242 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
243 if (ret != -EIOCBRETRY)
244 break;
245 wait_on_retry_sync_kiocb(&kiocb);
248 if (-EIOCBQUEUED == ret)
249 ret = wait_on_sync_kiocb(&kiocb);
250 *ppos = kiocb.ki_pos;
251 return ret;
254 EXPORT_SYMBOL(do_sync_read);
256 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
258 ssize_t ret;
260 if (!(file->f_mode & FMODE_READ))
261 return -EBADF;
262 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
263 return -EINVAL;
264 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
265 return -EFAULT;
267 ret = rw_verify_area(READ, file, pos, count);
268 if (ret >= 0) {
269 count = ret;
270 ret = security_file_permission (file, MAY_READ);
271 if (!ret) {
272 if (file->f_op->read)
273 ret = file->f_op->read(file, buf, count, pos);
274 else
275 ret = do_sync_read(file, buf, count, pos);
276 if (ret > 0) {
277 fsnotify_access(file->f_path.dentry);
278 add_rchar(current, ret);
280 inc_syscr(current);
284 return ret;
287 EXPORT_SYMBOL(vfs_read);
289 ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
291 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
292 struct kiocb kiocb;
293 ssize_t ret;
295 init_sync_kiocb(&kiocb, filp);
296 kiocb.ki_pos = *ppos;
297 kiocb.ki_left = len;
299 for (;;) {
300 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
301 if (ret != -EIOCBRETRY)
302 break;
303 wait_on_retry_sync_kiocb(&kiocb);
306 if (-EIOCBQUEUED == ret)
307 ret = wait_on_sync_kiocb(&kiocb);
308 *ppos = kiocb.ki_pos;
309 return ret;
312 EXPORT_SYMBOL(do_sync_write);
314 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
316 ssize_t ret;
318 if (!(file->f_mode & FMODE_WRITE))
319 return -EBADF;
320 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
321 return -EINVAL;
322 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
323 return -EFAULT;
325 ret = rw_verify_area(WRITE, file, pos, count);
326 if (ret >= 0) {
327 count = ret;
328 ret = security_file_permission (file, MAY_WRITE);
329 if (!ret) {
330 if (file->f_op->write)
331 ret = file->f_op->write(file, buf, count, pos);
332 else
333 ret = do_sync_write(file, buf, count, pos);
334 if (ret > 0) {
335 fsnotify_modify(file->f_path.dentry);
336 add_wchar(current, ret);
338 inc_syscw(current);
342 return ret;
345 EXPORT_SYMBOL(vfs_write);
347 static inline loff_t file_pos_read(struct file *file)
349 return file->f_pos;
352 static inline void file_pos_write(struct file *file, loff_t pos)
354 file->f_pos = pos;
357 asmlinkage ssize_t sys_read(unsigned int fd, char __user * buf, size_t count)
359 struct file *file;
360 ssize_t ret = -EBADF;
361 int fput_needed;
363 file = fget_light(fd, &fput_needed);
364 if (file) {
365 loff_t pos = file_pos_read(file);
366 ret = vfs_read(file, buf, count, &pos);
367 file_pos_write(file, pos);
368 fput_light(file, fput_needed);
371 return ret;
373 EXPORT_UNUSED_SYMBOL_GPL(sys_read); /* to be deleted for 2.6.25 */
375 asmlinkage ssize_t sys_write(unsigned int fd, const char __user * buf, size_t count)
377 struct file *file;
378 ssize_t ret = -EBADF;
379 int fput_needed;
381 file = fget_light(fd, &fput_needed);
382 if (file) {
383 loff_t pos = file_pos_read(file);
384 ret = vfs_write(file, buf, count, &pos);
385 file_pos_write(file, pos);
386 fput_light(file, fput_needed);
389 return ret;
392 asmlinkage ssize_t sys_pread64(unsigned int fd, char __user *buf,
393 size_t count, loff_t pos)
395 struct file *file;
396 ssize_t ret = -EBADF;
397 int fput_needed;
399 if (pos < 0)
400 return -EINVAL;
402 file = fget_light(fd, &fput_needed);
403 if (file) {
404 ret = -ESPIPE;
405 if (file->f_mode & FMODE_PREAD)
406 ret = vfs_read(file, buf, count, &pos);
407 fput_light(file, fput_needed);
410 return ret;
413 asmlinkage ssize_t sys_pwrite64(unsigned int fd, const char __user *buf,
414 size_t count, loff_t pos)
416 struct file *file;
417 ssize_t ret = -EBADF;
418 int fput_needed;
420 if (pos < 0)
421 return -EINVAL;
423 file = fget_light(fd, &fput_needed);
424 if (file) {
425 ret = -ESPIPE;
426 if (file->f_mode & FMODE_PWRITE)
427 ret = vfs_write(file, buf, count, &pos);
428 fput_light(file, fput_needed);
431 return ret;
435 * Reduce an iovec's length in-place. Return the resulting number of segments
437 unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
439 unsigned long seg = 0;
440 size_t len = 0;
442 while (seg < nr_segs) {
443 seg++;
444 if (len + iov->iov_len >= to) {
445 iov->iov_len = to - len;
446 break;
448 len += iov->iov_len;
449 iov++;
451 return seg;
454 ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
455 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
457 struct kiocb kiocb;
458 ssize_t ret;
460 init_sync_kiocb(&kiocb, filp);
461 kiocb.ki_pos = *ppos;
462 kiocb.ki_left = len;
463 kiocb.ki_nbytes = len;
465 for (;;) {
466 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
467 if (ret != -EIOCBRETRY)
468 break;
469 wait_on_retry_sync_kiocb(&kiocb);
472 if (ret == -EIOCBQUEUED)
473 ret = wait_on_sync_kiocb(&kiocb);
474 *ppos = kiocb.ki_pos;
475 return ret;
478 /* Do it by hand, with file-ops */
479 ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
480 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
482 struct iovec *vector = iov;
483 ssize_t ret = 0;
485 while (nr_segs > 0) {
486 void __user *base;
487 size_t len;
488 ssize_t nr;
490 base = vector->iov_base;
491 len = vector->iov_len;
492 vector++;
493 nr_segs--;
495 nr = fn(filp, base, len, ppos);
497 if (nr < 0) {
498 if (!ret)
499 ret = nr;
500 break;
502 ret += nr;
503 if (nr != len)
504 break;
507 return ret;
510 /* A write operation does a read from user space and vice versa */
511 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
513 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
514 unsigned long nr_segs, unsigned long fast_segs,
515 struct iovec *fast_pointer,
516 struct iovec **ret_pointer)
518 unsigned long seg;
519 ssize_t ret;
520 struct iovec *iov = fast_pointer;
523 * SuS says "The readv() function *may* fail if the iovcnt argument
524 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
525 * traditionally returned zero for zero segments, so...
527 if (nr_segs == 0) {
528 ret = 0;
529 goto out;
533 * First get the "struct iovec" from user memory and
534 * verify all the pointers
536 if (nr_segs > UIO_MAXIOV) {
537 ret = -EINVAL;
538 goto out;
540 if (nr_segs > fast_segs) {
541 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
542 if (iov == NULL) {
543 ret = -ENOMEM;
544 goto out;
547 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
548 ret = -EFAULT;
549 goto out;
553 * According to the Single Unix Specification we should return EINVAL
554 * if an element length is < 0 when cast to ssize_t or if the
555 * total length would overflow the ssize_t return value of the
556 * system call.
558 ret = 0;
559 for (seg = 0; seg < nr_segs; seg++) {
560 void __user *buf = iov[seg].iov_base;
561 ssize_t len = (ssize_t)iov[seg].iov_len;
563 /* see if we we're about to use an invalid len or if
564 * it's about to overflow ssize_t */
565 if (len < 0 || (ret + len < ret)) {
566 ret = -EINVAL;
567 goto out;
569 if (unlikely(!access_ok(vrfy_dir(type), buf, len))) {
570 ret = -EFAULT;
571 goto out;
574 ret += len;
576 out:
577 *ret_pointer = iov;
578 return ret;
581 static ssize_t do_readv_writev(int type, struct file *file,
582 const struct iovec __user * uvector,
583 unsigned long nr_segs, loff_t *pos)
585 size_t tot_len;
586 struct iovec iovstack[UIO_FASTIOV];
587 struct iovec *iov = iovstack;
588 ssize_t ret;
589 io_fn_t fn;
590 iov_fn_t fnv;
592 if (!file->f_op) {
593 ret = -EINVAL;
594 goto out;
597 ret = rw_copy_check_uvector(type, uvector, nr_segs,
598 ARRAY_SIZE(iovstack), iovstack, &iov);
599 if (ret <= 0)
600 goto out;
602 tot_len = ret;
603 ret = rw_verify_area(type, file, pos, tot_len);
604 if (ret < 0)
605 goto out;
606 ret = security_file_permission(file, type == READ ? MAY_READ : MAY_WRITE);
607 if (ret)
608 goto out;
610 fnv = NULL;
611 if (type == READ) {
612 fn = file->f_op->read;
613 fnv = file->f_op->aio_read;
614 } else {
615 fn = (io_fn_t)file->f_op->write;
616 fnv = file->f_op->aio_write;
619 if (fnv)
620 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
621 pos, fnv);
622 else
623 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
625 out:
626 if (iov != iovstack)
627 kfree(iov);
628 if ((ret + (type == READ)) > 0) {
629 if (type == READ)
630 fsnotify_access(file->f_path.dentry);
631 else
632 fsnotify_modify(file->f_path.dentry);
634 return ret;
637 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
638 unsigned long vlen, loff_t *pos)
640 if (!(file->f_mode & FMODE_READ))
641 return -EBADF;
642 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
643 return -EINVAL;
645 return do_readv_writev(READ, file, vec, vlen, pos);
648 EXPORT_SYMBOL(vfs_readv);
650 ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
651 unsigned long vlen, loff_t *pos)
653 if (!(file->f_mode & FMODE_WRITE))
654 return -EBADF;
655 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
656 return -EINVAL;
658 return do_readv_writev(WRITE, file, vec, vlen, pos);
661 EXPORT_SYMBOL(vfs_writev);
663 asmlinkage ssize_t
664 sys_readv(unsigned long fd, const struct iovec __user *vec, unsigned long vlen)
666 struct file *file;
667 ssize_t ret = -EBADF;
668 int fput_needed;
670 file = fget_light(fd, &fput_needed);
671 if (file) {
672 loff_t pos = file_pos_read(file);
673 ret = vfs_readv(file, vec, vlen, &pos);
674 file_pos_write(file, pos);
675 fput_light(file, fput_needed);
678 if (ret > 0)
679 add_rchar(current, ret);
680 inc_syscr(current);
681 return ret;
684 asmlinkage ssize_t
685 sys_writev(unsigned long fd, const struct iovec __user *vec, unsigned long vlen)
687 struct file *file;
688 ssize_t ret = -EBADF;
689 int fput_needed;
691 file = fget_light(fd, &fput_needed);
692 if (file) {
693 loff_t pos = file_pos_read(file);
694 ret = vfs_writev(file, vec, vlen, &pos);
695 file_pos_write(file, pos);
696 fput_light(file, fput_needed);
699 if (ret > 0)
700 add_wchar(current, ret);
701 inc_syscw(current);
702 return ret;
705 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
706 size_t count, loff_t max)
708 struct file * in_file, * out_file;
709 struct inode * in_inode, * out_inode;
710 loff_t pos;
711 ssize_t retval;
712 int fput_needed_in, fput_needed_out, fl;
715 * Get input file, and verify that it is ok..
717 retval = -EBADF;
718 in_file = fget_light(in_fd, &fput_needed_in);
719 if (!in_file)
720 goto out;
721 if (!(in_file->f_mode & FMODE_READ))
722 goto fput_in;
723 retval = -EINVAL;
724 in_inode = in_file->f_path.dentry->d_inode;
725 if (!in_inode)
726 goto fput_in;
727 if (!in_file->f_op || !in_file->f_op->splice_read)
728 goto fput_in;
729 retval = -ESPIPE;
730 if (!ppos)
731 ppos = &in_file->f_pos;
732 else
733 if (!(in_file->f_mode & FMODE_PREAD))
734 goto fput_in;
735 retval = rw_verify_area(READ, in_file, ppos, count);
736 if (retval < 0)
737 goto fput_in;
738 count = retval;
740 retval = security_file_permission (in_file, MAY_READ);
741 if (retval)
742 goto fput_in;
745 * Get output file, and verify that it is ok..
747 retval = -EBADF;
748 out_file = fget_light(out_fd, &fput_needed_out);
749 if (!out_file)
750 goto fput_in;
751 if (!(out_file->f_mode & FMODE_WRITE))
752 goto fput_out;
753 retval = -EINVAL;
754 if (!out_file->f_op || !out_file->f_op->sendpage)
755 goto fput_out;
756 out_inode = out_file->f_path.dentry->d_inode;
757 retval = rw_verify_area(WRITE, out_file, &out_file->f_pos, count);
758 if (retval < 0)
759 goto fput_out;
760 count = retval;
762 retval = security_file_permission (out_file, MAY_WRITE);
763 if (retval)
764 goto fput_out;
766 if (!max)
767 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
769 pos = *ppos;
770 retval = -EINVAL;
771 if (unlikely(pos < 0))
772 goto fput_out;
773 if (unlikely(pos + count > max)) {
774 retval = -EOVERFLOW;
775 if (pos >= max)
776 goto fput_out;
777 count = max - pos;
780 fl = 0;
781 #if 0
783 * We need to debate whether we can enable this or not. The
784 * man page documents EAGAIN return for the output at least,
785 * and the application is arguably buggy if it doesn't expect
786 * EAGAIN on a non-blocking file descriptor.
788 if (in_file->f_flags & O_NONBLOCK)
789 fl = SPLICE_F_NONBLOCK;
790 #endif
791 retval = do_splice_direct(in_file, ppos, out_file, count, fl);
793 if (retval > 0) {
794 add_rchar(current, retval);
795 add_wchar(current, retval);
798 inc_syscr(current);
799 inc_syscw(current);
800 if (*ppos > max)
801 retval = -EOVERFLOW;
803 fput_out:
804 fput_light(out_file, fput_needed_out);
805 fput_in:
806 fput_light(in_file, fput_needed_in);
807 out:
808 return retval;
811 asmlinkage ssize_t sys_sendfile(int out_fd, int in_fd, off_t __user *offset, size_t count)
813 loff_t pos;
814 off_t off;
815 ssize_t ret;
817 if (offset) {
818 if (unlikely(get_user(off, offset)))
819 return -EFAULT;
820 pos = off;
821 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
822 if (unlikely(put_user(pos, offset)))
823 return -EFAULT;
824 return ret;
827 return do_sendfile(out_fd, in_fd, NULL, count, 0);
830 asmlinkage ssize_t sys_sendfile64(int out_fd, int in_fd, loff_t __user *offset, size_t count)
832 loff_t pos;
833 ssize_t ret;
835 if (offset) {
836 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
837 return -EFAULT;
838 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
839 if (unlikely(put_user(pos, offset)))
840 return -EFAULT;
841 return ret;
844 return do_sendfile(out_fd, in_fd, NULL, count, 0);