blob: 5520f8ad550446d095c6483e67acc0ca5522ff91 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/read_write.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include <linux/slab.h>
8#include <linux/stat.h>
9#include <linux/fcntl.h>
10#include <linux/file.h>
11#include <linux/uio.h>
Robert Love0eeca282005-07-12 17:06:03 -040012#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/security.h>
14#include <linux/module.h>
15#include <linux/syscalls.h>
Linus Torvaldse28cc712006-01-04 16:20:40 -080016#include <linux/pagemap.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020017#include <linux/splice.h>
Badari Pulavartyee0b3e62006-09-30 23:28:47 -070018#include "read_write.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/uaccess.h>
21#include <asm/unistd.h>
22
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080023const struct file_operations generic_ro_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070025 .read = do_sync_read,
26 .aio_read = generic_file_aio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .mmap = generic_file_readonly_mmap,
Jens Axboe534f2aa2007-06-01 14:52:37 +020028 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029};
30
31EXPORT_SYMBOL(generic_ro_fops);
32
Al Virocccb5a12010-12-17 07:44:05 -050033static inline int unsigned_offsets(struct file *file)
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070034{
Al Virocccb5a12010-12-17 07:44:05 -050035 return file->f_mode & FMODE_UNSIGNED_OFFSET;
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070036}
37
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020038/**
39 * generic_file_llseek_unlocked - lockless generic llseek implementation
40 * @file: file structure to seek on
41 * @offset: file offset to seek to
42 * @origin: type of seek
43 *
44 * Updates the file offset to the value specified by @offset and @origin.
45 * Locking must be provided by the caller.
46 */
Andi Kleen9465efc2008-06-27 11:05:24 +020047loff_t
48generic_file_llseek_unlocked(struct file *file, loff_t offset, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct inode *inode = file->f_mapping->host;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 switch (origin) {
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020053 case SEEK_END:
54 offset += inode->i_size;
55 break;
56 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -080057 /*
58 * Here we special-case the lseek(fd, 0, SEEK_CUR)
59 * position-querying operation. Avoid rewriting the "same"
60 * f_pos value back to the file because a concurrent read(),
61 * write() or lseek() might have altered it
62 */
63 if (offset == 0)
64 return file->f_pos;
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020065 offset += file->f_pos;
66 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020068
Al Virocccb5a12010-12-17 07:44:05 -050069 if (offset < 0 && !unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -070070 return -EINVAL;
71 if (offset > inode->i_sb->s_maxbytes)
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020072 return -EINVAL;
73
74 /* Special lock needed here? */
75 if (offset != file->f_pos) {
76 file->f_pos = offset;
77 file->f_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020079
80 return offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
Andi Kleen9465efc2008-06-27 11:05:24 +020082EXPORT_SYMBOL(generic_file_llseek_unlocked);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020084/**
85 * generic_file_llseek - generic llseek implementation for regular files
86 * @file: file structure to seek on
87 * @offset: file offset to seek to
88 * @origin: type of seek
89 *
90 * This is a generic implemenation of ->llseek useable for all normal local
91 * filesystems. It just updates the file offset to the value specified by
92 * @offset and @origin under i_mutex.
93 */
Andi Kleen9465efc2008-06-27 11:05:24 +020094loff_t generic_file_llseek(struct file *file, loff_t offset, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020096 loff_t rval;
97
Andi Kleen9465efc2008-06-27 11:05:24 +020098 mutex_lock(&file->f_dentry->d_inode->i_mutex);
Christoph Hellwig3a8cff42008-08-11 15:37:17 +020099 rval = generic_file_llseek_unlocked(file, offset, origin);
Andi Kleen9465efc2008-06-27 11:05:24 +0200100 mutex_unlock(&file->f_dentry->d_inode->i_mutex);
Christoph Hellwig3a8cff42008-08-11 15:37:17 +0200101
102 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
Andi Kleen9465efc2008-06-27 11:05:24 +0200104EXPORT_SYMBOL(generic_file_llseek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
jan Blunckae6afc32010-05-26 14:44:48 -0700106/**
107 * noop_llseek - No Operation Performed llseek implementation
108 * @file: file structure to seek on
109 * @offset: file offset to seek to
110 * @origin: type of seek
111 *
112 * This is an implementation of ->llseek useable for the rare special case when
113 * userspace expects the seek to succeed but the (device) file is actually not
114 * able to perform the seek. In this case you use noop_llseek() instead of
115 * falling back to the default implementation of ->llseek.
116 */
117loff_t noop_llseek(struct file *file, loff_t offset, int origin)
118{
119 return file->f_pos;
120}
121EXPORT_SYMBOL(noop_llseek);
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123loff_t no_llseek(struct file *file, loff_t offset, int origin)
124{
125 return -ESPIPE;
126}
127EXPORT_SYMBOL(no_llseek);
128
129loff_t default_llseek(struct file *file, loff_t offset, int origin)
130{
David Sterba16abef02008-04-22 15:09:22 +0200131 loff_t retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Arnd Bergmannab912612010-07-07 22:55:17 +0200133 mutex_lock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 switch (origin) {
Chris Snook7b8e8922007-05-08 00:24:13 -0700135 case SEEK_END:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800136 offset += i_size_read(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 break;
Chris Snook7b8e8922007-05-08 00:24:13 -0700138 case SEEK_CUR:
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800139 if (offset == 0) {
140 retval = file->f_pos;
141 goto out;
142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 offset += file->f_pos;
144 }
145 retval = -EINVAL;
Al Virocccb5a12010-12-17 07:44:05 -0500146 if (offset >= 0 || unsigned_offsets(file)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (offset != file->f_pos) {
148 file->f_pos = offset;
149 file->f_version = 0;
150 }
151 retval = offset;
152 }
Alain Knaff5b6f1eb2008-11-10 17:08:08 -0800153out:
Arnd Bergmannab912612010-07-07 22:55:17 +0200154 mutex_unlock(&file->f_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return retval;
156}
157EXPORT_SYMBOL(default_llseek);
158
159loff_t vfs_llseek(struct file *file, loff_t offset, int origin)
160{
161 loff_t (*fn)(struct file *, loff_t, int);
162
163 fn = no_llseek;
164 if (file->f_mode & FMODE_LSEEK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (file->f_op && file->f_op->llseek)
166 fn = file->f_op->llseek;
167 }
168 return fn(file, offset, origin);
169}
170EXPORT_SYMBOL(vfs_llseek);
171
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100172SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 off_t retval;
175 struct file * file;
176 int fput_needed;
177
178 retval = -EBADF;
179 file = fget_light(fd, &fput_needed);
180 if (!file)
181 goto bad;
182
183 retval = -EINVAL;
Chris Snook1ae70752007-05-08 00:24:15 -0700184 if (origin <= SEEK_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 loff_t res = vfs_llseek(file, offset, origin);
186 retval = res;
187 if (res != (loff_t)retval)
188 retval = -EOVERFLOW; /* LFS: should only happen on 32 bit platforms */
189 }
190 fput_light(file, fput_needed);
191bad:
192 return retval;
193}
194
195#ifdef __ARCH_WANT_SYS_LLSEEK
Heiko Carstens003d7ab2009-01-14 14:14:21 +0100196SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high,
197 unsigned long, offset_low, loff_t __user *, result,
198 unsigned int, origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int retval;
201 struct file * file;
202 loff_t offset;
203 int fput_needed;
204
205 retval = -EBADF;
206 file = fget_light(fd, &fput_needed);
207 if (!file)
208 goto bad;
209
210 retval = -EINVAL;
Chris Snook1ae70752007-05-08 00:24:15 -0700211 if (origin > SEEK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto out_putf;
213
214 offset = vfs_llseek(file, ((loff_t) offset_high << 32) | offset_low,
215 origin);
216
217 retval = (int)offset;
218 if (offset >= 0) {
219 retval = -EFAULT;
220 if (!copy_to_user(result, &offset, sizeof(offset)))
221 retval = 0;
222 }
223out_putf:
224 fput_light(file, fput_needed);
225bad:
226 return retval;
227}
228#endif
229
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700230
Linus Torvaldse28cc712006-01-04 16:20:40 -0800231/*
232 * rw_verify_area doesn't like huge counts. We limit
233 * them to something that fits in "int" so that others
234 * won't have to do range checks all the time.
235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
237{
238 struct inode *inode;
239 loff_t pos;
James Morrisc43e2592008-01-12 22:05:48 +1100240 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Eric Dumazet163da952007-02-12 00:52:24 -0800242 inode = file->f_path.dentry->d_inode;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800243 if (unlikely((ssize_t) count < 0))
James Morrisc43e2592008-01-12 22:05:48 +1100244 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 pos = *ppos;
Al Virocccb5a12010-12-17 07:44:05 -0500246 if (unlikely(pos < 0)) {
247 if (!unsigned_offsets(file))
248 return retval;
249 if (count >= -pos) /* both values are in 0..LLONG_MAX */
250 return -EOVERFLOW;
251 } else if (unlikely((loff_t) (pos + count) < 0)) {
252 if (!unsigned_offsets(file))
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700253 return retval;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Pavel Emelyanova16877c2007-10-01 14:41:11 -0700256 if (unlikely(inode->i_flock && mandatory_lock(inode))) {
James Morrisc43e2592008-01-12 22:05:48 +1100257 retval = locks_mandatory_area(
Linus Torvaldse28cc712006-01-04 16:20:40 -0800258 read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
259 inode, file, pos, count);
260 if (retval < 0)
261 return retval;
262 }
James Morrisc43e2592008-01-12 22:05:48 +1100263 retval = security_file_permission(file,
264 read_write == READ ? MAY_READ : MAY_WRITE);
265 if (retval)
266 return retval;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800267 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700270static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
271{
272 set_current_state(TASK_UNINTERRUPTIBLE);
273 if (!kiocbIsKicked(iocb))
274 schedule();
275 else
276 kiocbClearKicked(iocb);
277 __set_current_state(TASK_RUNNING);
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
281{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700282 struct iovec iov = { .iov_base = buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 struct kiocb kiocb;
284 ssize_t ret;
285
286 init_sync_kiocb(&kiocb, filp);
287 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700288 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000289 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700290
291 for (;;) {
292 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
293 if (ret != -EIOCBRETRY)
294 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700295 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700296 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (-EIOCBQUEUED == ret)
299 ret = wait_on_sync_kiocb(&kiocb);
300 *ppos = kiocb.ki_pos;
301 return ret;
302}
303
304EXPORT_SYMBOL(do_sync_read);
305
306ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
307{
308 ssize_t ret;
309
310 if (!(file->f_mode & FMODE_READ))
311 return -EBADF;
312 if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
313 return -EINVAL;
314 if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
315 return -EFAULT;
316
317 ret = rw_verify_area(READ, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800318 if (ret >= 0) {
319 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100320 if (file->f_op->read)
321 ret = file->f_op->read(file, buf, count, pos);
322 else
323 ret = do_sync_read(file, buf, count, pos);
324 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500325 fsnotify_access(file);
James Morrisc43e2592008-01-12 22:05:48 +1100326 add_rchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
James Morrisc43e2592008-01-12 22:05:48 +1100328 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
331 return ret;
332}
333
334EXPORT_SYMBOL(vfs_read);
335
336ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
337{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700338 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 struct kiocb kiocb;
340 ssize_t ret;
341
342 init_sync_kiocb(&kiocb, filp);
343 kiocb.ki_pos = *ppos;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700344 kiocb.ki_left = len;
David Howells61964eb2010-03-24 17:09:19 +0000345 kiocb.ki_nbytes = len;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700346
347 for (;;) {
348 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
349 if (ret != -EIOCBRETRY)
350 break;
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700351 wait_on_retry_sync_kiocb(&kiocb);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700352 }
Benjamin LaHaise63e68802005-06-23 00:10:27 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (-EIOCBQUEUED == ret)
355 ret = wait_on_sync_kiocb(&kiocb);
356 *ppos = kiocb.ki_pos;
357 return ret;
358}
359
360EXPORT_SYMBOL(do_sync_write);
361
362ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
363{
364 ssize_t ret;
365
366 if (!(file->f_mode & FMODE_WRITE))
367 return -EBADF;
368 if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
369 return -EINVAL;
370 if (unlikely(!access_ok(VERIFY_READ, buf, count)))
371 return -EFAULT;
372
373 ret = rw_verify_area(WRITE, file, pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800374 if (ret >= 0) {
375 count = ret;
James Morrisc43e2592008-01-12 22:05:48 +1100376 if (file->f_op->write)
377 ret = file->f_op->write(file, buf, count, pos);
378 else
379 ret = do_sync_write(file, buf, count, pos);
380 if (ret > 0) {
Eric Paris2a12a9d2009-12-17 21:24:21 -0500381 fsnotify_modify(file);
James Morrisc43e2592008-01-12 22:05:48 +1100382 add_wchar(current, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
James Morrisc43e2592008-01-12 22:05:48 +1100384 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
387 return ret;
388}
389
390EXPORT_SYMBOL(vfs_write);
391
392static inline loff_t file_pos_read(struct file *file)
393{
394 return file->f_pos;
395}
396
397static inline void file_pos_write(struct file *file, loff_t pos)
398{
399 file->f_pos = pos;
400}
401
Heiko Carstens3cdad422009-01-14 14:14:22 +0100402SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct file *file;
405 ssize_t ret = -EBADF;
406 int fput_needed;
407
408 file = fget_light(fd, &fput_needed);
409 if (file) {
410 loff_t pos = file_pos_read(file);
411 ret = vfs_read(file, buf, count, &pos);
412 file_pos_write(file, pos);
413 fput_light(file, fput_needed);
414 }
415
416 return ret;
417}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Heiko Carstens3cdad422009-01-14 14:14:22 +0100419SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf,
420 size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct file *file;
423 ssize_t ret = -EBADF;
424 int fput_needed;
425
426 file = fget_light(fd, &fput_needed);
427 if (file) {
428 loff_t pos = file_pos_read(file);
429 ret = vfs_write(file, buf, count, &pos);
430 file_pos_write(file, pos);
431 fput_light(file, fput_needed);
432 }
433
434 return ret;
435}
436
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100437SYSCALL_DEFINE(pread64)(unsigned int fd, char __user *buf,
438 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct file *file;
441 ssize_t ret = -EBADF;
442 int fput_needed;
443
444 if (pos < 0)
445 return -EINVAL;
446
447 file = fget_light(fd, &fput_needed);
448 if (file) {
449 ret = -ESPIPE;
450 if (file->f_mode & FMODE_PREAD)
451 ret = vfs_read(file, buf, count, &pos);
452 fput_light(file, fput_needed);
453 }
454
455 return ret;
456}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100457#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
458asmlinkage long SyS_pread64(long fd, long buf, long count, loff_t pos)
459{
460 return SYSC_pread64((unsigned int) fd, (char __user *) buf,
461 (size_t) count, pos);
462}
463SYSCALL_ALIAS(sys_pread64, SyS_pread64);
464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100466SYSCALL_DEFINE(pwrite64)(unsigned int fd, const char __user *buf,
467 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct file *file;
470 ssize_t ret = -EBADF;
471 int fput_needed;
472
473 if (pos < 0)
474 return -EINVAL;
475
476 file = fget_light(fd, &fput_needed);
477 if (file) {
478 ret = -ESPIPE;
479 if (file->f_mode & FMODE_PWRITE)
480 ret = vfs_write(file, buf, count, &pos);
481 fput_light(file, fput_needed);
482 }
483
484 return ret;
485}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100486#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
487asmlinkage long SyS_pwrite64(long fd, long buf, long count, loff_t pos)
488{
489 return SYSC_pwrite64((unsigned int) fd, (const char __user *) buf,
490 (size_t) count, pos);
491}
492SYSCALL_ALIAS(sys_pwrite64, SyS_pwrite64);
493#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/*
496 * Reduce an iovec's length in-place. Return the resulting number of segments
497 */
498unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
499{
500 unsigned long seg = 0;
501 size_t len = 0;
502
503 while (seg < nr_segs) {
504 seg++;
505 if (len + iov->iov_len >= to) {
506 iov->iov_len = to - len;
507 break;
508 }
509 len += iov->iov_len;
510 iov++;
511 }
512 return seg;
513}
Eric Sandeen19295522008-01-28 23:58:27 -0500514EXPORT_SYMBOL(iov_shorten);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700516ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
517 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
518{
519 struct kiocb kiocb;
520 ssize_t ret;
521
522 init_sync_kiocb(&kiocb, filp);
523 kiocb.ki_pos = *ppos;
524 kiocb.ki_left = len;
525 kiocb.ki_nbytes = len;
526
527 for (;;) {
528 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
529 if (ret != -EIOCBRETRY)
530 break;
531 wait_on_retry_sync_kiocb(&kiocb);
532 }
533
534 if (ret == -EIOCBQUEUED)
535 ret = wait_on_sync_kiocb(&kiocb);
536 *ppos = kiocb.ki_pos;
537 return ret;
538}
539
540/* Do it by hand, with file-ops */
541ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
542 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
543{
544 struct iovec *vector = iov;
545 ssize_t ret = 0;
546
547 while (nr_segs > 0) {
548 void __user *base;
549 size_t len;
550 ssize_t nr;
551
552 base = vector->iov_base;
553 len = vector->iov_len;
554 vector++;
555 nr_segs--;
556
557 nr = fn(filp, base, len, ppos);
558
559 if (nr < 0) {
560 if (!ret)
561 ret = nr;
562 break;
563 }
564 ret += nr;
565 if (nr != len)
566 break;
567 }
568
569 return ret;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/* A write operation does a read from user space and vice versa */
573#define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
574
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700575ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
576 unsigned long nr_segs, unsigned long fast_segs,
577 struct iovec *fast_pointer,
578 struct iovec **ret_pointer)
Linus Torvalds435f49a2010-10-29 10:36:49 -0700579{
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700580 unsigned long seg;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700581 ssize_t ret;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700582 struct iovec *iov = fast_pointer;
583
Linus Torvalds435f49a2010-10-29 10:36:49 -0700584 /*
585 * SuS says "The readv() function *may* fail if the iovcnt argument
586 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
587 * traditionally returned zero for zero segments, so...
588 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700589 if (nr_segs == 0) {
590 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700591 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700592 }
593
Linus Torvalds435f49a2010-10-29 10:36:49 -0700594 /*
595 * First get the "struct iovec" from user memory and
596 * verify all the pointers
597 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700598 if (nr_segs > UIO_MAXIOV) {
599 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700600 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700601 }
602 if (nr_segs > fast_segs) {
Linus Torvalds435f49a2010-10-29 10:36:49 -0700603 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700604 if (iov == NULL) {
605 ret = -ENOMEM;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700606 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700607 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700608 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700609 if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector))) {
610 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700611 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700612 }
613
Linus Torvalds435f49a2010-10-29 10:36:49 -0700614 /*
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700615 * According to the Single Unix Specification we should return EINVAL
616 * if an element length is < 0 when cast to ssize_t or if the
617 * total length would overflow the ssize_t return value of the
618 * system call.
Linus Torvalds435f49a2010-10-29 10:36:49 -0700619 *
620 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
621 * overflow case.
622 */
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700623 ret = 0;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700624 for (seg = 0; seg < nr_segs; seg++) {
625 void __user *buf = iov[seg].iov_base;
626 ssize_t len = (ssize_t)iov[seg].iov_len;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700627
628 /* see if we we're about to use an invalid len or if
629 * it's about to overflow ssize_t */
Linus Torvalds435f49a2010-10-29 10:36:49 -0700630 if (len < 0) {
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700631 ret = -EINVAL;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700632 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700633 }
634 if (unlikely(!access_ok(vrfy_dir(type), buf, len))) {
635 ret = -EFAULT;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700636 goto out;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700637 }
Linus Torvalds435f49a2010-10-29 10:36:49 -0700638 if (len > MAX_RW_COUNT - ret) {
639 len = MAX_RW_COUNT - ret;
640 iov[seg].iov_len = len;
641 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700642 ret += len;
Linus Torvalds435f49a2010-10-29 10:36:49 -0700643 }
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700644out:
645 *ret_pointer = iov;
646 return ret;
647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static ssize_t do_readv_writev(int type, struct file *file,
650 const struct iovec __user * uvector,
651 unsigned long nr_segs, loff_t *pos)
652{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 size_t tot_len;
654 struct iovec iovstack[UIO_FASTIOV];
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700655 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 io_fn_t fn;
658 iov_fn_t fnv;
659
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700660 if (!file->f_op) {
661 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 goto out;
663 }
664
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700665 ret = rw_copy_check_uvector(type, uvector, nr_segs,
666 ARRAY_SIZE(iovstack), iovstack, &iov);
667 if (ret <= 0)
668 goto out;
669
670 tot_len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 ret = rw_verify_area(type, file, pos, tot_len);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800672 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto out;
674
675 fnv = NULL;
676 if (type == READ) {
677 fn = file->f_op->read;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700678 fnv = file->f_op->aio_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 } else {
680 fn = (io_fn_t)file->f_op->write;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700681 fnv = file->f_op->aio_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700684 if (fnv)
685 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
686 pos, fnv);
687 else
688 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690out:
691 if (iov != iovstack)
692 kfree(iov);
Robert Love0eeca282005-07-12 17:06:03 -0400693 if ((ret + (type == READ)) > 0) {
694 if (type == READ)
Eric Paris2a12a9d2009-12-17 21:24:21 -0500695 fsnotify_access(file);
Robert Love0eeca282005-07-12 17:06:03 -0400696 else
Eric Paris2a12a9d2009-12-17 21:24:21 -0500697 fsnotify_modify(file);
Robert Love0eeca282005-07-12 17:06:03 -0400698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
703 unsigned long vlen, loff_t *pos)
704{
705 if (!(file->f_mode & FMODE_READ))
706 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700707 if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EINVAL;
709
710 return do_readv_writev(READ, file, vec, vlen, pos);
711}
712
713EXPORT_SYMBOL(vfs_readv);
714
715ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
716 unsigned long vlen, loff_t *pos)
717{
718 if (!(file->f_mode & FMODE_WRITE))
719 return -EBADF;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -0700720 if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return -EINVAL;
722
723 return do_readv_writev(WRITE, file, vec, vlen, pos);
724}
725
726EXPORT_SYMBOL(vfs_writev);
727
Heiko Carstens3cdad422009-01-14 14:14:22 +0100728SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec,
729 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct file *file;
732 ssize_t ret = -EBADF;
733 int fput_needed;
734
735 file = fget_light(fd, &fput_needed);
736 if (file) {
737 loff_t pos = file_pos_read(file);
738 ret = vfs_readv(file, vec, vlen, &pos);
739 file_pos_write(file, pos);
740 fput_light(file, fput_needed);
741 }
742
743 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800744 add_rchar(current, ret);
745 inc_syscr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return ret;
747}
748
Heiko Carstens3cdad422009-01-14 14:14:22 +0100749SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec,
750 unsigned long, vlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct file *file;
753 ssize_t ret = -EBADF;
754 int fput_needed;
755
756 file = fget_light(fd, &fput_needed);
757 if (file) {
758 loff_t pos = file_pos_read(file);
759 ret = vfs_writev(file, vec, vlen, &pos);
760 file_pos_write(file, pos);
761 fput_light(file, fput_needed);
762 }
763
764 if (ret > 0)
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800765 add_wchar(current, ret);
766 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return ret;
768}
769
Linus Torvalds601cc112009-04-03 08:03:22 -0700770static inline loff_t pos_from_hilo(unsigned long high, unsigned long low)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700771{
Linus Torvalds601cc112009-04-03 08:03:22 -0700772#define HALF_LONG_BITS (BITS_PER_LONG / 2)
773 return (((loff_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low;
774}
775
776SYSCALL_DEFINE5(preadv, unsigned long, fd, const struct iovec __user *, vec,
777 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
778{
779 loff_t pos = pos_from_hilo(pos_h, pos_l);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700780 struct file *file;
781 ssize_t ret = -EBADF;
782 int fput_needed;
783
784 if (pos < 0)
785 return -EINVAL;
786
787 file = fget_light(fd, &fput_needed);
788 if (file) {
789 ret = -ESPIPE;
790 if (file->f_mode & FMODE_PREAD)
791 ret = vfs_readv(file, vec, vlen, &pos);
792 fput_light(file, fput_needed);
793 }
794
795 if (ret > 0)
796 add_rchar(current, ret);
797 inc_syscr(current);
798 return ret;
799}
800
801SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700802 unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700803{
Linus Torvalds601cc112009-04-03 08:03:22 -0700804 loff_t pos = pos_from_hilo(pos_h, pos_l);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700805 struct file *file;
806 ssize_t ret = -EBADF;
807 int fput_needed;
808
809 if (pos < 0)
810 return -EINVAL;
811
812 file = fget_light(fd, &fput_needed);
813 if (file) {
814 ret = -ESPIPE;
815 if (file->f_mode & FMODE_PWRITE)
816 ret = vfs_writev(file, vec, vlen, &pos);
817 fput_light(file, fput_needed);
818 }
819
820 if (ret > 0)
821 add_wchar(current, ret);
822 inc_syscw(current);
823 return ret;
824}
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
827 size_t count, loff_t max)
828{
829 struct file * in_file, * out_file;
830 struct inode * in_inode, * out_inode;
831 loff_t pos;
832 ssize_t retval;
Jens Axboe534f2aa2007-06-01 14:52:37 +0200833 int fput_needed_in, fput_needed_out, fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /*
836 * Get input file, and verify that it is ok..
837 */
838 retval = -EBADF;
839 in_file = fget_light(in_fd, &fput_needed_in);
840 if (!in_file)
841 goto out;
842 if (!(in_file->f_mode & FMODE_READ))
843 goto fput_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 retval = -ESPIPE;
845 if (!ppos)
846 ppos = &in_file->f_pos;
847 else
848 if (!(in_file->f_mode & FMODE_PREAD))
849 goto fput_in;
850 retval = rw_verify_area(READ, in_file, ppos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800851 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 goto fput_in;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800853 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * Get output file, and verify that it is ok..
857 */
858 retval = -EBADF;
859 out_file = fget_light(out_fd, &fput_needed_out);
860 if (!out_file)
861 goto fput_in;
862 if (!(out_file->f_mode & FMODE_WRITE))
863 goto fput_out;
864 retval = -EINVAL;
Miklos Szeredi68181732009-05-07 15:37:36 +0200865 in_inode = in_file->f_path.dentry->d_inode;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800866 out_inode = out_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 retval = rw_verify_area(WRITE, out_file, &out_file->f_pos, count);
Linus Torvaldse28cc712006-01-04 16:20:40 -0800868 if (retval < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto fput_out;
Linus Torvaldse28cc712006-01-04 16:20:40 -0800870 count = retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (!max)
873 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
874
875 pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (unlikely(pos + count > max)) {
877 retval = -EOVERFLOW;
878 if (pos >= max)
879 goto fput_out;
880 count = max - pos;
881 }
882
Jens Axboed96e6e72007-06-11 12:18:52 +0200883 fl = 0;
Jens Axboe534f2aa2007-06-01 14:52:37 +0200884#if 0
Jens Axboed96e6e72007-06-11 12:18:52 +0200885 /*
886 * We need to debate whether we can enable this or not. The
887 * man page documents EAGAIN return for the output at least,
888 * and the application is arguably buggy if it doesn't expect
889 * EAGAIN on a non-blocking file descriptor.
890 */
891 if (in_file->f_flags & O_NONBLOCK)
892 fl = SPLICE_F_NONBLOCK;
Jens Axboe534f2aa2007-06-01 14:52:37 +0200893#endif
Jens Axboed96e6e72007-06-11 12:18:52 +0200894 retval = do_splice_direct(in_file, ppos, out_file, count, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 if (retval > 0) {
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800897 add_rchar(current, retval);
898 add_wchar(current, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Alexey Dobriyan4b98d112007-02-10 01:46:45 -0800901 inc_syscr(current);
902 inc_syscw(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (*ppos > max)
904 retval = -EOVERFLOW;
905
906fput_out:
907 fput_light(out_file, fput_needed_out);
908fput_in:
909 fput_light(in_file, fput_needed_in);
910out:
911 return retval;
912}
913
Heiko Carstens002c8972009-01-14 14:14:18 +0100914SYSCALL_DEFINE4(sendfile, int, out_fd, int, in_fd, off_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 loff_t pos;
917 off_t off;
918 ssize_t ret;
919
920 if (offset) {
921 if (unlikely(get_user(off, offset)))
922 return -EFAULT;
923 pos = off;
924 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
925 if (unlikely(put_user(pos, offset)))
926 return -EFAULT;
927 return ret;
928 }
929
930 return do_sendfile(out_fd, in_fd, NULL, count, 0);
931}
932
Heiko Carstens002c8972009-01-14 14:14:18 +0100933SYSCALL_DEFINE4(sendfile64, int, out_fd, int, in_fd, loff_t __user *, offset, size_t, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 loff_t pos;
936 ssize_t ret;
937
938 if (offset) {
939 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
940 return -EFAULT;
941 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
942 if (unlikely(put_user(pos, offset)))
943 return -EFAULT;
944 return ret;
945 }
946
947 return do_sendfile(out_fd, in_fd, NULL, count, 0);
948}