]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - fs/compat.c
Revert "mwifiex: cancel cmd timer and free curr_cmd in shutdown process
[karo-tx-linux.git] / fs / compat.c
1 /*
2  *  linux/fs/compat.c
3  *
4  *  Kernel compatibililty routines for e.g. 32 bit syscall support
5  *  on 64 bit kernels.
6  *
7  *  Copyright (C) 2002       Stephen Rothwell, IBM Corporation
8  *  Copyright (C) 1997-2000  Jakub Jelinek  (jakub@redhat.com)
9  *  Copyright (C) 1998       Eddie C. Dost  (ecd@skynet.be)
10  *  Copyright (C) 2001,2002  Andi Kleen, SuSE Labs 
11  *  Copyright (C) 2003       Pavel Machek (pavel@ucw.cz)
12  *
13  *  This program is free software; you can redistribute it and/or modify
14  *  it under the terms of the GNU General Public License version 2 as
15  *  published by the Free Software Foundation.
16  */
17
18 #include <linux/stddef.h>
19 #include <linux/kernel.h>
20 #include <linux/linkage.h>
21 #include <linux/compat.h>
22 #include <linux/errno.h>
23 #include <linux/time.h>
24 #include <linux/fs.h>
25 #include <linux/fcntl.h>
26 #include <linux/namei.h>
27 #include <linux/file.h>
28 #include <linux/fdtable.h>
29 #include <linux/vfs.h>
30 #include <linux/ioctl.h>
31 #include <linux/init.h>
32 #include <linux/ncp_mount.h>
33 #include <linux/nfs4_mount.h>
34 #include <linux/syscalls.h>
35 #include <linux/ctype.h>
36 #include <linux/module.h>
37 #include <linux/dirent.h>
38 #include <linux/fsnotify.h>
39 #include <linux/highuid.h>
40 #include <linux/nfsd/syscall.h>
41 #include <linux/personality.h>
42 #include <linux/rwsem.h>
43 #include <linux/tsacct_kern.h>
44 #include <linux/security.h>
45 #include <linux/highmem.h>
46 #include <linux/signal.h>
47 #include <linux/poll.h>
48 #include <linux/mm.h>
49 #include <linux/eventpoll.h>
50 #include <linux/fs_struct.h>
51 #include <linux/slab.h>
52 #include <linux/pagemap.h>
53
54 #include <asm/uaccess.h>
55 #include <asm/mmu_context.h>
56 #include <asm/ioctls.h>
57 #include "internal.h"
58
59 int compat_log = 1;
60
61 int compat_printk(const char *fmt, ...)
62 {
63         va_list ap;
64         int ret;
65         if (!compat_log)
66                 return 0;
67         va_start(ap, fmt);
68         ret = vprintk(fmt, ap);
69         va_end(ap);
70         return ret;
71 }
72
73 #include "read_write.h"
74
75 /*
76  * Not all architectures have sys_utime, so implement this in terms
77  * of sys_utimes.
78  */
79 asmlinkage long compat_sys_utime(const char __user *filename,
80                                  struct compat_utimbuf __user *t)
81 {
82         struct timespec tv[2];
83
84         if (t) {
85                 if (get_user(tv[0].tv_sec, &t->actime) ||
86                     get_user(tv[1].tv_sec, &t->modtime))
87                         return -EFAULT;
88                 tv[0].tv_nsec = 0;
89                 tv[1].tv_nsec = 0;
90         }
91         return do_utimes(AT_FDCWD, filename, t ? tv : NULL, 0);
92 }
93
94 asmlinkage long compat_sys_utimensat(unsigned int dfd, const char __user *filename, struct compat_timespec __user *t, int flags)
95 {
96         struct timespec tv[2];
97
98         if  (t) {
99                 if (get_compat_timespec(&tv[0], &t[0]) ||
100                     get_compat_timespec(&tv[1], &t[1]))
101                         return -EFAULT;
102
103                 if (tv[0].tv_nsec == UTIME_OMIT && tv[1].tv_nsec == UTIME_OMIT)
104                         return 0;
105         }
106         return do_utimes(dfd, filename, t ? tv : NULL, flags);
107 }
108
109 asmlinkage long compat_sys_futimesat(unsigned int dfd, const char __user *filename, struct compat_timeval __user *t)
110 {
111         struct timespec tv[2];
112
113         if (t) {
114                 if (get_user(tv[0].tv_sec, &t[0].tv_sec) ||
115                     get_user(tv[0].tv_nsec, &t[0].tv_usec) ||
116                     get_user(tv[1].tv_sec, &t[1].tv_sec) ||
117                     get_user(tv[1].tv_nsec, &t[1].tv_usec))
118                         return -EFAULT;
119                 if (tv[0].tv_nsec >= 1000000 || tv[0].tv_nsec < 0 ||
120                     tv[1].tv_nsec >= 1000000 || tv[1].tv_nsec < 0)
121                         return -EINVAL;
122                 tv[0].tv_nsec *= 1000;
123                 tv[1].tv_nsec *= 1000;
124         }
125         return do_utimes(dfd, filename, t ? tv : NULL, 0);
126 }
127
128 asmlinkage long compat_sys_utimes(const char __user *filename, struct compat_timeval __user *t)
129 {
130         return compat_sys_futimesat(AT_FDCWD, filename, t);
131 }
132
133 static int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
134 {
135         compat_ino_t ino = stat->ino;
136         typeof(ubuf->st_uid) uid = 0;
137         typeof(ubuf->st_gid) gid = 0;
138         int err;
139
140         SET_UID(uid, stat->uid);
141         SET_GID(gid, stat->gid);
142
143         if ((u64) stat->size > MAX_NON_LFS ||
144             !old_valid_dev(stat->dev) ||
145             !old_valid_dev(stat->rdev))
146                 return -EOVERFLOW;
147         if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
148                 return -EOVERFLOW;
149
150         if (clear_user(ubuf, sizeof(*ubuf)))
151                 return -EFAULT;
152
153         err  = __put_user(old_encode_dev(stat->dev), &ubuf->st_dev);
154         err |= __put_user(ino, &ubuf->st_ino);
155         err |= __put_user(stat->mode, &ubuf->st_mode);
156         err |= __put_user(stat->nlink, &ubuf->st_nlink);
157         err |= __put_user(uid, &ubuf->st_uid);
158         err |= __put_user(gid, &ubuf->st_gid);
159         err |= __put_user(old_encode_dev(stat->rdev), &ubuf->st_rdev);
160         err |= __put_user(stat->size, &ubuf->st_size);
161         err |= __put_user(stat->atime.tv_sec, &ubuf->st_atime);
162         err |= __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec);
163         err |= __put_user(stat->mtime.tv_sec, &ubuf->st_mtime);
164         err |= __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec);
165         err |= __put_user(stat->ctime.tv_sec, &ubuf->st_ctime);
166         err |= __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec);
167         err |= __put_user(stat->blksize, &ubuf->st_blksize);
168         err |= __put_user(stat->blocks, &ubuf->st_blocks);
169         return err;
170 }
171
172 asmlinkage long compat_sys_newstat(const char __user * filename,
173                 struct compat_stat __user *statbuf)
174 {
175         struct kstat stat;
176         int error;
177
178         error = vfs_stat(filename, &stat);
179         if (error)
180                 return error;
181         return cp_compat_stat(&stat, statbuf);
182 }
183
184 asmlinkage long compat_sys_newlstat(const char __user * filename,
185                 struct compat_stat __user *statbuf)
186 {
187         struct kstat stat;
188         int error;
189
190         error = vfs_lstat(filename, &stat);
191         if (error)
192                 return error;
193         return cp_compat_stat(&stat, statbuf);
194 }
195
196 #ifndef __ARCH_WANT_STAT64
197 asmlinkage long compat_sys_newfstatat(unsigned int dfd,
198                 const char __user *filename,
199                 struct compat_stat __user *statbuf, int flag)
200 {
201         struct kstat stat;
202         int error;
203
204         error = vfs_fstatat(dfd, filename, &stat, flag);
205         if (error)
206                 return error;
207         return cp_compat_stat(&stat, statbuf);
208 }
209 #endif
210
211 asmlinkage long compat_sys_newfstat(unsigned int fd,
212                 struct compat_stat __user * statbuf)
213 {
214         struct kstat stat;
215         int error = vfs_fstat(fd, &stat);
216
217         if (!error)
218                 error = cp_compat_stat(&stat, statbuf);
219         return error;
220 }
221
222 static int put_compat_statfs(struct compat_statfs __user *ubuf, struct kstatfs *kbuf)
223 {
224         
225         if (sizeof ubuf->f_blocks == 4) {
226                 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
227                      kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
228                         return -EOVERFLOW;
229                 /* f_files and f_ffree may be -1; it's okay
230                  * to stuff that into 32 bits */
231                 if (kbuf->f_files != 0xffffffffffffffffULL
232                  && (kbuf->f_files & 0xffffffff00000000ULL))
233                         return -EOVERFLOW;
234                 if (kbuf->f_ffree != 0xffffffffffffffffULL
235                  && (kbuf->f_ffree & 0xffffffff00000000ULL))
236                         return -EOVERFLOW;
237         }
238         if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
239             __put_user(kbuf->f_type, &ubuf->f_type) ||
240             __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
241             __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
242             __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
243             __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
244             __put_user(kbuf->f_files, &ubuf->f_files) ||
245             __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
246             __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
247             __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
248             __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
249             __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
250             __put_user(0, &ubuf->f_spare[0]) || 
251             __put_user(0, &ubuf->f_spare[1]) || 
252             __put_user(0, &ubuf->f_spare[2]) || 
253             __put_user(0, &ubuf->f_spare[3]) || 
254             __put_user(0, &ubuf->f_spare[4]))
255                 return -EFAULT;
256         return 0;
257 }
258
259 /*
260  * The following statfs calls are copies of code from fs/statfs.c and
261  * should be checked against those from time to time
262  */
263 asmlinkage long compat_sys_statfs(const char __user *pathname, struct compat_statfs __user *buf)
264 {
265         struct kstatfs tmp;
266         int error = user_statfs(pathname, &tmp);
267         if (!error)
268                 error = put_compat_statfs(buf, &tmp);
269         return error;
270 }
271
272 asmlinkage long compat_sys_fstatfs(unsigned int fd, struct compat_statfs __user *buf)
273 {
274         struct kstatfs tmp;
275         int error = fd_statfs(fd, &tmp);
276         if (!error)
277                 error = put_compat_statfs(buf, &tmp);
278         return error;
279 }
280
281 static int put_compat_statfs64(struct compat_statfs64 __user *ubuf, struct kstatfs *kbuf)
282 {
283         if (sizeof ubuf->f_blocks == 4) {
284                 if ((kbuf->f_blocks | kbuf->f_bfree | kbuf->f_bavail |
285                      kbuf->f_bsize | kbuf->f_frsize) & 0xffffffff00000000ULL)
286                         return -EOVERFLOW;
287                 /* f_files and f_ffree may be -1; it's okay
288                  * to stuff that into 32 bits */
289                 if (kbuf->f_files != 0xffffffffffffffffULL
290                  && (kbuf->f_files & 0xffffffff00000000ULL))
291                         return -EOVERFLOW;
292                 if (kbuf->f_ffree != 0xffffffffffffffffULL
293                  && (kbuf->f_ffree & 0xffffffff00000000ULL))
294                         return -EOVERFLOW;
295         }
296         if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)) ||
297             __put_user(kbuf->f_type, &ubuf->f_type) ||
298             __put_user(kbuf->f_bsize, &ubuf->f_bsize) ||
299             __put_user(kbuf->f_blocks, &ubuf->f_blocks) ||
300             __put_user(kbuf->f_bfree, &ubuf->f_bfree) ||
301             __put_user(kbuf->f_bavail, &ubuf->f_bavail) ||
302             __put_user(kbuf->f_files, &ubuf->f_files) ||
303             __put_user(kbuf->f_ffree, &ubuf->f_ffree) ||
304             __put_user(kbuf->f_namelen, &ubuf->f_namelen) ||
305             __put_user(kbuf->f_fsid.val[0], &ubuf->f_fsid.val[0]) ||
306             __put_user(kbuf->f_fsid.val[1], &ubuf->f_fsid.val[1]) ||
307             __put_user(kbuf->f_frsize, &ubuf->f_frsize) ||
308             __put_user(kbuf->f_flags, &ubuf->f_flags) ||
309             __clear_user(ubuf->f_spare, sizeof(ubuf->f_spare)))
310                 return -EFAULT;
311         return 0;
312 }
313
314 asmlinkage long compat_sys_statfs64(const char __user *pathname, compat_size_t sz, struct compat_statfs64 __user *buf)
315 {
316         struct kstatfs tmp;
317         int error;
318
319         if (sz != sizeof(*buf))
320                 return -EINVAL;
321
322         error = user_statfs(pathname, &tmp);
323         if (!error)
324                 error = put_compat_statfs64(buf, &tmp);
325         return error;
326 }
327
328 asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz, struct compat_statfs64 __user *buf)
329 {
330         struct kstatfs tmp;
331         int error;
332
333         if (sz != sizeof(*buf))
334                 return -EINVAL;
335
336         error = fd_statfs(fd, &tmp);
337         if (!error)
338                 error = put_compat_statfs64(buf, &tmp);
339         return error;
340 }
341
342 /*
343  * This is a copy of sys_ustat, just dealing with a structure layout.
344  * Given how simple this syscall is that apporach is more maintainable
345  * than the various conversion hacks.
346  */
347 asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u)
348 {
349         struct super_block *sb;
350         struct compat_ustat tmp;
351         struct kstatfs sbuf;
352         int err;
353
354         sb = user_get_super(new_decode_dev(dev));
355         if (!sb)
356                 return -EINVAL;
357         err = statfs_by_dentry(sb->s_root, &sbuf);
358         drop_super(sb);
359         if (err)
360                 return err;
361
362         memset(&tmp, 0, sizeof(struct compat_ustat));
363         tmp.f_tfree = sbuf.f_bfree;
364         tmp.f_tinode = sbuf.f_ffree;
365         if (copy_to_user(u, &tmp, sizeof(struct compat_ustat)))
366                 return -EFAULT;
367         return 0;
368 }
369
370 static int get_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
371 {
372         if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
373             __get_user(kfl->l_type, &ufl->l_type) ||
374             __get_user(kfl->l_whence, &ufl->l_whence) ||
375             __get_user(kfl->l_start, &ufl->l_start) ||
376             __get_user(kfl->l_len, &ufl->l_len) ||
377             __get_user(kfl->l_pid, &ufl->l_pid))
378                 return -EFAULT;
379         return 0;
380 }
381
382 static int put_compat_flock(struct flock *kfl, struct compat_flock __user *ufl)
383 {
384         if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
385             __put_user(kfl->l_type, &ufl->l_type) ||
386             __put_user(kfl->l_whence, &ufl->l_whence) ||
387             __put_user(kfl->l_start, &ufl->l_start) ||
388             __put_user(kfl->l_len, &ufl->l_len) ||
389             __put_user(kfl->l_pid, &ufl->l_pid))
390                 return -EFAULT;
391         return 0;
392 }
393
394 #ifndef HAVE_ARCH_GET_COMPAT_FLOCK64
395 static int get_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
396 {
397         if (!access_ok(VERIFY_READ, ufl, sizeof(*ufl)) ||
398             __get_user(kfl->l_type, &ufl->l_type) ||
399             __get_user(kfl->l_whence, &ufl->l_whence) ||
400             __get_user(kfl->l_start, &ufl->l_start) ||
401             __get_user(kfl->l_len, &ufl->l_len) ||
402             __get_user(kfl->l_pid, &ufl->l_pid))
403                 return -EFAULT;
404         return 0;
405 }
406 #endif
407
408 #ifndef HAVE_ARCH_PUT_COMPAT_FLOCK64
409 static int put_compat_flock64(struct flock *kfl, struct compat_flock64 __user *ufl)
410 {
411         if (!access_ok(VERIFY_WRITE, ufl, sizeof(*ufl)) ||
412             __put_user(kfl->l_type, &ufl->l_type) ||
413             __put_user(kfl->l_whence, &ufl->l_whence) ||
414             __put_user(kfl->l_start, &ufl->l_start) ||
415             __put_user(kfl->l_len, &ufl->l_len) ||
416             __put_user(kfl->l_pid, &ufl->l_pid))
417                 return -EFAULT;
418         return 0;
419 }
420 #endif
421
422 asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
423                 unsigned long arg)
424 {
425         mm_segment_t old_fs;
426         struct flock f;
427         long ret;
428
429         switch (cmd) {
430         case F_GETLK:
431         case F_SETLK:
432         case F_SETLKW:
433                 ret = get_compat_flock(&f, compat_ptr(arg));
434                 if (ret != 0)
435                         break;
436                 old_fs = get_fs();
437                 set_fs(KERNEL_DS);
438                 ret = sys_fcntl(fd, cmd, (unsigned long)&f);
439                 set_fs(old_fs);
440                 if (cmd == F_GETLK && ret == 0) {
441                         /* GETLK was successful and we need to return the data...
442                          * but it needs to fit in the compat structure.
443                          * l_start shouldn't be too big, unless the original
444                          * start + end is greater than COMPAT_OFF_T_MAX, in which
445                          * case the app was asking for trouble, so we return
446                          * -EOVERFLOW in that case.
447                          * l_len could be too big, in which case we just truncate it,
448                          * and only allow the app to see that part of the conflicting
449                          * lock that might make sense to it anyway
450                          */
451
452                         if (f.l_start > COMPAT_OFF_T_MAX)
453                                 ret = -EOVERFLOW;
454                         if (f.l_len > COMPAT_OFF_T_MAX)
455                                 f.l_len = COMPAT_OFF_T_MAX;
456                         if (ret == 0)
457                                 ret = put_compat_flock(&f, compat_ptr(arg));
458                 }
459                 break;
460
461         case F_GETLK64:
462         case F_SETLK64:
463         case F_SETLKW64:
464                 ret = get_compat_flock64(&f, compat_ptr(arg));
465                 if (ret != 0)
466                         break;
467                 old_fs = get_fs();
468                 set_fs(KERNEL_DS);
469                 ret = sys_fcntl(fd, (cmd == F_GETLK64) ? F_GETLK :
470                                 ((cmd == F_SETLK64) ? F_SETLK : F_SETLKW),
471                                 (unsigned long)&f);
472                 set_fs(old_fs);
473                 if (cmd == F_GETLK64 && ret == 0) {
474                         /* need to return lock information - see above for commentary */
475                         if (f.l_start > COMPAT_LOFF_T_MAX)
476                                 ret = -EOVERFLOW;
477                         if (f.l_len > COMPAT_LOFF_T_MAX)
478                                 f.l_len = COMPAT_LOFF_T_MAX;
479                         if (ret == 0)
480                                 ret = put_compat_flock64(&f, compat_ptr(arg));
481                 }
482                 break;
483
484         default:
485                 ret = sys_fcntl(fd, cmd, arg);
486                 break;
487         }
488         return ret;
489 }
490
491 asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
492                 unsigned long arg)
493 {
494         if ((cmd == F_GETLK64) || (cmd == F_SETLK64) || (cmd == F_SETLKW64))
495                 return -EINVAL;
496         return compat_sys_fcntl64(fd, cmd, arg);
497 }
498
499 asmlinkage long
500 compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
501 {
502         long ret;
503         aio_context_t ctx64;
504
505         mm_segment_t oldfs = get_fs();
506         if (unlikely(get_user(ctx64, ctx32p)))
507                 return -EFAULT;
508
509         set_fs(KERNEL_DS);
510         /* The __user pointer cast is valid because of the set_fs() */
511         ret = sys_io_setup(nr_reqs, (aio_context_t __user *) &ctx64);
512         set_fs(oldfs);
513         /* truncating is ok because it's a user address */
514         if (!ret)
515                 ret = put_user((u32) ctx64, ctx32p);
516         return ret;
517 }
518
519 asmlinkage long
520 compat_sys_io_getevents(aio_context_t ctx_id,
521                                  unsigned long min_nr,
522                                  unsigned long nr,
523                                  struct io_event __user *events,
524                                  struct compat_timespec __user *timeout)
525 {
526         long ret;
527         struct timespec t;
528         struct timespec __user *ut = NULL;
529
530         ret = -EFAULT;
531         if (unlikely(!access_ok(VERIFY_WRITE, events, 
532                                 nr * sizeof(struct io_event))))
533                 goto out;
534         if (timeout) {
535                 if (get_compat_timespec(&t, timeout))
536                         goto out;
537
538                 ut = compat_alloc_user_space(sizeof(*ut));
539                 if (copy_to_user(ut, &t, sizeof(t)) )
540                         goto out;
541         } 
542         ret = sys_io_getevents(ctx_id, min_nr, nr, events, ut);
543 out:
544         return ret;
545 }
546
547 /* A write operation does a read from user space and vice versa */
548 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
549
550 ssize_t compat_rw_copy_check_uvector(int type,
551                 const struct compat_iovec __user *uvector, unsigned long nr_segs,
552                 unsigned long fast_segs, struct iovec *fast_pointer,
553                 struct iovec **ret_pointer)
554 {
555         compat_ssize_t tot_len;
556         struct iovec *iov = *ret_pointer = fast_pointer;
557         ssize_t ret = 0;
558         int seg;
559
560         /*
561          * SuS says "The readv() function *may* fail if the iovcnt argument
562          * was less than or equal to 0, or greater than {IOV_MAX}.  Linux has
563          * traditionally returned zero for zero segments, so...
564          */
565         if (nr_segs == 0)
566                 goto out;
567
568         ret = -EINVAL;
569         if (nr_segs > UIO_MAXIOV || nr_segs < 0)
570                 goto out;
571         if (nr_segs > fast_segs) {
572                 ret = -ENOMEM;
573                 iov = kmalloc(nr_segs*sizeof(struct iovec), GFP_KERNEL);
574                 if (iov == NULL)
575                         goto out;
576         }
577         *ret_pointer = iov;
578
579         ret = -EFAULT;
580         if (!access_ok(VERIFY_READ, uvector, nr_segs*sizeof(*uvector)))
581                 goto out;
582
583         /*
584          * Single unix specification:
585          * We should -EINVAL if an element length is not >= 0 and fitting an
586          * ssize_t.
587          *
588          * In Linux, the total length is limited to MAX_RW_COUNT, there is
589          * no overflow possibility.
590          */
591         tot_len = 0;
592         ret = -EINVAL;
593         for (seg = 0; seg < nr_segs; seg++) {
594                 compat_uptr_t buf;
595                 compat_ssize_t len;
596
597                 if (__get_user(len, &uvector->iov_len) ||
598                    __get_user(buf, &uvector->iov_base)) {
599                         ret = -EFAULT;
600                         goto out;
601                 }
602                 if (len < 0)    /* size_t not fitting in compat_ssize_t .. */
603                         goto out;
604                 if (!access_ok(vrfy_dir(type), compat_ptr(buf), len)) {
605                         ret = -EFAULT;
606                         goto out;
607                 }
608                 if (len > MAX_RW_COUNT - tot_len)
609                         len = MAX_RW_COUNT - tot_len;
610                 tot_len += len;
611                 iov->iov_base = compat_ptr(buf);
612                 iov->iov_len = (compat_size_t) len;
613                 uvector++;
614                 iov++;
615         }
616         ret = tot_len;
617
618 out:
619         return ret;
620 }
621
622 static inline long
623 copy_iocb(long nr, u32 __user *ptr32, struct iocb __user * __user *ptr64)
624 {
625         compat_uptr_t uptr;
626         int i;
627
628         for (i = 0; i < nr; ++i) {
629                 if (get_user(uptr, ptr32 + i))
630                         return -EFAULT;
631                 if (put_user(compat_ptr(uptr), ptr64 + i))
632                         return -EFAULT;
633         }
634         return 0;
635 }
636
637 #define MAX_AIO_SUBMITS         (PAGE_SIZE/sizeof(struct iocb *))
638
639 asmlinkage long
640 compat_sys_io_submit(aio_context_t ctx_id, int nr, u32 __user *iocb)
641 {
642         struct iocb __user * __user *iocb64; 
643         long ret;
644
645         if (unlikely(nr < 0))
646                 return -EINVAL;
647
648         if (nr > MAX_AIO_SUBMITS)
649                 nr = MAX_AIO_SUBMITS;
650         
651         iocb64 = compat_alloc_user_space(nr * sizeof(*iocb64));
652         ret = copy_iocb(nr, iocb, iocb64);
653         if (!ret)
654                 ret = do_io_submit(ctx_id, nr, iocb64, 1);
655         return ret;
656 }
657
658 struct compat_ncp_mount_data {
659         compat_int_t version;
660         compat_uint_t ncp_fd;
661         __compat_uid_t mounted_uid;
662         compat_pid_t wdog_pid;
663         unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
664         compat_uint_t time_out;
665         compat_uint_t retry_count;
666         compat_uint_t flags;
667         __compat_uid_t uid;
668         __compat_gid_t gid;
669         compat_mode_t file_mode;
670         compat_mode_t dir_mode;
671 };
672
673 struct compat_ncp_mount_data_v4 {
674         compat_int_t version;
675         compat_ulong_t flags;
676         compat_ulong_t mounted_uid;
677         compat_long_t wdog_pid;
678         compat_uint_t ncp_fd;
679         compat_uint_t time_out;
680         compat_uint_t retry_count;
681         compat_ulong_t uid;
682         compat_ulong_t gid;
683         compat_ulong_t file_mode;
684         compat_ulong_t dir_mode;
685 };
686
687 static void *do_ncp_super_data_conv(void *raw_data)
688 {
689         int version = *(unsigned int *)raw_data;
690
691         if (version == 3) {
692                 struct compat_ncp_mount_data *c_n = raw_data;
693                 struct ncp_mount_data *n = raw_data;
694
695                 n->dir_mode = c_n->dir_mode;
696                 n->file_mode = c_n->file_mode;
697                 n->gid = c_n->gid;
698                 n->uid = c_n->uid;
699                 memmove (n->mounted_vol, c_n->mounted_vol, (sizeof (c_n->mounted_vol) + 3 * sizeof (unsigned int)));
700                 n->wdog_pid = c_n->wdog_pid;
701                 n->mounted_uid = c_n->mounted_uid;
702         } else if (version == 4) {
703                 struct compat_ncp_mount_data_v4 *c_n = raw_data;
704                 struct ncp_mount_data_v4 *n = raw_data;
705
706                 n->dir_mode = c_n->dir_mode;
707                 n->file_mode = c_n->file_mode;
708                 n->gid = c_n->gid;
709                 n->uid = c_n->uid;
710                 n->retry_count = c_n->retry_count;
711                 n->time_out = c_n->time_out;
712                 n->ncp_fd = c_n->ncp_fd;
713                 n->wdog_pid = c_n->wdog_pid;
714                 n->mounted_uid = c_n->mounted_uid;
715                 n->flags = c_n->flags;
716         } else if (version != 5) {
717                 return NULL;
718         }
719
720         return raw_data;
721 }
722
723
724 struct compat_nfs_string {
725         compat_uint_t len;
726         compat_uptr_t data;
727 };
728
729 static inline void compat_nfs_string(struct nfs_string *dst,
730                                      struct compat_nfs_string *src)
731 {
732         dst->data = compat_ptr(src->data);
733         dst->len = src->len;
734 }
735
736 struct compat_nfs4_mount_data_v1 {
737         compat_int_t version;
738         compat_int_t flags;
739         compat_int_t rsize;
740         compat_int_t wsize;
741         compat_int_t timeo;
742         compat_int_t retrans;
743         compat_int_t acregmin;
744         compat_int_t acregmax;
745         compat_int_t acdirmin;
746         compat_int_t acdirmax;
747         struct compat_nfs_string client_addr;
748         struct compat_nfs_string mnt_path;
749         struct compat_nfs_string hostname;
750         compat_uint_t host_addrlen;
751         compat_uptr_t host_addr;
752         compat_int_t proto;
753         compat_int_t auth_flavourlen;
754         compat_uptr_t auth_flavours;
755 };
756
757 static int do_nfs4_super_data_conv(void *raw_data)
758 {
759         int version = *(compat_uint_t *) raw_data;
760
761         if (version == 1) {
762                 struct compat_nfs4_mount_data_v1 *raw = raw_data;
763                 struct nfs4_mount_data *real = raw_data;
764
765                 /* copy the fields backwards */
766                 real->auth_flavours = compat_ptr(raw->auth_flavours);
767                 real->auth_flavourlen = raw->auth_flavourlen;
768                 real->proto = raw->proto;
769                 real->host_addr = compat_ptr(raw->host_addr);
770                 real->host_addrlen = raw->host_addrlen;
771                 compat_nfs_string(&real->hostname, &raw->hostname);
772                 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
773                 compat_nfs_string(&real->client_addr, &raw->client_addr);
774                 real->acdirmax = raw->acdirmax;
775                 real->acdirmin = raw->acdirmin;
776                 real->acregmax = raw->acregmax;
777                 real->acregmin = raw->acregmin;
778                 real->retrans = raw->retrans;
779                 real->timeo = raw->timeo;
780                 real->wsize = raw->wsize;
781                 real->rsize = raw->rsize;
782                 real->flags = raw->flags;
783                 real->version = raw->version;
784         }
785
786         return 0;
787 }
788
789 #define NCPFS_NAME      "ncpfs"
790 #define NFS4_NAME       "nfs4"
791
792 asmlinkage long compat_sys_mount(const char __user * dev_name,
793                                  const char __user * dir_name,
794                                  const char __user * type, unsigned long flags,
795                                  const void __user * data)
796 {
797         char *kernel_type;
798         unsigned long data_page;
799         char *kernel_dev;
800         char *dir_page;
801         int retval;
802
803         retval = copy_mount_string(type, &kernel_type);
804         if (retval < 0)
805                 goto out;
806
807         dir_page = getname(dir_name);
808         retval = PTR_ERR(dir_page);
809         if (IS_ERR(dir_page))
810                 goto out1;
811
812         retval = copy_mount_string(dev_name, &kernel_dev);
813         if (retval < 0)
814                 goto out2;
815
816         retval = copy_mount_options(data, &data_page);
817         if (retval < 0)
818                 goto out3;
819
820         retval = -EINVAL;
821
822         if (kernel_type && data_page) {
823                 if (!strcmp(kernel_type, NCPFS_NAME)) {
824                         do_ncp_super_data_conv((void *)data_page);
825                 } else if (!strcmp(kernel_type, NFS4_NAME)) {
826                         if (do_nfs4_super_data_conv((void *) data_page))
827                                 goto out4;
828                 }
829         }
830
831         retval = do_mount(kernel_dev, dir_page, kernel_type,
832                         flags, (void*)data_page);
833
834  out4:
835         free_page(data_page);
836  out3:
837         kfree(kernel_dev);
838  out2:
839         putname(dir_page);
840  out1:
841         kfree(kernel_type);
842  out:
843         return retval;
844 }
845
846 struct compat_old_linux_dirent {
847         compat_ulong_t  d_ino;
848         compat_ulong_t  d_offset;
849         unsigned short  d_namlen;
850         char            d_name[1];
851 };
852
853 struct compat_readdir_callback {
854         struct compat_old_linux_dirent __user *dirent;
855         int result;
856 };
857
858 static int compat_fillonedir(void *__buf, const char *name, int namlen,
859                         loff_t offset, u64 ino, unsigned int d_type)
860 {
861         struct compat_readdir_callback *buf = __buf;
862         struct compat_old_linux_dirent __user *dirent;
863         compat_ulong_t d_ino;
864
865         if (buf->result)
866                 return -EINVAL;
867         d_ino = ino;
868         if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
869                 buf->result = -EOVERFLOW;
870                 return -EOVERFLOW;
871         }
872         buf->result++;
873         dirent = buf->dirent;
874         if (!access_ok(VERIFY_WRITE, dirent,
875                         (unsigned long)(dirent->d_name + namlen + 1) -
876                                 (unsigned long)dirent))
877                 goto efault;
878         if (    __put_user(d_ino, &dirent->d_ino) ||
879                 __put_user(offset, &dirent->d_offset) ||
880                 __put_user(namlen, &dirent->d_namlen) ||
881                 __copy_to_user(dirent->d_name, name, namlen) ||
882                 __put_user(0, dirent->d_name + namlen))
883                 goto efault;
884         return 0;
885 efault:
886         buf->result = -EFAULT;
887         return -EFAULT;
888 }
889
890 asmlinkage long compat_sys_old_readdir(unsigned int fd,
891         struct compat_old_linux_dirent __user *dirent, unsigned int count)
892 {
893         int error;
894         struct file *file;
895         struct compat_readdir_callback buf;
896
897         error = -EBADF;
898         file = fget(fd);
899         if (!file)
900                 goto out;
901
902         buf.result = 0;
903         buf.dirent = dirent;
904
905         error = vfs_readdir(file, compat_fillonedir, &buf);
906         if (buf.result)
907                 error = buf.result;
908
909         fput(file);
910 out:
911         return error;
912 }
913
914 struct compat_linux_dirent {
915         compat_ulong_t  d_ino;
916         compat_ulong_t  d_off;
917         unsigned short  d_reclen;
918         char            d_name[1];
919 };
920
921 struct compat_getdents_callback {
922         struct compat_linux_dirent __user *current_dir;
923         struct compat_linux_dirent __user *previous;
924         int count;
925         int error;
926 };
927
928 static int compat_filldir(void *__buf, const char *name, int namlen,
929                 loff_t offset, u64 ino, unsigned int d_type)
930 {
931         struct compat_linux_dirent __user * dirent;
932         struct compat_getdents_callback *buf = __buf;
933         compat_ulong_t d_ino;
934         int reclen = ALIGN(offsetof(struct compat_linux_dirent, d_name) +
935                 namlen + 2, sizeof(compat_long_t));
936
937         buf->error = -EINVAL;   /* only used if we fail.. */
938         if (reclen > buf->count)
939                 return -EINVAL;
940         d_ino = ino;
941         if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
942                 buf->error = -EOVERFLOW;
943                 return -EOVERFLOW;
944         }
945         dirent = buf->previous;
946         if (dirent) {
947                 if (__put_user(offset, &dirent->d_off))
948                         goto efault;
949         }
950         dirent = buf->current_dir;
951         if (__put_user(d_ino, &dirent->d_ino))
952                 goto efault;
953         if (__put_user(reclen, &dirent->d_reclen))
954                 goto efault;
955         if (copy_to_user(dirent->d_name, name, namlen))
956                 goto efault;
957         if (__put_user(0, dirent->d_name + namlen))
958                 goto efault;
959         if (__put_user(d_type, (char  __user *) dirent + reclen - 1))
960                 goto efault;
961         buf->previous = dirent;
962         dirent = (void __user *)dirent + reclen;
963         buf->current_dir = dirent;
964         buf->count -= reclen;
965         return 0;
966 efault:
967         buf->error = -EFAULT;
968         return -EFAULT;
969 }
970
971 asmlinkage long compat_sys_getdents(unsigned int fd,
972                 struct compat_linux_dirent __user *dirent, unsigned int count)
973 {
974         struct file * file;
975         struct compat_linux_dirent __user * lastdirent;
976         struct compat_getdents_callback buf;
977         int error;
978
979         error = -EFAULT;
980         if (!access_ok(VERIFY_WRITE, dirent, count))
981                 goto out;
982
983         error = -EBADF;
984         file = fget(fd);
985         if (!file)
986                 goto out;
987
988         buf.current_dir = dirent;
989         buf.previous = NULL;
990         buf.count = count;
991         buf.error = 0;
992
993         error = vfs_readdir(file, compat_filldir, &buf);
994         if (error >= 0)
995                 error = buf.error;
996         lastdirent = buf.previous;
997         if (lastdirent) {
998                 if (put_user(file->f_pos, &lastdirent->d_off))
999                         error = -EFAULT;
1000                 else
1001                         error = count - buf.count;
1002         }
1003         fput(file);
1004 out:
1005         return error;
1006 }
1007
1008 #ifndef __ARCH_OMIT_COMPAT_SYS_GETDENTS64
1009
1010 struct compat_getdents_callback64 {
1011         struct linux_dirent64 __user *current_dir;
1012         struct linux_dirent64 __user *previous;
1013         int count;
1014         int error;
1015 };
1016
1017 static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t offset,
1018                      u64 ino, unsigned int d_type)
1019 {
1020         struct linux_dirent64 __user *dirent;
1021         struct compat_getdents_callback64 *buf = __buf;
1022         int reclen = ALIGN(offsetof(struct linux_dirent64, d_name) + namlen + 1,
1023                 sizeof(u64));
1024         u64 off;
1025
1026         buf->error = -EINVAL;   /* only used if we fail.. */
1027         if (reclen > buf->count)
1028                 return -EINVAL;
1029         dirent = buf->previous;
1030
1031         if (dirent) {
1032                 if (__put_user_unaligned(offset, &dirent->d_off))
1033                         goto efault;
1034         }
1035         dirent = buf->current_dir;
1036         if (__put_user_unaligned(ino, &dirent->d_ino))
1037                 goto efault;
1038         off = 0;
1039         if (__put_user_unaligned(off, &dirent->d_off))
1040                 goto efault;
1041         if (__put_user(reclen, &dirent->d_reclen))
1042                 goto efault;
1043         if (__put_user(d_type, &dirent->d_type))
1044                 goto efault;
1045         if (copy_to_user(dirent->d_name, name, namlen))
1046                 goto efault;
1047         if (__put_user(0, dirent->d_name + namlen))
1048                 goto efault;
1049         buf->previous = dirent;
1050         dirent = (void __user *)dirent + reclen;
1051         buf->current_dir = dirent;
1052         buf->count -= reclen;
1053         return 0;
1054 efault:
1055         buf->error = -EFAULT;
1056         return -EFAULT;
1057 }
1058
1059 asmlinkage long compat_sys_getdents64(unsigned int fd,
1060                 struct linux_dirent64 __user * dirent, unsigned int count)
1061 {
1062         struct file * file;
1063         struct linux_dirent64 __user * lastdirent;
1064         struct compat_getdents_callback64 buf;
1065         int error;
1066
1067         error = -EFAULT;
1068         if (!access_ok(VERIFY_WRITE, dirent, count))
1069                 goto out;
1070
1071         error = -EBADF;
1072         file = fget(fd);
1073         if (!file)
1074                 goto out;
1075
1076         buf.current_dir = dirent;
1077         buf.previous = NULL;
1078         buf.count = count;
1079         buf.error = 0;
1080
1081         error = vfs_readdir(file, compat_filldir64, &buf);
1082         if (error >= 0)
1083                 error = buf.error;
1084         lastdirent = buf.previous;
1085         if (lastdirent) {
1086                 typeof(lastdirent->d_off) d_off = file->f_pos;
1087                 if (__put_user_unaligned(d_off, &lastdirent->d_off))
1088                         error = -EFAULT;
1089                 else
1090                         error = count - buf.count;
1091         }
1092         fput(file);
1093 out:
1094         return error;
1095 }
1096 #endif /* ! __ARCH_OMIT_COMPAT_SYS_GETDENTS64 */
1097
1098 static ssize_t compat_do_readv_writev(int type, struct file *file,
1099                                const struct compat_iovec __user *uvector,
1100                                unsigned long nr_segs, loff_t *pos)
1101 {
1102         compat_ssize_t tot_len;
1103         struct iovec iovstack[UIO_FASTIOV];
1104         struct iovec *iov = iovstack;
1105         ssize_t ret;
1106         io_fn_t fn;
1107         iov_fn_t fnv;
1108
1109         ret = -EINVAL;
1110         if (!file->f_op)
1111                 goto out;
1112
1113         ret = compat_rw_copy_check_uvector(type, uvector, nr_segs,
1114                                                UIO_FASTIOV, iovstack, &iov);
1115         if (ret <= 0)
1116                 goto out;
1117
1118         tot_len = ret;
1119         ret = rw_verify_area(type, file, pos, tot_len);
1120         if (ret < 0)
1121                 goto out;
1122
1123         fnv = NULL;
1124         if (type == READ) {
1125                 fn = file->f_op->read;
1126                 fnv = file->f_op->aio_read;
1127         } else {
1128                 fn = (io_fn_t)file->f_op->write;
1129                 fnv = file->f_op->aio_write;
1130         }
1131
1132         if (fnv)
1133                 ret = do_sync_readv_writev(file, iov, nr_segs, tot_len,
1134                                                 pos, fnv);
1135         else
1136                 ret = do_loop_readv_writev(file, iov, nr_segs, pos, fn);
1137
1138 out:
1139         if (iov != iovstack)
1140                 kfree(iov);
1141         if ((ret + (type == READ)) > 0) {
1142                 if (type == READ)
1143                         fsnotify_access(file);
1144                 else
1145                         fsnotify_modify(file);
1146         }
1147         return ret;
1148 }
1149
1150 static size_t compat_readv(struct file *file,
1151                            const struct compat_iovec __user *vec,
1152                            unsigned long vlen, loff_t *pos)
1153 {
1154         ssize_t ret = -EBADF;
1155
1156         if (!(file->f_mode & FMODE_READ))
1157                 goto out;
1158
1159         ret = -EINVAL;
1160         if (!file->f_op || (!file->f_op->aio_read && !file->f_op->read))
1161                 goto out;
1162
1163         ret = compat_do_readv_writev(READ, file, vec, vlen, pos);
1164
1165 out:
1166         if (ret > 0)
1167                 add_rchar(current, ret);
1168         inc_syscr(current);
1169         return ret;
1170 }
1171
1172 asmlinkage ssize_t
1173 compat_sys_readv(unsigned long fd, const struct compat_iovec __user *vec,
1174                  unsigned long vlen)
1175 {
1176         struct file *file;
1177         int fput_needed;
1178         ssize_t ret;
1179         loff_t pos;
1180
1181         file = fget_light(fd, &fput_needed);
1182         if (!file)
1183                 return -EBADF;
1184         pos = file->f_pos;
1185         ret = compat_readv(file, vec, vlen, &pos);
1186         file->f_pos = pos;
1187         fput_light(file, fput_needed);
1188         return ret;
1189 }
1190
1191 asmlinkage ssize_t
1192 compat_sys_preadv(unsigned long fd, const struct compat_iovec __user *vec,
1193                   unsigned long vlen, u32 pos_low, u32 pos_high)
1194 {
1195         loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1196         struct file *file;
1197         int fput_needed;
1198         ssize_t ret;
1199
1200         if (pos < 0)
1201                 return -EINVAL;
1202         file = fget_light(fd, &fput_needed);
1203         if (!file)
1204                 return -EBADF;
1205         ret = -ESPIPE;
1206         if (file->f_mode & FMODE_PREAD)
1207                 ret = compat_readv(file, vec, vlen, &pos);
1208         fput_light(file, fput_needed);
1209         return ret;
1210 }
1211
1212 static size_t compat_writev(struct file *file,
1213                             const struct compat_iovec __user *vec,
1214                             unsigned long vlen, loff_t *pos)
1215 {
1216         ssize_t ret = -EBADF;
1217
1218         if (!(file->f_mode & FMODE_WRITE))
1219                 goto out;
1220
1221         ret = -EINVAL;
1222         if (!file->f_op || (!file->f_op->aio_write && !file->f_op->write))
1223                 goto out;
1224
1225         ret = compat_do_readv_writev(WRITE, file, vec, vlen, pos);
1226
1227 out:
1228         if (ret > 0)
1229                 add_wchar(current, ret);
1230         inc_syscw(current);
1231         return ret;
1232 }
1233
1234 asmlinkage ssize_t
1235 compat_sys_writev(unsigned long fd, const struct compat_iovec __user *vec,
1236                   unsigned long vlen)
1237 {
1238         struct file *file;
1239         int fput_needed;
1240         ssize_t ret;
1241         loff_t pos;
1242
1243         file = fget_light(fd, &fput_needed);
1244         if (!file)
1245                 return -EBADF;
1246         pos = file->f_pos;
1247         ret = compat_writev(file, vec, vlen, &pos);
1248         file->f_pos = pos;
1249         fput_light(file, fput_needed);
1250         return ret;
1251 }
1252
1253 asmlinkage ssize_t
1254 compat_sys_pwritev(unsigned long fd, const struct compat_iovec __user *vec,
1255                    unsigned long vlen, u32 pos_low, u32 pos_high)
1256 {
1257         loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1258         struct file *file;
1259         int fput_needed;
1260         ssize_t ret;
1261
1262         if (pos < 0)
1263                 return -EINVAL;
1264         file = fget_light(fd, &fput_needed);
1265         if (!file)
1266                 return -EBADF;
1267         ret = -ESPIPE;
1268         if (file->f_mode & FMODE_PWRITE)
1269                 ret = compat_writev(file, vec, vlen, &pos);
1270         fput_light(file, fput_needed);
1271         return ret;
1272 }
1273
1274 asmlinkage long
1275 compat_sys_vmsplice(int fd, const struct compat_iovec __user *iov32,
1276                     unsigned int nr_segs, unsigned int flags)
1277 {
1278         unsigned i;
1279         struct iovec __user *iov;
1280         if (nr_segs > UIO_MAXIOV)
1281                 return -EINVAL;
1282         iov = compat_alloc_user_space(nr_segs * sizeof(struct iovec));
1283         for (i = 0; i < nr_segs; i++) {
1284                 struct compat_iovec v;
1285                 if (get_user(v.iov_base, &iov32[i].iov_base) ||
1286                     get_user(v.iov_len, &iov32[i].iov_len) ||
1287                     put_user(compat_ptr(v.iov_base), &iov[i].iov_base) ||
1288                     put_user(v.iov_len, &iov[i].iov_len))
1289                         return -EFAULT;
1290         }
1291         return sys_vmsplice(fd, iov, nr_segs, flags);
1292 }
1293
1294 /*
1295  * Exactly like fs/open.c:sys_open(), except that it doesn't set the
1296  * O_LARGEFILE flag.
1297  */
1298 asmlinkage long
1299 compat_sys_open(const char __user *filename, int flags, int mode)
1300 {
1301         return do_sys_open(AT_FDCWD, filename, flags, mode);
1302 }
1303
1304 /*
1305  * Exactly like fs/open.c:sys_openat(), except that it doesn't set the
1306  * O_LARGEFILE flag.
1307  */
1308 asmlinkage long
1309 compat_sys_openat(unsigned int dfd, const char __user *filename, int flags, int mode)
1310 {
1311         return do_sys_open(dfd, filename, flags, mode);
1312 }
1313
1314 #define __COMPAT_NFDBITS       (8 * sizeof(compat_ulong_t))
1315
1316 static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
1317                                       int timeval, int ret)
1318 {
1319         struct timespec ts;
1320
1321         if (!p)
1322                 return ret;
1323
1324         if (current->personality & STICKY_TIMEOUTS)
1325                 goto sticky;
1326
1327         /* No update for zero timeout */
1328         if (!end_time->tv_sec && !end_time->tv_nsec)
1329                 return ret;
1330
1331         ktime_get_ts(&ts);
1332         ts = timespec_sub(*end_time, ts);
1333         if (ts.tv_sec < 0)
1334                 ts.tv_sec = ts.tv_nsec = 0;
1335
1336         if (timeval) {
1337                 struct compat_timeval rtv;
1338
1339                 rtv.tv_sec = ts.tv_sec;
1340                 rtv.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
1341
1342                 if (!copy_to_user(p, &rtv, sizeof(rtv)))
1343                         return ret;
1344         } else {
1345                 struct compat_timespec rts;
1346
1347                 rts.tv_sec = ts.tv_sec;
1348                 rts.tv_nsec = ts.tv_nsec;
1349
1350                 if (!copy_to_user(p, &rts, sizeof(rts)))
1351                         return ret;
1352         }
1353         /*
1354          * If an application puts its timeval in read-only memory, we
1355          * don't want the Linux-specific update to the timeval to
1356          * cause a fault after the select has completed
1357          * successfully. However, because we're not updating the
1358          * timeval, we can't restart the system call.
1359          */
1360
1361 sticky:
1362         if (ret == -ERESTARTNOHAND)
1363                 ret = -EINTR;
1364         return ret;
1365 }
1366
1367 /*
1368  * Ooo, nasty.  We need here to frob 32-bit unsigned longs to
1369  * 64-bit unsigned longs.
1370  */
1371 static
1372 int compat_get_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1373                         unsigned long *fdset)
1374 {
1375         nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
1376         if (ufdset) {
1377                 unsigned long odd;
1378
1379                 if (!access_ok(VERIFY_WRITE, ufdset, nr*sizeof(compat_ulong_t)))
1380                         return -EFAULT;
1381
1382                 odd = nr & 1UL;
1383                 nr &= ~1UL;
1384                 while (nr) {
1385                         unsigned long h, l;
1386                         if (__get_user(l, ufdset) || __get_user(h, ufdset+1))
1387                                 return -EFAULT;
1388                         ufdset += 2;
1389                         *fdset++ = h << 32 | l;
1390                         nr -= 2;
1391                 }
1392                 if (odd && __get_user(*fdset, ufdset))
1393                         return -EFAULT;
1394         } else {
1395                 /* Tricky, must clear full unsigned long in the
1396                  * kernel fdset at the end, this makes sure that
1397                  * actually happens.
1398                  */
1399                 memset(fdset, 0, ((nr + 1) & ~1)*sizeof(compat_ulong_t));
1400         }
1401         return 0;
1402 }
1403
1404 static
1405 int compat_set_fd_set(unsigned long nr, compat_ulong_t __user *ufdset,
1406                       unsigned long *fdset)
1407 {
1408         unsigned long odd;
1409         nr = DIV_ROUND_UP(nr, __COMPAT_NFDBITS);
1410
1411         if (!ufdset)
1412                 return 0;
1413
1414         odd = nr & 1UL;
1415         nr &= ~1UL;
1416         while (nr) {
1417                 unsigned long h, l;
1418                 l = *fdset++;
1419                 h = l >> 32;
1420                 if (__put_user(l, ufdset) || __put_user(h, ufdset+1))
1421                         return -EFAULT;
1422                 ufdset += 2;
1423                 nr -= 2;
1424         }
1425         if (odd && __put_user(*fdset, ufdset))
1426                 return -EFAULT;
1427         return 0;
1428 }
1429
1430
1431 /*
1432  * This is a virtual copy of sys_select from fs/select.c and probably
1433  * should be compared to it from time to time
1434  */
1435
1436 /*
1437  * We can actually return ERESTARTSYS instead of EINTR, but I'd
1438  * like to be certain this leads to no problems. So I return
1439  * EINTR just for safety.
1440  *
1441  * Update: ERESTARTSYS breaks at least the xview clock binary, so
1442  * I'm trying ERESTARTNOHAND which restart only when you want to.
1443  */
1444 int compat_core_sys_select(int n, compat_ulong_t __user *inp,
1445         compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1446         struct timespec *end_time)
1447 {
1448         fd_set_bits fds;
1449         void *bits;
1450         int size, max_fds, ret = -EINVAL;
1451         struct fdtable *fdt;
1452         long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
1453
1454         if (n < 0)
1455                 goto out_nofds;
1456
1457         /* max_fds can increase, so grab it once to avoid race */
1458         rcu_read_lock();
1459         fdt = files_fdtable(current->files);
1460         max_fds = fdt->max_fds;
1461         rcu_read_unlock();
1462         if (n > max_fds)
1463                 n = max_fds;
1464
1465         /*
1466          * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
1467          * since we used fdset we need to allocate memory in units of
1468          * long-words.
1469          */
1470         size = FDS_BYTES(n);
1471         bits = stack_fds;
1472         if (size > sizeof(stack_fds) / 6) {
1473                 bits = kmalloc(6 * size, GFP_KERNEL);
1474                 ret = -ENOMEM;
1475                 if (!bits)
1476                         goto out_nofds;
1477         }
1478         fds.in      = (unsigned long *)  bits;
1479         fds.out     = (unsigned long *) (bits +   size);
1480         fds.ex      = (unsigned long *) (bits + 2*size);
1481         fds.res_in  = (unsigned long *) (bits + 3*size);
1482         fds.res_out = (unsigned long *) (bits + 4*size);
1483         fds.res_ex  = (unsigned long *) (bits + 5*size);
1484
1485         if ((ret = compat_get_fd_set(n, inp, fds.in)) ||
1486             (ret = compat_get_fd_set(n, outp, fds.out)) ||
1487             (ret = compat_get_fd_set(n, exp, fds.ex)))
1488                 goto out;
1489         zero_fd_set(n, fds.res_in);
1490         zero_fd_set(n, fds.res_out);
1491         zero_fd_set(n, fds.res_ex);
1492
1493         ret = do_select(n, &fds, end_time);
1494
1495         if (ret < 0)
1496                 goto out;
1497         if (!ret) {
1498                 ret = -ERESTARTNOHAND;
1499                 if (signal_pending(current))
1500                         goto out;
1501                 ret = 0;
1502         }
1503
1504         if (compat_set_fd_set(n, inp, fds.res_in) ||
1505             compat_set_fd_set(n, outp, fds.res_out) ||
1506             compat_set_fd_set(n, exp, fds.res_ex))
1507                 ret = -EFAULT;
1508 out:
1509         if (bits != stack_fds)
1510                 kfree(bits);
1511 out_nofds:
1512         return ret;
1513 }
1514
1515 asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
1516         compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1517         struct compat_timeval __user *tvp)
1518 {
1519         struct timespec end_time, *to = NULL;
1520         struct compat_timeval tv;
1521         int ret;
1522
1523         if (tvp) {
1524                 if (copy_from_user(&tv, tvp, sizeof(tv)))
1525                         return -EFAULT;
1526
1527                 to = &end_time;
1528                 if (poll_select_set_timeout(to,
1529                                 tv.tv_sec + (tv.tv_usec / USEC_PER_SEC),
1530                                 (tv.tv_usec % USEC_PER_SEC) * NSEC_PER_USEC))
1531                         return -EINVAL;
1532         }
1533
1534         ret = compat_core_sys_select(n, inp, outp, exp, to);
1535         ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
1536
1537         return ret;
1538 }
1539
1540 struct compat_sel_arg_struct {
1541         compat_ulong_t n;
1542         compat_uptr_t inp;
1543         compat_uptr_t outp;
1544         compat_uptr_t exp;
1545         compat_uptr_t tvp;
1546 };
1547
1548 asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg)
1549 {
1550         struct compat_sel_arg_struct a;
1551
1552         if (copy_from_user(&a, arg, sizeof(a)))
1553                 return -EFAULT;
1554         return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
1555                                  compat_ptr(a.exp), compat_ptr(a.tvp));
1556 }
1557
1558 #ifdef HAVE_SET_RESTORE_SIGMASK
1559 static long do_compat_pselect(int n, compat_ulong_t __user *inp,
1560         compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1561         struct compat_timespec __user *tsp, compat_sigset_t __user *sigmask,
1562         compat_size_t sigsetsize)
1563 {
1564         compat_sigset_t ss32;
1565         sigset_t ksigmask, sigsaved;
1566         struct compat_timespec ts;
1567         struct timespec end_time, *to = NULL;
1568         int ret;
1569
1570         if (tsp) {
1571                 if (copy_from_user(&ts, tsp, sizeof(ts)))
1572                         return -EFAULT;
1573
1574                 to = &end_time;
1575                 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
1576                         return -EINVAL;
1577         }
1578
1579         if (sigmask) {
1580                 if (sigsetsize != sizeof(compat_sigset_t))
1581                         return -EINVAL;
1582                 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1583                         return -EFAULT;
1584                 sigset_from_compat(&ksigmask, &ss32);
1585
1586                 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1587                 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1588         }
1589
1590         ret = compat_core_sys_select(n, inp, outp, exp, to);
1591         ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
1592
1593         if (ret == -ERESTARTNOHAND) {
1594                 /*
1595                  * Don't restore the signal mask yet. Let do_signal() deliver
1596                  * the signal on the way back to userspace, before the signal
1597                  * mask is restored.
1598                  */
1599                 if (sigmask) {
1600                         memcpy(&current->saved_sigmask, &sigsaved,
1601                                         sizeof(sigsaved));
1602                         set_restore_sigmask();
1603                 }
1604         } else if (sigmask)
1605                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1606
1607         return ret;
1608 }
1609
1610 asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
1611         compat_ulong_t __user *outp, compat_ulong_t __user *exp,
1612         struct compat_timespec __user *tsp, void __user *sig)
1613 {
1614         compat_size_t sigsetsize = 0;
1615         compat_uptr_t up = 0;
1616
1617         if (sig) {
1618                 if (!access_ok(VERIFY_READ, sig,
1619                                 sizeof(compat_uptr_t)+sizeof(compat_size_t)) ||
1620                         __get_user(up, (compat_uptr_t __user *)sig) ||
1621                         __get_user(sigsetsize,
1622                                 (compat_size_t __user *)(sig+sizeof(up))))
1623                         return -EFAULT;
1624         }
1625         return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up),
1626                                  sigsetsize);
1627 }
1628
1629 asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
1630         unsigned int nfds, struct compat_timespec __user *tsp,
1631         const compat_sigset_t __user *sigmask, compat_size_t sigsetsize)
1632 {
1633         compat_sigset_t ss32;
1634         sigset_t ksigmask, sigsaved;
1635         struct compat_timespec ts;
1636         struct timespec end_time, *to = NULL;
1637         int ret;
1638
1639         if (tsp) {
1640                 if (copy_from_user(&ts, tsp, sizeof(ts)))
1641                         return -EFAULT;
1642
1643                 to = &end_time;
1644                 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
1645                         return -EINVAL;
1646         }
1647
1648         if (sigmask) {
1649                 if (sigsetsize != sizeof(compat_sigset_t))
1650                         return -EINVAL;
1651                 if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1652                         return -EFAULT;
1653                 sigset_from_compat(&ksigmask, &ss32);
1654
1655                 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
1656                 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1657         }
1658
1659         ret = do_sys_poll(ufds, nfds, to);
1660
1661         /* We can restart this syscall, usually */
1662         if (ret == -EINTR) {
1663                 /*
1664                  * Don't restore the signal mask yet. Let do_signal() deliver
1665                  * the signal on the way back to userspace, before the signal
1666                  * mask is restored.
1667                  */
1668                 if (sigmask) {
1669                         memcpy(&current->saved_sigmask, &sigsaved,
1670                                 sizeof(sigsaved));
1671                         set_restore_sigmask();
1672                 }
1673                 ret = -ERESTARTNOHAND;
1674         } else if (sigmask)
1675                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1676
1677         ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
1678
1679         return ret;
1680 }
1681 #endif /* HAVE_SET_RESTORE_SIGMASK */
1682
1683 #if (defined(CONFIG_NFSD) || defined(CONFIG_NFSD_MODULE)) && !defined(CONFIG_NFSD_DEPRECATED)
1684 /* Stuff for NFS server syscalls... */
1685 struct compat_nfsctl_svc {
1686         u16                     svc32_port;
1687         s32                     svc32_nthreads;
1688 };
1689
1690 struct compat_nfsctl_client {
1691         s8                      cl32_ident[NFSCLNT_IDMAX+1];
1692         s32                     cl32_naddr;
1693         struct in_addr          cl32_addrlist[NFSCLNT_ADDRMAX];
1694         s32                     cl32_fhkeytype;
1695         s32                     cl32_fhkeylen;
1696         u8                      cl32_fhkey[NFSCLNT_KEYMAX];
1697 };
1698
1699 struct compat_nfsctl_export {
1700         char            ex32_client[NFSCLNT_IDMAX+1];
1701         char            ex32_path[NFS_MAXPATHLEN+1];
1702         compat_dev_t    ex32_dev;
1703         compat_ino_t    ex32_ino;
1704         compat_int_t    ex32_flags;
1705         __compat_uid_t  ex32_anon_uid;
1706         __compat_gid_t  ex32_anon_gid;
1707 };
1708
1709 struct compat_nfsctl_fdparm {
1710         struct sockaddr         gd32_addr;
1711         s8                      gd32_path[NFS_MAXPATHLEN+1];
1712         compat_int_t            gd32_version;
1713 };
1714
1715 struct compat_nfsctl_fsparm {
1716         struct sockaddr         gd32_addr;
1717         s8                      gd32_path[NFS_MAXPATHLEN+1];
1718         compat_int_t            gd32_maxlen;
1719 };
1720
1721 struct compat_nfsctl_arg {
1722         compat_int_t            ca32_version;   /* safeguard */
1723         union {
1724                 struct compat_nfsctl_svc        u32_svc;
1725                 struct compat_nfsctl_client     u32_client;
1726                 struct compat_nfsctl_export     u32_export;
1727                 struct compat_nfsctl_fdparm     u32_getfd;
1728                 struct compat_nfsctl_fsparm     u32_getfs;
1729         } u;
1730 #define ca32_svc        u.u32_svc
1731 #define ca32_client     u.u32_client
1732 #define ca32_export     u.u32_export
1733 #define ca32_getfd      u.u32_getfd
1734 #define ca32_getfs      u.u32_getfs
1735 };
1736
1737 union compat_nfsctl_res {
1738         __u8                    cr32_getfh[NFS_FHSIZE];
1739         struct knfsd_fh         cr32_getfs;
1740 };
1741
1742 static int compat_nfs_svc_trans(struct nfsctl_arg *karg,
1743                                 struct compat_nfsctl_arg __user *arg)
1744 {
1745         if (!access_ok(VERIFY_READ, &arg->ca32_svc, sizeof(arg->ca32_svc)) ||
1746                 get_user(karg->ca_version, &arg->ca32_version) ||
1747                 __get_user(karg->ca_svc.svc_port, &arg->ca32_svc.svc32_port) ||
1748                 __get_user(karg->ca_svc.svc_nthreads,
1749                                 &arg->ca32_svc.svc32_nthreads))
1750                 return -EFAULT;
1751         return 0;
1752 }
1753
1754 static int compat_nfs_clnt_trans(struct nfsctl_arg *karg,
1755                                 struct compat_nfsctl_arg __user *arg)
1756 {
1757         if (!access_ok(VERIFY_READ, &arg->ca32_client,
1758                         sizeof(arg->ca32_client)) ||
1759                 get_user(karg->ca_version, &arg->ca32_version) ||
1760                 __copy_from_user(&karg->ca_client.cl_ident[0],
1761                                 &arg->ca32_client.cl32_ident[0],
1762                                 NFSCLNT_IDMAX) ||
1763                 __get_user(karg->ca_client.cl_naddr,
1764                                 &arg->ca32_client.cl32_naddr) ||
1765                 __copy_from_user(&karg->ca_client.cl_addrlist[0],
1766                                 &arg->ca32_client.cl32_addrlist[0],
1767                                 (sizeof(struct in_addr) * NFSCLNT_ADDRMAX)) ||
1768                 __get_user(karg->ca_client.cl_fhkeytype,
1769                                 &arg->ca32_client.cl32_fhkeytype) ||
1770                 __get_user(karg->ca_client.cl_fhkeylen,
1771                                 &arg->ca32_client.cl32_fhkeylen) ||
1772                 __copy_from_user(&karg->ca_client.cl_fhkey[0],
1773                                 &arg->ca32_client.cl32_fhkey[0],
1774                                 NFSCLNT_KEYMAX))
1775                 return -EFAULT;
1776
1777         return 0;
1778 }
1779
1780 static int compat_nfs_exp_trans(struct nfsctl_arg *karg,
1781                                 struct compat_nfsctl_arg __user *arg)
1782 {
1783         if (!access_ok(VERIFY_READ, &arg->ca32_export,
1784                                 sizeof(arg->ca32_export)) ||
1785                 get_user(karg->ca_version, &arg->ca32_version) ||
1786                 __copy_from_user(&karg->ca_export.ex_client[0],
1787                                 &arg->ca32_export.ex32_client[0],
1788                                 NFSCLNT_IDMAX) ||
1789                 __copy_from_user(&karg->ca_export.ex_path[0],
1790                                 &arg->ca32_export.ex32_path[0],
1791                                 NFS_MAXPATHLEN) ||
1792                 __get_user(karg->ca_export.ex_dev,
1793                                 &arg->ca32_export.ex32_dev) ||
1794                 __get_user(karg->ca_export.ex_ino,
1795                                 &arg->ca32_export.ex32_ino) ||
1796                 __get_user(karg->ca_export.ex_flags,
1797                                 &arg->ca32_export.ex32_flags) ||
1798                 __get_user(karg->ca_export.ex_anon_uid,
1799                                 &arg->ca32_export.ex32_anon_uid) ||
1800                 __get_user(karg->ca_export.ex_anon_gid,
1801                                 &arg->ca32_export.ex32_anon_gid))
1802                 return -EFAULT;
1803         SET_UID(karg->ca_export.ex_anon_uid, karg->ca_export.ex_anon_uid);
1804         SET_GID(karg->ca_export.ex_anon_gid, karg->ca_export.ex_anon_gid);
1805
1806         return 0;
1807 }
1808
1809 static int compat_nfs_getfd_trans(struct nfsctl_arg *karg,
1810                                 struct compat_nfsctl_arg __user *arg)
1811 {
1812         if (!access_ok(VERIFY_READ, &arg->ca32_getfd,
1813                         sizeof(arg->ca32_getfd)) ||
1814                 get_user(karg->ca_version, &arg->ca32_version) ||
1815                 __copy_from_user(&karg->ca_getfd.gd_addr,
1816                                 &arg->ca32_getfd.gd32_addr,
1817                                 (sizeof(struct sockaddr))) ||
1818                 __copy_from_user(&karg->ca_getfd.gd_path,
1819                                 &arg->ca32_getfd.gd32_path,
1820                                 (NFS_MAXPATHLEN+1)) ||
1821                 __get_user(karg->ca_getfd.gd_version,
1822                                 &arg->ca32_getfd.gd32_version))
1823                 return -EFAULT;
1824
1825         return 0;
1826 }
1827
1828 static int compat_nfs_getfs_trans(struct nfsctl_arg *karg,
1829                                 struct compat_nfsctl_arg __user *arg)
1830 {
1831         if (!access_ok(VERIFY_READ,&arg->ca32_getfs,sizeof(arg->ca32_getfs)) ||
1832                 get_user(karg->ca_version, &arg->ca32_version) ||
1833                 __copy_from_user(&karg->ca_getfs.gd_addr,
1834                                 &arg->ca32_getfs.gd32_addr,
1835                                 (sizeof(struct sockaddr))) ||
1836                 __copy_from_user(&karg->ca_getfs.gd_path,
1837                                 &arg->ca32_getfs.gd32_path,
1838                                 (NFS_MAXPATHLEN+1)) ||
1839                 __get_user(karg->ca_getfs.gd_maxlen,
1840                                 &arg->ca32_getfs.gd32_maxlen))
1841                 return -EFAULT;
1842
1843         return 0;
1844 }
1845
1846 /* This really doesn't need translations, we are only passing
1847  * back a union which contains opaque nfs file handle data.
1848  */
1849 static int compat_nfs_getfh_res_trans(union nfsctl_res *kres,
1850                                 union compat_nfsctl_res __user *res)
1851 {
1852         int err;
1853
1854         err = copy_to_user(res, kres, sizeof(*res));
1855
1856         return (err) ? -EFAULT : 0;
1857 }
1858
1859 asmlinkage long compat_sys_nfsservctl(int cmd,
1860                                 struct compat_nfsctl_arg __user *arg,
1861                                 union compat_nfsctl_res __user *res)
1862 {
1863         struct nfsctl_arg *karg;
1864         union nfsctl_res *kres;
1865         mm_segment_t oldfs;
1866         int err;
1867
1868         karg = kmalloc(sizeof(*karg), GFP_USER);
1869         kres = kmalloc(sizeof(*kres), GFP_USER);
1870         if(!karg || !kres) {
1871                 err = -ENOMEM;
1872                 goto done;
1873         }
1874
1875         switch(cmd) {
1876         case NFSCTL_SVC:
1877                 err = compat_nfs_svc_trans(karg, arg);
1878                 break;
1879
1880         case NFSCTL_ADDCLIENT:
1881                 err = compat_nfs_clnt_trans(karg, arg);
1882                 break;
1883
1884         case NFSCTL_DELCLIENT:
1885                 err = compat_nfs_clnt_trans(karg, arg);
1886                 break;
1887
1888         case NFSCTL_EXPORT:
1889         case NFSCTL_UNEXPORT:
1890                 err = compat_nfs_exp_trans(karg, arg);
1891                 break;
1892
1893         case NFSCTL_GETFD:
1894                 err = compat_nfs_getfd_trans(karg, arg);
1895                 break;
1896
1897         case NFSCTL_GETFS:
1898                 err = compat_nfs_getfs_trans(karg, arg);
1899                 break;
1900
1901         default:
1902                 err = -EINVAL;
1903                 break;
1904         }
1905
1906         if (err)
1907                 goto done;
1908
1909         oldfs = get_fs();
1910         set_fs(KERNEL_DS);
1911         /* The __user pointer casts are valid because of the set_fs() */
1912         err = sys_nfsservctl(cmd, (void __user *) karg, (void __user *) kres);
1913         set_fs(oldfs);
1914
1915         if (err)
1916                 goto done;
1917
1918         if((cmd == NFSCTL_GETFD) ||
1919            (cmd == NFSCTL_GETFS))
1920                 err = compat_nfs_getfh_res_trans(kres, res);
1921
1922 done:
1923         kfree(karg);
1924         kfree(kres);
1925         return err;
1926 }
1927 #else /* !NFSD */
1928 long asmlinkage compat_sys_nfsservctl(int cmd, void *notused, void *notused2)
1929 {
1930         return sys_ni_syscall();
1931 }
1932 #endif
1933
1934 #ifdef CONFIG_EPOLL
1935
1936 #ifdef HAVE_SET_RESTORE_SIGMASK
1937 asmlinkage long compat_sys_epoll_pwait(int epfd,
1938                         struct compat_epoll_event __user *events,
1939                         int maxevents, int timeout,
1940                         const compat_sigset_t __user *sigmask,
1941                         compat_size_t sigsetsize)
1942 {
1943         long err;
1944         compat_sigset_t csigmask;
1945         sigset_t ksigmask, sigsaved;
1946
1947         /*
1948          * If the caller wants a certain signal mask to be set during the wait,
1949          * we apply it here.
1950          */
1951         if (sigmask) {
1952                 if (sigsetsize != sizeof(compat_sigset_t))
1953                         return -EINVAL;
1954                 if (copy_from_user(&csigmask, sigmask, sizeof(csigmask)))
1955                         return -EFAULT;
1956                 sigset_from_compat(&ksigmask, &csigmask);
1957                 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
1958                 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
1959         }
1960
1961         err = sys_epoll_wait(epfd, events, maxevents, timeout);
1962
1963         /*
1964          * If we changed the signal mask, we need to restore the original one.
1965          * In case we've got a signal while waiting, we do not restore the
1966          * signal mask yet, and we allow do_signal() to deliver the signal on
1967          * the way back to userspace, before the signal mask is restored.
1968          */
1969         if (sigmask) {
1970                 if (err == -EINTR) {
1971                         memcpy(&current->saved_sigmask, &sigsaved,
1972                                sizeof(sigsaved));
1973                         set_restore_sigmask();
1974                 } else
1975                         sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1976         }
1977
1978         return err;
1979 }
1980 #endif /* HAVE_SET_RESTORE_SIGMASK */
1981
1982 #endif /* CONFIG_EPOLL */
1983
1984 #ifdef CONFIG_SIGNALFD
1985
1986 asmlinkage long compat_sys_signalfd4(int ufd,
1987                                      const compat_sigset_t __user *sigmask,
1988                                      compat_size_t sigsetsize, int flags)
1989 {
1990         compat_sigset_t ss32;
1991         sigset_t tmp;
1992         sigset_t __user *ksigmask;
1993
1994         if (sigsetsize != sizeof(compat_sigset_t))
1995                 return -EINVAL;
1996         if (copy_from_user(&ss32, sigmask, sizeof(ss32)))
1997                 return -EFAULT;
1998         sigset_from_compat(&tmp, &ss32);
1999         ksigmask = compat_alloc_user_space(sizeof(sigset_t));
2000         if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
2001                 return -EFAULT;
2002
2003         return sys_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags);
2004 }
2005
2006 asmlinkage long compat_sys_signalfd(int ufd,
2007                                     const compat_sigset_t __user *sigmask,
2008                                     compat_size_t sigsetsize)
2009 {
2010         return compat_sys_signalfd4(ufd, sigmask, sigsetsize, 0);
2011 }
2012 #endif /* CONFIG_SIGNALFD */
2013
2014 #ifdef CONFIG_TIMERFD
2015
2016 asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
2017                                    const struct compat_itimerspec __user *utmr,
2018                                    struct compat_itimerspec __user *otmr)
2019 {
2020         int error;
2021         struct itimerspec t;
2022         struct itimerspec __user *ut;
2023
2024         if (get_compat_itimerspec(&t, utmr))
2025                 return -EFAULT;
2026         ut = compat_alloc_user_space(2 * sizeof(struct itimerspec));
2027         if (copy_to_user(&ut[0], &t, sizeof(t)))
2028                 return -EFAULT;
2029         error = sys_timerfd_settime(ufd, flags, &ut[0], &ut[1]);
2030         if (!error && otmr)
2031                 error = (copy_from_user(&t, &ut[1], sizeof(struct itimerspec)) ||
2032                          put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
2033
2034         return error;
2035 }
2036
2037 asmlinkage long compat_sys_timerfd_gettime(int ufd,
2038                                    struct compat_itimerspec __user *otmr)
2039 {
2040         int error;
2041         struct itimerspec t;
2042         struct itimerspec __user *ut;
2043
2044         ut = compat_alloc_user_space(sizeof(struct itimerspec));
2045         error = sys_timerfd_gettime(ufd, ut);
2046         if (!error)
2047                 error = (copy_from_user(&t, ut, sizeof(struct itimerspec)) ||
2048                          put_compat_itimerspec(otmr, &t)) ? -EFAULT: 0;
2049
2050         return error;
2051 }
2052
2053 #endif /* CONFIG_TIMERFD */
2054
2055 #ifdef CONFIG_FHANDLE
2056 /*
2057  * Exactly like fs/open.c:sys_open_by_handle_at(), except that it
2058  * doesn't set the O_LARGEFILE flag.
2059  */
2060 asmlinkage long
2061 compat_sys_open_by_handle_at(int mountdirfd,
2062                              struct file_handle __user *handle, int flags)
2063 {
2064         return do_handle_open(mountdirfd, handle, flags);
2065 }
2066 #endif