c1a61e98899a7ec741db282798bfdaddbdc4763d
[safe/jmp/linux-2.6] / arch / sparc64 / kernel / sys_sparc32.c
1 /* sys_sparc32.c: Conversion between 32bit and 64bit native syscalls.
2  *
3  * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
4  * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net)
5  *
6  * These routines maintain argument size conversion between 32bit and 64bit
7  * environment.
8  */
9
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <linux/capability.h>
13 #include <linux/fs.h> 
14 #include <linux/mm.h> 
15 #include <linux/file.h> 
16 #include <linux/signal.h>
17 #include <linux/resource.h>
18 #include <linux/times.h>
19 #include <linux/utsname.h>
20 #include <linux/smp.h>
21 #include <linux/smp_lock.h>
22 #include <linux/sem.h>
23 #include <linux/msg.h>
24 #include <linux/shm.h>
25 #include <linux/slab.h>
26 #include <linux/uio.h>
27 #include <linux/nfs_fs.h>
28 #include <linux/quota.h>
29 #include <linux/module.h>
30 #include <linux/sunrpc/svc.h>
31 #include <linux/nfsd/nfsd.h>
32 #include <linux/nfsd/cache.h>
33 #include <linux/nfsd/xdr.h>
34 #include <linux/nfsd/syscall.h>
35 #include <linux/poll.h>
36 #include <linux/personality.h>
37 #include <linux/stat.h>
38 #include <linux/filter.h>
39 #include <linux/highmem.h>
40 #include <linux/highuid.h>
41 #include <linux/mman.h>
42 #include <linux/ipv6.h>
43 #include <linux/in.h>
44 #include <linux/icmpv6.h>
45 #include <linux/syscalls.h>
46 #include <linux/sysctl.h>
47 #include <linux/binfmts.h>
48 #include <linux/dnotify.h>
49 #include <linux/security.h>
50 #include <linux/compat.h>
51 #include <linux/vfs.h>
52 #include <linux/netfilter_ipv4/ip_tables.h>
53 #include <linux/ptrace.h>
54
55 #include <asm/types.h>
56 #include <asm/uaccess.h>
57 #include <asm/fpumacro.h>
58 #include <asm/mmu_context.h>
59 #include <asm/compat_signal.h>
60
61 asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
62 {
63         return sys_chown(filename, low2highuid(user), low2highgid(group));
64 }
65
66 asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
67 {
68         return sys_lchown(filename, low2highuid(user), low2highgid(group));
69 }
70
71 asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
72 {
73         return sys_fchown(fd, low2highuid(user), low2highgid(group));
74 }
75
76 asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
77 {
78         return sys_setregid(low2highgid(rgid), low2highgid(egid));
79 }
80
81 asmlinkage long sys32_setgid16(u16 gid)
82 {
83         return sys_setgid((gid_t)gid);
84 }
85
86 asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
87 {
88         return sys_setreuid(low2highuid(ruid), low2highuid(euid));
89 }
90
91 asmlinkage long sys32_setuid16(u16 uid)
92 {
93         return sys_setuid((uid_t)uid);
94 }
95
96 asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
97 {
98         return sys_setresuid(low2highuid(ruid), low2highuid(euid),
99                 low2highuid(suid));
100 }
101
102 asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
103 {
104         int retval;
105
106         if (!(retval = put_user(high2lowuid(current->uid), ruid)) &&
107             !(retval = put_user(high2lowuid(current->euid), euid)))
108                 retval = put_user(high2lowuid(current->suid), suid);
109
110         return retval;
111 }
112
113 asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
114 {
115         return sys_setresgid(low2highgid(rgid), low2highgid(egid),
116                 low2highgid(sgid));
117 }
118
119 asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
120 {
121         int retval;
122
123         if (!(retval = put_user(high2lowgid(current->gid), rgid)) &&
124             !(retval = put_user(high2lowgid(current->egid), egid)))
125                 retval = put_user(high2lowgid(current->sgid), sgid);
126
127         return retval;
128 }
129
130 asmlinkage long sys32_setfsuid16(u16 uid)
131 {
132         return sys_setfsuid((uid_t)uid);
133 }
134
135 asmlinkage long sys32_setfsgid16(u16 gid)
136 {
137         return sys_setfsgid((gid_t)gid);
138 }
139
140 static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
141 {
142         int i;
143         u16 group;
144
145         for (i = 0; i < group_info->ngroups; i++) {
146                 group = (u16)GROUP_AT(group_info, i);
147                 if (put_user(group, grouplist+i))
148                         return -EFAULT;
149         }
150
151         return 0;
152 }
153
154 static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
155 {
156         int i;
157         u16 group;
158
159         for (i = 0; i < group_info->ngroups; i++) {
160                 if (get_user(group, grouplist+i))
161                         return  -EFAULT;
162                 GROUP_AT(group_info, i) = (gid_t)group;
163         }
164
165         return 0;
166 }
167
168 asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
169 {
170         int i;
171
172         if (gidsetsize < 0)
173                 return -EINVAL;
174
175         get_group_info(current->group_info);
176         i = current->group_info->ngroups;
177         if (gidsetsize) {
178                 if (i > gidsetsize) {
179                         i = -EINVAL;
180                         goto out;
181                 }
182                 if (groups16_to_user(grouplist, current->group_info)) {
183                         i = -EFAULT;
184                         goto out;
185                 }
186         }
187 out:
188         put_group_info(current->group_info);
189         return i;
190 }
191
192 asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
193 {
194         struct group_info *group_info;
195         int retval;
196
197         if (!capable(CAP_SETGID))
198                 return -EPERM;
199         if ((unsigned)gidsetsize > NGROUPS_MAX)
200                 return -EINVAL;
201
202         group_info = groups_alloc(gidsetsize);
203         if (!group_info)
204                 return -ENOMEM;
205         retval = groups16_from_user(group_info, grouplist);
206         if (retval) {
207                 put_group_info(group_info);
208                 return retval;
209         }
210
211         retval = set_current_groups(group_info);
212         put_group_info(group_info);
213
214         return retval;
215 }
216
217 asmlinkage long sys32_getuid16(void)
218 {
219         return high2lowuid(current->uid);
220 }
221
222 asmlinkage long sys32_geteuid16(void)
223 {
224         return high2lowuid(current->euid);
225 }
226
227 asmlinkage long sys32_getgid16(void)
228 {
229         return high2lowgid(current->gid);
230 }
231
232 asmlinkage long sys32_getegid16(void)
233 {
234         return high2lowgid(current->egid);
235 }
236
237 /* 32-bit timeval and related flotsam.  */
238
239 static long get_tv32(struct timeval *o, struct compat_timeval __user *i)
240 {
241         return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
242                 (__get_user(o->tv_sec, &i->tv_sec) |
243                  __get_user(o->tv_usec, &i->tv_usec)));
244 }
245
246 static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
247 {
248         return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
249                 (__put_user(i->tv_sec, &o->tv_sec) |
250                  __put_user(i->tv_usec, &o->tv_usec)));
251 }
252
253 #ifdef CONFIG_SYSVIPC                                                        
254 asmlinkage long compat_sys_ipc(u32 call, u32 first, u32 second, u32 third, compat_uptr_t ptr, u32 fifth)
255 {
256         int version;
257
258         version = call >> 16; /* hack for backward compatibility */
259         call &= 0xffff;
260
261         switch (call) {
262         case SEMTIMEDOP:
263                 if (fifth)
264                         /* sign extend semid */
265                         return compat_sys_semtimedop((int)first,
266                                                      compat_ptr(ptr), second,
267                                                      compat_ptr(fifth));
268                 /* else fall through for normal semop() */
269         case SEMOP:
270                 /* struct sembuf is the same on 32 and 64bit :)) */
271                 /* sign extend semid */
272                 return sys_semtimedop((int)first, compat_ptr(ptr), second,
273                                       NULL);
274         case SEMGET:
275                 /* sign extend key, nsems */
276                 return sys_semget((int)first, (int)second, third);
277         case SEMCTL:
278                 /* sign extend semid, semnum */
279                 return compat_sys_semctl((int)first, (int)second, third,
280                                          compat_ptr(ptr));
281
282         case MSGSND:
283                 /* sign extend msqid */
284                 return compat_sys_msgsnd((int)first, (int)second, third,
285                                          compat_ptr(ptr));
286         case MSGRCV:
287                 /* sign extend msqid, msgtyp */
288                 return compat_sys_msgrcv((int)first, second, (int)fifth,
289                                          third, version, compat_ptr(ptr));
290         case MSGGET:
291                 /* sign extend key */
292                 return sys_msgget((int)first, second);
293         case MSGCTL:
294                 /* sign extend msqid */
295                 return compat_sys_msgctl((int)first, second, compat_ptr(ptr));
296
297         case SHMAT:
298                 /* sign extend shmid */
299                 return compat_sys_shmat((int)first, second, third, version,
300                                         compat_ptr(ptr));
301         case SHMDT:
302                 return sys_shmdt(compat_ptr(ptr));
303         case SHMGET:
304                 /* sign extend key_t */
305                 return sys_shmget((int)first, second, third);
306         case SHMCTL:
307                 /* sign extend shmid */
308                 return compat_sys_shmctl((int)first, second, compat_ptr(ptr));
309
310         default:
311                 return -ENOSYS;
312         };
313
314         return -ENOSYS;
315 }
316 #endif
317
318 asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
319 {
320         if ((int)high < 0)
321                 return -EINVAL;
322         else
323                 return sys_truncate(path, (high << 32) | low);
324 }
325
326 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
327 {
328         if ((int)high < 0)
329                 return -EINVAL;
330         else
331                 return sys_ftruncate(fd, (high << 32) | low);
332 }
333
334 int cp_compat_stat(struct kstat *stat, struct compat_stat __user *statbuf)
335 {
336         compat_ino_t ino;
337         int err;
338
339         if (stat->size > MAX_NON_LFS || !old_valid_dev(stat->dev) ||
340             !old_valid_dev(stat->rdev))
341                 return -EOVERFLOW;
342
343         ino = stat->ino;
344         if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
345                 return -EOVERFLOW;
346
347         err  = put_user(old_encode_dev(stat->dev), &statbuf->st_dev);
348         err |= put_user(stat->ino, &statbuf->st_ino);
349         err |= put_user(stat->mode, &statbuf->st_mode);
350         err |= put_user(stat->nlink, &statbuf->st_nlink);
351         err |= put_user(high2lowuid(stat->uid), &statbuf->st_uid);
352         err |= put_user(high2lowgid(stat->gid), &statbuf->st_gid);
353         err |= put_user(old_encode_dev(stat->rdev), &statbuf->st_rdev);
354         err |= put_user(stat->size, &statbuf->st_size);
355         err |= put_user(stat->atime.tv_sec, &statbuf->st_atime);
356         err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
357         err |= put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
358         err |= put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
359         err |= put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
360         err |= put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
361         err |= put_user(stat->blksize, &statbuf->st_blksize);
362         err |= put_user(stat->blocks, &statbuf->st_blocks);
363         err |= put_user(0, &statbuf->__unused4[0]);
364         err |= put_user(0, &statbuf->__unused4[1]);
365
366         return err;
367 }
368
369 int cp_compat_stat64(struct kstat *stat, struct compat_stat64 __user *statbuf)
370 {
371         int err;
372
373         err  = put_user(huge_encode_dev(stat->dev), &statbuf->st_dev);
374         err |= put_user(stat->ino, &statbuf->st_ino);
375         err |= put_user(stat->mode, &statbuf->st_mode);
376         err |= put_user(stat->nlink, &statbuf->st_nlink);
377         err |= put_user(stat->uid, &statbuf->st_uid);
378         err |= put_user(stat->gid, &statbuf->st_gid);
379         err |= put_user(huge_encode_dev(stat->rdev), &statbuf->st_rdev);
380         err |= put_user(0, (unsigned long __user *) &statbuf->__pad3[0]);
381         err |= put_user(stat->size, &statbuf->st_size);
382         err |= put_user(stat->blksize, &statbuf->st_blksize);
383         err |= put_user(0, (unsigned int __user *) &statbuf->__pad4[0]);
384         err |= put_user(0, (unsigned int __user *) &statbuf->__pad4[4]);
385         err |= put_user(stat->blocks, &statbuf->st_blocks);
386         err |= put_user(stat->atime.tv_sec, &statbuf->st_atime);
387         err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
388         err |= put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
389         err |= put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
390         err |= put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
391         err |= put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
392         err |= put_user(0, &statbuf->__unused4);
393         err |= put_user(0, &statbuf->__unused5);
394
395         return err;
396 }
397
398 asmlinkage long compat_sys_stat64(char __user * filename,
399                 struct compat_stat64 __user *statbuf)
400 {
401         struct kstat stat;
402         int error = vfs_stat(filename, &stat);
403
404         if (!error)
405                 error = cp_compat_stat64(&stat, statbuf);
406         return error;
407 }
408
409 asmlinkage long compat_sys_lstat64(char __user * filename,
410                 struct compat_stat64 __user *statbuf)
411 {
412         struct kstat stat;
413         int error = vfs_lstat(filename, &stat);
414
415         if (!error)
416                 error = cp_compat_stat64(&stat, statbuf);
417         return error;
418 }
419
420 asmlinkage long compat_sys_fstat64(unsigned int fd,
421                 struct compat_stat64 __user * statbuf)
422 {
423         struct kstat stat;
424         int error = vfs_fstat(fd, &stat);
425
426         if (!error)
427                 error = cp_compat_stat64(&stat, statbuf);
428         return error;
429 }
430
431 asmlinkage long compat_sys_fstatat64(unsigned int dfd, char __user *filename,
432                 struct compat_stat64 __user * statbuf, int flag)
433 {
434         struct kstat stat;
435         int error = -EINVAL;
436
437         if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
438                 goto out;
439
440         if (flag & AT_SYMLINK_NOFOLLOW)
441                 error = vfs_lstat_fd(dfd, filename, &stat);
442         else
443                 error = vfs_stat_fd(dfd, filename, &stat);
444
445         if (!error)
446                 error = cp_compat_stat64(&stat, statbuf);
447
448 out:
449         return error;
450 }
451
452 asmlinkage long compat_sys_sysfs(int option, u32 arg1, u32 arg2)
453 {
454         return sys_sysfs(option, arg1, arg2);
455 }
456
457 asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid, struct compat_timespec __user *interval)
458 {
459         struct timespec t;
460         int ret;
461         mm_segment_t old_fs = get_fs ();
462         
463         set_fs (KERNEL_DS);
464         ret = sys_sched_rr_get_interval(pid, (struct timespec __user *) &t);
465         set_fs (old_fs);
466         if (put_compat_timespec(&t, interval))
467                 return -EFAULT;
468         return ret;
469 }
470
471 asmlinkage long compat_sys_rt_sigprocmask(int how,
472                                           compat_sigset_t __user *set,
473                                           compat_sigset_t __user *oset,
474                                           compat_size_t sigsetsize)
475 {
476         sigset_t s;
477         compat_sigset_t s32;
478         int ret;
479         mm_segment_t old_fs = get_fs();
480         
481         if (set) {
482                 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
483                         return -EFAULT;
484                 switch (_NSIG_WORDS) {
485                 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
486                 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
487                 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
488                 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
489                 }
490         }
491         set_fs (KERNEL_DS);
492         ret = sys_rt_sigprocmask(how,
493                                  set ? (sigset_t __user *) &s : NULL,
494                                  oset ? (sigset_t __user *) &s : NULL,
495                                  sigsetsize);
496         set_fs (old_fs);
497         if (ret) return ret;
498         if (oset) {
499                 switch (_NSIG_WORDS) {
500                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
501                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
502                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
503                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
504                 }
505                 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
506                         return -EFAULT;
507         }
508         return 0;
509 }
510
511 asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
512                                     compat_size_t sigsetsize)
513 {
514         sigset_t s;
515         compat_sigset_t s32;
516         int ret;
517         mm_segment_t old_fs = get_fs();
518                 
519         set_fs (KERNEL_DS);
520         ret = sys_rt_sigpending((sigset_t __user *) &s, sigsetsize);
521         set_fs (old_fs);
522         if (!ret) {
523                 switch (_NSIG_WORDS) {
524                 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
525                 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
526                 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
527                 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
528                 }
529                 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
530                         return -EFAULT;
531         }
532         return ret;
533 }
534
535 asmlinkage long compat_sys_rt_sigqueueinfo(int pid, int sig,
536                                            struct compat_siginfo __user *uinfo)
537 {
538         siginfo_t info;
539         int ret;
540         mm_segment_t old_fs = get_fs();
541         
542         if (copy_siginfo_from_user32(&info, uinfo))
543                 return -EFAULT;
544
545         set_fs (KERNEL_DS);
546         ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *) &info);
547         set_fs (old_fs);
548         return ret;
549 }
550
551 asmlinkage long compat_sys_sigaction(int sig, struct old_sigaction32 __user *act,
552                                      struct old_sigaction32 __user *oact)
553 {
554         struct k_sigaction new_ka, old_ka;
555         int ret;
556
557         if (sig < 0) {
558                 set_thread_flag(TIF_NEWSIGNALS);
559                 sig = -sig;
560         }
561
562         if (act) {
563                 compat_old_sigset_t mask;
564                 u32 u_handler, u_restorer;
565                 
566                 ret = get_user(u_handler, &act->sa_handler);
567                 new_ka.sa.sa_handler =  compat_ptr(u_handler);
568                 ret |= __get_user(u_restorer, &act->sa_restorer);
569                 new_ka.sa.sa_restorer = compat_ptr(u_restorer);
570                 ret |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
571                 ret |= __get_user(mask, &act->sa_mask);
572                 if (ret)
573                         return ret;
574                 new_ka.ka_restorer = NULL;
575                 siginitset(&new_ka.sa.sa_mask, mask);
576         }
577
578         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
579
580         if (!ret && oact) {
581                 ret = put_user(ptr_to_compat(old_ka.sa.sa_handler), &oact->sa_handler);
582                 ret |= __put_user(ptr_to_compat(old_ka.sa.sa_restorer), &oact->sa_restorer);
583                 ret |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
584                 ret |= __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
585         }
586
587         return ret;
588 }
589
590 asmlinkage long compat_sys_rt_sigaction(int sig,
591                                         struct sigaction32 __user *act,
592                                         struct sigaction32 __user *oact,
593                                         void __user *restorer,
594                                         compat_size_t sigsetsize)
595 {
596         struct k_sigaction new_ka, old_ka;
597         int ret;
598         compat_sigset_t set32;
599
600         /* XXX: Don't preclude handling different sized sigset_t's.  */
601         if (sigsetsize != sizeof(compat_sigset_t))
602                 return -EINVAL;
603
604         /* All tasks which use RT signals (effectively) use
605          * new style signals.
606          */
607         set_thread_flag(TIF_NEWSIGNALS);
608
609         if (act) {
610                 u32 u_handler, u_restorer;
611
612                 new_ka.ka_restorer = restorer;
613                 ret = get_user(u_handler, &act->sa_handler);
614                 new_ka.sa.sa_handler =  compat_ptr(u_handler);
615                 ret |= __copy_from_user(&set32, &act->sa_mask, sizeof(compat_sigset_t));
616                 switch (_NSIG_WORDS) {
617                 case 4: new_ka.sa.sa_mask.sig[3] = set32.sig[6] | (((long)set32.sig[7]) << 32);
618                 case 3: new_ka.sa.sa_mask.sig[2] = set32.sig[4] | (((long)set32.sig[5]) << 32);
619                 case 2: new_ka.sa.sa_mask.sig[1] = set32.sig[2] | (((long)set32.sig[3]) << 32);
620                 case 1: new_ka.sa.sa_mask.sig[0] = set32.sig[0] | (((long)set32.sig[1]) << 32);
621                 }
622                 ret |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
623                 ret |= __get_user(u_restorer, &act->sa_restorer);
624                 new_ka.sa.sa_restorer = compat_ptr(u_restorer);
625                 if (ret)
626                         return -EFAULT;
627         }
628
629         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
630
631         if (!ret && oact) {
632                 switch (_NSIG_WORDS) {
633                 case 4: set32.sig[7] = (old_ka.sa.sa_mask.sig[3] >> 32); set32.sig[6] = old_ka.sa.sa_mask.sig[3];
634                 case 3: set32.sig[5] = (old_ka.sa.sa_mask.sig[2] >> 32); set32.sig[4] = old_ka.sa.sa_mask.sig[2];
635                 case 2: set32.sig[3] = (old_ka.sa.sa_mask.sig[1] >> 32); set32.sig[2] = old_ka.sa.sa_mask.sig[1];
636                 case 1: set32.sig[1] = (old_ka.sa.sa_mask.sig[0] >> 32); set32.sig[0] = old_ka.sa.sa_mask.sig[0];
637                 }
638                 ret = put_user(ptr_to_compat(old_ka.sa.sa_handler), &oact->sa_handler);
639                 ret |= __copy_to_user(&oact->sa_mask, &set32, sizeof(compat_sigset_t));
640                 ret |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
641                 ret |= __put_user(ptr_to_compat(old_ka.sa.sa_restorer), &oact->sa_restorer);
642                 if (ret)
643                         ret = -EFAULT;
644         }
645
646         return ret;
647 }
648
649 /*
650  * sparc32_execve() executes a new program after the asm stub has set
651  * things up for us.  This should basically do what I want it to.
652  */
653 asmlinkage long sparc32_execve(struct pt_regs *regs)
654 {
655         int error, base = 0;
656         char *filename;
657
658         /* User register window flush is done by entry.S */
659
660         /* Check for indirect call. */
661         if ((u32)regs->u_regs[UREG_G1] == 0)
662                 base = 1;
663
664         filename = getname(compat_ptr(regs->u_regs[base + UREG_I0]));
665         error = PTR_ERR(filename);
666         if (IS_ERR(filename))
667                 goto out;
668
669         error = compat_do_execve(filename,
670                                  compat_ptr(regs->u_regs[base + UREG_I1]),
671                                  compat_ptr(regs->u_regs[base + UREG_I2]), regs);
672
673         putname(filename);
674
675         if (!error) {
676                 fprs_write(0);
677                 current_thread_info()->xfsr[0] = 0;
678                 current_thread_info()->fpsaved[0] = 0;
679                 regs->tstate &= ~TSTATE_PEF;
680         }
681 out:
682         return error;
683 }
684
685 #ifdef CONFIG_MODULES
686
687 asmlinkage long sys32_init_module(void __user *umod, u32 len,
688                                   const char __user *uargs)
689 {
690         return sys_init_module(umod, len, uargs);
691 }
692
693 asmlinkage long sys32_delete_module(const char __user *name_user,
694                                     unsigned int flags)
695 {
696         return sys_delete_module(name_user, flags);
697 }
698
699 #else /* CONFIG_MODULES */
700
701 asmlinkage long sys32_init_module(const char __user *name_user,
702                                   struct module __user *mod_user)
703 {
704         return -ENOSYS;
705 }
706
707 asmlinkage long sys32_delete_module(const char __user *name_user)
708 {
709         return -ENOSYS;
710 }
711
712 #endif  /* CONFIG_MODULES */
713
714 /* Translations due to time_t size differences.  Which affects all
715    sorts of things, like timeval and itimerval.  */
716
717 extern struct timezone sys_tz;
718
719 asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv,
720                                    struct timezone __user *tz)
721 {
722         if (tv) {
723                 struct timeval ktv;
724                 do_gettimeofday(&ktv);
725                 if (put_tv32(tv, &ktv))
726                         return -EFAULT;
727         }
728         if (tz) {
729                 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
730                         return -EFAULT;
731         }
732         return 0;
733 }
734
735 static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
736 {
737         long usec;
738
739         if (!access_ok(VERIFY_READ, i, sizeof(*i)))
740                 return -EFAULT;
741         if (__get_user(o->tv_sec, &i->tv_sec))
742                 return -EFAULT;
743         if (__get_user(usec, &i->tv_usec))
744                 return -EFAULT;
745         o->tv_nsec = usec * 1000;
746         return 0;
747 }
748
749 asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv,
750                                    struct timezone __user *tz)
751 {
752         struct timespec kts;
753         struct timezone ktz;
754
755         if (tv) {
756                 if (get_ts32(&kts, tv))
757                         return -EFAULT;
758         }
759         if (tz) {
760                 if (copy_from_user(&ktz, tz, sizeof(ktz)))
761                         return -EFAULT;
762         }
763
764         return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
765 }
766
767 asmlinkage long sys32_utimes(char __user *filename,
768                              struct compat_timeval __user *tvs)
769 {
770         struct timespec tv[2];
771
772         if (tvs) {
773                 struct timeval ktvs[2];
774                 if (get_tv32(&ktvs[0], tvs) ||
775                     get_tv32(&ktvs[1], 1+tvs))
776                         return -EFAULT;
777
778                 if (ktvs[0].tv_usec < 0 || ktvs[0].tv_usec >= 1000000 ||
779                     ktvs[1].tv_usec < 0 || ktvs[1].tv_usec >= 1000000)
780                         return -EINVAL;
781
782                 tv[0].tv_sec = ktvs[0].tv_sec;
783                 tv[0].tv_nsec = 1000 * ktvs[0].tv_usec;
784                 tv[1].tv_sec = ktvs[1].tv_sec;
785                 tv[1].tv_nsec = 1000 * ktvs[1].tv_usec;
786         }
787
788         return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0);
789 }
790
791 /* These are here just in case some old sparc32 binary calls it. */
792 asmlinkage long sys32_pause(void)
793 {
794         current->state = TASK_INTERRUPTIBLE;
795         schedule();
796         return -ERESTARTNOHAND;
797 }
798
799 asmlinkage compat_ssize_t sys32_pread64(unsigned int fd,
800                                         char __user *ubuf,
801                                         compat_size_t count,
802                                         unsigned long poshi,
803                                         unsigned long poslo)
804 {
805         return sys_pread64(fd, ubuf, count, (poshi << 32) | poslo);
806 }
807
808 asmlinkage compat_ssize_t sys32_pwrite64(unsigned int fd,
809                                          char __user *ubuf,
810                                          compat_size_t count,
811                                          unsigned long poshi,
812                                          unsigned long poslo)
813 {
814         return sys_pwrite64(fd, ubuf, count, (poshi << 32) | poslo);
815 }
816
817 asmlinkage long compat_sys_readahead(int fd,
818                                      unsigned long offhi,
819                                      unsigned long offlo,
820                                      compat_size_t count)
821 {
822         return sys_readahead(fd, (offhi << 32) | offlo, count);
823 }
824
825 long compat_sys_fadvise64(int fd,
826                           unsigned long offhi,
827                           unsigned long offlo,
828                           compat_size_t len, int advice)
829 {
830         return sys_fadvise64_64(fd, (offhi << 32) | offlo, len, advice);
831 }
832
833 long compat_sys_fadvise64_64(int fd,
834                              unsigned long offhi, unsigned long offlo,
835                              unsigned long lenhi, unsigned long lenlo,
836                              int advice)
837 {
838         return sys_fadvise64_64(fd,
839                                 (offhi << 32) | offlo,
840                                 (lenhi << 32) | lenlo,
841                                 advice);
842 }
843
844 asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
845                                     compat_off_t __user *offset,
846                                     compat_size_t count)
847 {
848         mm_segment_t old_fs = get_fs();
849         int ret;
850         off_t of;
851         
852         if (offset && get_user(of, offset))
853                 return -EFAULT;
854                 
855         set_fs(KERNEL_DS);
856         ret = sys_sendfile(out_fd, in_fd,
857                            offset ? (off_t __user *) &of : NULL,
858                            count);
859         set_fs(old_fs);
860         
861         if (offset && put_user(of, offset))
862                 return -EFAULT;
863                 
864         return ret;
865 }
866
867 asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
868                                       compat_loff_t __user *offset,
869                                       compat_size_t count)
870 {
871         mm_segment_t old_fs = get_fs();
872         int ret;
873         loff_t lof;
874         
875         if (offset && get_user(lof, offset))
876                 return -EFAULT;
877                 
878         set_fs(KERNEL_DS);
879         ret = sys_sendfile64(out_fd, in_fd,
880                              offset ? (loff_t __user *) &lof : NULL,
881                              count);
882         set_fs(old_fs);
883         
884         if (offset && put_user(lof, offset))
885                 return -EFAULT;
886                 
887         return ret;
888 }
889
890 /* This is just a version for 32-bit applications which does
891  * not force O_LARGEFILE on.
892  */
893
894 asmlinkage long sparc32_open(const char __user *filename,
895                              int flags, int mode)
896 {
897         return do_sys_open(AT_FDCWD, filename, flags, mode);
898 }
899
900 extern unsigned long do_mremap(unsigned long addr,
901         unsigned long old_len, unsigned long new_len,
902         unsigned long flags, unsigned long new_addr);
903                 
904 asmlinkage unsigned long sys32_mremap(unsigned long addr,
905         unsigned long old_len, unsigned long new_len,
906         unsigned long flags, u32 __new_addr)
907 {
908         struct vm_area_struct *vma;
909         unsigned long ret = -EINVAL;
910         unsigned long new_addr = __new_addr;
911
912         if (old_len > STACK_TOP32 || new_len > STACK_TOP32)
913                 goto out;
914         if (addr > STACK_TOP32 - old_len)
915                 goto out;
916         down_write(&current->mm->mmap_sem);
917         if (flags & MREMAP_FIXED) {
918                 if (new_addr > STACK_TOP32 - new_len)
919                         goto out_sem;
920         } else if (addr > STACK_TOP32 - new_len) {
921                 unsigned long map_flags = 0;
922                 struct file *file = NULL;
923
924                 ret = -ENOMEM;
925                 if (!(flags & MREMAP_MAYMOVE))
926                         goto out_sem;
927
928                 vma = find_vma(current->mm, addr);
929                 if (vma) {
930                         if (vma->vm_flags & VM_SHARED)
931                                 map_flags |= MAP_SHARED;
932                         file = vma->vm_file;
933                 }
934
935                 /* MREMAP_FIXED checked above. */
936                 new_addr = get_unmapped_area(file, addr, new_len,
937                                     vma ? vma->vm_pgoff : 0,
938                                     map_flags);
939                 ret = new_addr;
940                 if (new_addr & ~PAGE_MASK)
941                         goto out_sem;
942                 flags |= MREMAP_FIXED;
943         }
944         ret = do_mremap(addr, old_len, new_len, flags, new_addr);
945 out_sem:
946         up_write(&current->mm->mmap_sem);
947 out:
948         return ret;       
949 }
950
951 struct __sysctl_args32 {
952         u32 name;
953         int nlen;
954         u32 oldval;
955         u32 oldlenp;
956         u32 newval;
957         u32 newlen;
958         u32 __unused[4];
959 };
960
961 asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
962 {
963 #ifndef CONFIG_SYSCTL_SYSCALL
964         return -ENOSYS;
965 #else
966         struct __sysctl_args32 tmp;
967         int error;
968         size_t oldlen, __user *oldlenp = NULL;
969         unsigned long addr = (((unsigned long)&args->__unused[0]) + 7UL) & ~7UL;
970
971         if (copy_from_user(&tmp, args, sizeof(tmp)))
972                 return -EFAULT;
973
974         if (tmp.oldval && tmp.oldlenp) {
975                 /* Duh, this is ugly and might not work if sysctl_args
976                    is in read-only memory, but do_sysctl does indirectly
977                    a lot of uaccess in both directions and we'd have to
978                    basically copy the whole sysctl.c here, and
979                    glibc's __sysctl uses rw memory for the structure
980                    anyway.  */
981                 if (get_user(oldlen, (u32 __user *)(unsigned long)tmp.oldlenp) ||
982                     put_user(oldlen, (size_t __user *)addr))
983                         return -EFAULT;
984                 oldlenp = (size_t __user *)addr;
985         }
986
987         lock_kernel();
988         error = do_sysctl((int __user *)(unsigned long) tmp.name,
989                           tmp.nlen,
990                           (void __user *)(unsigned long) tmp.oldval,
991                           oldlenp,
992                           (void __user *)(unsigned long) tmp.newval,
993                           tmp.newlen);
994         unlock_kernel();
995         if (oldlenp) {
996                 if (!error) {
997                         if (get_user(oldlen, (size_t __user *)addr) ||
998                             put_user(oldlen, (u32 __user *)(unsigned long) tmp.oldlenp))
999                                 error = -EFAULT;
1000                 }
1001                 if (copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused)))
1002                         error = -EFAULT;
1003         }
1004         return error;
1005 #endif
1006 }
1007
1008 long sys32_lookup_dcookie(unsigned long cookie_high,
1009                           unsigned long cookie_low,
1010                           char __user *buf, size_t len)
1011 {
1012         return sys_lookup_dcookie((cookie_high << 32) | cookie_low,
1013                                   buf, len);
1014 }
1015
1016 long compat_sync_file_range(int fd, unsigned long off_high, unsigned long off_low, unsigned long nb_high, unsigned long nb_low, int flags)
1017 {
1018         return sys_sync_file_range(fd,
1019                                    (off_high << 32) | off_low,
1020                                    (nb_high << 32) | nb_low,
1021                                    flags);
1022 }
1023
1024 asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo,
1025                                      u32 lenhi, u32 lenlo)
1026 {
1027         return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
1028                              ((loff_t)lenhi << 32) | lenlo);
1029 }