blob: 9c2ed90ece8f4cdb93b75456f70376b944d52703 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sys_ppc32.c: Conversion between 32bit and 64bit native syscalls.
3 *
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)
7 *
8 * These routines maintain argument size conversion between 32bit and 64bit
9 * environment.
10 *
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.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/sched.h>
19#include <linux/fs.h>
20#include <linux/mm.h>
21#include <linux/file.h>
22#include <linux/signal.h>
23#include <linux/resource.h>
24#include <linux/times.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/sem.h>
27#include <linux/msg.h>
28#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/poll.h>
30#include <linux/personality.h>
31#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/syscalls.h>
35#include <linux/unistd.h>
36#include <linux/sysctl.h>
37#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/security.h>
39#include <linux/compat.h>
40#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/elf.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070042#include <linux/ipc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/ptrace.h>
46#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/uaccess.h>
48#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/time.h>
50#include <asm/mmu_context.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100051#include <asm/ppc-pci.h>
Arnd Bergmann369cf4b2006-11-27 19:18:59 +010052#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#include <asm/switch_to.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056asmlinkage long ppc32_select(u32 n, compat_ulong_t __user *inp,
57 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
58 compat_uptr_t tvp_x)
59{
60 /* sign extend n */
61 return compat_sys_select((int)n, inp, outp, exp, compat_ptr(tvp_x));
62}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/* Note: it is necessary to treat option as an unsigned int,
65 * with the corresponding cast to a signed int to insure that the
66 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
67 * and the register representation of a signed int (msr in 64-bit mode) is performed.
68 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +100069asmlinkage long compat_sys_sysfs(u32 option, u32 arg1, u32 arg2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 return sys_sysfs((int)option, arg1, arg2);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#ifdef CONFIG_SYSVIPC
Stephen Rothwellb09a4912005-10-18 14:51:57 +100075long compat_sys_ipc(u32 call, u32 first, u32 second, u32 third, compat_uptr_t ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 u32 fifth)
77{
78 int version;
79
80 version = call >> 16; /* hack for backward compatibility */
81 call &= 0xffff;
82
83 switch (call) {
84
85 case SEMTIMEDOP:
86 if (fifth)
87 /* sign extend semid */
88 return compat_sys_semtimedop((int)first,
89 compat_ptr(ptr), second,
90 compat_ptr(fifth));
91 /* else fall through for normal semop() */
92 case SEMOP:
93 /* struct sembuf is the same on 32 and 64bit :)) */
94 /* sign extend semid */
95 return sys_semtimedop((int)first, compat_ptr(ptr), second,
96 NULL);
97 case SEMGET:
98 /* sign extend key, nsems */
99 return sys_semget((int)first, (int)second, third);
100 case SEMCTL:
101 /* sign extend semid, semnum */
102 return compat_sys_semctl((int)first, (int)second, third,
103 compat_ptr(ptr));
104
105 case MSGSND:
106 /* sign extend msqid */
107 return compat_sys_msgsnd((int)first, (int)second, third,
108 compat_ptr(ptr));
109 case MSGRCV:
110 /* sign extend msqid, msgtyp */
111 return compat_sys_msgrcv((int)first, second, (int)fifth,
112 third, version, compat_ptr(ptr));
113 case MSGGET:
114 /* sign extend key */
115 return sys_msgget((int)first, second);
116 case MSGCTL:
117 /* sign extend msqid */
118 return compat_sys_msgctl((int)first, second, compat_ptr(ptr));
119
120 case SHMAT:
121 /* sign extend shmid */
122 return compat_sys_shmat((int)first, second, third, version,
123 compat_ptr(ptr));
124 case SHMDT:
125 return sys_shmdt(compat_ptr(ptr));
126 case SHMGET:
127 /* sign extend key_t */
128 return sys_shmget((int)first, second, third);
129 case SHMCTL:
130 /* sign extend shmid */
131 return compat_sys_shmctl((int)first, second, compat_ptr(ptr));
132
133 default:
134 return -ENOSYS;
135 }
136
137 return -ENOSYS;
138}
139#endif
140
141/* Note: it is necessary to treat out_fd and in_fd as unsigned ints,
142 * with the corresponding cast to a signed int to insure that the
143 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
144 * and the register representation of a signed int (msr in 64-bit mode) is performed.
145 */
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100146asmlinkage long compat_sys_sendfile_wrapper(u32 out_fd, u32 in_fd,
147 compat_off_t __user *offset, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100149 return compat_sys_sendfile((int)out_fd, (int)in_fd, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100152asmlinkage long compat_sys_sendfile64_wrapper(u32 out_fd, u32 in_fd,
153 compat_loff_t __user *offset, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100155 return sys_sendfile((int)out_fd, (int)in_fd,
156 (off_t __user *)offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/* Note: it is necessary to treat option as an unsigned int,
160 * with the corresponding cast to a signed int to insure that the
161 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
162 * and the register representation of a signed int (msr in 64-bit mode) is performed.
163 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000164asmlinkage long compat_sys_prctl(u32 option, u32 arg2, u32 arg3, u32 arg4, u32 arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 return sys_prctl((int)option,
167 (unsigned long) arg2,
168 (unsigned long) arg3,
169 (unsigned long) arg4,
170 (unsigned long) arg5);
171}
172
173/* Note: it is necessary to treat pid as an unsigned int,
174 * with the corresponding cast to a signed int to insure that the
175 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
176 * and the register representation of a signed int (msr in 64-bit mode) is performed.
177 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000178asmlinkage long compat_sys_sched_rr_get_interval(u32 pid, struct compat_timespec __user *interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct timespec t;
181 int ret;
182 mm_segment_t old_fs = get_fs ();
183
184 /* The __user pointer cast is valid because of the set_fs() */
185 set_fs (KERNEL_DS);
186 ret = sys_sched_rr_get_interval((int)pid, (struct timespec __user *) &t);
187 set_fs (old_fs);
188 if (put_compat_timespec(&t, interval))
189 return -EFAULT;
190 return ret;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/* Note: it is necessary to treat mode as an unsigned int,
194 * with the corresponding cast to a signed int to insure that the
195 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
196 * and the register representation of a signed int (msr in 64-bit mode) is performed.
197 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000198asmlinkage long compat_sys_access(const char __user * filename, u32 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 return sys_access(filename, (int)mode);
201}
202
203
204/* Note: it is necessary to treat mode as an unsigned int,
205 * with the corresponding cast to a signed int to insure that the
206 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
207 * and the register representation of a signed int (msr in 64-bit mode) is performed.
208 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000209asmlinkage long compat_sys_creat(const char __user * pathname, u32 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 return sys_creat(pathname, (int)mode);
212}
213
214
215/* Note: it is necessary to treat pid and options as unsigned ints,
216 * with the corresponding cast to a signed int to insure that the
217 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
218 * and the register representation of a signed int (msr in 64-bit mode) is performed.
219 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000220asmlinkage long compat_sys_waitpid(u32 pid, unsigned int __user * stat_addr, u32 options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 return sys_waitpid((int)pid, stat_addr, (int)options);
223}
224
225
226/* Note: it is necessary to treat gidsetsize as an unsigned int,
227 * with the corresponding cast to a signed int to insure that the
228 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
229 * and the register representation of a signed int (msr in 64-bit mode) is performed.
230 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000231asmlinkage long compat_sys_getgroups(u32 gidsetsize, gid_t __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 return sys_getgroups((int)gidsetsize, grouplist);
234}
235
236
237/* Note: it is necessary to treat pid as an unsigned int,
238 * with the corresponding cast to a signed int to insure that the
239 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
240 * and the register representation of a signed int (msr in 64-bit mode) is performed.
241 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000242asmlinkage long compat_sys_getpgid(u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 return sys_getpgid((int)pid);
245}
246
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249/* Note: it is necessary to treat pid as an unsigned int,
250 * with the corresponding cast to a signed int to insure that the
251 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
252 * and the register representation of a signed int (msr in 64-bit mode) is performed.
253 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000254asmlinkage long compat_sys_getsid(u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 return sys_getsid((int)pid);
257}
258
259
260/* Note: it is necessary to treat pid and sig as unsigned ints,
261 * with the corresponding cast to a signed int to insure that the
262 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
263 * and the register representation of a signed int (msr in 64-bit mode) is performed.
264 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000265asmlinkage long compat_sys_kill(u32 pid, u32 sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 return sys_kill((int)pid, (int)sig);
268}
269
270
271/* Note: it is necessary to treat mode as an unsigned int,
272 * with the corresponding cast to a signed int to insure that the
273 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
274 * and the register representation of a signed int (msr in 64-bit mode) is performed.
275 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000276asmlinkage long compat_sys_mkdir(const char __user * pathname, u32 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 return sys_mkdir(pathname, (int)mode);
279}
280
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000281long compat_sys_nice(u32 increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 /* sign extend increment */
284 return sys_nice((int)increment);
285}
286
287off_t ppc32_lseek(unsigned int fd, u32 offset, unsigned int origin)
288{
289 /* sign extend n */
290 return sys_lseek(fd, (int)offset, origin);
291}
292
Benjamin Herrenschmidtdd90bbd2009-07-28 11:54:32 +1000293long compat_sys_truncate(const char __user * path, u32 length)
294{
295 /* sign extend length */
296 return sys_truncate(path, (int)length);
297}
298
299long compat_sys_ftruncate(int fd, u32 length)
300{
301 /* sign extend length */
302 return sys_ftruncate(fd, (int)length);
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/* Note: it is necessary to treat bufsiz as an unsigned int,
306 * with the corresponding cast to a signed int to insure that the
307 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
308 * and the register representation of a signed int (msr in 64-bit mode) is performed.
309 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000310asmlinkage long compat_sys_readlink(const char __user * path, char __user * buf, u32 bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 return sys_readlink(path, buf, (int)bufsiz);
313}
314
315/* Note: it is necessary to treat option as an unsigned int,
316 * with the corresponding cast to a signed int to insure that the
317 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
318 * and the register representation of a signed int (msr in 64-bit mode) is performed.
319 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000320asmlinkage long compat_sys_sched_get_priority_max(u32 policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 return sys_sched_get_priority_max((int)policy);
323}
324
325
326/* Note: it is necessary to treat policy as an unsigned int,
327 * with the corresponding cast to a signed int to insure that the
328 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
329 * and the register representation of a signed int (msr in 64-bit mode) is performed.
330 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000331asmlinkage long compat_sys_sched_get_priority_min(u32 policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 return sys_sched_get_priority_min((int)policy);
334}
335
336
337/* Note: it is necessary to treat pid as an unsigned int,
338 * with the corresponding cast to a signed int to insure that the
339 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
340 * and the register representation of a signed int (msr in 64-bit mode) is performed.
341 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000342asmlinkage long compat_sys_sched_getparam(u32 pid, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 return sys_sched_getparam((int)pid, param);
345}
346
347
348/* Note: it is necessary to treat pid as an unsigned int,
349 * with the corresponding cast to a signed int to insure that the
350 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
351 * and the register representation of a signed int (msr in 64-bit mode) is performed.
352 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000353asmlinkage long compat_sys_sched_getscheduler(u32 pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 return sys_sched_getscheduler((int)pid);
356}
357
358
359/* Note: it is necessary to treat pid as an unsigned int,
360 * with the corresponding cast to a signed int to insure that the
361 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
362 * and the register representation of a signed int (msr in 64-bit mode) is performed.
363 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000364asmlinkage long compat_sys_sched_setparam(u32 pid, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 return sys_sched_setparam((int)pid, param);
367}
368
369
370/* Note: it is necessary to treat pid and policy as unsigned ints,
371 * with the corresponding cast to a signed int to insure that the
372 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
373 * and the register representation of a signed int (msr in 64-bit mode) is performed.
374 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000375asmlinkage long compat_sys_sched_setscheduler(u32 pid, u32 policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 return sys_sched_setscheduler((int)pid, (int)policy, param);
378}
379
380
381/* Note: it is necessary to treat len as an unsigned int,
382 * with the corresponding cast to a signed int to insure that the
383 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
384 * and the register representation of a signed int (msr in 64-bit mode) is performed.
385 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000386asmlinkage long compat_sys_setdomainname(char __user *name, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 return sys_setdomainname(name, (int)len);
389}
390
391
392/* Note: it is necessary to treat gidsetsize as an unsigned int,
393 * with the corresponding cast to a signed int to insure that the
394 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
395 * and the register representation of a signed int (msr in 64-bit mode) is performed.
396 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000397asmlinkage long compat_sys_setgroups(u32 gidsetsize, gid_t __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 return sys_setgroups((int)gidsetsize, grouplist);
400}
401
402
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000403asmlinkage long compat_sys_sethostname(char __user *name, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 /* sign extend len */
406 return sys_sethostname(name, (int)len);
407}
408
409
410/* Note: it is necessary to treat pid and pgid as unsigned ints,
411 * with the corresponding cast to a signed int to insure that the
412 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
413 * and the register representation of a signed int (msr in 64-bit mode) is performed.
414 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000415asmlinkage long compat_sys_setpgid(u32 pid, u32 pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 return sys_setpgid((int)pid, (int)pgid);
418}
419
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000420long compat_sys_getpriority(u32 which, u32 who)
Anton Blanchard79c2cc72005-07-07 17:56:15 -0700421{
422 /* sign extend which and who */
423 return sys_getpriority((int)which, (int)who);
424}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000426long compat_sys_setpriority(u32 which, u32 who, u32 niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 /* sign extend which, who and niceval */
429 return sys_setpriority((int)which, (int)who, (int)niceval);
430}
431
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000432long compat_sys_ioprio_get(u32 which, u32 who)
Anton Blanchard79c2cc72005-07-07 17:56:15 -0700433{
434 /* sign extend which and who */
435 return sys_ioprio_get((int)which, (int)who);
436}
437
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000438long compat_sys_ioprio_set(u32 which, u32 who, u32 ioprio)
Anton Blanchard79c2cc72005-07-07 17:56:15 -0700439{
440 /* sign extend which, who and ioprio */
441 return sys_ioprio_set((int)which, (int)who, (int)ioprio);
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/* Note: it is necessary to treat newmask as an unsigned int,
445 * with the corresponding cast to a signed int to insure that the
446 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
447 * and the register representation of a signed int (msr in 64-bit mode) is performed.
448 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000449asmlinkage long compat_sys_ssetmask(u32 newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 return sys_ssetmask((int) newmask);
452}
453
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000454asmlinkage long compat_sys_syslog(u32 type, char __user * buf, u32 len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 /* sign extend len */
457 return sys_syslog(type, buf, (int)len);
458}
459
460
461/* Note: it is necessary to treat mask as an unsigned int,
462 * with the corresponding cast to a signed int to insure that the
463 * proper conversion (sign extension) between the register representation of a signed int (msr in 32-bit mode)
464 * and the register representation of a signed int (msr in 64-bit mode) is performed.
465 */
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000466asmlinkage long compat_sys_umask(u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 return sys_umask((int)mask);
469}
470
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000471unsigned long compat_sys_mmap2(unsigned long addr, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 unsigned long prot, unsigned long flags,
473 unsigned long fd, unsigned long pgoff)
474{
475 /* This should remain 12 even if PAGE_SIZE changes */
476 return sys_mmap(addr, len, prot, flags, fd, pgoff << 12);
477}
478
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000479long compat_sys_tgkill(u32 tgid, u32 pid, int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 /* sign extend tgid, pid */
482 return sys_tgkill((int)tgid, (int)pid, sig);
483}
484
485/*
486 * long long munging:
487 * The 32 bit ABI passes long longs in an odd even register pair.
488 */
489
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000490compat_ssize_t compat_sys_pread64(unsigned int fd, char __user *ubuf, compat_size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 u32 reg6, u32 poshi, u32 poslo)
492{
493 return sys_pread64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
494}
495
David Howellsc7887322010-08-11 11:26:22 +0100496compat_ssize_t compat_sys_pwrite64(unsigned int fd, const char __user *ubuf, compat_size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 u32 reg6, u32 poshi, u32 poslo)
498{
499 return sys_pwrite64(fd, ubuf, count, ((loff_t)poshi << 32) | poslo);
500}
501
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000502compat_ssize_t compat_sys_readahead(int fd, u32 r4, u32 offhi, u32 offlo, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 return sys_readahead(fd, ((loff_t)offhi << 32) | offlo, count);
505}
506
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000507asmlinkage int compat_sys_truncate64(const char __user * path, u32 reg4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 unsigned long high, unsigned long low)
509{
510 return sys_truncate(path, (high << 32) | low);
511}
512
Amit Arora97ac7352007-07-17 21:42:44 -0400513asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo,
514 u32 lenhi, u32 lenlo)
515{
516 return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
517 ((loff_t)lenhi << 32) | lenlo);
518}
519
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000520asmlinkage int compat_sys_ftruncate64(unsigned int fd, u32 reg4, unsigned long high,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned long low)
522{
523 return sys_ftruncate(fd, (high << 32) | low);
524}
525
526long ppc32_lookup_dcookie(u32 cookie_high, u32 cookie_low, char __user *buf,
527 size_t len)
528{
529 return sys_lookup_dcookie((u64)cookie_high << 32 | cookie_low,
530 buf, len);
531}
532
533long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low,
534 size_t len, int advice)
535{
536 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len,
537 advice);
538}
539
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000540asmlinkage long compat_sys_add_key(const char __user *_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 const char __user *_description,
542 const void __user *_payload,
543 u32 plen,
544 u32 ringid)
545{
546 return sys_add_key(_type, _description, _payload, plen, ringid);
547}
548
Stephen Rothwellb09a4912005-10-18 14:51:57 +1000549asmlinkage long compat_sys_request_key(const char __user *_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 const char __user *_description,
551 const char __user *_callout_info,
552 u32 destringid)
553{
554 return sys_request_key(_type, _description, _callout_info, destringid);
555}
556
David Woodhouseedd5cd42007-06-27 14:10:09 -0700557asmlinkage long compat_sys_sync_file_range2(int fd, unsigned int flags,
558 unsigned offset_hi, unsigned offset_lo,
559 unsigned nbytes_hi, unsigned nbytes_lo)
560{
561 loff_t offset = ((loff_t)offset_hi << 32) | offset_lo;
562 loff_t nbytes = ((loff_t)nbytes_hi << 32) | nbytes_lo;
563
564 return sys_sync_file_range(fd, offset, nbytes, flags);
565}
Andreas Schwabbcc30d32010-08-19 05:15:37 +0000566
567asmlinkage long compat_sys_fanotify_mark(int fanotify_fd, unsigned int flags,
568 unsigned mask_hi, unsigned mask_lo,
569 int dfd, const char __user *pathname)
570{
571 u64 mask = ((u64)mask_hi << 32) | mask_lo;
572 return sys_fanotify_mark(fanotify_fd, flags, mask, dfd, pathname);
573}