2 * sys_ppc32.c: Conversion between 32bit and 64bit native syscalls.
4 * Copyright (C) 2001 IBM
5 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
8 * These routines maintain argument size conversion between 32bit and 64bit
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/config.h>
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
22 #include <linux/file.h>
23 #include <linux/signal.h>
24 #include <linux/resource.h>
25 #include <linux/times.h>
26 #include <linux/utsname.h>
27 #include <linux/timex.h>
28 #include <linux/smp.h>
29 #include <linux/smp_lock.h>
30 #include <linux/sem.h>
31 #include <linux/msg.h>
32 #include <linux/shm.h>
33 #include <linux/poll.h>
34 #include <linux/personality.h>
35 #include <linux/stat.h>
36 #include <linux/mman.h>
38 #include <linux/syscalls.h>
39 #include <linux/unistd.h>
40 #include <linux/sysctl.h>
41 #include <linux/binfmts.h>
42 #include <linux/security.h>
43 #include <linux/compat.h>
44 #include <linux/ptrace.h>
45 #include <linux/elf.h>
47 #include <asm/ptrace.h>
48 #include <asm/types.h>
50 #include <asm/uaccess.h>
51 #include <asm/unistd.h>
52 #include <asm/semaphore.h>
54 #include <asm/mmu_context.h>
55 #include <asm/systemcfg.h>
59 /* readdir & getdents */
60 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
61 #define ROUND_UP(x) (((x)+sizeof(u32)-1) & ~(sizeof(u32)-1))
63 struct old_linux_dirent32 {
66 unsigned short d_namlen;
70 struct readdir_callback32 {
71 struct old_linux_dirent32 __user * dirent;
75 static int fillonedir(void * __buf, const char * name, int namlen,
76 off_t offset, ino_t ino, unsigned int d_type)
78 struct readdir_callback32 * buf = (struct readdir_callback32 *) __buf;
79 struct old_linux_dirent32 __user * dirent;
85 put_user(ino, &dirent->d_ino);
86 put_user(offset, &dirent->d_offset);
87 put_user(namlen, &dirent->d_namlen);
88 copy_to_user(dirent->d_name, name, namlen);
89 put_user(0, dirent->d_name + namlen);
93 asmlinkage int old32_readdir(unsigned int fd, struct old_linux_dirent32 __user *dirent, unsigned int count)
97 struct readdir_callback32 buf;
106 error = vfs_readdir(file, (filldir_t)fillonedir, &buf);
117 struct linux_dirent32 {
120 unsigned short d_reclen;
124 struct getdents_callback32 {
125 struct linux_dirent32 __user * current_dir;
126 struct linux_dirent32 __user * previous;
131 static int filldir(void * __buf, const char * name, int namlen, off_t offset,
132 ino_t ino, unsigned int d_type)
134 struct linux_dirent32 __user * dirent;
135 struct getdents_callback32 * buf = (struct getdents_callback32 *) __buf;
136 int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 2);
138 buf->error = -EINVAL; /* only used if we fail.. */
139 if (reclen > buf->count)
141 dirent = buf->previous;
143 if (__put_user(offset, &dirent->d_off))
146 dirent = buf->current_dir;
147 if (__put_user(ino, &dirent->d_ino))
149 if (__put_user(reclen, &dirent->d_reclen))
151 if (copy_to_user(dirent->d_name, name, namlen))
153 if (__put_user(0, dirent->d_name + namlen))
155 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
157 buf->previous = dirent;
158 dirent = (void __user *)dirent + reclen;
159 buf->current_dir = dirent;
160 buf->count -= reclen;
163 buf->error = -EFAULT;
167 asmlinkage long sys32_getdents(unsigned int fd, struct linux_dirent32 __user *dirent,
171 struct linux_dirent32 __user * lastdirent;
172 struct getdents_callback32 buf;
176 if (!access_ok(VERIFY_WRITE, dirent, count))
184 buf.current_dir = dirent;
189 error = vfs_readdir(file, (filldir_t)filldir, &buf);
193 lastdirent = buf.previous;
195 if (put_user(file->f_pos, &lastdirent->d_off))
198 error = count - buf.count;
207 asmlinkage long ppc32_select(u32 n, compat_ulong_t __user *inp,
208 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
212 return compat_sys_select((int)n, inp, outp, exp, compat_ptr(tvp_x));
215 int cp_compat_stat(struct kstat *stat, struct compat_stat __user *statbuf)
219 if (stat->size > MAX_NON_LFS || !new_valid_dev(stat->dev) ||
220 !new_valid_dev(stat->rdev))
223 err = access_ok(VERIFY_WRITE, statbuf, sizeof(*statbuf)) ? 0 : -EFAULT;
224 err |= __put_user(new_encode_dev(stat->dev), &statbuf->st_dev);
225 err |= __put_user(stat->ino, &statbuf->st_ino);
226 err |= __put_user(stat->mode, &statbuf->st_mode);
227 err |= __put_user(stat->nlink, &statbuf->st_nlink);
228 err |= __put_user(stat->uid, &statbuf->st_uid);
229 err |= __put_user(stat->gid, &statbuf->st_gid);
230 err |= __put_user(new_encode_dev(stat->rdev), &statbuf->st_rdev);
231 err |= __put_user(stat->size, &statbuf->st_size);
232 err |= __put_user(stat->atime.tv_sec, &statbuf->st_atime);
233 err |= __put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
234 err |= __put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
235 err |= __put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
236 err |= __put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
237 err |= __put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
238 err |= __put_user(stat->blksize, &statbuf->st_blksize);
239 err |= __put_user(stat->blocks, &statbuf->st_blocks);
240 err |= __put_user(0, &statbuf->__unused4[0]);
241 err |= __put_user(0, &statbuf->__unused4[1]);
246 /* Note: it is necessary to treat option as an unsigned int,
247 * with the corresponding cast to a signed int to insure that the
248 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
249 * and the register representation of a signed int (msr in 64-bit mode) is performed.
251 asmlinkage long sys32_sysfs(u32 option, u32 arg1, u32 arg2)
253 return sys_sysfs((int)option, arg1, arg2);
256 /* Handle adjtimex compatibility. */
259 s32 offset, freq, maxerror, esterror;
260 s32 status, constant, precision, tolerance;
261 struct compat_timeval time;
263 s32 ppsfreq, jitter, shift, stabil;
264 s32 jitcnt, calcnt, errcnt, stbcnt;
265 s32 :32; s32 :32; s32 :32; s32 :32;
266 s32 :32; s32 :32; s32 :32; s32 :32;
267 s32 :32; s32 :32; s32 :32; s32 :32;
270 extern int do_adjtimex(struct timex *);
271 extern void ppc_adjtimex(void);
273 asmlinkage long sys32_adjtimex(struct timex32 __user *utp)
278 memset(&txc, 0, sizeof(struct timex));
280 if(get_user(txc.modes, &utp->modes) ||
281 __get_user(txc.offset, &utp->offset) ||
282 __get_user(txc.freq, &utp->freq) ||
283 __get_user(txc.maxerror, &utp->maxerror) ||
284 __get_user(txc.esterror, &utp->esterror) ||
285 __get_user(txc.status, &utp->status) ||
286 __get_user(txc.constant, &utp->constant) ||
287 __get_user(txc.precision, &utp->precision) ||
288 __get_user(txc.tolerance, &utp->tolerance) ||
289 __get_user(txc.time.tv_sec, &utp->time.tv_sec) ||
290 __get_user(txc.time.tv_usec, &utp->time.tv_usec) ||
291 __get_user(txc.tick, &utp->tick) ||
292 __get_user(txc.ppsfreq, &utp->ppsfreq) ||
293 __get_user(txc.jitter, &utp->jitter) ||
294 __get_user(txc.shift, &utp->shift) ||
295 __get_user(txc.stabil, &utp->stabil) ||
296 __get_user(txc.jitcnt, &utp->jitcnt) ||
297 __get_user(txc.calcnt, &utp->calcnt) ||
298 __get_user(txc.errcnt, &utp->errcnt) ||
299 __get_user(txc.stbcnt, &utp->stbcnt))
302 ret = do_adjtimex(&txc);
304 /* adjust the conversion of TB to time of day to track adjtimex */
307 if(put_user(txc.modes, &utp->modes) ||
308 __put_user(txc.offset, &utp->offset) ||
309 __put_user(txc.freq, &utp->freq) ||
310 __put_user(txc.maxerror, &utp->maxerror) ||
311 __put_user(txc.esterror, &utp->esterror) ||
312 __put_user(txc.status, &utp->status) ||
313 __put_user(txc.constant, &utp->constant) ||
314 __put_user(txc.precision, &utp->precision) ||
315 __put_user(txc.tolerance, &utp->tolerance) ||
316 __put_user(txc.time.tv_sec, &utp->time.tv_sec) ||
317 __put_user(txc.time.tv_usec, &utp->time.tv_usec) ||
318 __put_user(txc.tick, &utp->tick) ||
319 __put_user(txc.ppsfreq, &utp->ppsfreq) ||
320 __put_user(txc.jitter, &utp->jitter) ||
321 __put_user(txc.shift, &utp->shift) ||
322 __put_user(txc.stabil, &utp->stabil) ||
323 __put_user(txc.jitcnt, &utp->jitcnt) ||
324 __put_user(txc.calcnt, &utp->calcnt) ||
325 __put_user(txc.errcnt, &utp->errcnt) ||
326 __put_user(txc.stbcnt, &utp->stbcnt))
332 asmlinkage long sys32_pause(void)
334 current->state = TASK_INTERRUPTIBLE;
337 return -ERESTARTNOHAND;
340 static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
344 if (!access_ok(VERIFY_READ, i, sizeof(*i)))
346 if (__get_user(o->tv_sec, &i->tv_sec))
348 if (__get_user(usec, &i->tv_usec))
350 o->tv_nsec = usec * 1000;
354 static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
356 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
357 (__put_user(i->tv_sec, &o->tv_sec) |
358 __put_user(i->tv_usec, &o->tv_usec)));
370 unsigned short procs;
375 char _f[20-2*sizeof(int)-sizeof(int)];
378 asmlinkage long sys32_sysinfo(struct sysinfo32 __user *info)
383 mm_segment_t old_fs = get_fs ();
385 /* The __user cast is valid due to set_fs() */
387 ret = sys_sysinfo((struct sysinfo __user *)&s);
390 /* Check to see if any memory value is too large for 32-bit and
391 * scale down if needed.
393 if ((s.totalram >> 32) || (s.totalswap >> 32)) {
394 while (s.mem_unit < PAGE_SIZE) {
398 s.totalram >>=bitcount;
399 s.freeram >>= bitcount;
400 s.sharedram >>= bitcount;
401 s.bufferram >>= bitcount;
402 s.totalswap >>= bitcount;
403 s.freeswap >>= bitcount;
404 s.totalhigh >>= bitcount;
405 s.freehigh >>= bitcount;
408 err = put_user (s.uptime, &info->uptime);
409 err |= __put_user (s.loads[0], &info->loads[0]);
410 err |= __put_user (s.loads[1], &info->loads[1]);
411 err |= __put_user (s.loads[2], &info->loads[2]);
412 err |= __put_user (s.totalram, &info->totalram);
413 err |= __put_user (s.freeram, &info->freeram);
414 err |= __put_user (s.sharedram, &info->sharedram);
415 err |= __put_user (s.bufferram, &info->bufferram);
416 err |= __put_user (s.totalswap, &info->totalswap);
417 err |= __put_user (s.freeswap, &info->freeswap);
418 err |= __put_user (s.procs, &info->procs);
419 err |= __put_user (s.totalhigh, &info->totalhigh);
420 err |= __put_user (s.freehigh, &info->freehigh);
421 err |= __put_user (s.mem_unit, &info->mem_unit);
431 /* Translations due to time_t size differences. Which affects all
432 sorts of things, like timeval and itimerval. */
433 extern struct timezone sys_tz;
435 asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
439 do_gettimeofday(&ktv);
440 if (put_tv32(tv, &ktv))
444 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
453 asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
459 if (get_ts32(&kts, tv))
463 if (copy_from_user(&ktz, tz, sizeof(ktz)))
467 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
470 #ifdef CONFIG_SYSVIPC
471 long sys32_ipc(u32 call, u32 first, u32 second, u32 third, compat_uptr_t ptr,
476 version = call >> 16; /* hack for backward compatibility */
483 /* sign extend semid */
484 return compat_sys_semtimedop((int)first,
485 compat_ptr(ptr), second,
487 /* else fall through for normal semop() */
489 /* struct sembuf is the same on 32 and 64bit :)) */
490 /* sign extend semid */
491 return sys_semtimedop((int)first, compat_ptr(ptr), second,
494 /* sign extend key, nsems */
495 return sys_semget((int)first, (int)second, third);
497 /* sign extend semid, semnum */
498 return compat_sys_semctl((int)first, (int)second, third,
502 /* sign extend msqid */
503 return compat_sys_msgsnd((int)first, (int)second, third,
506 /* sign extend msqid, msgtyp */
507 return compat_sys_msgrcv((int)first, second, (int)fifth,
508 third, version, compat_ptr(ptr));
510 /* sign extend key */
511 return sys_msgget((int)first, second);
513 /* sign extend msqid */
514 return compat_sys_msgctl((int)first, second, compat_ptr(ptr));
517 /* sign extend shmid */
518 return compat_sys_shmat((int)first, second, third, version,
521 return sys_shmdt(compat_ptr(ptr));
523 /* sign extend key_t */
524 return sys_shmget((int)first, second, third);
526 /* sign extend shmid */
527 return compat_sys_shmctl((int)first, second, compat_ptr(ptr));
537 /* Note: it is necessary to treat out_fd and in_fd as unsigned ints,
538 * with the corresponding cast to a signed int to insure that the
539 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
540 * and the register representation of a signed int (msr in 64-bit mode) is performed.
542 asmlinkage long sys32_sendfile(u32 out_fd, u32 in_fd, compat_off_t __user * offset, u32 count)
544 mm_segment_t old_fs = get_fs();
549 if (offset && get_user(of, offset))
552 /* The __user pointer cast is valid because of the set_fs() */
554 up = offset ? (off_t __user *) &of : NULL;
555 ret = sys_sendfile((int)out_fd, (int)in_fd, up, count);
558 if (offset && put_user(of, offset))
564 asmlinkage int sys32_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset, s32 count)
566 mm_segment_t old_fs = get_fs();
571 if (offset && get_user(lof, offset))
574 /* The __user pointer cast is valid because of the set_fs() */
576 up = offset ? (loff_t __user *) &lof : NULL;
577 ret = sys_sendfile64(out_fd, in_fd, up, count);
580 if (offset && put_user(lof, offset))
586 long sys32_execve(unsigned long a0, unsigned long a1, unsigned long a2,
587 unsigned long a3, unsigned long a4, unsigned long a5,
588 struct pt_regs *regs)
593 filename = getname((char __user *) a0);
594 error = PTR_ERR(filename);
595 if (IS_ERR(filename))
597 flush_fp_to_thread(current);
598 flush_altivec_to_thread(current);
600 error = compat_do_execve(filename, compat_ptr(a1), compat_ptr(a2), regs);
604 current->ptrace &= ~PT_DTRACE;
605 task_unlock(current);
613 /* Set up a thread for executing a new program. */
614 void start_thread32(struct pt_regs* regs, unsigned long nip, unsigned long sp)
619 * If we exec out of a kernel thread then thread.regs will not be
622 if (!current->thread.regs) {
623 unsigned long childregs = (unsigned long)current->thread_info +
625 childregs -= sizeof(struct pt_regs);
626 current->thread.regs = (struct pt_regs *)childregs;
630 * ELF_PLAT_INIT already clears all registers but it also sets r2.
631 * So just clear r2 here.
637 regs->msr = MSR_USER32;
639 if (last_task_used_math == current)
640 last_task_used_math = 0;
641 #endif /* CONFIG_SMP */
642 current->thread.fpscr = 0;
643 memset(current->thread.fpr, 0, sizeof(current->thread.fpr));
644 #ifdef CONFIG_ALTIVEC
646 if (last_task_used_altivec == current)
647 last_task_used_altivec = 0;
648 #endif /* CONFIG_SMP */
649 memset(current->thread.vr, 0, sizeof(current->thread.vr));
650 current->thread.vscr.u[0] = 0;
651 current->thread.vscr.u[1] = 0;
652 current->thread.vscr.u[2] = 0;
653 current->thread.vscr.u[3] = 0x00010000; /* Java mode disabled */
654 current->thread.vrsave = 0;
655 current->thread.used_vr = 0;
656 #endif /* CONFIG_ALTIVEC */
659 /* Note: it is necessary to treat option as an unsigned int,
660 * with the corresponding cast to a signed int to insure that the
661 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
662 * and the register representation of a signed int (msr in 64-bit mode) is performed.
664 asmlinkage long sys32_prctl(u32 option, u32 arg2, u32 arg3, u32 arg4, u32 arg5)
666 return sys_prctl((int)option,
667 (unsigned long) arg2,
668 (unsigned long) arg3,
669 (unsigned long) arg4,
670 (unsigned long) arg5);
673 /* Note: it is necessary to treat pid as an unsigned int,
674 * with the corresponding cast to a signed int to insure that the
675 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
676 * and the register representation of a signed int (msr in 64-bit mode) is performed.
678 asmlinkage long sys32_sched_rr_get_interval(u32 pid, struct compat_timespec __user *interval)
682 mm_segment_t old_fs = get_fs ();
684 /* The __user pointer cast is valid because of the set_fs() */
686 ret = sys_sched_rr_get_interval((int)pid, (struct timespec __user *) &t);
688 if (put_compat_timespec(&t, interval))
693 asmlinkage int sys32_pciconfig_read(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf)
695 return sys_pciconfig_read((unsigned long) bus,
702 asmlinkage int sys32_pciconfig_write(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf)
704 return sys_pciconfig_write((unsigned long) bus,
711 asmlinkage int sys32_pciconfig_iobase(u32 which, u32 in_bus, u32 in_devfn)
713 return sys_pciconfig_iobase(which, in_bus, in_devfn);
717 /* Note: it is necessary to treat mode as an unsigned int,
718 * with the corresponding cast to a signed int to insure that the
719 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
720 * and the register representation of a signed int (msr in 64-bit mode) is performed.
722 asmlinkage long sys32_access(const char __user * filename, u32 mode)
724 return sys_access(filename, (int)mode);
728 /* Note: it is necessary to treat mode as an unsigned int,
729 * with the corresponding cast to a signed int to insure that the
730 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
731 * and the register representation of a signed int (msr in 64-bit mode) is performed.
733 asmlinkage long sys32_creat(const char __user * pathname, u32 mode)
735 return sys_creat(pathname, (int)mode);
739 /* Note: it is necessary to treat pid and options as unsigned ints,
740 * with the corresponding cast to a signed int to insure that the
741 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
742 * and the register representation of a signed int (msr in 64-bit mode) is performed.
744 asmlinkage long sys32_waitpid(u32 pid, unsigned int __user * stat_addr, u32 options)
746 return sys_waitpid((int)pid, stat_addr, (int)options);
750 /* Note: it is necessary to treat gidsetsize as an unsigned int,
751 * with the corresponding cast to a signed int to insure that the
752 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
753 * and the register representation of a signed int (msr in 64-bit mode) is performed.
755 asmlinkage long sys32_getgroups(u32 gidsetsize, gid_t __user *grouplist)
757 return sys_getgroups((int)gidsetsize, grouplist);
761 /* Note: it is necessary to treat pid as an unsigned int,
762 * with the corresponding cast to a signed int to insure that the
763 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
764 * and the register representation of a signed int (msr in 64-bit mode) is performed.
766 asmlinkage long sys32_getpgid(u32 pid)
768 return sys_getpgid((int)pid);
773 /* Note: it is necessary to treat pid as an unsigned int,
774 * with the corresponding cast to a signed int to insure that the
775 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
776 * and the register representation of a signed int (msr in 64-bit mode) is performed.
778 asmlinkage long sys32_getsid(u32 pid)
780 return sys_getsid((int)pid);
784 /* Note: it is necessary to treat pid and sig as unsigned ints,
785 * with the corresponding cast to a signed int to insure that the
786 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
787 * and the register representation of a signed int (msr in 64-bit mode) is performed.
789 asmlinkage long sys32_kill(u32 pid, u32 sig)
791 return sys_kill((int)pid, (int)sig);
795 /* Note: it is necessary to treat mode as an unsigned int,
796 * with the corresponding cast to a signed int to insure that the
797 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
798 * and the register representation of a signed int (msr in 64-bit mode) is performed.
800 asmlinkage long sys32_mkdir(const char __user * pathname, u32 mode)
802 return sys_mkdir(pathname, (int)mode);
805 long sys32_nice(u32 increment)
807 /* sign extend increment */
808 return sys_nice((int)increment);
811 off_t ppc32_lseek(unsigned int fd, u32 offset, unsigned int origin)
814 return sys_lseek(fd, (int)offset, origin);
817 /* Note: it is necessary to treat bufsiz as an unsigned int,
818 * with the corresponding cast to a signed int to insure that the
819 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
820 * and the register representation of a signed int (msr in 64-bit mode) is performed.
822 asmlinkage long sys32_readlink(const char __user * path, char __user * buf, u32 bufsiz)
824 return sys_readlink(path, buf, (int)bufsiz);
827 /* Note: it is necessary to treat option as an unsigned int,
828 * with the corresponding cast to a signed int to insure that the
829 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
830 * and the register representation of a signed int (msr in 64-bit mode) is performed.
832 asmlinkage long sys32_sched_get_priority_max(u32 policy)
834 return sys_sched_get_priority_max((int)policy);
838 /* Note: it is necessary to treat policy as an unsigned int,
839 * with the corresponding cast to a signed int to insure that the
840 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
841 * and the register representation of a signed int (msr in 64-bit mode) is performed.
843 asmlinkage long sys32_sched_get_priority_min(u32 policy)
845 return sys_sched_get_priority_min((int)policy);
849 /* Note: it is necessary to treat pid as an unsigned int,
850 * with the corresponding cast to a signed int to insure that the
851 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
852 * and the register representation of a signed int (msr in 64-bit mode) is performed.
854 asmlinkage long sys32_sched_getparam(u32 pid, struct sched_param __user *param)
856 return sys_sched_getparam((int)pid, param);
860 /* Note: it is necessary to treat pid as an unsigned int,
861 * with the corresponding cast to a signed int to insure that the
862 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
863 * and the register representation of a signed int (msr in 64-bit mode) is performed.
865 asmlinkage long sys32_sched_getscheduler(u32 pid)
867 return sys_sched_getscheduler((int)pid);
871 /* Note: it is necessary to treat pid as an unsigned int,
872 * with the corresponding cast to a signed int to insure that the
873 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
874 * and the register representation of a signed int (msr in 64-bit mode) is performed.
876 asmlinkage long sys32_sched_setparam(u32 pid, struct sched_param __user *param)
878 return sys_sched_setparam((int)pid, param);
882 /* Note: it is necessary to treat pid and policy as unsigned ints,
883 * with the corresponding cast to a signed int to insure that the
884 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
885 * and the register representation of a signed int (msr in 64-bit mode) is performed.
887 asmlinkage long sys32_sched_setscheduler(u32 pid, u32 policy, struct sched_param __user *param)
889 return sys_sched_setscheduler((int)pid, (int)policy, param);
893 /* Note: it is necessary to treat len as an unsigned int,
894 * with the corresponding cast to a signed int to insure that the
895 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
896 * and the register representation of a signed int (msr in 64-bit mode) is performed.
898 asmlinkage long sys32_setdomainname(char __user *name, u32 len)
900 return sys_setdomainname(name, (int)len);
904 /* Note: it is necessary to treat gidsetsize as an unsigned int,
905 * with the corresponding cast to a signed int to insure that the
906 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
907 * and the register representation of a signed int (msr in 64-bit mode) is performed.
909 asmlinkage long sys32_setgroups(u32 gidsetsize, gid_t __user *grouplist)
911 return sys_setgroups((int)gidsetsize, grouplist);
915 asmlinkage long sys32_sethostname(char __user *name, u32 len)
917 /* sign extend len */
918 return sys_sethostname(name, (int)len);
922 /* Note: it is necessary to treat pid and pgid as unsigned ints,
923 * with the corresponding cast to a signed int to insure that the
924 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
925 * and the register representation of a signed int (msr in 64-bit mode) is performed.
927 asmlinkage long sys32_setpgid(u32 pid, u32 pgid)
929 return sys_setpgid((int)pid, (int)pgid);
932 long sys32_getpriority(u32 which, u32 who)
934 /* sign extend which and who */
935 return sys_getpriority((int)which, (int)who);
938 long sys32_setpriority(u32 which, u32 who, u32 niceval)
940 /* sign extend which, who and niceval */
941 return sys_setpriority((int)which, (int)who, (int)niceval);
944 long sys32_ioprio_get(u32 which, u32 who)
946 /* sign extend which and who */
947 return sys_ioprio_get((int)which, (int)who);
950 long sys32_ioprio_set(u32 which, u32 who, u32 ioprio)
952 /* sign extend which, who and ioprio */
953 return sys_ioprio_set((int)which, (int)who, (int)ioprio);
956 /* Note: it is necessary to treat newmask as an unsigned int,
957 * with the corresponding cast to a signed int to insure that the
958 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
959 * and the register representation of a signed int (msr in 64-bit mode) is performed.
961 asmlinkage long sys32_ssetmask(u32 newmask)
963 return sys_ssetmask((int) newmask);
966 asmlinkage long sys32_syslog(u32 type, char __user * buf, u32 len)
968 /* sign extend len */
969 return sys_syslog(type, buf, (int)len);
973 /* Note: it is necessary to treat mask as an unsigned int,
974 * with the corresponding cast to a signed int to insure that the
975 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
976 * and the register representation of a signed int (msr in 64-bit mode) is performed.
978 asmlinkage long sys32_umask(u32 mask)
980 return sys_umask((int)mask);
984 struct __sysctl_args32 {
994 asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
996 struct __sysctl_args32 tmp;
999 size_t __user *oldlenp = NULL;
1000 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
1002 if (copy_from_user(&tmp, args, sizeof(tmp)))
1005 if (tmp.oldval && tmp.oldlenp) {
1006 /* Duh, this is ugly and might not work if sysctl_args
1007 is in read-only memory, but do_sysctl does indirectly
1008 a lot of uaccess in both directions and we'd have to
1009 basically copy the whole sysctl.c here, and
1010 glibc's __sysctl uses rw memory for the structure
1012 oldlenp = (size_t __user *)addr;
1013 if (get_user(oldlen, (compat_size_t __user *)compat_ptr(tmp.oldlenp)) ||
1014 put_user(oldlen, oldlenp))
1019 error = do_sysctl(compat_ptr(tmp.name), tmp.nlen,
1020 compat_ptr(tmp.oldval), oldlenp,
1021 compat_ptr(tmp.newval), tmp.newlen);
1025 if (get_user(oldlen, oldlenp) ||
1026 put_user(oldlen, (compat_size_t __user *)compat_ptr(tmp.oldlenp)))
1029 copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
1035 asmlinkage int sys32_uname(struct old_utsname __user * name)
1039 down_read(&uts_sem);
1040 if (copy_to_user(name, &system_utsname, sizeof(*name)))
1043 if (!err && personality(current->personality) == PER_LINUX32) {
1044 /* change "ppc64" to "ppc" */
1045 if (__put_user(0, name->machine + 3)
1046 || __put_user(0, name->machine + 4))
1052 asmlinkage int sys32_olduname(struct oldold_utsname __user * name)
1056 if (!access_ok(VERIFY_WRITE,name,sizeof(struct oldold_utsname)))
1059 down_read(&uts_sem);
1060 error = __copy_to_user(&name->sysname,&system_utsname.sysname,__OLD_UTS_LEN);
1061 error |= __put_user(0,name->sysname+__OLD_UTS_LEN);
1062 error |= __copy_to_user(&name->nodename,&system_utsname.nodename,__OLD_UTS_LEN);
1063 error |= __put_user(0,name->nodename+__OLD_UTS_LEN);
1064 error |= __copy_to_user(&name->release,&system_utsname.release,__OLD_UTS_LEN);
1065 error |= __put_user(0,name->release+__OLD_UTS_LEN);
1066 error |= __copy_to_user(&name->version,&system_utsname.version,__OLD_UTS_LEN);
1067 error |= __put_user(0,name->version+__OLD_UTS_LEN);
1068 error |= __copy_to_user(&name->machine,&system_utsname.machine,__OLD_UTS_LEN);
1069 error |= __put_user(0,name->machine+__OLD_UTS_LEN);
1070 if (personality(current->personality) == PER_LINUX32) {
1071 /* change "ppc64" to "ppc" */
1072 error |= __put_user(0, name->machine + 3);
1073 error |= __put_user(0, name->machine + 4);
1078 error = error ? -EFAULT : 0;
1083 unsigned long sys32_mmap2(unsigned long addr, size_t len,
1084 unsigned long prot, unsigned long flags,
1085 unsigned long fd, unsigned long pgoff)
1087 /* This should remain 12 even if PAGE_SIZE changes */
1088 return sys_mmap(addr, len, prot, flags, fd, pgoff << 12);
1091 int get_compat_timeval(struct timeval *tv, struct compat_timeval __user *ctv)
1093 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
1094 __get_user(tv->tv_sec, &ctv->tv_sec) ||
1095 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
1098 asmlinkage long sys32_utimes(char __user *filename, struct compat_timeval __user *tvs)
1100 struct timeval ktvs[2], *ptr;
1104 if (get_compat_timeval(&ktvs[0], &tvs[0]) ||
1105 get_compat_timeval(&ktvs[1], &tvs[1]))
1110 return do_utimes(filename, ptr);
1113 long sys32_tgkill(u32 tgid, u32 pid, int sig)
1115 /* sign extend tgid, pid */
1116 return sys_tgkill((int)tgid, (int)pid, sig);
1120 * long long munging:
1121 * The 32 bit ABI passes long longs in an odd even register pair.
1124 compat_ssize_t sys32_pread64(unsigned int fd, char __user *ubuf, compat_size_t count,
1125 u32 reg6, u32 poshi, u32 poslo)
1127 return sys_pread64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
1130 compat_ssize_t sys32_pwrite64(unsigned int fd, char __user *ubuf, compat_size_t count,
1131 u32 reg6, u32 poshi, u32 poslo)
1133 return sys_pwrite64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
1136 compat_ssize_t sys32_readahead(int fd, u32 r4, u32 offhi, u32 offlo, u32 count)
1138 return sys_readahead(fd, ((loff_t)offhi << 32) | offlo, count);
1141 asmlinkage int sys32_truncate64(const char __user * path, u32 reg4,
1142 unsigned long high, unsigned long low)
1144 return sys_truncate(path, (high << 32) | low);
1147 asmlinkage int sys32_ftruncate64(unsigned int fd, u32 reg4, unsigned long high,
1150 return sys_ftruncate(fd, (high << 32) | low);
1153 long ppc32_lookup_dcookie(u32 cookie_high, u32 cookie_low, char __user *buf,
1156 return sys_lookup_dcookie((u64)cookie_high << 32 | cookie_low,
1160 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low,
1161 size_t len, int advice)
1163 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len,
1167 long ppc32_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
1168 u32 len_high, u32 len_low)
1170 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low,
1171 (u64)len_high << 32 | len_low, advice);
1174 long ppc32_timer_create(clockid_t clock,
1175 struct compat_sigevent __user *ev32,
1176 timer_t __user *timer_id)
1181 mm_segment_t savefs;
1184 return sys_timer_create(clock, NULL, timer_id);
1186 if (get_compat_sigevent(&event, ev32))
1189 if (!access_ok(VERIFY_WRITE, timer_id, sizeof(timer_t)))
1194 /* The __user pointer casts are valid due to the set_fs() */
1195 err = sys_timer_create(clock,
1196 (sigevent_t __user *) &event,
1197 (timer_t __user *) &t);
1201 err = __put_user(t, timer_id);
1206 asmlinkage long sys32_add_key(const char __user *_type,
1207 const char __user *_description,
1208 const void __user *_payload,
1212 return sys_add_key(_type, _description, _payload, plen, ringid);
1215 asmlinkage long sys32_request_key(const char __user *_type,
1216 const char __user *_description,
1217 const char __user *_callout_info,
1220 return sys_request_key(_type, _description, _callout_info, destringid);