[PATCH] ppc64: sys_ppc32.c cleanups
[linux-2.6/zen-sources.git] / arch / ppc64 / kernel / sys_ppc32.c
blob9bd16cef0ed4513f5ffaa42508a1c38c3e0830dc
1 /*
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
9 * environment.
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>
20 #include <linux/fs.h>
21 #include <linux/mm.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>
37 #include <linux/in.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>
49 #include <asm/ipc.h>
50 #include <asm/uaccess.h>
51 #include <asm/unistd.h>
52 #include <asm/semaphore.h>
53 #include <asm/time.h>
54 #include <asm/mmu_context.h>
55 #include <asm/systemcfg.h>
57 #include "pci.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 {
64 u32 d_ino;
65 u32 d_offset;
66 unsigned short d_namlen;
67 char d_name[1];
70 struct readdir_callback32 {
71 struct old_linux_dirent32 __user * dirent;
72 int count;
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;
81 if (buf->count)
82 return -EINVAL;
83 buf->count++;
84 dirent = buf->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);
90 return 0;
93 asmlinkage int old32_readdir(unsigned int fd, struct old_linux_dirent32 __user *dirent, unsigned int count)
95 int error = -EBADF;
96 struct file * file;
97 struct readdir_callback32 buf;
99 file = fget(fd);
100 if (!file)
101 goto out;
103 buf.count = 0;
104 buf.dirent = dirent;
106 error = vfs_readdir(file, (filldir_t)fillonedir, &buf);
107 if (error < 0)
108 goto out_putf;
109 error = buf.count;
111 out_putf:
112 fput(file);
113 out:
114 return error;
117 struct linux_dirent32 {
118 u32 d_ino;
119 u32 d_off;
120 unsigned short d_reclen;
121 char d_name[1];
124 struct getdents_callback32 {
125 struct linux_dirent32 __user * current_dir;
126 struct linux_dirent32 __user * previous;
127 int count;
128 int error;
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)
140 return -EINVAL;
141 dirent = buf->previous;
142 if (dirent) {
143 if (__put_user(offset, &dirent->d_off))
144 goto efault;
146 dirent = buf->current_dir;
147 if (__put_user(ino, &dirent->d_ino))
148 goto efault;
149 if (__put_user(reclen, &dirent->d_reclen))
150 goto efault;
151 if (copy_to_user(dirent->d_name, name, namlen))
152 goto efault;
153 if (__put_user(0, dirent->d_name + namlen))
154 goto efault;
155 if (__put_user(d_type, (char __user *) dirent + reclen - 1))
156 goto efault;
157 buf->previous = dirent;
158 dirent = (void __user *)dirent + reclen;
159 buf->current_dir = dirent;
160 buf->count -= reclen;
161 return 0;
162 efault:
163 buf->error = -EFAULT;
164 return -EFAULT;
167 asmlinkage long sys32_getdents(unsigned int fd, struct linux_dirent32 __user *dirent,
168 unsigned int count)
170 struct file * file;
171 struct linux_dirent32 __user * lastdirent;
172 struct getdents_callback32 buf;
173 int error;
175 error = -EFAULT;
176 if (!access_ok(VERIFY_WRITE, dirent, count))
177 goto out;
179 error = -EBADF;
180 file = fget(fd);
181 if (!file)
182 goto out;
184 buf.current_dir = dirent;
185 buf.previous = NULL;
186 buf.count = count;
187 buf.error = 0;
189 error = vfs_readdir(file, (filldir_t)filldir, &buf);
190 if (error < 0)
191 goto out_putf;
192 error = buf.error;
193 lastdirent = buf.previous;
194 if (lastdirent) {
195 if (put_user(file->f_pos, &lastdirent->d_off))
196 error = -EFAULT;
197 else
198 error = count - buf.count;
201 out_putf:
202 fput(file);
203 out:
204 return error;
207 asmlinkage long ppc32_select(u32 n, compat_ulong_t __user *inp,
208 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
209 compat_uptr_t tvp_x)
211 /* sign extend n */
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)
217 long err;
219 if (stat->size > MAX_NON_LFS || !new_valid_dev(stat->dev) ||
220 !new_valid_dev(stat->rdev))
221 return -EOVERFLOW;
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]);
243 return err;
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. */
257 struct timex32 {
258 u32 modes;
259 s32 offset, freq, maxerror, esterror;
260 s32 status, constant, precision, tolerance;
261 struct compat_timeval time;
262 s32 tick;
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)
275 struct timex txc;
276 int ret;
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))
300 return -EFAULT;
302 ret = do_adjtimex(&txc);
304 /* adjust the conversion of TB to time of day to track adjtimex */
305 ppc_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))
327 ret = -EFAULT;
329 return ret;
332 asmlinkage long sys32_pause(void)
334 current->state = TASK_INTERRUPTIBLE;
335 schedule();
337 return -ERESTARTNOHAND;
340 static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
342 long usec;
344 if (!access_ok(VERIFY_READ, i, sizeof(*i)))
345 return -EFAULT;
346 if (__get_user(o->tv_sec, &i->tv_sec))
347 return -EFAULT;
348 if (__get_user(usec, &i->tv_usec))
349 return -EFAULT;
350 o->tv_nsec = usec * 1000;
351 return 0;
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)));
361 struct sysinfo32 {
362 s32 uptime;
363 u32 loads[3];
364 u32 totalram;
365 u32 freeram;
366 u32 sharedram;
367 u32 bufferram;
368 u32 totalswap;
369 u32 freeswap;
370 unsigned short procs;
371 unsigned short pad;
372 u32 totalhigh;
373 u32 freehigh;
374 u32 mem_unit;
375 char _f[20-2*sizeof(int)-sizeof(int)];
378 asmlinkage long sys32_sysinfo(struct sysinfo32 __user *info)
380 struct sysinfo s;
381 int ret, err;
382 int bitcount=0;
383 mm_segment_t old_fs = get_fs ();
385 /* The __user cast is valid due to set_fs() */
386 set_fs (KERNEL_DS);
387 ret = sys_sysinfo((struct sysinfo __user *)&s);
388 set_fs (old_fs);
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) {
395 s.mem_unit <<= 1;
396 bitcount++;
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);
422 if (err)
423 return -EFAULT;
425 return ret;
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)
437 if (tv) {
438 struct timeval ktv;
439 do_gettimeofday(&ktv);
440 if (put_tv32(tv, &ktv))
441 return -EFAULT;
443 if (tz) {
444 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
445 return -EFAULT;
448 return 0;
453 asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
455 struct timespec kts;
456 struct timezone ktz;
458 if (tv) {
459 if (get_ts32(&kts, tv))
460 return -EFAULT;
462 if (tz) {
463 if (copy_from_user(&ktz, tz, sizeof(ktz)))
464 return -EFAULT;
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,
472 u32 fifth)
474 int version;
476 version = call >> 16; /* hack for backward compatibility */
477 call &= 0xffff;
479 switch (call) {
481 case SEMTIMEDOP:
482 if (fifth)
483 /* sign extend semid */
484 return compat_sys_semtimedop((int)first,
485 compat_ptr(ptr), second,
486 compat_ptr(fifth));
487 /* else fall through for normal semop() */
488 case 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,
492 NULL);
493 case SEMGET:
494 /* sign extend key, nsems */
495 return sys_semget((int)first, (int)second, third);
496 case SEMCTL:
497 /* sign extend semid, semnum */
498 return compat_sys_semctl((int)first, (int)second, third,
499 compat_ptr(ptr));
501 case MSGSND:
502 /* sign extend msqid */
503 return compat_sys_msgsnd((int)first, (int)second, third,
504 compat_ptr(ptr));
505 case MSGRCV:
506 /* sign extend msqid, msgtyp */
507 return compat_sys_msgrcv((int)first, second, (int)fifth,
508 third, version, compat_ptr(ptr));
509 case MSGGET:
510 /* sign extend key */
511 return sys_msgget((int)first, second);
512 case MSGCTL:
513 /* sign extend msqid */
514 return compat_sys_msgctl((int)first, second, compat_ptr(ptr));
516 case SHMAT:
517 /* sign extend shmid */
518 return compat_sys_shmat((int)first, second, third, version,
519 compat_ptr(ptr));
520 case SHMDT:
521 return sys_shmdt(compat_ptr(ptr));
522 case SHMGET:
523 /* sign extend key_t */
524 return sys_shmget((int)first, second, third);
525 case SHMCTL:
526 /* sign extend shmid */
527 return compat_sys_shmctl((int)first, second, compat_ptr(ptr));
529 default:
530 return -ENOSYS;
533 return -ENOSYS;
535 #endif
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();
545 int ret;
546 off_t of;
547 off_t __user *up;
549 if (offset && get_user(of, offset))
550 return -EFAULT;
552 /* The __user pointer cast is valid because of the set_fs() */
553 set_fs(KERNEL_DS);
554 up = offset ? (off_t __user *) &of : NULL;
555 ret = sys_sendfile((int)out_fd, (int)in_fd, up, count);
556 set_fs(old_fs);
558 if (offset && put_user(of, offset))
559 return -EFAULT;
561 return ret;
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();
567 int ret;
568 loff_t lof;
569 loff_t __user *up;
571 if (offset && get_user(lof, offset))
572 return -EFAULT;
574 /* The __user pointer cast is valid because of the set_fs() */
575 set_fs(KERNEL_DS);
576 up = offset ? (loff_t __user *) &lof : NULL;
577 ret = sys_sendfile64(out_fd, in_fd, up, count);
578 set_fs(old_fs);
580 if (offset && put_user(lof, offset))
581 return -EFAULT;
583 return ret;
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)
590 int error;
591 char * filename;
593 filename = getname((char __user *) a0);
594 error = PTR_ERR(filename);
595 if (IS_ERR(filename))
596 goto out;
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);
602 if (error == 0) {
603 task_lock(current);
604 current->ptrace &= ~PT_DTRACE;
605 task_unlock(current);
607 putname(filename);
609 out:
610 return error;
613 /* Set up a thread for executing a new program. */
614 void start_thread32(struct pt_regs* regs, unsigned long nip, unsigned long sp)
616 set_fs(USER_DS);
619 * If we exec out of a kernel thread then thread.regs will not be
620 * set. Do it now.
622 if (!current->thread.regs) {
623 unsigned long childregs = (unsigned long)current->thread_info +
624 THREAD_SIZE;
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.
633 regs->gpr[2] = 0;
635 regs->nip = nip;
636 regs->gpr[1] = sp;
637 regs->msr = MSR_USER32;
638 #ifndef CONFIG_SMP
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
645 #ifndef CONFIG_SMP
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)
680 struct timespec t;
681 int ret;
682 mm_segment_t old_fs = get_fs ();
684 /* The __user pointer cast is valid because of the set_fs() */
685 set_fs (KERNEL_DS);
686 ret = sys_sched_rr_get_interval((int)pid, (struct timespec __user *) &t);
687 set_fs (old_fs);
688 if (put_compat_timespec(&t, interval))
689 return -EFAULT;
690 return ret;
693 asmlinkage int sys32_pciconfig_read(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf)
695 return sys_pciconfig_read((unsigned long) bus,
696 (unsigned long) dfn,
697 (unsigned long) off,
698 (unsigned long) len,
699 compat_ptr(ubuf));
702 asmlinkage int sys32_pciconfig_write(u32 bus, u32 dfn, u32 off, u32 len, u32 ubuf)
704 return sys_pciconfig_write((unsigned long) bus,
705 (unsigned long) dfn,
706 (unsigned long) off,
707 (unsigned long) len,
708 compat_ptr(ubuf));
711 #define IOBASE_BRIDGE_NUMBER 0
712 #define IOBASE_MEMORY 1
713 #define IOBASE_IO 2
714 #define IOBASE_ISA_IO 3
715 #define IOBASE_ISA_MEM 4
717 asmlinkage int sys32_pciconfig_iobase(u32 which, u32 in_bus, u32 in_devfn)
719 #ifdef CONFIG_PCI
720 struct pci_controller* hose;
721 struct list_head *ln;
722 struct pci_bus *bus = NULL;
723 struct device_node *hose_node;
725 /* Argh ! Please forgive me for that hack, but that's the
726 * simplest way to get existing XFree to not lockup on some
727 * G5 machines... So when something asks for bus 0 io base
728 * (bus 0 is HT root), we return the AGP one instead.
730 #ifdef CONFIG_PPC_PMAC
731 if (systemcfg->platform == PLATFORM_POWERMAC &&
732 machine_is_compatible("MacRISC4"))
733 if (in_bus == 0)
734 in_bus = 0xf0;
735 #endif /* CONFIG_PPC_PMAC */
737 /* That syscall isn't quite compatible with PCI domains, but it's
738 * used on pre-domains setup. We return the first match
741 for (ln = pci_root_buses.next; ln != &pci_root_buses; ln = ln->next) {
742 bus = pci_bus_b(ln);
743 if (in_bus >= bus->number && in_bus < (bus->number + bus->subordinate))
744 break;
745 bus = NULL;
747 if (bus == NULL || bus->sysdata == NULL)
748 return -ENODEV;
750 hose_node = (struct device_node *)bus->sysdata;
751 hose = hose_node->phb;
753 switch (which) {
754 case IOBASE_BRIDGE_NUMBER:
755 return (long)hose->first_busno;
756 case IOBASE_MEMORY:
757 return (long)hose->pci_mem_offset;
758 case IOBASE_IO:
759 return (long)hose->io_base_phys;
760 case IOBASE_ISA_IO:
761 return (long)isa_io_base;
762 case IOBASE_ISA_MEM:
763 return -EINVAL;
765 #endif /* CONFIG_PCI */
766 return -EOPNOTSUPP;
770 /* Note: it is necessary to treat mode as an unsigned int,
771 * with the corresponding cast to a signed int to insure that the
772 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
773 * and the register representation of a signed int (msr in 64-bit mode) is performed.
775 asmlinkage long sys32_access(const char __user * filename, u32 mode)
777 return sys_access(filename, (int)mode);
781 /* Note: it is necessary to treat mode as an unsigned int,
782 * with the corresponding cast to a signed int to insure that the
783 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
784 * and the register representation of a signed int (msr in 64-bit mode) is performed.
786 asmlinkage long sys32_creat(const char __user * pathname, u32 mode)
788 return sys_creat(pathname, (int)mode);
792 /* Note: it is necessary to treat pid and options as unsigned ints,
793 * with the corresponding cast to a signed int to insure that the
794 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
795 * and the register representation of a signed int (msr in 64-bit mode) is performed.
797 asmlinkage long sys32_waitpid(u32 pid, unsigned int __user * stat_addr, u32 options)
799 return sys_waitpid((int)pid, stat_addr, (int)options);
803 /* Note: it is necessary to treat gidsetsize as an unsigned int,
804 * with the corresponding cast to a signed int to insure that the
805 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
806 * and the register representation of a signed int (msr in 64-bit mode) is performed.
808 asmlinkage long sys32_getgroups(u32 gidsetsize, gid_t __user *grouplist)
810 return sys_getgroups((int)gidsetsize, grouplist);
814 /* Note: it is necessary to treat pid as an unsigned int,
815 * with the corresponding cast to a signed int to insure that the
816 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
817 * and the register representation of a signed int (msr in 64-bit mode) is performed.
819 asmlinkage long sys32_getpgid(u32 pid)
821 return sys_getpgid((int)pid);
825 /* Note: it is necessary to treat which and who as unsigned ints,
826 * with the corresponding cast to a signed int to insure that the
827 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
828 * and the register representation of a signed int (msr in 64-bit mode) is performed.
830 asmlinkage long sys32_getpriority(u32 which, u32 who)
832 return sys_getpriority((int)which, (int)who);
836 /* Note: it is necessary to treat pid as an unsigned int,
837 * with the corresponding cast to a signed int to insure that the
838 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
839 * and the register representation of a signed int (msr in 64-bit mode) is performed.
841 asmlinkage long sys32_getsid(u32 pid)
843 return sys_getsid((int)pid);
847 /* Note: it is necessary to treat pid and sig as unsigned ints,
848 * with the corresponding cast to a signed int to insure that the
849 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
850 * and the register representation of a signed int (msr in 64-bit mode) is performed.
852 asmlinkage long sys32_kill(u32 pid, u32 sig)
854 return sys_kill((int)pid, (int)sig);
858 /* Note: it is necessary to treat mode as an unsigned int,
859 * with the corresponding cast to a signed int to insure that the
860 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
861 * and the register representation of a signed int (msr in 64-bit mode) is performed.
863 asmlinkage long sys32_mkdir(const char __user * pathname, u32 mode)
865 return sys_mkdir(pathname, (int)mode);
868 long sys32_nice(u32 increment)
870 /* sign extend increment */
871 return sys_nice((int)increment);
874 off_t ppc32_lseek(unsigned int fd, u32 offset, unsigned int origin)
876 /* sign extend n */
877 return sys_lseek(fd, (int)offset, origin);
881 * This is just a version for 32-bit applications which does
882 * not force O_LARGEFILE on.
884 asmlinkage long sys32_open(const char __user * filename, int flags, int mode)
886 char * tmp;
887 int fd, error;
889 tmp = getname(filename);
890 fd = PTR_ERR(tmp);
891 if (!IS_ERR(tmp)) {
892 fd = get_unused_fd();
893 if (fd >= 0) {
894 struct file * f = filp_open(tmp, flags, mode);
895 error = PTR_ERR(f);
896 if (IS_ERR(f))
897 goto out_error;
898 fd_install(fd, f);
900 out:
901 putname(tmp);
903 return fd;
905 out_error:
906 put_unused_fd(fd);
907 fd = error;
908 goto out;
911 /* Note: it is necessary to treat bufsiz as an unsigned int,
912 * with the corresponding cast to a signed int to insure that the
913 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
914 * and the register representation of a signed int (msr in 64-bit mode) is performed.
916 asmlinkage long sys32_readlink(const char __user * path, char __user * buf, u32 bufsiz)
918 return sys_readlink(path, buf, (int)bufsiz);
921 /* Note: it is necessary to treat option as an unsigned int,
922 * with the corresponding cast to a signed int to insure that the
923 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
924 * and the register representation of a signed int (msr in 64-bit mode) is performed.
926 asmlinkage long sys32_sched_get_priority_max(u32 policy)
928 return sys_sched_get_priority_max((int)policy);
932 /* Note: it is necessary to treat policy as an unsigned int,
933 * with the corresponding cast to a signed int to insure that the
934 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
935 * and the register representation of a signed int (msr in 64-bit mode) is performed.
937 asmlinkage long sys32_sched_get_priority_min(u32 policy)
939 return sys_sched_get_priority_min((int)policy);
943 /* Note: it is necessary to treat pid as an unsigned int,
944 * with the corresponding cast to a signed int to insure that the
945 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
946 * and the register representation of a signed int (msr in 64-bit mode) is performed.
948 asmlinkage long sys32_sched_getparam(u32 pid, struct sched_param __user *param)
950 return sys_sched_getparam((int)pid, param);
954 /* Note: it is necessary to treat pid as an unsigned int,
955 * with the corresponding cast to a signed int to insure that the
956 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
957 * and the register representation of a signed int (msr in 64-bit mode) is performed.
959 asmlinkage long sys32_sched_getscheduler(u32 pid)
961 return sys_sched_getscheduler((int)pid);
965 /* Note: it is necessary to treat pid as an unsigned int,
966 * with the corresponding cast to a signed int to insure that the
967 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
968 * and the register representation of a signed int (msr in 64-bit mode) is performed.
970 asmlinkage long sys32_sched_setparam(u32 pid, struct sched_param __user *param)
972 return sys_sched_setparam((int)pid, param);
976 /* Note: it is necessary to treat pid and policy as unsigned ints,
977 * with the corresponding cast to a signed int to insure that the
978 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
979 * and the register representation of a signed int (msr in 64-bit mode) is performed.
981 asmlinkage long sys32_sched_setscheduler(u32 pid, u32 policy, struct sched_param __user *param)
983 return sys_sched_setscheduler((int)pid, (int)policy, param);
987 /* Note: it is necessary to treat len as an unsigned int,
988 * with the corresponding cast to a signed int to insure that the
989 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
990 * and the register representation of a signed int (msr in 64-bit mode) is performed.
992 asmlinkage long sys32_setdomainname(char __user *name, u32 len)
994 return sys_setdomainname(name, (int)len);
998 /* Note: it is necessary to treat gidsetsize as an unsigned int,
999 * with the corresponding cast to a signed int to insure that the
1000 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1001 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1003 asmlinkage long sys32_setgroups(u32 gidsetsize, gid_t __user *grouplist)
1005 return sys_setgroups((int)gidsetsize, grouplist);
1009 asmlinkage long sys32_sethostname(char __user *name, u32 len)
1011 /* sign extend len */
1012 return sys_sethostname(name, (int)len);
1016 /* Note: it is necessary to treat pid and pgid as unsigned ints,
1017 * with the corresponding cast to a signed int to insure that the
1018 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1019 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1021 asmlinkage long sys32_setpgid(u32 pid, u32 pgid)
1023 return sys_setpgid((int)pid, (int)pgid);
1027 long sys32_setpriority(u32 which, u32 who, u32 niceval)
1029 /* sign extend which, who and niceval */
1030 return sys_setpriority((int)which, (int)who, (int)niceval);
1033 /* Note: it is necessary to treat newmask as an unsigned int,
1034 * with the corresponding cast to a signed int to insure that the
1035 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1036 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1038 asmlinkage long sys32_ssetmask(u32 newmask)
1040 return sys_ssetmask((int) newmask);
1043 asmlinkage long sys32_syslog(u32 type, char __user * buf, u32 len)
1045 /* sign extend len */
1046 return sys_syslog(type, buf, (int)len);
1050 /* Note: it is necessary to treat mask as an unsigned int,
1051 * with the corresponding cast to a signed int to insure that the
1052 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1053 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1055 asmlinkage long sys32_umask(u32 mask)
1057 return sys_umask((int)mask);
1060 #ifdef CONFIG_SYSCTL
1061 struct __sysctl_args32 {
1062 u32 name;
1063 int nlen;
1064 u32 oldval;
1065 u32 oldlenp;
1066 u32 newval;
1067 u32 newlen;
1068 u32 __unused[4];
1071 asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
1073 struct __sysctl_args32 tmp;
1074 int error;
1075 size_t oldlen;
1076 size_t __user *oldlenp = NULL;
1077 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
1079 if (copy_from_user(&tmp, args, sizeof(tmp)))
1080 return -EFAULT;
1082 if (tmp.oldval && tmp.oldlenp) {
1083 /* Duh, this is ugly and might not work if sysctl_args
1084 is in read-only memory, but do_sysctl does indirectly
1085 a lot of uaccess in both directions and we'd have to
1086 basically copy the whole sysctl.c here, and
1087 glibc's __sysctl uses rw memory for the structure
1088 anyway. */
1089 oldlenp = (size_t __user *)addr;
1090 if (get_user(oldlen, (compat_size_t __user *)compat_ptr(tmp.oldlenp)) ||
1091 put_user(oldlen, oldlenp))
1092 return -EFAULT;
1095 lock_kernel();
1096 error = do_sysctl(compat_ptr(tmp.name), tmp.nlen,
1097 compat_ptr(tmp.oldval), oldlenp,
1098 compat_ptr(tmp.newval), tmp.newlen);
1099 unlock_kernel();
1100 if (oldlenp) {
1101 if (!error) {
1102 if (get_user(oldlen, oldlenp) ||
1103 put_user(oldlen, (compat_size_t __user *)compat_ptr(tmp.oldlenp)))
1104 error = -EFAULT;
1106 copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
1108 return error;
1110 #endif
1112 asmlinkage int sys32_uname(struct old_utsname __user * name)
1114 int err = 0;
1116 down_read(&uts_sem);
1117 if (copy_to_user(name, &system_utsname, sizeof(*name)))
1118 err = -EFAULT;
1119 up_read(&uts_sem);
1120 if (!err && personality(current->personality) == PER_LINUX32) {
1121 /* change "ppc64" to "ppc" */
1122 if (__put_user(0, name->machine + 3)
1123 || __put_user(0, name->machine + 4))
1124 err = -EFAULT;
1126 return err;
1129 asmlinkage int sys32_olduname(struct oldold_utsname __user * name)
1131 int error;
1133 if (!access_ok(VERIFY_WRITE,name,sizeof(struct oldold_utsname)))
1134 return -EFAULT;
1136 down_read(&uts_sem);
1137 error = __copy_to_user(&name->sysname,&system_utsname.sysname,__OLD_UTS_LEN);
1138 error |= __put_user(0,name->sysname+__OLD_UTS_LEN);
1139 error |= __copy_to_user(&name->nodename,&system_utsname.nodename,__OLD_UTS_LEN);
1140 error |= __put_user(0,name->nodename+__OLD_UTS_LEN);
1141 error |= __copy_to_user(&name->release,&system_utsname.release,__OLD_UTS_LEN);
1142 error |= __put_user(0,name->release+__OLD_UTS_LEN);
1143 error |= __copy_to_user(&name->version,&system_utsname.version,__OLD_UTS_LEN);
1144 error |= __put_user(0,name->version+__OLD_UTS_LEN);
1145 error |= __copy_to_user(&name->machine,&system_utsname.machine,__OLD_UTS_LEN);
1146 error |= __put_user(0,name->machine+__OLD_UTS_LEN);
1147 if (personality(current->personality) == PER_LINUX32) {
1148 /* change "ppc64" to "ppc" */
1149 error |= __put_user(0, name->machine + 3);
1150 error |= __put_user(0, name->machine + 4);
1153 up_read(&uts_sem);
1155 error = error ? -EFAULT : 0;
1157 return error;
1160 unsigned long sys32_mmap2(unsigned long addr, size_t len,
1161 unsigned long prot, unsigned long flags,
1162 unsigned long fd, unsigned long pgoff)
1164 /* This should remain 12 even if PAGE_SIZE changes */
1165 return sys_mmap(addr, len, prot, flags, fd, pgoff << 12);
1168 int get_compat_timeval(struct timeval *tv, struct compat_timeval __user *ctv)
1170 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
1171 __get_user(tv->tv_sec, &ctv->tv_sec) ||
1172 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
1175 asmlinkage long sys32_utimes(char __user *filename, struct compat_timeval __user *tvs)
1177 struct timeval ktvs[2], *ptr;
1179 ptr = NULL;
1180 if (tvs) {
1181 if (get_compat_timeval(&ktvs[0], &tvs[0]) ||
1182 get_compat_timeval(&ktvs[1], &tvs[1]))
1183 return -EFAULT;
1184 ptr = ktvs;
1187 return do_utimes(filename, ptr);
1190 long sys32_tgkill(u32 tgid, u32 pid, int sig)
1192 /* sign extend tgid, pid */
1193 return sys_tgkill((int)tgid, (int)pid, sig);
1197 * long long munging:
1198 * The 32 bit ABI passes long longs in an odd even register pair.
1201 compat_ssize_t sys32_pread64(unsigned int fd, char __user *ubuf, compat_size_t count,
1202 u32 reg6, u32 poshi, u32 poslo)
1204 return sys_pread64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
1207 compat_ssize_t sys32_pwrite64(unsigned int fd, char __user *ubuf, compat_size_t count,
1208 u32 reg6, u32 poshi, u32 poslo)
1210 return sys_pwrite64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
1213 compat_ssize_t sys32_readahead(int fd, u32 r4, u32 offhi, u32 offlo, u32 count)
1215 return sys_readahead(fd, ((loff_t)offhi << 32) | offlo, count);
1218 asmlinkage int sys32_truncate64(const char __user * path, u32 reg4,
1219 unsigned long high, unsigned long low)
1221 return sys_truncate(path, (high << 32) | low);
1224 asmlinkage int sys32_ftruncate64(unsigned int fd, u32 reg4, unsigned long high,
1225 unsigned long low)
1227 return sys_ftruncate(fd, (high << 32) | low);
1230 long ppc32_lookup_dcookie(u32 cookie_high, u32 cookie_low, char __user *buf,
1231 size_t len)
1233 return sys_lookup_dcookie((u64)cookie_high << 32 | cookie_low,
1234 buf, len);
1237 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low,
1238 size_t len, int advice)
1240 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len,
1241 advice);
1244 long ppc32_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
1245 u32 len_high, u32 len_low)
1247 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low,
1248 (u64)len_high << 32 | len_low, advice);
1251 long ppc32_timer_create(clockid_t clock,
1252 struct compat_sigevent __user *ev32,
1253 timer_t __user *timer_id)
1255 sigevent_t event;
1256 timer_t t;
1257 long err;
1258 mm_segment_t savefs;
1260 if (ev32 == NULL)
1261 return sys_timer_create(clock, NULL, timer_id);
1263 if (get_compat_sigevent(&event, ev32))
1264 return -EFAULT;
1266 if (!access_ok(VERIFY_WRITE, timer_id, sizeof(timer_t)))
1267 return -EFAULT;
1269 savefs = get_fs();
1270 set_fs(KERNEL_DS);
1271 /* The __user pointer casts are valid due to the set_fs() */
1272 err = sys_timer_create(clock,
1273 (sigevent_t __user *) &event,
1274 (timer_t __user *) &t);
1275 set_fs(savefs);
1277 if (err == 0)
1278 err = __put_user(t, timer_id);
1280 return err;
1283 asmlinkage long sys32_add_key(const char __user *_type,
1284 const char __user *_description,
1285 const void __user *_payload,
1286 u32 plen,
1287 u32 ringid)
1289 return sys_add_key(_type, _description, _payload, plen, ringid);
1292 asmlinkage long sys32_request_key(const char __user *_type,
1293 const char __user *_description,
1294 const char __user *_callout_info,
1295 u32 destringid)
1297 return sys_request_key(_type, _description, _callout_info, destringid);