blob: 8de903587fb9f36272bfe02546a22c045de438dd [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
30#define __SC_CCAST1(t1, a1) __SC_DELOUSE(t1,a1)
31#define __SC_CCAST2(t2, a2, ...) __SC_DELOUSE(t2,a2), __SC_CCAST1(__VA_ARGS__)
32#define __SC_CCAST3(t3, a3, ...) __SC_DELOUSE(t3,a3), __SC_CCAST2(__VA_ARGS__)
33#define __SC_CCAST4(t4, a4, ...) __SC_DELOUSE(t4,a4), __SC_CCAST3(__VA_ARGS__)
34#define __SC_CCAST5(t5, a5, ...) __SC_DELOUSE(t5,a5), __SC_CCAST4(__VA_ARGS__)
35#define __SC_CCAST6(t6, a6, ...) __SC_DELOUSE(t6,a6), __SC_CCAST5(__VA_ARGS__)
36#define COMPAT_SYSCALL_DEFINE1(name, ...) \
37 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
38#define COMPAT_SYSCALL_DEFINE2(name, ...) \
39 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
40#define COMPAT_SYSCALL_DEFINE3(name, ...) \
41 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
42#define COMPAT_SYSCALL_DEFINE4(name, ...) \
43 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
44#define COMPAT_SYSCALL_DEFINE5(name, ...) \
45 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
46#define COMPAT_SYSCALL_DEFINE6(name, ...) \
47 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
48
49#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
50
51#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
52 asmlinkage long compat_sys##name(__SC_DECL##x(__VA_ARGS__)); \
53 static inline long C_SYSC##name(__SC_DECL##x(__VA_ARGS__)); \
54 asmlinkage long compat_SyS##name(__SC_LONG##x(__VA_ARGS__)) \
55 { \
56 return (long) C_SYSC##name(__SC_CCAST##x(__VA_ARGS__)); \
57 } \
58 SYSCALL_ALIAS(compat_sys##name, compat_SyS##name); \
59 static inline long C_SYSC##name(__SC_DECL##x(__VA_ARGS__))
60
61#else /* CONFIG_HAVE_SYSCALL_WRAPPERS */
62
63#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
64 asmlinkage long compat_sys##name(__SC_DECL##x(__VA_ARGS__))
65
66#endif /* CONFIG_HAVE_SYSCALL_WRAPPERS */
67
Al Viro9b064fc2012-12-14 13:49:35 -050068#ifndef compat_user_stack_pointer
69#define compat_user_stack_pointer() current_user_stack_pointer()
70#endif
Al Viro90268432012-12-14 14:47:53 -050071#ifdef CONFIG_GENERIC_SIGALTSTACK
72#ifndef compat_sigaltstack /* we'll need that for MIPS */
73typedef struct compat_sigaltstack {
74 compat_uptr_t ss_sp;
75 int ss_flags;
76 compat_size_t ss_size;
77} compat_stack_t;
78#endif
79#endif
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define compat_jiffies_to_clock_t(x) \
82 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
83
Stephen Rothwell202e5972005-09-06 15:16:40 -070084typedef __compat_uid32_t compat_uid_t;
85typedef __compat_gid32_t compat_gid_t;
86
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080087struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct rusage;
89
Chris Metcalf4800a5b2011-05-17 14:41:06 -040090struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct compat_timespec it_interval;
92 struct compat_timespec it_value;
93};
94
95struct compat_utimbuf {
96 compat_time_t actime;
97 compat_time_t modtime;
98};
99
100struct compat_itimerval {
101 struct compat_timeval it_interval;
102 struct compat_timeval it_value;
103};
104
105struct compat_tms {
106 compat_clock_t tms_utime;
107 compat_clock_t tms_stime;
108 compat_clock_t tms_cutime;
109 compat_clock_t tms_cstime;
110};
111
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800112struct compat_timex {
113 compat_uint_t modes;
114 compat_long_t offset;
115 compat_long_t freq;
116 compat_long_t maxerror;
117 compat_long_t esterror;
118 compat_int_t status;
119 compat_long_t constant;
120 compat_long_t precision;
121 compat_long_t tolerance;
122 struct compat_timeval time;
123 compat_long_t tick;
124 compat_long_t ppsfreq;
125 compat_long_t jitter;
126 compat_int_t shift;
127 compat_long_t stabil;
128 compat_long_t jitcnt;
129 compat_long_t calcnt;
130 compat_long_t errcnt;
131 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700132 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800133
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400134 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
135 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
136 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800137};
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
140
141typedef struct {
142 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
143} compat_sigset_t;
144
Al Viro08d32fe2012-12-25 18:38:15 -0500145#ifdef CONFIG_GENERIC_COMPAT_RT_SIGACTION
146struct compat_sigaction {
147#ifndef __ARCH_HAS_ODD_SIGACTION
148 compat_uptr_t sa_handler;
149 compat_ulong_t sa_flags;
150#else
151 compat_ulong_t sa_flags;
152 compat_uptr_t sa_handler;
153#endif
154#ifdef __ARCH_HAS_SA_RESTORER
155 compat_uptr_t sa_restorer;
156#endif
157 compat_sigset_t sa_mask __packed;
158};
159#endif
160
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800161/*
162 * These functions operate strictly on struct compat_time*
163 */
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400164extern int get_compat_timespec(struct timespec *,
165 const struct compat_timespec __user *);
166extern int put_compat_timespec(const struct timespec *,
167 struct compat_timespec __user *);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800168extern int get_compat_timeval(struct timeval *,
169 const struct compat_timeval __user *);
170extern int put_compat_timeval(const struct timeval *,
171 struct compat_timeval __user *);
172/*
173 * These functions operate on 32- or 64-bit specs depending on
174 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments and the
175 * naming as compat_get/put_ rather than get/put_compat_.
176 */
177extern int compat_get_timespec(struct timespec *, const void __user *);
178extern int compat_put_timespec(const struct timespec *, void __user *);
179extern int compat_get_timeval(struct timeval *, const void __user *);
180extern int compat_put_timeval(const struct timeval *, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182struct compat_iovec {
183 compat_uptr_t iov_base;
184 compat_size_t iov_len;
185};
186
187struct compat_rlimit {
188 compat_ulong_t rlim_cur;
189 compat_ulong_t rlim_max;
190};
191
192struct compat_rusage {
193 struct compat_timeval ru_utime;
194 struct compat_timeval ru_stime;
195 compat_long_t ru_maxrss;
196 compat_long_t ru_ixrss;
197 compat_long_t ru_idrss;
198 compat_long_t ru_isrss;
199 compat_long_t ru_minflt;
200 compat_long_t ru_majflt;
201 compat_long_t ru_nswap;
202 compat_long_t ru_inblock;
203 compat_long_t ru_oublock;
204 compat_long_t ru_msgsnd;
205 compat_long_t ru_msgrcv;
206 compat_long_t ru_nsignals;
207 compat_long_t ru_nvcsw;
208 compat_long_t ru_nivcsw;
209};
210
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400211extern int put_compat_rusage(const struct rusage *,
212 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214struct compat_siginfo;
215
216extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
217 struct compat_siginfo __user *, int,
218 struct compat_rusage __user *);
219
220struct compat_dirent {
221 u32 d_ino;
222 compat_off_t d_off;
223 u16 d_reclen;
224 char d_name[256];
225};
226
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100227struct compat_ustat {
228 compat_daddr_t f_tfree;
229 compat_ino_t f_tinode;
230 char f_fname[6];
231 char f_fpack[6];
232};
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
235
236typedef struct compat_sigevent {
237 compat_sigval_t sigev_value;
238 compat_int_t sigev_signo;
239 compat_int_t sigev_notify;
240 union {
241 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
242 compat_int_t _tid;
243
244 struct {
245 compat_uptr_t _function;
246 compat_uptr_t _attribute;
247 } _sigev_thread;
248 } _sigev_un;
249} compat_sigevent_t;
250
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000251struct compat_ifmap {
252 compat_ulong_t mem_start;
253 compat_ulong_t mem_end;
254 unsigned short base_addr;
255 unsigned char irq;
256 unsigned char dma;
257 unsigned char port;
258};
259
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400260struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800261 unsigned int type; /* Type of physical device or protocol */
262 unsigned int size; /* Size of the data allocated by the caller */
263 compat_uptr_t ifs_ifsu; /* union of pointers */
264};
265
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000266struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800267 union {
268 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
269 } ifr_ifrn;
270 union {
271 struct sockaddr ifru_addr;
272 struct sockaddr ifru_dstaddr;
273 struct sockaddr ifru_broadaddr;
274 struct sockaddr ifru_netmask;
275 struct sockaddr ifru_hwaddr;
276 short ifru_flags;
277 compat_int_t ifru_ivalue;
278 compat_int_t ifru_mtu;
279 struct compat_ifmap ifru_map;
280 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000281 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800282 compat_caddr_t ifru_data;
283 struct compat_if_settings ifru_settings;
284 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000285};
286
287struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400288 compat_int_t ifc_len; /* size of buffer */
289 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000290};
291
Ingo Molnar34f192c2006-03-27 01:16:24 -0800292struct compat_robust_list {
293 compat_uptr_t next;
294};
295
296struct compat_robust_list_head {
297 struct compat_robust_list list;
298 compat_long_t futex_offset;
299 compat_uptr_t list_op_pending;
300};
301
Al Viro495dfbf2012-12-25 19:09:45 -0500302#ifdef CONFIG_COMPAT_OLD_SIGACTION
303struct compat_old_sigaction {
304 compat_uptr_t sa_handler;
305 compat_old_sigset_t sa_mask;
306 compat_ulong_t sa_flags;
307 compat_uptr_t sa_restorer;
308};
309#endif
310
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400311struct compat_statfs;
312struct compat_statfs64;
313struct compat_old_linux_dirent;
314struct compat_linux_dirent;
315struct linux_dirent64;
316struct compat_msghdr;
317struct compat_mmsghdr;
318struct compat_sysinfo;
319struct compat_sysctl_args;
320struct compat_kexec_segment;
321struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400322struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400323
Ingo Molnar34f192c2006-03-27 01:16:24 -0800324extern void compat_exit_robust_list(struct task_struct *curr);
325
326asmlinkage long
327compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
328 compat_size_t len);
329asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100330compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800331 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Chris Metcalf48b25c42012-03-15 13:13:38 -0400333#ifdef CONFIG_ARCH_WANT_OLD_COMPAT_IPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334long compat_sys_semctl(int first, int second, int third, void __user *uptr);
335long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
336long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
337 int version, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
339 void __user *uptr);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400340#else
341long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
342long compat_sys_msgsnd(int msqid, struct compat_msgbuf __user *msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700343 compat_ssize_t msgsz, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400344long compat_sys_msgrcv(int msqid, struct compat_msgbuf __user *msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700345 compat_ssize_t msgsz, long msgtyp, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400346long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
347#endif
348long compat_sys_msgctl(int first, int second, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349long compat_sys_shmctl(int first, int second, void __user *uptr);
350long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
351 unsigned nsems, const struct compat_timespec __user *timeout);
352asmlinkage long compat_sys_keyctl(u32 option,
353 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100354asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356asmlinkage ssize_t compat_sys_readv(unsigned long fd,
357 const struct compat_iovec __user *vec, unsigned long vlen);
358asmlinkage ssize_t compat_sys_writev(unsigned long fd,
359 const struct compat_iovec __user *vec, unsigned long vlen);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700360asmlinkage ssize_t compat_sys_preadv(unsigned long fd,
361 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700362 unsigned long vlen, u32 pos_low, u32 pos_high);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700363asmlinkage ssize_t compat_sys_pwritev(unsigned long fd,
364 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700365 unsigned long vlen, u32 pos_low, u32 pos_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Al Viro38b983b2012-09-30 13:38:55 -0400367asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
368 const compat_uptr_t __user *envp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
371 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
372 struct compat_timeval __user *tvp);
373
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800374asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
375
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100376asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000377 compat_uint_t __user *stat_addr, int options,
378 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
381
382#define BITS_TO_COMPAT_LONGS(bits) \
383 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
384
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700385long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 unsigned long bitmap_size);
387long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
388 unsigned long bitmap_size);
389int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
390int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from);
391int get_compat_sigevent(struct sigevent *event,
392 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000393long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
394 struct compat_siginfo __user *uinfo);
Al Viro495dfbf2012-12-25 19:09:45 -0500395#ifdef CONFIG_COMPAT_OLD_SIGACTION
396asmlinkage long compat_sys_sigaction(int sig,
397 const struct compat_old_sigaction __user *act,
398 struct compat_old_sigaction __user *oact);
399#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Andrew Morton643a6542006-02-11 17:55:52 -0800401static inline int compat_timeval_compare(struct compat_timeval *lhs,
402 struct compat_timeval *rhs)
403{
404 if (lhs->tv_sec < rhs->tv_sec)
405 return -1;
406 if (lhs->tv_sec > rhs->tv_sec)
407 return 1;
408 return lhs->tv_usec - rhs->tv_usec;
409}
410
411static inline int compat_timespec_compare(struct compat_timespec *lhs,
412 struct compat_timespec *rhs)
413{
414 if (lhs->tv_sec < rhs->tv_sec)
415 return -1;
416 if (lhs->tv_sec > rhs->tv_sec)
417 return 1;
418 return lhs->tv_nsec - rhs->tv_nsec;
419}
420
Davide Libenzi83f5d122007-05-10 22:23:18 -0700421extern int get_compat_itimerspec(struct itimerspec *dst,
422 const struct compat_itimerspec __user *src);
423extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
424 const struct itimerspec *src);
425
Christoph Hellwigb418da12008-10-15 22:02:06 -0700426asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
427 struct timezone __user *tz);
428asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
429 struct timezone __user *tz);
430
Stephen Rothwell3158e942006-03-26 01:37:29 -0800431asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
432
Andi Kleenbebfa102006-06-26 13:56:52 +0200433extern int compat_printk(const char *fmt, ...);
Al Viro322a56c2012-12-25 13:32:58 -0500434extern void sigset_from_compat(sigset_t *set, const compat_sigset_t *compat);
435extern void sigset_to_compat(compat_sigset_t *compat, const sigset_t *set);
Andi Kleenbebfa102006-06-26 13:56:52 +0200436
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800437asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
438 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
439 const compat_ulong_t __user *new_nodes);
440
Roland McGrath032d82d2008-01-30 13:31:47 +0100441extern int compat_ptrace_request(struct task_struct *child,
442 compat_long_t request,
443 compat_ulong_t addr, compat_ulong_t data);
444
Roland McGrathc269f192008-01-30 13:31:48 +0100445extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
446 compat_ulong_t addr, compat_ulong_t data);
447asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
448 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100449
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800450/*
451 * epoll (fs/eventpoll.c) compat bits follow ...
452 */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800453struct epoll_event;
454#define compat_epoll_event epoll_event
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800455asmlinkage long compat_sys_epoll_pwait(int epfd,
456 struct compat_epoll_event __user *events,
457 int maxevents, int timeout,
458 const compat_sigset_t __user *sigmask,
459 compat_size_t sigsetsize);
460
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400461asmlinkage long compat_sys_utime(const char __user *filename,
462 struct compat_utimbuf __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400463asmlinkage long compat_sys_utimensat(unsigned int dfd,
464 const char __user *filename,
465 struct compat_timespec __user *t,
466 int flags);
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700467
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400468asmlinkage long compat_sys_time(compat_time_t __user *tloc);
469asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000470asmlinkage long compat_sys_signalfd(int ufd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400471 const compat_sigset_t __user *sigmask,
472 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800473asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
474 const struct compat_itimerspec __user *utmr,
475 struct compat_itimerspec __user *otmr);
476asmlinkage long compat_sys_timerfd_gettime(int ufd,
477 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000478
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100479asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
480 __u32 __user *pages,
481 const int __user *nodes,
482 int __user *status,
483 int flags);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400484asmlinkage long compat_sys_futimesat(unsigned int dfd,
485 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100486 struct compat_timeval __user *t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400487asmlinkage long compat_sys_utimes(const char __user *filename,
488 struct compat_timeval __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400489asmlinkage long compat_sys_newstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400490 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400491asmlinkage long compat_sys_newlstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400492 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400493asmlinkage long compat_sys_newfstatat(unsigned int dfd,
494 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100495 struct compat_stat __user *statbuf,
496 int flag);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400497asmlinkage long compat_sys_newfstat(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400498 struct compat_stat __user *statbuf);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400499asmlinkage long compat_sys_statfs(const char __user *pathname,
500 struct compat_statfs __user *buf);
501asmlinkage long compat_sys_fstatfs(unsigned int fd,
502 struct compat_statfs __user *buf);
503asmlinkage long compat_sys_statfs64(const char __user *pathname,
504 compat_size_t sz,
505 struct compat_statfs64 __user *buf);
506asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
507 struct compat_statfs64 __user *buf);
508asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
509 unsigned long arg);
510asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
511 unsigned long arg);
512asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
513asmlinkage long compat_sys_io_getevents(aio_context_t ctx_id,
514 unsigned long min_nr,
515 unsigned long nr,
516 struct io_event __user *events,
517 struct compat_timespec __user *timeout);
518asmlinkage long compat_sys_io_submit(aio_context_t ctx_id, int nr,
519 u32 __user *iocb);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400520asmlinkage long compat_sys_mount(const char __user *dev_name,
521 const char __user *dir_name,
522 const char __user *type, unsigned long flags,
523 const void __user *data);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400524asmlinkage long compat_sys_old_readdir(unsigned int fd,
525 struct compat_old_linux_dirent __user *,
526 unsigned int count);
527asmlinkage long compat_sys_getdents(unsigned int fd,
528 struct compat_linux_dirent __user *dirent,
529 unsigned int count);
530asmlinkage long compat_sys_getdents64(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400531 struct linux_dirent64 __user *dirent,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400532 unsigned int count);
533asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
534 unsigned int nr_segs, unsigned int flags);
535asmlinkage long compat_sys_open(const char __user *filename, int flags,
Al Viroa218d0f2011-11-21 14:59:34 -0500536 umode_t mode);
Al Virof482e1b2012-12-25 20:24:38 -0500537asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
Al Viroa218d0f2011-11-21 14:59:34 -0500538 int flags, umode_t mode);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400539asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
540 struct file_handle __user *handle,
541 int flags);
542asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
543 compat_ulong_t __user *outp,
544 compat_ulong_t __user *exp,
545 struct compat_timespec __user *tsp,
546 void __user *sig);
547asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
548 unsigned int nfds,
549 struct compat_timespec __user *tsp,
550 const compat_sigset_t __user *sigmask,
551 compat_size_t sigsetsize);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400552asmlinkage long compat_sys_signalfd4(int ufd,
553 const compat_sigset_t __user *sigmask,
554 compat_size_t sigsetsize, int flags);
555asmlinkage long compat_sys_get_mempolicy(int __user *policy,
556 compat_ulong_t __user *nmask,
557 compat_ulong_t maxnode,
558 compat_ulong_t addr,
559 compat_ulong_t flags);
560asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
561 compat_ulong_t maxnode);
562asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
563 compat_ulong_t mode,
564 compat_ulong_t __user *nmask,
565 compat_ulong_t maxnode, compat_ulong_t flags);
566
567asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
568 char __user *optval, unsigned int optlen);
569asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
570 unsigned flags);
Chris Metcalf507c5f12011-06-27 16:18:07 -0700571asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
572 unsigned vlen, unsigned int flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400573asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
574 unsigned int flags);
575asmlinkage long compat_sys_recv(int fd, void __user *buf, size_t len,
576 unsigned flags);
577asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, size_t len,
578 unsigned flags, struct sockaddr __user *addr,
579 int __user *addrlen);
580asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
581 unsigned vlen, unsigned int flags,
582 struct compat_timespec __user *timeout);
583asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
584 struct compat_timespec __user *rmtp);
585asmlinkage long compat_sys_getitimer(int which,
586 struct compat_itimerval __user *it);
587asmlinkage long compat_sys_setitimer(int which,
588 struct compat_itimerval __user *in,
589 struct compat_itimerval __user *out);
590asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
591asmlinkage long compat_sys_setrlimit(unsigned int resource,
592 struct compat_rlimit __user *rlim);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400593asmlinkage long compat_sys_getrlimit(unsigned int resource,
594 struct compat_rlimit __user *rlim);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400595asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
596asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
597 unsigned int len,
598 compat_ulong_t __user *user_mask_ptr);
599asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
600 unsigned int len,
601 compat_ulong_t __user *user_mask_ptr);
602asmlinkage long compat_sys_timer_create(clockid_t which_clock,
603 struct compat_sigevent __user *timer_event_spec,
604 timer_t __user *created_timer_id);
605asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
606 struct compat_itimerspec __user *new,
607 struct compat_itimerspec __user *old);
608asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
609 struct compat_itimerspec __user *setting);
610asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
611 struct compat_timespec __user *tp);
612asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
613 struct compat_timespec __user *tp);
614asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
615 struct compat_timex __user *tp);
616asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
617 struct compat_timespec __user *tp);
618asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
619 struct compat_timespec __user *rqtp,
620 struct compat_timespec __user *rmtp);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400621asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400622 struct compat_siginfo __user *uinfo,
623 struct compat_timespec __user *uts, compat_size_t sigsetsize);
624asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
625 compat_size_t sigsetsize);
Al Viro322a56c2012-12-25 13:32:58 -0500626#ifdef CONFIG_GENERIC_COMPAT_RT_SIGPROCMASK
627asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
628 compat_sigset_t __user *oset,
629 compat_size_t sigsetsize);
630#endif
Al Virofe9c1db2012-12-25 14:31:38 -0500631#ifdef CONFIG_GENERIC_COMPAT_RT_SIGPENDING
632asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
633 compat_size_t sigsetsize);
634#endif
Al Viro08d32fe2012-12-25 18:38:15 -0500635#ifndef CONFIG_ODD_RT_SIGACTION
636#ifdef CONFIG_GENERIC_COMPAT_RT_SIGACTION
637asmlinkage long compat_sys_rt_sigaction(int,
638 const struct compat_sigaction __user *,
639 struct compat_sigaction __user *,
640 compat_size_t);
641#endif
642#endif
Al Viro75907d42012-12-25 15:19:12 -0500643#ifdef CONFIG_GENERIC_COMPAT_RT_SIGQUEUEINFO
644asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
645 struct compat_siginfo __user *uinfo);
646#endif
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400647asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
648asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
649 unsigned long arg);
650asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
651 struct compat_timespec __user *utime, u32 __user *uaddr2,
652 u32 val3);
653asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
654 char __user *optval, int __user *optlen);
655asmlinkage long compat_sys_kexec_load(unsigned long entry,
656 unsigned long nr_segments,
657 struct compat_kexec_segment __user *,
658 unsigned long flags);
659asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
660 const struct compat_mq_attr __user *u_mqstat,
661 struct compat_mq_attr __user *u_omqstat);
662asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
663 const struct compat_sigevent __user *u_notification);
664asmlinkage long compat_sys_mq_open(const char __user *u_name,
665 int oflag, compat_mode_t mode,
666 struct compat_mq_attr __user *u_attr);
667asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
668 const char __user *u_msg_ptr,
669 size_t msg_len, unsigned int msg_prio,
670 const struct compat_timespec __user *u_abs_timeout);
671asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
672 char __user *u_msg_ptr,
673 size_t msg_len, unsigned int __user *u_msg_prio,
674 const struct compat_timespec __user *u_abs_timeout);
675asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
676asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100677
Jeff Moyerb8373362010-05-26 14:44:25 -0700678extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400679 const struct compat_iovec __user *uvector,
680 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700681 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700682 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700683
684extern void __user *compat_alloc_user_space(unsigned long len);
685
Chris Metcalfa67ba432011-12-01 12:54:31 -0500686asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
687 const struct compat_iovec __user *lvec,
688 unsigned long liovcnt, const struct compat_iovec __user *rvec,
689 unsigned long riovcnt, unsigned long flags);
690asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
691 const struct compat_iovec __user *lvec,
692 unsigned long liovcnt, const struct compat_iovec __user *rvec,
693 unsigned long riovcnt, unsigned long flags);
694
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100695asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
696 compat_off_t __user *offset, compat_size_t count);
Al Viro90268432012-12-14 14:47:53 -0500697#ifdef CONFIG_GENERIC_SIGALTSTACK
698asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
699 compat_stack_t __user *uoss_ptr);
700
701int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500702int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Al Viro90268432012-12-14 14:47:53 -0500703#endif
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100704
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800705asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
706 struct compat_timespec __user *interval);
707
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800708#else
709
710#define is_compat_task() (0)
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#endif /* CONFIG_COMPAT */
713#endif /* _LINUX_COMPAT_H */