[PATCH] Streamline generic_file_* interfaces and filemap cleanups
[safe/jmp/linux-2.6] / fs / read_write.c
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>
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 "read_write.h"
19
20 #include <asm/uaccess.h>
21 #include <asm/unistd.h>
22
23 const struct file_operations generic_ro_fops = {
24         .llseek         = generic_file_llseek,
25         .read           = do_sync_read,
26         .aio_read       = generic_file_aio_read,
27         .mmap           = generic_file_readonly_mmap,
28         .sendfile       = generic_file_sendfile,
29 };
30
31 EXPORT_SYMBOL(generic_ro_fops);
32
33 loff_t generic_file_llseek(struct file *file, loff_t offset, int origin)
34 {
35         long long retval;
36         struct inode *inode = file->f_mapping->host;
37
38         mutex_lock(&inode->i_mutex);
39         switch (origin) {
40                 case 2:
41                         offset += inode->i_size;
42                         break;
43                 case 1:
44                         offset += file->f_pos;
45         }
46         retval = -EINVAL;
47         if (offset>=0 && offset<=inode->i_sb->s_maxbytes) {
48                 if (offset != file->f_pos) {
49                         file->f_pos = offset;
50                         file->f_version = 0;
51                 }
52                 retval = offset;
53         }
54         mutex_unlock(&inode->i_mutex);
55         return retval;
56 }
57
58 EXPORT_SYMBOL(generic_file_llseek);
59
60 loff_t remote_llseek(struct file *file, loff_t offset, int origin)
61 {
62         long long retval;
63
64         lock_kernel();
65         switch (origin) {
66                 case 2:
67                         offset += i_size_read(file->f_dentry->d_inode);
68                         break;
69                 case 1:
70                         offset += file->f_pos;
71         }
72         retval = -EINVAL;
73         if (offset>=0 && offset<=file->f_dentry->d_inode->i_sb->s_maxbytes) {
74                 if (offset != file->f_pos) {
75                         file->f_pos = offset;
76                         file->f_version = 0;
77                 }
78                 retval = offset;
79         }
80         unlock_kernel();
81         return retval;
82 }
83 EXPORT_SYMBOL(remote_llseek);
84
85 loff_t no_llseek(struct file *file, loff_t offset, int origin)
86 {
87         return -ESPIPE;
88 }
89 EXPORT_SYMBOL(no_llseek);
90
91 loff_t default_llseek(struct file *file, loff_t offset, int origin)
92 {
93         long long retval;
94
95         lock_kernel();
96         switch (origin) {
97                 case 2:
98                         offset += i_size_read(file->f_dentry->d_inode);
99                         break;
100                 case 1:
101                         offset += file->f_pos;
102         }
103         retval = -EINVAL;
104         if (offset >= 0) {
105                 if (offset != file->f_pos) {
106                         file->f_pos = offset;
107                         file->f_version = 0;
108                 }
109                 retval = offset;
110         }
111         unlock_kernel();
112         return retval;
113 }
114 EXPORT_SYMBOL(default_llseek);
115
116 loff_t vfs_llseek(struct file *file, loff_t offset, int origin)
117 {
118         loff_t (*fn)(struct file *, loff_t, int);
119
120         fn = no_llseek;
121         if (file->f_mode & FMODE_LSEEK) {
122                 fn = default_llseek;
123                 if (file->f_op && file->f_op->llseek)
124                         fn = file->f_op->llseek;
125         }
126         return fn(file, offset, origin);
127 }
128 EXPORT_SYMBOL(vfs_llseek);
129
130 asmlinkage off_t sys_lseek(unsigned int fd, off_t offset, unsigned int origin)
131 {
132         off_t retval;
133         struct file * file;
134         int fput_needed;
135
136         retval = -EBADF;
137         file = fget_light(fd, &fput_needed);
138         if (!file)
139                 goto bad;
140
141         retval = -EINVAL;
142         if (origin <= 2) {
143                 loff_t res = vfs_llseek(file, offset, origin);
144                 retval = res;
145                 if (res != (loff_t)retval)
146                         retval = -EOVERFLOW;    /* LFS: should only happen on 32 bit platforms */
147         }
148         fput_light(file, fput_needed);
149 bad:
150         return retval;
151 }
152
153 #ifdef __ARCH_WANT_SYS_LLSEEK
154 asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high,
155                            unsigned long offset_low, loff_t __user * result,
156                            unsigned int origin)
157 {
158         int retval;
159         struct file * file;
160         loff_t offset;
161         int fput_needed;
162
163         retval = -EBADF;
164         file = fget_light(fd, &fput_needed);
165         if (!file)
166                 goto bad;
167
168         retval = -EINVAL;
169         if (origin > 2)
170                 goto out_putf;
171
172         offset = vfs_llseek(file, ((loff_t) offset_high << 32) | offset_low,
173                         origin);
174
175         retval = (int)offset;
176         if (offset >= 0) {
177                 retval = -EFAULT;
178                 if (!copy_to_user(result, &offset, sizeof(offset)))
179                         retval = 0;
180         }
181 out_putf:
182         fput_light(file, fput_needed);
183 bad:
184         return retval;
185 }
186 #endif
187
188 /*
189  * rw_verify_area doesn't like huge counts. We limit
190  * them to something that fits in "int" so that others
191  * won't have to do range checks all the time.
192  */
193 #define MAX_RW_COUNT (INT_MAX & PAGE_CACHE_MASK)
194
195 int rw_verify_area(int read_write, struct file *file, loff_t *ppos, size_t count)
196 {
197         struct inode *inode;
198         loff_t pos;
199
200         if (unlikely((ssize_t) count < 0))
201                 goto Einval;
202         pos = *ppos;
203         if (unlikely((pos < 0) || (loff_t) (pos + count) < 0))
204                 goto Einval;
205
206         inode = file->f_dentry->d_inode;
207         if (unlikely(inode->i_flock && MANDATORY_LOCK(inode))) {
208                 int retval = locks_mandatory_area(
209                         read_write == READ ? FLOCK_VERIFY_READ : FLOCK_VERIFY_WRITE,
210                         inode, file, pos, count);
211                 if (retval < 0)
212                         return retval;
213         }
214         return count > MAX_RW_COUNT ? MAX_RW_COUNT : count;
215
216 Einval:
217         return -EINVAL;
218 }
219
220 static void wait_on_retry_sync_kiocb(struct kiocb *iocb)
221 {
222         set_current_state(TASK_UNINTERRUPTIBLE);
223         if (!kiocbIsKicked(iocb))
224                 schedule();
225         else
226                 kiocbClearKicked(iocb);
227         __set_current_state(TASK_RUNNING);
228 }
229
230 ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
231 {
232         struct iovec iov = { .iov_base = buf, .iov_len = len };
233         struct kiocb kiocb;
234         ssize_t ret;
235
236         init_sync_kiocb(&kiocb, filp);
237         kiocb.ki_pos = *ppos;
238         kiocb.ki_left = len;
239
240         for (;;) {
241                 ret = filp->f_op->aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
242                 if (ret != -EIOCBRETRY)
243                         break;
244                 wait_on_retry_sync_kiocb(&kiocb);
245         }
246
247         if (-EIOCBQUEUED == ret)
248                 ret = wait_on_sync_kiocb(&kiocb);
249         *ppos = kiocb.ki_pos;
250         return ret;
251 }
252
253 EXPORT_SYMBOL(do_sync_read);
254
255 ssize_t vfs_read(struct file *file, char __user *buf, size_t count, loff_t *pos)
256 {
257         ssize_t ret;
258
259         if (!(file->f_mode & FMODE_READ))
260                 return -EBADF;
261         if (!file->f_op || (!file->f_op->read && !file->f_op->aio_read))
262                 return -EINVAL;
263         if (unlikely(!access_ok(VERIFY_WRITE, buf, count)))
264                 return -EFAULT;
265
266         ret = rw_verify_area(READ, file, pos, count);
267         if (ret >= 0) {
268                 count = ret;
269                 ret = security_file_permission (file, MAY_READ);
270                 if (!ret) {
271                         if (file->f_op->read)
272                                 ret = file->f_op->read(file, buf, count, pos);
273                         else
274                                 ret = do_sync_read(file, buf, count, pos);
275                         if (ret > 0) {
276                                 fsnotify_access(file->f_dentry);
277                                 current->rchar += ret;
278                         }
279                         current->syscr++;
280                 }
281         }
282
283         return ret;
284 }
285
286 EXPORT_SYMBOL(vfs_read);
287
288 ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos)
289 {
290         struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len };
291         struct kiocb kiocb;
292         ssize_t ret;
293
294         init_sync_kiocb(&kiocb, filp);
295         kiocb.ki_pos = *ppos;
296         kiocb.ki_left = len;
297
298         for (;;) {
299                 ret = filp->f_op->aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
300                 if (ret != -EIOCBRETRY)
301                         break;
302                 wait_on_retry_sync_kiocb(&kiocb);
303         }
304
305         if (-EIOCBQUEUED == ret)
306                 ret = wait_on_sync_kiocb(&kiocb);
307         *ppos = kiocb.ki_pos;
308         return ret;
309 }
310
311 EXPORT_SYMBOL(do_sync_write);
312
313 ssize_t vfs_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
314 {
315         ssize_t ret;
316
317         if (!(file->f_mode & FMODE_WRITE))
318                 return -EBADF;
319         if (!file->f_op || (!file->f_op->write && !file->f_op->aio_write))
320                 return -EINVAL;
321         if (unlikely(!access_ok(VERIFY_READ, buf, count)))
322                 return -EFAULT;
323
324         ret = rw_verify_area(WRITE, file, pos, count);
325         if (ret >= 0) {
326                 count = ret;
327                 ret = security_file_permission (file, MAY_WRITE);
328                 if (!ret) {
329                         if (file->f_op->write)
330                                 ret = file->f_op->write(file, buf, count, pos);
331                         else
332                                 ret = do_sync_write(file, buf, count, pos);
333                         if (ret > 0) {
334                                 fsnotify_modify(file->f_dentry);
335                                 current->wchar += ret;
336                         }
337                         current->syscw++;
338                 }
339         }
340
341         return ret;
342 }
343
344 EXPORT_SYMBOL(vfs_write);
345
346 static inline loff_t file_pos_read(struct file *file)
347 {
348         return file->f_pos;
349 }
350
351 static inline void file_pos_write(struct file *file, loff_t pos)
352 {
353         file->f_pos = pos;
354 }
355
356 asmlinkage ssize_t sys_read(unsigned int fd, char __user * buf, size_t count)
357 {
358         struct file *file;
359         ssize_t ret = -EBADF;
360         int fput_needed;
361
362         file = fget_light(fd, &fput_needed);
363         if (file) {
364                 loff_t pos = file_pos_read(file);
365                 ret = vfs_read(file, buf, count, &pos);
366                 file_pos_write(file, pos);
367                 fput_light(file, fput_needed);
368         }
369
370         return ret;
371 }
372 EXPORT_SYMBOL_GPL(sys_read);
373
374 asmlinkage ssize_t sys_write(unsigned int fd, const char __user * buf, size_t count)
375 {
376         struct file *file;
377         ssize_t ret = -EBADF;
378         int fput_needed;
379
380         file = fget_light(fd, &fput_needed);
381         if (file) {
382                 loff_t pos = file_pos_read(file);
383                 ret = vfs_write(file, buf, count, &pos);
384                 file_pos_write(file, pos);
385                 fput_light(file, fput_needed);
386         }
387
388         return ret;
389 }
390
391 asmlinkage ssize_t sys_pread64(unsigned int fd, char __user *buf,
392                              size_t count, loff_t pos)
393 {
394         struct file *file;
395         ssize_t ret = -EBADF;
396         int fput_needed;
397
398         if (pos < 0)
399                 return -EINVAL;
400
401         file = fget_light(fd, &fput_needed);
402         if (file) {
403                 ret = -ESPIPE;
404                 if (file->f_mode & FMODE_PREAD)
405                         ret = vfs_read(file, buf, count, &pos);
406                 fput_light(file, fput_needed);
407         }
408
409         return ret;
410 }
411
412 asmlinkage ssize_t sys_pwrite64(unsigned int fd, const char __user *buf,
413                               size_t count, loff_t pos)
414 {
415         struct file *file;
416         ssize_t ret = -EBADF;
417         int fput_needed;
418
419         if (pos < 0)
420                 return -EINVAL;
421
422         file = fget_light(fd, &fput_needed);
423         if (file) {
424                 ret = -ESPIPE;
425                 if (file->f_mode & FMODE_PWRITE)  
426                         ret = vfs_write(file, buf, count, &pos);
427                 fput_light(file, fput_needed);
428         }
429
430         return ret;
431 }
432
433 /*
434  * Reduce an iovec's length in-place.  Return the resulting number of segments
435  */
436 unsigned long iov_shorten(struct iovec *iov, unsigned long nr_segs, size_t to)
437 {
438         unsigned long seg = 0;
439         size_t len = 0;
440
441         while (seg < nr_segs) {
442                 seg++;
443                 if (len + iov->iov_len >= to) {
444                         iov->iov_len = to - len;
445                         break;
446                 }
447                 len += iov->iov_len;
448                 iov++;
449         }
450         return seg;
451 }
452
453 EXPORT_UNUSED_SYMBOL(iov_shorten);  /*  June 2006  */
454
455 ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
456                 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn)
457 {
458         struct kiocb kiocb;
459         ssize_t ret;
460
461         init_sync_kiocb(&kiocb, filp);
462         kiocb.ki_pos = *ppos;
463         kiocb.ki_left = len;
464         kiocb.ki_nbytes = len;
465
466         for (;;) {
467                 ret = fn(&kiocb, iov, nr_segs, kiocb.ki_pos);
468                 if (ret != -EIOCBRETRY)
469                         break;
470                 wait_on_retry_sync_kiocb(&kiocb);
471         }
472
473         if (ret == -EIOCBQUEUED)
474                 ret = wait_on_sync_kiocb(&kiocb);
475         *ppos = kiocb.ki_pos;
476         return ret;
477 }
478
479 /* Do it by hand, with file-ops */
480 ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
481                 unsigned long nr_segs, loff_t *ppos, io_fn_t fn)
482 {
483         struct iovec *vector = iov;
484         ssize_t ret = 0;
485
486         while (nr_segs > 0) {
487                 void __user *base;
488                 size_t len;
489                 ssize_t nr;
490
491                 base = vector->iov_base;
492                 len = vector->iov_len;
493                 vector++;
494                 nr_segs--;
495
496                 nr = fn(filp, base, len, ppos);
497
498                 if (nr < 0) {
499                         if (!ret)
500                                 ret = nr;
501                         break;
502                 }
503                 ret += nr;
504                 if (nr != len)
505                         break;
506         }
507
508         return ret;
509 }
510
511 /* A write operation does a read from user space and vice versa */
512 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
513
514 static ssize_t do_readv_writev(int type, struct file *file,
515                                const struct iovec __user * uvector,
516                                unsigned long nr_segs, loff_t *pos)
517 {
518         size_t tot_len;
519         struct iovec iovstack[UIO_FASTIOV];
520         struct iovec *iov = iovstack;
521         ssize_t ret;
522         int seg;
523         io_fn_t fn;
524         iov_fn_t fnv;
525
526         /*
527          * SuS says "The readv() function *may* fail if the iovcnt argument
528          * was less than or equal to 0, or greater than {IOV_MAX}.  Linux has
529          * traditionally returned zero for zero segments, so...
530          */
531         ret = 0;
532         if (nr_segs == 0)
533                 goto out;
534
535         /*
536          * First get the "struct iovec" from user memory and
537          * verify all the pointers
538          */
539         ret = -EINVAL;
540         if (nr_segs > UIO_MAXIOV)
541                 goto out;
542         if (!file->f_op)
543                 goto out;
544         if (nr_segs > UIO_FASTIOV) {
545                 ret = -ENOMEM;
546                 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
547                 if (!iov)
548                         goto out;
549         }
550         ret = -EFAULT;
551         if (copy_from_user(iov, uvector, nr_segs*sizeof(*uvector)))
552                 goto out;
553
554         /*
555          * Single unix specification:
556          * We should -EINVAL if an element length is not >= 0 and fitting an
557          * ssize_t.  The total length is fitting an ssize_t
558          *
559          * Be careful here because iov_len is a size_t not an ssize_t
560          */
561         tot_len = 0;
562         ret = -EINVAL;
563         for (seg = 0; seg < nr_segs; seg++) {
564                 void __user *buf = iov[seg].iov_base;
565                 ssize_t len = (ssize_t)iov[seg].iov_len;
566
567                 if (len < 0)    /* size_t not fitting an ssize_t .. */
568                         goto out;
569                 if (unlikely(!access_ok(vrfy_dir(type), buf, len)))
570                         goto Efault;
571                 tot_len += len;
572                 if ((ssize_t)tot_len < 0) /* maths overflow on the ssize_t */
573                         goto out;
574         }
575         if (tot_len == 0) {
576                 ret = 0;
577                 goto out;
578         }
579
580         ret = rw_verify_area(type, file, pos, tot_len);
581         if (ret < 0)
582                 goto out;
583         ret = security_file_permission(file, type == READ ? MAY_READ : MAY_WRITE);
584         if (ret)
585                 goto out;
586
587         fnv = NULL;
588         if (type == READ) {
589                 fn = file->f_op->read;
590                 fnv = file->f_op->aio_read;
591         } else {
592                 fn = (io_fn_t)file->f_op->write;
593                 fnv = file->f_op->aio_write;
594         }
595
596         if (fnv)
597                 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
598                                                 pos, fnv);
599         else
600                 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
601
602 out:
603         if (iov != iovstack)
604                 kfree(iov);
605         if ((ret + (type == READ)) > 0) {
606                 if (type == READ)
607                         fsnotify_access(file->f_dentry);
608                 else
609                         fsnotify_modify(file->f_dentry);
610         }
611         return ret;
612 Efault:
613         ret = -EFAULT;
614         goto out;
615 }
616
617 ssize_t vfs_readv(struct file *file, const struct iovec __user *vec,
618                   unsigned long vlen, loff_t *pos)
619 {
620         if (!(file->f_mode & FMODE_READ))
621                 return -EBADF;
622         if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
623                 return -EINVAL;
624
625         return do_readv_writev(READ, file, vec, vlen, pos);
626 }
627
628 EXPORT_SYMBOL(vfs_readv);
629
630 ssize_t vfs_writev(struct file *file, const struct iovec __user *vec,
631                    unsigned long vlen, loff_t *pos)
632 {
633         if (!(file->f_mode & FMODE_WRITE))
634                 return -EBADF;
635         if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
636                 return -EINVAL;
637
638         return do_readv_writev(WRITE, file, vec, vlen, pos);
639 }
640
641 EXPORT_SYMBOL(vfs_writev);
642
643 asmlinkage ssize_t
644 sys_readv(unsigned long fd, const struct iovec __user *vec, unsigned long vlen)
645 {
646         struct file *file;
647         ssize_t ret = -EBADF;
648         int fput_needed;
649
650         file = fget_light(fd, &fput_needed);
651         if (file) {
652                 loff_t pos = file_pos_read(file);
653                 ret = vfs_readv(file, vec, vlen, &pos);
654                 file_pos_write(file, pos);
655                 fput_light(file, fput_needed);
656         }
657
658         if (ret > 0)
659                 current->rchar += ret;
660         current->syscr++;
661         return ret;
662 }
663
664 asmlinkage ssize_t
665 sys_writev(unsigned long fd, const struct iovec __user *vec, unsigned long vlen)
666 {
667         struct file *file;
668         ssize_t ret = -EBADF;
669         int fput_needed;
670
671         file = fget_light(fd, &fput_needed);
672         if (file) {
673                 loff_t pos = file_pos_read(file);
674                 ret = vfs_writev(file, vec, vlen, &pos);
675                 file_pos_write(file, pos);
676                 fput_light(file, fput_needed);
677         }
678
679         if (ret > 0)
680                 current->wchar += ret;
681         current->syscw++;
682         return ret;
683 }
684
685 static ssize_t do_sendfile(int out_fd, int in_fd, loff_t *ppos,
686                            size_t count, loff_t max)
687 {
688         struct file * in_file, * out_file;
689         struct inode * in_inode, * out_inode;
690         loff_t pos;
691         ssize_t retval;
692         int fput_needed_in, fput_needed_out;
693
694         /*
695          * Get input file, and verify that it is ok..
696          */
697         retval = -EBADF;
698         in_file = fget_light(in_fd, &fput_needed_in);
699         if (!in_file)
700                 goto out;
701         if (!(in_file->f_mode & FMODE_READ))
702                 goto fput_in;
703         retval = -EINVAL;
704         in_inode = in_file->f_dentry->d_inode;
705         if (!in_inode)
706                 goto fput_in;
707         if (!in_file->f_op || !in_file->f_op->sendfile)
708                 goto fput_in;
709         retval = -ESPIPE;
710         if (!ppos)
711                 ppos = &in_file->f_pos;
712         else
713                 if (!(in_file->f_mode & FMODE_PREAD))
714                         goto fput_in;
715         retval = rw_verify_area(READ, in_file, ppos, count);
716         if (retval < 0)
717                 goto fput_in;
718         count = retval;
719
720         retval = security_file_permission (in_file, MAY_READ);
721         if (retval)
722                 goto fput_in;
723
724         /*
725          * Get output file, and verify that it is ok..
726          */
727         retval = -EBADF;
728         out_file = fget_light(out_fd, &fput_needed_out);
729         if (!out_file)
730                 goto fput_in;
731         if (!(out_file->f_mode & FMODE_WRITE))
732                 goto fput_out;
733         retval = -EINVAL;
734         if (!out_file->f_op || !out_file->f_op->sendpage)
735                 goto fput_out;
736         out_inode = out_file->f_dentry->d_inode;
737         retval = rw_verify_area(WRITE, out_file, &out_file->f_pos, count);
738         if (retval < 0)
739                 goto fput_out;
740         count = retval;
741
742         retval = security_file_permission (out_file, MAY_WRITE);
743         if (retval)
744                 goto fput_out;
745
746         if (!max)
747                 max = min(in_inode->i_sb->s_maxbytes, out_inode->i_sb->s_maxbytes);
748
749         pos = *ppos;
750         retval = -EINVAL;
751         if (unlikely(pos < 0))
752                 goto fput_out;
753         if (unlikely(pos + count > max)) {
754                 retval = -EOVERFLOW;
755                 if (pos >= max)
756                         goto fput_out;
757                 count = max - pos;
758         }
759
760         retval = in_file->f_op->sendfile(in_file, ppos, count, file_send_actor, out_file);
761
762         if (retval > 0) {
763                 current->rchar += retval;
764                 current->wchar += retval;
765         }
766         current->syscr++;
767         current->syscw++;
768
769         if (*ppos > max)
770                 retval = -EOVERFLOW;
771
772 fput_out:
773         fput_light(out_file, fput_needed_out);
774 fput_in:
775         fput_light(in_file, fput_needed_in);
776 out:
777         return retval;
778 }
779
780 asmlinkage ssize_t sys_sendfile(int out_fd, int in_fd, off_t __user *offset, size_t count)
781 {
782         loff_t pos;
783         off_t off;
784         ssize_t ret;
785
786         if (offset) {
787                 if (unlikely(get_user(off, offset)))
788                         return -EFAULT;
789                 pos = off;
790                 ret = do_sendfile(out_fd, in_fd, &pos, count, MAX_NON_LFS);
791                 if (unlikely(put_user(pos, offset)))
792                         return -EFAULT;
793                 return ret;
794         }
795
796         return do_sendfile(out_fd, in_fd, NULL, count, 0);
797 }
798
799 asmlinkage ssize_t sys_sendfile64(int out_fd, int in_fd, loff_t __user *offset, size_t count)
800 {
801         loff_t pos;
802         ssize_t ret;
803
804         if (offset) {
805                 if (unlikely(copy_from_user(&pos, offset, sizeof(loff_t))))
806                         return -EFAULT;
807                 ret = do_sendfile(out_fd, in_fd, &pos, count, 0);
808                 if (unlikely(put_user(pos, offset)))
809                         return -EFAULT;
810                 return ret;
811         }
812
813         return do_sendfile(out_fd, in_fd, NULL, count, 0);
814 }