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/slab.h>
34 #include <linux/uio.h>
35 #include <linux/aio.h>
36 #include <linux/nfs_fs.h>
37 #include <linux/module.h>
38 #include <linux/sunrpc/svc.h>
39 #include <linux/nfsd/nfsd.h>
40 #include <linux/nfsd/cache.h>
41 #include <linux/nfsd/xdr.h>
42 #include <linux/nfsd/syscall.h>
43 #include <linux/poll.h>
44 #include <linux/personality.h>
45 #include <linux/stat.h>
46 #include <linux/filter.h>
47 #include <linux/highmem.h>
48 #include <linux/highuid.h>
49 #include <linux/mman.h>
50 #include <linux/ipv6.h>
52 #include <linux/icmpv6.h>
53 #include <linux/syscalls.h>
54 #include <linux/unistd.h>
55 #include <linux/sysctl.h>
56 #include <linux/binfmts.h>
57 #include <linux/dnotify.h>
58 #include <linux/security.h>
59 #include <linux/compat.h>
60 #include <linux/ptrace.h>
61 #include <linux/aio_abi.h>
62 #include <linux/elf.h>
67 #include <asm/ptrace.h>
68 #include <asm/types.h>
70 #include <asm/uaccess.h>
71 #include <asm/unistd.h>
72 #include <asm/semaphore.h>
73 #include <asm/ppcdebug.h>
75 #include <asm/mmu_context.h>
76 #include <asm/systemcfg.h>
80 /* readdir & getdents */
81 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
82 #define ROUND_UP(x) (((x)+sizeof(u32)-1) & ~(sizeof(u32)-1))
84 struct old_linux_dirent32
{
87 unsigned short d_namlen
;
91 struct readdir_callback32
{
92 struct old_linux_dirent32 __user
* dirent
;
96 static int fillonedir(void * __buf
, const char * name
, int namlen
,
97 off_t offset
, ino_t ino
, unsigned int d_type
)
99 struct readdir_callback32
* buf
= (struct readdir_callback32
*) __buf
;
100 struct old_linux_dirent32 __user
* dirent
;
105 dirent
= buf
->dirent
;
106 put_user(ino
, &dirent
->d_ino
);
107 put_user(offset
, &dirent
->d_offset
);
108 put_user(namlen
, &dirent
->d_namlen
);
109 copy_to_user(dirent
->d_name
, name
, namlen
);
110 put_user(0, dirent
->d_name
+ namlen
);
114 asmlinkage
int old32_readdir(unsigned int fd
, struct old_linux_dirent32 __user
*dirent
, unsigned int count
)
118 struct readdir_callback32 buf
;
127 error
= vfs_readdir(file
, (filldir_t
)fillonedir
, &buf
);
138 struct linux_dirent32
{
141 unsigned short d_reclen
;
145 struct getdents_callback32
{
146 struct linux_dirent32 __user
* current_dir
;
147 struct linux_dirent32 __user
* previous
;
152 static int filldir(void * __buf
, const char * name
, int namlen
, off_t offset
,
153 ino_t ino
, unsigned int d_type
)
155 struct linux_dirent32 __user
* dirent
;
156 struct getdents_callback32
* buf
= (struct getdents_callback32
*) __buf
;
157 int reclen
= ROUND_UP(NAME_OFFSET(dirent
) + namlen
+ 2);
159 buf
->error
= -EINVAL
; /* only used if we fail.. */
160 if (reclen
> buf
->count
)
162 dirent
= buf
->previous
;
164 if (__put_user(offset
, &dirent
->d_off
))
167 dirent
= buf
->current_dir
;
168 if (__put_user(ino
, &dirent
->d_ino
))
170 if (__put_user(reclen
, &dirent
->d_reclen
))
172 if (copy_to_user(dirent
->d_name
, name
, namlen
))
174 if (__put_user(0, dirent
->d_name
+ namlen
))
176 if (__put_user(d_type
, (char __user
*) dirent
+ reclen
- 1))
178 buf
->previous
= dirent
;
179 dirent
= (void __user
*)dirent
+ reclen
;
180 buf
->current_dir
= dirent
;
181 buf
->count
-= reclen
;
184 buf
->error
= -EFAULT
;
188 asmlinkage
long sys32_getdents(unsigned int fd
, struct linux_dirent32 __user
*dirent
,
192 struct linux_dirent32 __user
* lastdirent
;
193 struct getdents_callback32 buf
;
197 if (!access_ok(VERIFY_WRITE
, dirent
, count
))
205 buf
.current_dir
= dirent
;
210 error
= vfs_readdir(file
, (filldir_t
)filldir
, &buf
);
214 lastdirent
= buf
.previous
;
216 if (put_user(file
->f_pos
, &lastdirent
->d_off
))
219 error
= count
- buf
.count
;
228 asmlinkage
long ppc32_select(u32 n
, compat_ulong_t __user
*inp
,
229 compat_ulong_t __user
*outp
, compat_ulong_t __user
*exp
,
233 return compat_sys_select((int)n
, inp
, outp
, exp
, compat_ptr(tvp_x
));
236 int cp_compat_stat(struct kstat
*stat
, struct compat_stat __user
*statbuf
)
240 if (stat
->size
> MAX_NON_LFS
|| !new_valid_dev(stat
->dev
) ||
241 !new_valid_dev(stat
->rdev
))
244 err
= access_ok(VERIFY_WRITE
, statbuf
, sizeof(*statbuf
)) ? 0 : -EFAULT
;
245 err
|= __put_user(new_encode_dev(stat
->dev
), &statbuf
->st_dev
);
246 err
|= __put_user(stat
->ino
, &statbuf
->st_ino
);
247 err
|= __put_user(stat
->mode
, &statbuf
->st_mode
);
248 err
|= __put_user(stat
->nlink
, &statbuf
->st_nlink
);
249 err
|= __put_user(stat
->uid
, &statbuf
->st_uid
);
250 err
|= __put_user(stat
->gid
, &statbuf
->st_gid
);
251 err
|= __put_user(new_encode_dev(stat
->rdev
), &statbuf
->st_rdev
);
252 err
|= __put_user(stat
->size
, &statbuf
->st_size
);
253 err
|= __put_user(stat
->atime
.tv_sec
, &statbuf
->st_atime
);
254 err
|= __put_user(stat
->atime
.tv_nsec
, &statbuf
->st_atime_nsec
);
255 err
|= __put_user(stat
->mtime
.tv_sec
, &statbuf
->st_mtime
);
256 err
|= __put_user(stat
->mtime
.tv_nsec
, &statbuf
->st_mtime_nsec
);
257 err
|= __put_user(stat
->ctime
.tv_sec
, &statbuf
->st_ctime
);
258 err
|= __put_user(stat
->ctime
.tv_nsec
, &statbuf
->st_ctime_nsec
);
259 err
|= __put_user(stat
->blksize
, &statbuf
->st_blksize
);
260 err
|= __put_user(stat
->blocks
, &statbuf
->st_blocks
);
261 err
|= __put_user(0, &statbuf
->__unused4
[0]);
262 err
|= __put_user(0, &statbuf
->__unused4
[1]);
267 /* Note: it is necessary to treat option as an unsigned int,
268 * with the corresponding cast to a signed int to insure that the
269 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
270 * and the register representation of a signed int (msr in 64-bit mode) is performed.
272 asmlinkage
long sys32_sysfs(u32 option
, u32 arg1
, u32 arg2
)
274 return sys_sysfs((int)option
, arg1
, arg2
);
277 /* Handle adjtimex compatibility. */
280 s32 offset
, freq
, maxerror
, esterror
;
281 s32 status
, constant
, precision
, tolerance
;
282 struct compat_timeval time
;
284 s32 ppsfreq
, jitter
, shift
, stabil
;
285 s32 jitcnt
, calcnt
, errcnt
, stbcnt
;
286 s32
:32; s32
:32; s32
:32; s32
:32;
287 s32
:32; s32
:32; s32
:32; s32
:32;
288 s32
:32; s32
:32; s32
:32; s32
:32;
291 extern int do_adjtimex(struct timex
*);
292 extern void ppc_adjtimex(void);
294 asmlinkage
long sys32_adjtimex(struct timex32 __user
*utp
)
299 memset(&txc
, 0, sizeof(struct timex
));
301 if(get_user(txc
.modes
, &utp
->modes
) ||
302 __get_user(txc
.offset
, &utp
->offset
) ||
303 __get_user(txc
.freq
, &utp
->freq
) ||
304 __get_user(txc
.maxerror
, &utp
->maxerror
) ||
305 __get_user(txc
.esterror
, &utp
->esterror
) ||
306 __get_user(txc
.status
, &utp
->status
) ||
307 __get_user(txc
.constant
, &utp
->constant
) ||
308 __get_user(txc
.precision
, &utp
->precision
) ||
309 __get_user(txc
.tolerance
, &utp
->tolerance
) ||
310 __get_user(txc
.time
.tv_sec
, &utp
->time
.tv_sec
) ||
311 __get_user(txc
.time
.tv_usec
, &utp
->time
.tv_usec
) ||
312 __get_user(txc
.tick
, &utp
->tick
) ||
313 __get_user(txc
.ppsfreq
, &utp
->ppsfreq
) ||
314 __get_user(txc
.jitter
, &utp
->jitter
) ||
315 __get_user(txc
.shift
, &utp
->shift
) ||
316 __get_user(txc
.stabil
, &utp
->stabil
) ||
317 __get_user(txc
.jitcnt
, &utp
->jitcnt
) ||
318 __get_user(txc
.calcnt
, &utp
->calcnt
) ||
319 __get_user(txc
.errcnt
, &utp
->errcnt
) ||
320 __get_user(txc
.stbcnt
, &utp
->stbcnt
))
323 ret
= do_adjtimex(&txc
);
325 /* adjust the conversion of TB to time of day to track adjtimex */
328 if(put_user(txc
.modes
, &utp
->modes
) ||
329 __put_user(txc
.offset
, &utp
->offset
) ||
330 __put_user(txc
.freq
, &utp
->freq
) ||
331 __put_user(txc
.maxerror
, &utp
->maxerror
) ||
332 __put_user(txc
.esterror
, &utp
->esterror
) ||
333 __put_user(txc
.status
, &utp
->status
) ||
334 __put_user(txc
.constant
, &utp
->constant
) ||
335 __put_user(txc
.precision
, &utp
->precision
) ||
336 __put_user(txc
.tolerance
, &utp
->tolerance
) ||
337 __put_user(txc
.time
.tv_sec
, &utp
->time
.tv_sec
) ||
338 __put_user(txc
.time
.tv_usec
, &utp
->time
.tv_usec
) ||
339 __put_user(txc
.tick
, &utp
->tick
) ||
340 __put_user(txc
.ppsfreq
, &utp
->ppsfreq
) ||
341 __put_user(txc
.jitter
, &utp
->jitter
) ||
342 __put_user(txc
.shift
, &utp
->shift
) ||
343 __put_user(txc
.stabil
, &utp
->stabil
) ||
344 __put_user(txc
.jitcnt
, &utp
->jitcnt
) ||
345 __put_user(txc
.calcnt
, &utp
->calcnt
) ||
346 __put_user(txc
.errcnt
, &utp
->errcnt
) ||
347 __put_user(txc
.stbcnt
, &utp
->stbcnt
))
354 /* These are here just in case some old sparc32 binary calls it. */
355 asmlinkage
long sys32_pause(void)
357 current
->state
= TASK_INTERRUPTIBLE
;
360 return -ERESTARTNOHAND
;
365 static inline long get_ts32(struct timespec
*o
, struct compat_timeval __user
*i
)
369 if (!access_ok(VERIFY_READ
, i
, sizeof(*i
)))
371 if (__get_user(o
->tv_sec
, &i
->tv_sec
))
373 if (__get_user(usec
, &i
->tv_usec
))
375 o
->tv_nsec
= usec
* 1000;
379 static inline long put_tv32(struct compat_timeval __user
*o
, struct timeval
*i
)
381 return (!access_ok(VERIFY_WRITE
, o
, sizeof(*o
)) ||
382 (__put_user(i
->tv_sec
, &o
->tv_sec
) |
383 __put_user(i
->tv_usec
, &o
->tv_usec
)));
395 unsigned short procs
;
400 char _f
[20-2*sizeof(int)-sizeof(int)];
403 asmlinkage
long sys32_sysinfo(struct sysinfo32 __user
*info
)
408 mm_segment_t old_fs
= get_fs ();
410 /* The __user cast is valid due to set_fs() */
412 ret
= sys_sysinfo((struct sysinfo __user
*)&s
);
415 /* Check to see if any memory value is too large for 32-bit and
416 * scale down if needed.
418 if ((s
.totalram
>> 32) || (s
.totalswap
>> 32)) {
419 while (s
.mem_unit
< PAGE_SIZE
) {
423 s
.totalram
>>=bitcount
;
424 s
.freeram
>>= bitcount
;
425 s
.sharedram
>>= bitcount
;
426 s
.bufferram
>>= bitcount
;
427 s
.totalswap
>>= bitcount
;
428 s
.freeswap
>>= bitcount
;
429 s
.totalhigh
>>= bitcount
;
430 s
.freehigh
>>= bitcount
;
433 err
= put_user (s
.uptime
, &info
->uptime
);
434 err
|= __put_user (s
.loads
[0], &info
->loads
[0]);
435 err
|= __put_user (s
.loads
[1], &info
->loads
[1]);
436 err
|= __put_user (s
.loads
[2], &info
->loads
[2]);
437 err
|= __put_user (s
.totalram
, &info
->totalram
);
438 err
|= __put_user (s
.freeram
, &info
->freeram
);
439 err
|= __put_user (s
.sharedram
, &info
->sharedram
);
440 err
|= __put_user (s
.bufferram
, &info
->bufferram
);
441 err
|= __put_user (s
.totalswap
, &info
->totalswap
);
442 err
|= __put_user (s
.freeswap
, &info
->freeswap
);
443 err
|= __put_user (s
.procs
, &info
->procs
);
444 err
|= __put_user (s
.totalhigh
, &info
->totalhigh
);
445 err
|= __put_user (s
.freehigh
, &info
->freehigh
);
446 err
|= __put_user (s
.mem_unit
, &info
->mem_unit
);
456 /* Translations due to time_t size differences. Which affects all
457 sorts of things, like timeval and itimerval. */
458 extern struct timezone sys_tz
;
460 asmlinkage
long sys32_gettimeofday(struct compat_timeval __user
*tv
, struct timezone __user
*tz
)
464 do_gettimeofday(&ktv
);
465 if (put_tv32(tv
, &ktv
))
469 if (copy_to_user(tz
, &sys_tz
, sizeof(sys_tz
)))
478 asmlinkage
long sys32_settimeofday(struct compat_timeval __user
*tv
, struct timezone __user
*tz
)
484 if (get_ts32(&kts
, tv
))
488 if (copy_from_user(&ktz
, tz
, sizeof(ktz
)))
492 return do_sys_settimeofday(tv
? &kts
: NULL
, tz
? &ktz
: NULL
);
495 #ifdef CONFIG_SYSVIPC
496 long sys32_ipc(u32 call
, u32 first
, u32 second
, u32 third
, compat_uptr_t ptr
,
501 version
= call
>> 16; /* hack for backward compatibility */
508 /* sign extend semid */
509 return compat_sys_semtimedop((int)first
,
510 compat_ptr(ptr
), second
,
512 /* else fall through for normal semop() */
514 /* struct sembuf is the same on 32 and 64bit :)) */
515 /* sign extend semid */
516 return sys_semtimedop((int)first
, compat_ptr(ptr
), second
,
519 /* sign extend key, nsems */
520 return sys_semget((int)first
, (int)second
, third
);
522 /* sign extend semid, semnum */
523 return compat_sys_semctl((int)first
, (int)second
, third
,
527 /* sign extend msqid */
528 return compat_sys_msgsnd((int)first
, (int)second
, third
,
531 /* sign extend msqid, msgtyp */
532 return compat_sys_msgrcv((int)first
, second
, (int)fifth
,
533 third
, version
, compat_ptr(ptr
));
535 /* sign extend key */
536 return sys_msgget((int)first
, second
);
538 /* sign extend msqid */
539 return compat_sys_msgctl((int)first
, second
, compat_ptr(ptr
));
542 /* sign extend shmid */
543 return compat_sys_shmat((int)first
, second
, third
, version
,
546 return sys_shmdt(compat_ptr(ptr
));
548 /* sign extend key_t */
549 return sys_shmget((int)first
, second
, third
);
551 /* sign extend shmid */
552 return compat_sys_shmctl((int)first
, second
, compat_ptr(ptr
));
562 /* Note: it is necessary to treat out_fd and in_fd as unsigned ints,
563 * with the corresponding cast to a signed int to insure that the
564 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
565 * and the register representation of a signed int (msr in 64-bit mode) is performed.
567 asmlinkage
long sys32_sendfile(u32 out_fd
, u32 in_fd
, compat_off_t __user
* offset
, u32 count
)
569 mm_segment_t old_fs
= get_fs();
574 if (offset
&& get_user(of
, offset
))
577 /* The __user pointer cast is valid because of the set_fs() */
579 up
= offset
? (off_t __user
*) &of
: NULL
;
580 ret
= sys_sendfile((int)out_fd
, (int)in_fd
, up
, count
);
583 if (offset
&& put_user(of
, offset
))
589 asmlinkage
int sys32_sendfile64(int out_fd
, int in_fd
, compat_loff_t __user
*offset
, s32 count
)
591 mm_segment_t old_fs
= get_fs();
596 if (offset
&& get_user(lof
, offset
))
599 /* The __user pointer cast is valid because of the set_fs() */
601 up
= offset
? (loff_t __user
*) &lof
: NULL
;
602 ret
= sys_sendfile64(out_fd
, in_fd
, up
, count
);
605 if (offset
&& put_user(lof
, offset
))
611 long sys32_execve(unsigned long a0
, unsigned long a1
, unsigned long a2
,
612 unsigned long a3
, unsigned long a4
, unsigned long a5
,
613 struct pt_regs
*regs
)
618 filename
= getname((char __user
*) a0
);
619 error
= PTR_ERR(filename
);
620 if (IS_ERR(filename
))
622 flush_fp_to_thread(current
);
623 flush_altivec_to_thread(current
);
625 error
= compat_do_execve(filename
, compat_ptr(a1
), compat_ptr(a2
), regs
);
629 current
->ptrace
&= ~PT_DTRACE
;
630 task_unlock(current
);
638 /* Set up a thread for executing a new program. */
639 void start_thread32(struct pt_regs
* regs
, unsigned long nip
, unsigned long sp
)
644 * If we exec out of a kernel thread then thread.regs will not be
647 if (!current
->thread
.regs
) {
648 unsigned long childregs
= (unsigned long)current
->thread_info
+
650 childregs
-= sizeof(struct pt_regs
);
651 current
->thread
.regs
= (struct pt_regs
*)childregs
;
655 * ELF_PLAT_INIT already clears all registers but it also sets r2.
656 * So just clear r2 here.
662 regs
->msr
= MSR_USER32
;
664 if (last_task_used_math
== current
)
665 last_task_used_math
= 0;
666 #endif /* CONFIG_SMP */
667 current
->thread
.fpscr
= 0;
668 memset(current
->thread
.fpr
, 0, sizeof(current
->thread
.fpr
));
669 #ifdef CONFIG_ALTIVEC
671 if (last_task_used_altivec
== current
)
672 last_task_used_altivec
= 0;
673 #endif /* CONFIG_SMP */
674 memset(current
->thread
.vr
, 0, sizeof(current
->thread
.vr
));
675 current
->thread
.vscr
.u
[0] = 0;
676 current
->thread
.vscr
.u
[1] = 0;
677 current
->thread
.vscr
.u
[2] = 0;
678 current
->thread
.vscr
.u
[3] = 0x00010000; /* Java mode disabled */
679 current
->thread
.vrsave
= 0;
680 current
->thread
.used_vr
= 0;
681 #endif /* CONFIG_ALTIVEC */
684 /* Note: it is necessary to treat option as an unsigned int,
685 * with the corresponding cast to a signed int to insure that the
686 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
687 * and the register representation of a signed int (msr in 64-bit mode) is performed.
689 asmlinkage
long sys32_prctl(u32 option
, u32 arg2
, u32 arg3
, u32 arg4
, u32 arg5
)
691 return sys_prctl((int)option
,
692 (unsigned long) arg2
,
693 (unsigned long) arg3
,
694 (unsigned long) arg4
,
695 (unsigned long) arg5
);
698 /* Note: it is necessary to treat pid as an unsigned int,
699 * with the corresponding cast to a signed int to insure that the
700 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
701 * and the register representation of a signed int (msr in 64-bit mode) is performed.
703 asmlinkage
long sys32_sched_rr_get_interval(u32 pid
, struct compat_timespec __user
*interval
)
707 mm_segment_t old_fs
= get_fs ();
709 /* The __user pointer cast is valid because of the set_fs() */
711 ret
= sys_sched_rr_get_interval((int)pid
, (struct timespec __user
*) &t
);
713 if (put_compat_timespec(&t
, interval
))
718 asmlinkage
int sys32_pciconfig_read(u32 bus
, u32 dfn
, u32 off
, u32 len
, u32 ubuf
)
720 return sys_pciconfig_read((unsigned long) bus
,
727 asmlinkage
int sys32_pciconfig_write(u32 bus
, u32 dfn
, u32 off
, u32 len
, u32 ubuf
)
729 return sys_pciconfig_write((unsigned long) bus
,
736 #define IOBASE_BRIDGE_NUMBER 0
737 #define IOBASE_MEMORY 1
739 #define IOBASE_ISA_IO 3
740 #define IOBASE_ISA_MEM 4
742 asmlinkage
int sys32_pciconfig_iobase(u32 which
, u32 in_bus
, u32 in_devfn
)
744 struct pci_controller
* hose
;
745 struct list_head
*ln
;
746 struct pci_bus
*bus
= NULL
;
747 struct device_node
*hose_node
;
749 /* Argh ! Please forgive me for that hack, but that's the
750 * simplest way to get existing XFree to not lockup on some
751 * G5 machines... So when something asks for bus 0 io base
752 * (bus 0 is HT root), we return the AGP one instead.
754 #ifdef CONFIG_PPC_PMAC
755 if (systemcfg
->platform
== PLATFORM_POWERMAC
&&
756 machine_is_compatible("MacRISC4"))
759 #endif /* CONFIG_PPC_PMAC */
761 /* That syscall isn't quite compatible with PCI domains, but it's
762 * used on pre-domains setup. We return the first match
765 for (ln
= pci_root_buses
.next
; ln
!= &pci_root_buses
; ln
= ln
->next
) {
767 if (in_bus
>= bus
->number
&& in_bus
< (bus
->number
+ bus
->subordinate
))
771 if (bus
== NULL
|| bus
->sysdata
== NULL
)
774 hose_node
= (struct device_node
*)bus
->sysdata
;
775 hose
= hose_node
->phb
;
778 case IOBASE_BRIDGE_NUMBER
:
779 return (long)hose
->first_busno
;
781 return (long)hose
->pci_mem_offset
;
783 return (long)hose
->io_base_phys
;
785 return (long)isa_io_base
;
794 asmlinkage
int ppc64_newuname(struct new_utsname __user
* name
)
796 int errno
= sys_newuname(name
);
798 if (current
->personality
== PER_LINUX32
&& !errno
) {
799 if(copy_to_user(name
->machine
, "ppc\0\0", 8)) {
806 asmlinkage
int ppc64_personality(unsigned long personality
)
809 if (current
->personality
== PER_LINUX32
&& personality
== PER_LINUX
)
810 personality
= PER_LINUX32
;
811 ret
= sys_personality(personality
);
812 if (ret
== PER_LINUX32
)
819 /* Note: it is necessary to treat mode as an unsigned int,
820 * with the corresponding cast to a signed int to insure that the
821 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
822 * and the register representation of a signed int (msr in 64-bit mode) is performed.
824 asmlinkage
long sys32_access(const char __user
* filename
, u32 mode
)
826 return sys_access(filename
, (int)mode
);
830 /* Note: it is necessary to treat mode as an unsigned int,
831 * with the corresponding cast to a signed int to insure that the
832 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
833 * and the register representation of a signed int (msr in 64-bit mode) is performed.
835 asmlinkage
long sys32_creat(const char __user
* pathname
, u32 mode
)
837 return sys_creat(pathname
, (int)mode
);
841 /* Note: it is necessary to treat pid and options as unsigned ints,
842 * with the corresponding cast to a signed int to insure that the
843 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
844 * and the register representation of a signed int (msr in 64-bit mode) is performed.
846 asmlinkage
long sys32_waitpid(u32 pid
, unsigned int __user
* stat_addr
, u32 options
)
848 return sys_waitpid((int)pid
, stat_addr
, (int)options
);
852 /* Note: it is necessary to treat gidsetsize as an unsigned int,
853 * with the corresponding cast to a signed int to insure that the
854 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
855 * and the register representation of a signed int (msr in 64-bit mode) is performed.
857 asmlinkage
long sys32_getgroups(u32 gidsetsize
, gid_t __user
*grouplist
)
859 return sys_getgroups((int)gidsetsize
, grouplist
);
863 /* Note: it is necessary to treat pid as an unsigned int,
864 * with the corresponding cast to a signed int to insure that the
865 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
866 * and the register representation of a signed int (msr in 64-bit mode) is performed.
868 asmlinkage
long sys32_getpgid(u32 pid
)
870 return sys_getpgid((int)pid
);
874 /* Note: it is necessary to treat which and who as unsigned ints,
875 * with the corresponding cast to a signed int to insure that the
876 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
877 * and the register representation of a signed int (msr in 64-bit mode) is performed.
879 asmlinkage
long sys32_getpriority(u32 which
, u32 who
)
881 return sys_getpriority((int)which
, (int)who
);
885 /* Note: it is necessary to treat pid as an unsigned int,
886 * with the corresponding cast to a signed int to insure that the
887 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
888 * and the register representation of a signed int (msr in 64-bit mode) is performed.
890 asmlinkage
long sys32_getsid(u32 pid
)
892 return sys_getsid((int)pid
);
896 /* Note: it is necessary to treat pid and sig as unsigned ints,
897 * with the corresponding cast to a signed int to insure that the
898 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
899 * and the register representation of a signed int (msr in 64-bit mode) is performed.
901 asmlinkage
long sys32_kill(u32 pid
, u32 sig
)
903 return sys_kill((int)pid
, (int)sig
);
907 /* Note: it is necessary to treat mode as an unsigned int,
908 * with the corresponding cast to a signed int to insure that the
909 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
910 * and the register representation of a signed int (msr in 64-bit mode) is performed.
912 asmlinkage
long sys32_mkdir(const char __user
* pathname
, u32 mode
)
914 return sys_mkdir(pathname
, (int)mode
);
917 long sys32_nice(u32 increment
)
919 /* sign extend increment */
920 return sys_nice((int)increment
);
923 off_t
ppc32_lseek(unsigned int fd
, u32 offset
, unsigned int origin
)
926 return sys_lseek(fd
, (int)offset
, origin
);
930 * This is just a version for 32-bit applications which does
931 * not force O_LARGEFILE on.
933 asmlinkage
long sys32_open(const char __user
* filename
, int flags
, int mode
)
938 tmp
= getname(filename
);
941 fd
= get_unused_fd();
943 struct file
* f
= filp_open(tmp
, flags
, mode
);
960 /* Note: it is necessary to treat bufsiz as an unsigned int,
961 * with the corresponding cast to a signed int to insure that the
962 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
963 * and the register representation of a signed int (msr in 64-bit mode) is performed.
965 asmlinkage
long sys32_readlink(const char __user
* path
, char __user
* buf
, u32 bufsiz
)
967 return sys_readlink(path
, buf
, (int)bufsiz
);
970 /* Note: it is necessary to treat option as an unsigned int,
971 * with the corresponding cast to a signed int to insure that the
972 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
973 * and the register representation of a signed int (msr in 64-bit mode) is performed.
975 asmlinkage
long sys32_sched_get_priority_max(u32 policy
)
977 return sys_sched_get_priority_max((int)policy
);
981 /* Note: it is necessary to treat policy as an unsigned int,
982 * with the corresponding cast to a signed int to insure that the
983 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
984 * and the register representation of a signed int (msr in 64-bit mode) is performed.
986 asmlinkage
long sys32_sched_get_priority_min(u32 policy
)
988 return sys_sched_get_priority_min((int)policy
);
992 /* Note: it is necessary to treat pid as an unsigned int,
993 * with the corresponding cast to a signed int to insure that the
994 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
995 * and the register representation of a signed int (msr in 64-bit mode) is performed.
997 asmlinkage
long sys32_sched_getparam(u32 pid
, struct sched_param __user
*param
)
999 return sys_sched_getparam((int)pid
, param
);
1003 /* Note: it is necessary to treat pid as an unsigned int,
1004 * with the corresponding cast to a signed int to insure that the
1005 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1006 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1008 asmlinkage
long sys32_sched_getscheduler(u32 pid
)
1010 return sys_sched_getscheduler((int)pid
);
1014 /* Note: it is necessary to treat pid as an unsigned int,
1015 * with the corresponding cast to a signed int to insure that the
1016 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1017 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1019 asmlinkage
long sys32_sched_setparam(u32 pid
, struct sched_param __user
*param
)
1021 return sys_sched_setparam((int)pid
, param
);
1025 /* Note: it is necessary to treat pid and policy as unsigned ints,
1026 * with the corresponding cast to a signed int to insure that the
1027 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1028 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1030 asmlinkage
long sys32_sched_setscheduler(u32 pid
, u32 policy
, struct sched_param __user
*param
)
1032 return sys_sched_setscheduler((int)pid
, (int)policy
, param
);
1036 /* Note: it is necessary to treat len as an unsigned int,
1037 * with the corresponding cast to a signed int to insure that the
1038 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1039 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1041 asmlinkage
long sys32_setdomainname(char __user
*name
, u32 len
)
1043 return sys_setdomainname(name
, (int)len
);
1047 /* Note: it is necessary to treat gidsetsize as an unsigned int,
1048 * with the corresponding cast to a signed int to insure that the
1049 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1050 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1052 asmlinkage
long sys32_setgroups(u32 gidsetsize
, gid_t __user
*grouplist
)
1054 return sys_setgroups((int)gidsetsize
, grouplist
);
1058 asmlinkage
long sys32_sethostname(char __user
*name
, u32 len
)
1060 /* sign extend len */
1061 return sys_sethostname(name
, (int)len
);
1065 /* Note: it is necessary to treat pid and pgid as unsigned ints,
1066 * with the corresponding cast to a signed int to insure that the
1067 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1068 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1070 asmlinkage
long sys32_setpgid(u32 pid
, u32 pgid
)
1072 return sys_setpgid((int)pid
, (int)pgid
);
1076 long sys32_setpriority(u32 which
, u32 who
, u32 niceval
)
1078 /* sign extend which, who and niceval */
1079 return sys_setpriority((int)which
, (int)who
, (int)niceval
);
1082 /* Note: it is necessary to treat newmask as an unsigned int,
1083 * with the corresponding cast to a signed int to insure that the
1084 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1085 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1087 asmlinkage
long sys32_ssetmask(u32 newmask
)
1089 return sys_ssetmask((int) newmask
);
1092 asmlinkage
long sys32_syslog(u32 type
, char __user
* buf
, u32 len
)
1094 /* sign extend len */
1095 return sys_syslog(type
, buf
, (int)len
);
1099 /* Note: it is necessary to treat mask as an unsigned int,
1100 * with the corresponding cast to a signed int to insure that the
1101 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
1102 * and the register representation of a signed int (msr in 64-bit mode) is performed.
1104 asmlinkage
long sys32_umask(u32 mask
)
1106 return sys_umask((int)mask
);
1109 #ifdef CONFIG_SYSCTL
1110 struct __sysctl_args32
{
1120 asmlinkage
long sys32_sysctl(struct __sysctl_args32 __user
*args
)
1122 struct __sysctl_args32 tmp
;
1125 size_t __user
*oldlenp
= NULL
;
1126 unsigned long addr
= (((unsigned long)&args
->__unused
[0]) + 7) & ~7;
1128 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1131 if (tmp
.oldval
&& tmp
.oldlenp
) {
1132 /* Duh, this is ugly and might not work if sysctl_args
1133 is in read-only memory, but do_sysctl does indirectly
1134 a lot of uaccess in both directions and we'd have to
1135 basically copy the whole sysctl.c here, and
1136 glibc's __sysctl uses rw memory for the structure
1138 oldlenp
= (size_t __user
*)addr
;
1139 if (get_user(oldlen
, (compat_size_t __user
*)compat_ptr(tmp
.oldlenp
)) ||
1140 put_user(oldlen
, oldlenp
))
1145 error
= do_sysctl(compat_ptr(tmp
.name
), tmp
.nlen
,
1146 compat_ptr(tmp
.oldval
), oldlenp
,
1147 compat_ptr(tmp
.newval
), tmp
.newlen
);
1151 if (get_user(oldlen
, oldlenp
) ||
1152 put_user(oldlen
, (compat_size_t __user
*)compat_ptr(tmp
.oldlenp
)))
1155 copy_to_user(args
->__unused
, tmp
.__unused
, sizeof(tmp
.__unused
));
1161 asmlinkage
int sys32_olduname(struct oldold_utsname __user
* name
)
1167 if (!access_ok(VERIFY_WRITE
,name
,sizeof(struct oldold_utsname
)))
1170 down_read(&uts_sem
);
1171 error
= __copy_to_user(&name
->sysname
,&system_utsname
.sysname
,__OLD_UTS_LEN
);
1172 error
-= __put_user(0,name
->sysname
+__OLD_UTS_LEN
);
1173 error
-= __copy_to_user(&name
->nodename
,&system_utsname
.nodename
,__OLD_UTS_LEN
);
1174 error
-= __put_user(0,name
->nodename
+__OLD_UTS_LEN
);
1175 error
-= __copy_to_user(&name
->release
,&system_utsname
.release
,__OLD_UTS_LEN
);
1176 error
-= __put_user(0,name
->release
+__OLD_UTS_LEN
);
1177 error
-= __copy_to_user(&name
->version
,&system_utsname
.version
,__OLD_UTS_LEN
);
1178 error
-= __put_user(0,name
->version
+__OLD_UTS_LEN
);
1179 error
-= __copy_to_user(&name
->machine
,&system_utsname
.machine
,__OLD_UTS_LEN
);
1180 error
= __put_user(0,name
->machine
+__OLD_UTS_LEN
);
1183 error
= error
? -EFAULT
: 0;
1188 unsigned long sys32_mmap2(unsigned long addr
, size_t len
,
1189 unsigned long prot
, unsigned long flags
,
1190 unsigned long fd
, unsigned long pgoff
)
1192 /* This should remain 12 even if PAGE_SIZE changes */
1193 return sys_mmap(addr
, len
, prot
, flags
, fd
, pgoff
<< 12);
1196 int get_compat_timeval(struct timeval
*tv
, struct compat_timeval __user
*ctv
)
1198 return (!access_ok(VERIFY_READ
, ctv
, sizeof(*ctv
)) ||
1199 __get_user(tv
->tv_sec
, &ctv
->tv_sec
) ||
1200 __get_user(tv
->tv_usec
, &ctv
->tv_usec
)) ? -EFAULT
: 0;
1203 asmlinkage
long sys32_utimes(char __user
*filename
, struct compat_timeval __user
*tvs
)
1205 struct timeval ktvs
[2], *ptr
;
1209 if (get_compat_timeval(&ktvs
[0], &tvs
[0]) ||
1210 get_compat_timeval(&ktvs
[1], &tvs
[1]))
1215 return do_utimes(filename
, ptr
);
1218 long sys32_tgkill(u32 tgid
, u32 pid
, int sig
)
1220 /* sign extend tgid, pid */
1221 return sys_tgkill((int)tgid
, (int)pid
, sig
);
1225 * long long munging:
1226 * The 32 bit ABI passes long longs in an odd even register pair.
1229 compat_ssize_t
sys32_pread64(unsigned int fd
, char __user
*ubuf
, compat_size_t count
,
1230 u32 reg6
, u32 poshi
, u32 poslo
)
1232 return sys_pread64(fd
, ubuf
, count
, ((loff_t
)poshi
<< 32) | poslo
);
1235 compat_ssize_t
sys32_pwrite64(unsigned int fd
, char __user
*ubuf
, compat_size_t count
,
1236 u32 reg6
, u32 poshi
, u32 poslo
)
1238 return sys_pwrite64(fd
, ubuf
, count
, ((loff_t
)poshi
<< 32) | poslo
);
1241 compat_ssize_t
sys32_readahead(int fd
, u32 r4
, u32 offhi
, u32 offlo
, u32 count
)
1243 return sys_readahead(fd
, ((loff_t
)offhi
<< 32) | offlo
, count
);
1246 asmlinkage
int sys32_truncate64(const char __user
* path
, u32 reg4
,
1247 unsigned long high
, unsigned long low
)
1249 return sys_truncate(path
, (high
<< 32) | low
);
1252 asmlinkage
int sys32_ftruncate64(unsigned int fd
, u32 reg4
, unsigned long high
,
1255 return sys_ftruncate(fd
, (high
<< 32) | low
);
1258 long ppc32_lookup_dcookie(u32 cookie_high
, u32 cookie_low
, char __user
*buf
,
1261 return sys_lookup_dcookie((u64
)cookie_high
<< 32 | cookie_low
,
1265 long ppc32_fadvise64(int fd
, u32 unused
, u32 offset_high
, u32 offset_low
,
1266 size_t len
, int advice
)
1268 return sys_fadvise64(fd
, (u64
)offset_high
<< 32 | offset_low
, len
,
1272 long ppc32_fadvise64_64(int fd
, int advice
, u32 offset_high
, u32 offset_low
,
1273 u32 len_high
, u32 len_low
)
1275 return sys_fadvise64(fd
, (u64
)offset_high
<< 32 | offset_low
,
1276 (u64
)len_high
<< 32 | len_low
, advice
);
1279 extern asmlinkage
long sys_timer_create(clockid_t
, sigevent_t __user
*, timer_t __user
*);
1281 long ppc32_timer_create(clockid_t clock
,
1282 struct compat_sigevent __user
*ev32
,
1283 timer_t __user
*timer_id
)
1288 mm_segment_t savefs
;
1291 return sys_timer_create(clock
, NULL
, timer_id
);
1293 if (get_compat_sigevent(&event
, ev32
))
1296 if (!access_ok(VERIFY_WRITE
, timer_id
, sizeof(timer_t
)))
1301 /* The __user pointer casts are valid due to the set_fs() */
1302 err
= sys_timer_create(clock
,
1303 (sigevent_t __user
*) &event
,
1304 (timer_t __user
*) &t
);
1308 err
= __put_user(t
, timer_id
);
1313 asmlinkage
long sys32_add_key(const char __user
*_type
,
1314 const char __user
*_description
,
1315 const void __user
*_payload
,
1319 return sys_add_key(_type
, _description
, _payload
, plen
, ringid
);
1322 asmlinkage
long sys32_request_key(const char __user
*_type
,
1323 const char __user
*_description
,
1324 const char __user
*_callout_info
,
1327 return sys_request_key(_type
, _description
, _callout_info
, destringid
);