blob: cdec8f2e9e21eb6e1e53784299f4c1b158129ec4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_COMPAT_H
2#define _LINUX_COMPAT_H
3/*
4 * These are the type definitions for the architecture specific
5 * syscall compatibility layer.
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#ifdef CONFIG_COMPAT
9
10#include <linux/stat.h>
11#include <linux/param.h> /* for HZ */
12#include <linux/sem.h>
Arnd Bergmann2dceba12009-11-06 08:09:03 +000013#include <linux/socket.h>
14#include <linux/if.h>
Chris Metcalfbe84cb42011-05-09 13:12:30 -040015#include <linux/fs.h>
Stephen Rothwell45e96832011-05-24 13:28:54 +100016#include <linux/aio_abi.h> /* for aio_context_t */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/compat.h>
19#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010020#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
H. J. Lu45e87782012-02-10 14:04:27 -080022#ifndef COMPAT_USE_64BIT_TIME
23#define COMPAT_USE_64BIT_TIME 0
24#endif
25
Al Viro46836612012-11-23 09:12:59 -050026#ifndef __SC_DELOUSE
27#define __SC_DELOUSE(t,v) ((t)(unsigned long)(v))
28#endif
29
Al Viro46836612012-11-23 09:12:59 -050030#define COMPAT_SYSCALL_DEFINE1(name, ...) \
31 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
32#define COMPAT_SYSCALL_DEFINE2(name, ...) \
33 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
34#define COMPAT_SYSCALL_DEFINE3(name, ...) \
35 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
36#define COMPAT_SYSCALL_DEFINE4(name, ...) \
37 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
38#define COMPAT_SYSCALL_DEFINE5(name, ...) \
39 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
40#define COMPAT_SYSCALL_DEFINE6(name, ...) \
41 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
42
Al Viro46836612012-11-23 09:12:59 -050043#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
Al Viro07fe6e02013-01-21 15:03:44 -050044 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
45 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
46 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__))\
Al Viro46836612012-11-23 09:12:59 -050047 { \
Al Viro07fe6e02013-01-21 15:03:44 -050048 return C_SYSC##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__)); \
Al Viro46836612012-11-23 09:12:59 -050049 } \
50 SYSCALL_ALIAS(compat_sys##name, compat_SyS##name); \
Al Viro07fe6e02013-01-21 15:03:44 -050051 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__))
Al Viro46836612012-11-23 09:12:59 -050052
Al Viro9b064fc2012-12-14 13:49:35 -050053#ifndef compat_user_stack_pointer
54#define compat_user_stack_pointer() current_user_stack_pointer()
55#endif
Al Viro90268432012-12-14 14:47:53 -050056#ifndef compat_sigaltstack /* we'll need that for MIPS */
57typedef struct compat_sigaltstack {
58 compat_uptr_t ss_sp;
59 int ss_flags;
60 compat_size_t ss_size;
61} compat_stack_t;
62#endif
Al Viro90268432012-12-14 14:47:53 -050063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define compat_jiffies_to_clock_t(x) \
65 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
66
Stephen Rothwell202e5972005-09-06 15:16:40 -070067typedef __compat_uid32_t compat_uid_t;
68typedef __compat_gid32_t compat_gid_t;
69
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080070struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct rusage;
72
Chris Metcalf4800a5b2011-05-17 14:41:06 -040073struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct compat_timespec it_interval;
75 struct compat_timespec it_value;
76};
77
78struct compat_utimbuf {
79 compat_time_t actime;
80 compat_time_t modtime;
81};
82
83struct compat_itimerval {
84 struct compat_timeval it_interval;
85 struct compat_timeval it_value;
86};
87
88struct compat_tms {
89 compat_clock_t tms_utime;
90 compat_clock_t tms_stime;
91 compat_clock_t tms_cutime;
92 compat_clock_t tms_cstime;
93};
94
Stephen Rothwell88959ea2006-03-26 01:37:27 -080095struct compat_timex {
96 compat_uint_t modes;
97 compat_long_t offset;
98 compat_long_t freq;
99 compat_long_t maxerror;
100 compat_long_t esterror;
101 compat_int_t status;
102 compat_long_t constant;
103 compat_long_t precision;
104 compat_long_t tolerance;
105 struct compat_timeval time;
106 compat_long_t tick;
107 compat_long_t ppsfreq;
108 compat_long_t jitter;
109 compat_int_t shift;
110 compat_long_t stabil;
111 compat_long_t jitcnt;
112 compat_long_t calcnt;
113 compat_long_t errcnt;
114 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700115 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800116
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400117 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
118 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
119 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800120};
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
123
124typedef struct {
125 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
126} compat_sigset_t;
127
Al Viro08d32fe2012-12-25 18:38:15 -0500128struct compat_sigaction {
129#ifndef __ARCH_HAS_ODD_SIGACTION
130 compat_uptr_t sa_handler;
131 compat_ulong_t sa_flags;
132#else
133 compat_ulong_t sa_flags;
134 compat_uptr_t sa_handler;
135#endif
136#ifdef __ARCH_HAS_SA_RESTORER
137 compat_uptr_t sa_restorer;
138#endif
139 compat_sigset_t sa_mask __packed;
140};
Al Viro08d32fe2012-12-25 18:38:15 -0500141
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800142/*
143 * These functions operate strictly on struct compat_time*
144 */
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400145extern int get_compat_timespec(struct timespec *,
146 const struct compat_timespec __user *);
147extern int put_compat_timespec(const struct timespec *,
148 struct compat_timespec __user *);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800149extern int get_compat_timeval(struct timeval *,
150 const struct compat_timeval __user *);
151extern int put_compat_timeval(const struct timeval *,
152 struct compat_timeval __user *);
153/*
154 * These functions operate on 32- or 64-bit specs depending on
155 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments and the
156 * naming as compat_get/put_ rather than get/put_compat_.
157 */
158extern int compat_get_timespec(struct timespec *, const void __user *);
159extern int compat_put_timespec(const struct timespec *, void __user *);
160extern int compat_get_timeval(struct timeval *, const void __user *);
161extern int compat_put_timeval(const struct timeval *, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163struct compat_iovec {
164 compat_uptr_t iov_base;
165 compat_size_t iov_len;
166};
167
168struct compat_rlimit {
169 compat_ulong_t rlim_cur;
170 compat_ulong_t rlim_max;
171};
172
173struct compat_rusage {
174 struct compat_timeval ru_utime;
175 struct compat_timeval ru_stime;
176 compat_long_t ru_maxrss;
177 compat_long_t ru_ixrss;
178 compat_long_t ru_idrss;
179 compat_long_t ru_isrss;
180 compat_long_t ru_minflt;
181 compat_long_t ru_majflt;
182 compat_long_t ru_nswap;
183 compat_long_t ru_inblock;
184 compat_long_t ru_oublock;
185 compat_long_t ru_msgsnd;
186 compat_long_t ru_msgrcv;
187 compat_long_t ru_nsignals;
188 compat_long_t ru_nvcsw;
189 compat_long_t ru_nivcsw;
190};
191
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400192extern int put_compat_rusage(const struct rusage *,
193 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195struct compat_siginfo;
196
197extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
198 struct compat_siginfo __user *, int,
199 struct compat_rusage __user *);
200
201struct compat_dirent {
202 u32 d_ino;
203 compat_off_t d_off;
204 u16 d_reclen;
205 char d_name[256];
206};
207
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100208struct compat_ustat {
209 compat_daddr_t f_tfree;
210 compat_ino_t f_tinode;
211 char f_fname[6];
212 char f_fpack[6];
213};
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
216
217typedef struct compat_sigevent {
218 compat_sigval_t sigev_value;
219 compat_int_t sigev_signo;
220 compat_int_t sigev_notify;
221 union {
222 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
223 compat_int_t _tid;
224
225 struct {
226 compat_uptr_t _function;
227 compat_uptr_t _attribute;
228 } _sigev_thread;
229 } _sigev_un;
230} compat_sigevent_t;
231
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000232struct compat_ifmap {
233 compat_ulong_t mem_start;
234 compat_ulong_t mem_end;
235 unsigned short base_addr;
236 unsigned char irq;
237 unsigned char dma;
238 unsigned char port;
239};
240
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400241struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800242 unsigned int type; /* Type of physical device or protocol */
243 unsigned int size; /* Size of the data allocated by the caller */
244 compat_uptr_t ifs_ifsu; /* union of pointers */
245};
246
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000247struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800248 union {
249 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
250 } ifr_ifrn;
251 union {
252 struct sockaddr ifru_addr;
253 struct sockaddr ifru_dstaddr;
254 struct sockaddr ifru_broadaddr;
255 struct sockaddr ifru_netmask;
256 struct sockaddr ifru_hwaddr;
257 short ifru_flags;
258 compat_int_t ifru_ivalue;
259 compat_int_t ifru_mtu;
260 struct compat_ifmap ifru_map;
261 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000262 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800263 compat_caddr_t ifru_data;
264 struct compat_if_settings ifru_settings;
265 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000266};
267
268struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400269 compat_int_t ifc_len; /* size of buffer */
270 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000271};
272
Ingo Molnar34f192c2006-03-27 01:16:24 -0800273struct compat_robust_list {
274 compat_uptr_t next;
275};
276
277struct compat_robust_list_head {
278 struct compat_robust_list list;
279 compat_long_t futex_offset;
280 compat_uptr_t list_op_pending;
281};
282
Al Viro495dfbf2012-12-25 19:09:45 -0500283#ifdef CONFIG_COMPAT_OLD_SIGACTION
284struct compat_old_sigaction {
285 compat_uptr_t sa_handler;
286 compat_old_sigset_t sa_mask;
287 compat_ulong_t sa_flags;
288 compat_uptr_t sa_restorer;
289};
290#endif
291
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400292struct compat_statfs;
293struct compat_statfs64;
294struct compat_old_linux_dirent;
295struct compat_linux_dirent;
296struct linux_dirent64;
297struct compat_msghdr;
298struct compat_mmsghdr;
299struct compat_sysinfo;
300struct compat_sysctl_args;
301struct compat_kexec_segment;
302struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400303struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400304
Ingo Molnar34f192c2006-03-27 01:16:24 -0800305extern void compat_exit_robust_list(struct task_struct *curr);
306
307asmlinkage long
308compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
309 compat_size_t len);
310asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100311compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800312 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Chris Metcalf48b25c42012-03-15 13:13:38 -0400314#ifdef CONFIG_ARCH_WANT_OLD_COMPAT_IPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315long compat_sys_semctl(int first, int second, int third, void __user *uptr);
316long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
317long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
318 int version, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
320 void __user *uptr);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400321#else
322long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
323long compat_sys_msgsnd(int msqid, struct compat_msgbuf __user *msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700324 compat_ssize_t msgsz, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400325long compat_sys_msgrcv(int msqid, struct compat_msgbuf __user *msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700326 compat_ssize_t msgsz, long msgtyp, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400327long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
328#endif
329long compat_sys_msgctl(int first, int second, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330long compat_sys_shmctl(int first, int second, void __user *uptr);
331long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
332 unsigned nsems, const struct compat_timespec __user *timeout);
333asmlinkage long compat_sys_keyctl(u32 option,
334 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100335asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337asmlinkage ssize_t compat_sys_readv(unsigned long fd,
338 const struct compat_iovec __user *vec, unsigned long vlen);
339asmlinkage ssize_t compat_sys_writev(unsigned long fd,
340 const struct compat_iovec __user *vec, unsigned long vlen);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700341asmlinkage ssize_t compat_sys_preadv(unsigned long fd,
342 const struct compat_iovec __user *vec,
Linus Torvalds601cc11d2009-04-03 08:03:22 -0700343 unsigned long vlen, u32 pos_low, u32 pos_high);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700344asmlinkage ssize_t compat_sys_pwritev(unsigned long fd,
345 const struct compat_iovec __user *vec,
Linus Torvalds601cc11d2009-04-03 08:03:22 -0700346 unsigned long vlen, u32 pos_low, u32 pos_high);
Al Viro561c6732013-02-24 10:52:26 -0500347asmlinkage long comat_sys_lseek(unsigned int, compat_off_t, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Al Viro38b983b2012-09-30 13:38:55 -0400349asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
350 const compat_uptr_t __user *envp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
353 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
354 struct compat_timeval __user *tvp);
355
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800356asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
357
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100358asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000359 compat_uint_t __user *stat_addr, int options,
360 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
363
364#define BITS_TO_COMPAT_LONGS(bits) \
365 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
366
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700367long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 unsigned long bitmap_size);
369long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
370 unsigned long bitmap_size);
371int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
372int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from);
373int get_compat_sigevent(struct sigevent *event,
374 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000375long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
376 struct compat_siginfo __user *uinfo);
Al Viro495dfbf2012-12-25 19:09:45 -0500377#ifdef CONFIG_COMPAT_OLD_SIGACTION
378asmlinkage long compat_sys_sigaction(int sig,
379 const struct compat_old_sigaction __user *act,
380 struct compat_old_sigaction __user *oact);
381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Andrew Morton643a6542006-02-11 17:55:52 -0800383static inline int compat_timeval_compare(struct compat_timeval *lhs,
384 struct compat_timeval *rhs)
385{
386 if (lhs->tv_sec < rhs->tv_sec)
387 return -1;
388 if (lhs->tv_sec > rhs->tv_sec)
389 return 1;
390 return lhs->tv_usec - rhs->tv_usec;
391}
392
393static inline int compat_timespec_compare(struct compat_timespec *lhs,
394 struct compat_timespec *rhs)
395{
396 if (lhs->tv_sec < rhs->tv_sec)
397 return -1;
398 if (lhs->tv_sec > rhs->tv_sec)
399 return 1;
400 return lhs->tv_nsec - rhs->tv_nsec;
401}
402
Davide Libenzi83f5d122007-05-10 22:23:18 -0700403extern int get_compat_itimerspec(struct itimerspec *dst,
404 const struct compat_itimerspec __user *src);
405extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
406 const struct itimerspec *src);
407
Christoph Hellwigb418da12008-10-15 22:02:06 -0700408asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
409 struct timezone __user *tz);
410asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
411 struct timezone __user *tz);
412
Stephen Rothwell3158e942006-03-26 01:37:29 -0800413asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
414
Andi Kleenbebfa102006-06-26 13:56:52 +0200415extern int compat_printk(const char *fmt, ...);
Al Viro322a56c2012-12-25 13:32:58 -0500416extern void sigset_from_compat(sigset_t *set, const compat_sigset_t *compat);
417extern void sigset_to_compat(compat_sigset_t *compat, const sigset_t *set);
Andi Kleenbebfa102006-06-26 13:56:52 +0200418
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800419asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
420 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
421 const compat_ulong_t __user *new_nodes);
422
Roland McGrath032d82d2008-01-30 13:31:47 +0100423extern int compat_ptrace_request(struct task_struct *child,
424 compat_long_t request,
425 compat_ulong_t addr, compat_ulong_t data);
426
Roland McGrathc269f192008-01-30 13:31:48 +0100427extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
428 compat_ulong_t addr, compat_ulong_t data);
429asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
430 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100431
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800432/*
433 * epoll (fs/eventpoll.c) compat bits follow ...
434 */
Al Viro35280bd2013-02-24 14:52:17 -0500435struct epoll_event; /* fortunately, this one is fixed-layout */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800436asmlinkage long compat_sys_epoll_pwait(int epfd,
Al Viro35280bd2013-02-24 14:52:17 -0500437 struct epoll_event __user *events,
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800438 int maxevents, int timeout,
439 const compat_sigset_t __user *sigmask,
440 compat_size_t sigsetsize);
441
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400442asmlinkage long compat_sys_utime(const char __user *filename,
443 struct compat_utimbuf __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400444asmlinkage long compat_sys_utimensat(unsigned int dfd,
445 const char __user *filename,
446 struct compat_timespec __user *t,
447 int flags);
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700448
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400449asmlinkage long compat_sys_time(compat_time_t __user *tloc);
450asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000451asmlinkage long compat_sys_signalfd(int ufd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400452 const compat_sigset_t __user *sigmask,
453 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800454asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
455 const struct compat_itimerspec __user *utmr,
456 struct compat_itimerspec __user *otmr);
457asmlinkage long compat_sys_timerfd_gettime(int ufd,
458 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000459
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100460asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
461 __u32 __user *pages,
462 const int __user *nodes,
463 int __user *status,
464 int flags);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400465asmlinkage long compat_sys_futimesat(unsigned int dfd,
466 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100467 struct compat_timeval __user *t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400468asmlinkage long compat_sys_utimes(const char __user *filename,
469 struct compat_timeval __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400470asmlinkage long compat_sys_newstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400471 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400472asmlinkage long compat_sys_newlstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400473 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400474asmlinkage long compat_sys_newfstatat(unsigned int dfd,
475 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100476 struct compat_stat __user *statbuf,
477 int flag);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400478asmlinkage long compat_sys_newfstat(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400479 struct compat_stat __user *statbuf);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400480asmlinkage long compat_sys_statfs(const char __user *pathname,
481 struct compat_statfs __user *buf);
482asmlinkage long compat_sys_fstatfs(unsigned int fd,
483 struct compat_statfs __user *buf);
484asmlinkage long compat_sys_statfs64(const char __user *pathname,
485 compat_size_t sz,
486 struct compat_statfs64 __user *buf);
487asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
488 struct compat_statfs64 __user *buf);
489asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
490 unsigned long arg);
491asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
492 unsigned long arg);
493asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
494asmlinkage long compat_sys_io_getevents(aio_context_t ctx_id,
495 unsigned long min_nr,
496 unsigned long nr,
497 struct io_event __user *events,
498 struct compat_timespec __user *timeout);
499asmlinkage long compat_sys_io_submit(aio_context_t ctx_id, int nr,
500 u32 __user *iocb);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400501asmlinkage long compat_sys_mount(const char __user *dev_name,
502 const char __user *dir_name,
503 const char __user *type, unsigned long flags,
504 const void __user *data);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400505asmlinkage long compat_sys_old_readdir(unsigned int fd,
506 struct compat_old_linux_dirent __user *,
507 unsigned int count);
508asmlinkage long compat_sys_getdents(unsigned int fd,
509 struct compat_linux_dirent __user *dirent,
510 unsigned int count);
511asmlinkage long compat_sys_getdents64(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400512 struct linux_dirent64 __user *dirent,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400513 unsigned int count);
514asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
515 unsigned int nr_segs, unsigned int flags);
516asmlinkage long compat_sys_open(const char __user *filename, int flags,
Al Viroa218d0f2011-11-21 14:59:34 -0500517 umode_t mode);
Al Virof482e1b2012-12-25 20:24:38 -0500518asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
Al Viroa218d0f2011-11-21 14:59:34 -0500519 int flags, umode_t mode);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400520asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
521 struct file_handle __user *handle,
522 int flags);
Al Viro3f6d0782013-02-24 13:49:08 -0500523asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
524asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400525asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
526 compat_ulong_t __user *outp,
527 compat_ulong_t __user *exp,
528 struct compat_timespec __user *tsp,
529 void __user *sig);
530asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
531 unsigned int nfds,
532 struct compat_timespec __user *tsp,
533 const compat_sigset_t __user *sigmask,
534 compat_size_t sigsetsize);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400535asmlinkage long compat_sys_signalfd4(int ufd,
536 const compat_sigset_t __user *sigmask,
537 compat_size_t sigsetsize, int flags);
538asmlinkage long compat_sys_get_mempolicy(int __user *policy,
539 compat_ulong_t __user *nmask,
540 compat_ulong_t maxnode,
541 compat_ulong_t addr,
542 compat_ulong_t flags);
543asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
544 compat_ulong_t maxnode);
545asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
546 compat_ulong_t mode,
547 compat_ulong_t __user *nmask,
548 compat_ulong_t maxnode, compat_ulong_t flags);
549
550asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
551 char __user *optval, unsigned int optlen);
552asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
553 unsigned flags);
Chris Metcalf507c5f12011-06-27 16:18:07 -0700554asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
555 unsigned vlen, unsigned int flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400556asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
557 unsigned int flags);
558asmlinkage long compat_sys_recv(int fd, void __user *buf, size_t len,
559 unsigned flags);
560asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, size_t len,
561 unsigned flags, struct sockaddr __user *addr,
562 int __user *addrlen);
563asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
564 unsigned vlen, unsigned int flags,
565 struct compat_timespec __user *timeout);
566asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
567 struct compat_timespec __user *rmtp);
568asmlinkage long compat_sys_getitimer(int which,
569 struct compat_itimerval __user *it);
570asmlinkage long compat_sys_setitimer(int which,
571 struct compat_itimerval __user *in,
572 struct compat_itimerval __user *out);
573asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
574asmlinkage long compat_sys_setrlimit(unsigned int resource,
575 struct compat_rlimit __user *rlim);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400576asmlinkage long compat_sys_getrlimit(unsigned int resource,
577 struct compat_rlimit __user *rlim);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400578asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
579asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
580 unsigned int len,
581 compat_ulong_t __user *user_mask_ptr);
582asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
583 unsigned int len,
584 compat_ulong_t __user *user_mask_ptr);
585asmlinkage long compat_sys_timer_create(clockid_t which_clock,
586 struct compat_sigevent __user *timer_event_spec,
587 timer_t __user *created_timer_id);
588asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
589 struct compat_itimerspec __user *new,
590 struct compat_itimerspec __user *old);
591asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
592 struct compat_itimerspec __user *setting);
593asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
594 struct compat_timespec __user *tp);
595asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
596 struct compat_timespec __user *tp);
597asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
598 struct compat_timex __user *tp);
599asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
600 struct compat_timespec __user *tp);
601asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
602 struct compat_timespec __user *rqtp,
603 struct compat_timespec __user *rmtp);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400604asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400605 struct compat_siginfo __user *uinfo,
606 struct compat_timespec __user *uts, compat_size_t sigsetsize);
607asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
608 compat_size_t sigsetsize);
Al Viro322a56c2012-12-25 13:32:58 -0500609asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
610 compat_sigset_t __user *oset,
611 compat_size_t sigsetsize);
Al Virofe9c1db2012-12-25 14:31:38 -0500612asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
613 compat_size_t sigsetsize);
Al Viro08d32fe2012-12-25 18:38:15 -0500614#ifndef CONFIG_ODD_RT_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500615asmlinkage long compat_sys_rt_sigaction(int,
616 const struct compat_sigaction __user *,
617 struct compat_sigaction __user *,
618 compat_size_t);
619#endif
Al Viro75907d42012-12-25 15:19:12 -0500620asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
621 struct compat_siginfo __user *uinfo);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400622asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
623asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
624 unsigned long arg);
625asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
626 struct compat_timespec __user *utime, u32 __user *uaddr2,
627 u32 val3);
628asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
629 char __user *optval, int __user *optlen);
630asmlinkage long compat_sys_kexec_load(unsigned long entry,
631 unsigned long nr_segments,
632 struct compat_kexec_segment __user *,
633 unsigned long flags);
634asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
635 const struct compat_mq_attr __user *u_mqstat,
636 struct compat_mq_attr __user *u_omqstat);
637asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
638 const struct compat_sigevent __user *u_notification);
639asmlinkage long compat_sys_mq_open(const char __user *u_name,
640 int oflag, compat_mode_t mode,
641 struct compat_mq_attr __user *u_attr);
642asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
643 const char __user *u_msg_ptr,
644 size_t msg_len, unsigned int msg_prio,
645 const struct compat_timespec __user *u_abs_timeout);
646asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
647 char __user *u_msg_ptr,
648 size_t msg_len, unsigned int __user *u_msg_prio,
649 const struct compat_timespec __user *u_abs_timeout);
650asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
651asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100652
Jeff Moyerb8373362010-05-26 14:44:25 -0700653extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400654 const struct compat_iovec __user *uvector,
655 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700656 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700657 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700658
659extern void __user *compat_alloc_user_space(unsigned long len);
660
Chris Metcalfa67ba432011-12-01 12:54:31 -0500661asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
662 const struct compat_iovec __user *lvec,
663 unsigned long liovcnt, const struct compat_iovec __user *rvec,
664 unsigned long riovcnt, unsigned long flags);
665asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
666 const struct compat_iovec __user *lvec,
667 unsigned long liovcnt, const struct compat_iovec __user *rvec,
668 unsigned long riovcnt, unsigned long flags);
669
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100670asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
671 compat_off_t __user *offset, compat_size_t count);
Al Viro19f4fc32013-02-24 02:17:03 -0500672asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
673 compat_loff_t __user *offset, compat_size_t count);
Al Viro90268432012-12-14 14:47:53 -0500674asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
675 compat_stack_t __user *uoss_ptr);
676
677int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500678int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100679
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800680asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
681 struct compat_timespec __user *interval);
682
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800683#else
684
685#define is_compat_task() (0)
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#endif /* CONFIG_COMPAT */
688#endif /* _LINUX_COMPAT_H */