]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/compat.h
kexec/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types
[mirror_ubuntu-bionic-kernel.git] / include / linux / compat.h
CommitLineData
1da177e4
LT
1#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 */
1da177e4
LT
7
8#ifdef CONFIG_COMPAT
9
10#include <linux/stat.h>
11#include <linux/param.h> /* for HZ */
12#include <linux/sem.h>
2dceba14
AB
13#include <linux/socket.h>
14#include <linux/if.h>
be84cb43 15#include <linux/fs.h>
45e9683e 16#include <linux/aio_abi.h> /* for aio_context_t */
1da177e4
LT
17
18#include <asm/compat.h>
19#include <asm/siginfo.h>
3f2e05e9 20#include <asm/signal.h>
1da177e4 21
45e87781
L
22#ifndef COMPAT_USE_64BIT_TIME
23#define COMPAT_USE_64BIT_TIME 0
24#endif
25
46836613
AV
26#ifndef __SC_DELOUSE
27#define __SC_DELOUSE(t,v) ((t)(unsigned long)(v))
28#endif
29
217f4433
HC
30#define COMPAT_SYSCALL_DEFINE0(name) \
31 asmlinkage long compat_sys_##name(void)
32
46836613
AV
33#define COMPAT_SYSCALL_DEFINE1(name, ...) \
34 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
35#define COMPAT_SYSCALL_DEFINE2(name, ...) \
36 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
37#define COMPAT_SYSCALL_DEFINE3(name, ...) \
38 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
39#define COMPAT_SYSCALL_DEFINE4(name, ...) \
40 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
41#define COMPAT_SYSCALL_DEFINE5(name, ...) \
42 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
43#define COMPAT_SYSCALL_DEFINE6(name, ...) \
44 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
45
46836613 46#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
83460ec8
AK
47 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))\
48 __attribute__((alias(__stringify(compat_SyS##name)))); \
07fe6e00 49 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
f9597f24 50 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__));\
07fe6e00 51 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__))\
46836613 52 { \
07fe6e00 53 return C_SYSC##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__)); \
46836613 54 } \
07fe6e00 55 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__))
46836613 56
9b064fc3
AV
57#ifndef compat_user_stack_pointer
58#define compat_user_stack_pointer() current_user_stack_pointer()
59#endif
90268439
AV
60#ifndef compat_sigaltstack /* we'll need that for MIPS */
61typedef struct compat_sigaltstack {
62 compat_uptr_t ss_sp;
63 int ss_flags;
64 compat_size_t ss_size;
65} compat_stack_t;
66#endif
90268439 67
1da177e4
LT
68#define compat_jiffies_to_clock_t(x) \
69 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
70
202e5979
SR
71typedef __compat_uid32_t compat_uid_t;
72typedef __compat_gid32_t compat_gid_t;
73
932602e2
HC
74typedef compat_ulong_t compat_aio_context_t;
75
5d0e5283 76struct compat_sel_arg_struct;
1da177e4
LT
77struct rusage;
78
4800a5bb 79struct compat_itimerspec {
1da177e4
LT
80 struct compat_timespec it_interval;
81 struct compat_timespec it_value;
82};
83
84struct compat_utimbuf {
85 compat_time_t actime;
86 compat_time_t modtime;
87};
88
89struct compat_itimerval {
90 struct compat_timeval it_interval;
91 struct compat_timeval it_value;
92};
93
94struct compat_tms {
95 compat_clock_t tms_utime;
96 compat_clock_t tms_stime;
97 compat_clock_t tms_cutime;
98 compat_clock_t tms_cstime;
99};
100
88959ea9
SR
101struct compat_timex {
102 compat_uint_t modes;
103 compat_long_t offset;
104 compat_long_t freq;
105 compat_long_t maxerror;
106 compat_long_t esterror;
107 compat_int_t status;
108 compat_long_t constant;
109 compat_long_t precision;
110 compat_long_t tolerance;
111 struct compat_timeval time;
112 compat_long_t tick;
113 compat_long_t ppsfreq;
114 compat_long_t jitter;
115 compat_int_t shift;
116 compat_long_t stabil;
117 compat_long_t jitcnt;
118 compat_long_t calcnt;
119 compat_long_t errcnt;
120 compat_long_t stbcnt;
153b5d05 121 compat_int_t tai;
88959ea9 122
4800a5bb
CM
123 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
124 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
125 compat_int_t:32; compat_int_t:32; compat_int_t:32;
88959ea9
SR
126};
127
1da177e4
LT
128#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
129
130typedef struct {
131 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
132} compat_sigset_t;
133
08d32fe5 134struct compat_sigaction {
2a148698 135#ifndef __ARCH_HAS_IRIX_SIGACTION
08d32fe5
AV
136 compat_uptr_t sa_handler;
137 compat_ulong_t sa_flags;
138#else
2a148698 139 compat_uint_t sa_flags;
08d32fe5
AV
140 compat_uptr_t sa_handler;
141#endif
142#ifdef __ARCH_HAS_SA_RESTORER
143 compat_uptr_t sa_restorer;
144#endif
145 compat_sigset_t sa_mask __packed;
146};
08d32fe5 147
6684ba20
PA
148/*
149 * These functions operate strictly on struct compat_time*
150 */
4800a5bb
CM
151extern int get_compat_timespec(struct timespec *,
152 const struct compat_timespec __user *);
153extern int put_compat_timespec(const struct timespec *,
154 struct compat_timespec __user *);
6684ba20
PA
155extern int get_compat_timeval(struct timeval *,
156 const struct compat_timeval __user *);
157extern int put_compat_timeval(const struct timeval *,
158 struct compat_timeval __user *);
159/*
160 * These functions operate on 32- or 64-bit specs depending on
161 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments and the
162 * naming as compat_get/put_ rather than get/put_compat_.
163 */
164extern int compat_get_timespec(struct timespec *, const void __user *);
165extern int compat_put_timespec(const struct timespec *, void __user *);
166extern int compat_get_timeval(struct timeval *, const void __user *);
167extern int compat_put_timeval(const struct timeval *, void __user *);
1da177e4
LT
168
169struct compat_iovec {
170 compat_uptr_t iov_base;
171 compat_size_t iov_len;
172};
173
174struct compat_rlimit {
175 compat_ulong_t rlim_cur;
176 compat_ulong_t rlim_max;
177};
178
179struct compat_rusage {
180 struct compat_timeval ru_utime;
181 struct compat_timeval ru_stime;
182 compat_long_t ru_maxrss;
183 compat_long_t ru_ixrss;
184 compat_long_t ru_idrss;
185 compat_long_t ru_isrss;
186 compat_long_t ru_minflt;
187 compat_long_t ru_majflt;
188 compat_long_t ru_nswap;
189 compat_long_t ru_inblock;
190 compat_long_t ru_oublock;
191 compat_long_t ru_msgsnd;
192 compat_long_t ru_msgrcv;
193 compat_long_t ru_nsignals;
194 compat_long_t ru_nvcsw;
195 compat_long_t ru_nivcsw;
196};
197
4800a5bb
CM
198extern int put_compat_rusage(const struct rusage *,
199 struct compat_rusage __user *);
1da177e4
LT
200
201struct compat_siginfo;
202
203extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
204 struct compat_siginfo __user *, int,
205 struct compat_rusage __user *);
206
207struct compat_dirent {
208 u32 d_ino;
209 compat_off_t d_off;
210 u16 d_reclen;
211 char d_name[256];
212};
213
2b1c6bd7
CH
214struct compat_ustat {
215 compat_daddr_t f_tfree;
216 compat_ino_t f_tinode;
217 char f_fname[6];
218 char f_fpack[6];
219};
220
1da177e4
LT
221#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
222
223typedef struct compat_sigevent {
224 compat_sigval_t sigev_value;
225 compat_int_t sigev_signo;
226 compat_int_t sigev_notify;
227 union {
228 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
229 compat_int_t _tid;
230
231 struct {
232 compat_uptr_t _function;
233 compat_uptr_t _attribute;
234 } _sigev_thread;
235 } _sigev_un;
236} compat_sigevent_t;
237
2dceba14
AB
238struct compat_ifmap {
239 compat_ulong_t mem_start;
240 compat_ulong_t mem_end;
241 unsigned short base_addr;
242 unsigned char irq;
243 unsigned char dma;
244 unsigned char port;
245};
246
4800a5bb 247struct compat_if_settings {
7a50a240
AB
248 unsigned int type; /* Type of physical device or protocol */
249 unsigned int size; /* Size of the data allocated by the caller */
250 compat_uptr_t ifs_ifsu; /* union of pointers */
251};
252
2dceba14 253struct compat_ifreq {
7a50a240
AB
254 union {
255 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
256 } ifr_ifrn;
257 union {
258 struct sockaddr ifru_addr;
259 struct sockaddr ifru_dstaddr;
260 struct sockaddr ifru_broadaddr;
261 struct sockaddr ifru_netmask;
262 struct sockaddr ifru_hwaddr;
263 short ifru_flags;
264 compat_int_t ifru_ivalue;
265 compat_int_t ifru_mtu;
266 struct compat_ifmap ifru_map;
267 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
2dceba14 268 char ifru_newname[IFNAMSIZ];
7a50a240
AB
269 compat_caddr_t ifru_data;
270 struct compat_if_settings ifru_settings;
271 } ifr_ifru;
2dceba14
AB
272};
273
274struct compat_ifconf {
4800a5bb
CM
275 compat_int_t ifc_len; /* size of buffer */
276 compat_caddr_t ifcbuf;
2dceba14
AB
277};
278
34f192c6
IM
279struct compat_robust_list {
280 compat_uptr_t next;
281};
282
283struct compat_robust_list_head {
284 struct compat_robust_list list;
285 compat_long_t futex_offset;
286 compat_uptr_t list_op_pending;
287};
288
495dfbf7
AV
289#ifdef CONFIG_COMPAT_OLD_SIGACTION
290struct compat_old_sigaction {
291 compat_uptr_t sa_handler;
292 compat_old_sigset_t sa_mask;
293 compat_ulong_t sa_flags;
294 compat_uptr_t sa_restorer;
295};
296#endif
297
be84cb43
CM
298struct compat_statfs;
299struct compat_statfs64;
300struct compat_old_linux_dirent;
301struct compat_linux_dirent;
302struct linux_dirent64;
303struct compat_msghdr;
304struct compat_mmsghdr;
305struct compat_sysinfo;
306struct compat_sysctl_args;
307struct compat_kexec_segment;
308struct compat_mq_attr;
48b25c43 309struct compat_msgbuf;
be84cb43 310
34f192c6
IM
311extern void compat_exit_robust_list(struct task_struct *curr);
312
313asmlinkage long
314compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
315 compat_size_t len);
316asmlinkage long
ba46df98 317compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
34f192c6 318 compat_size_t __user *len_ptr);
1da177e4 319
56e41d3c 320asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
0e65a81b
AV
321asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
322asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
323asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
05ba3f1a 324 compat_ssize_t msgsz, int msgflg);
0e65a81b 325asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
291fdb0b 326 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
48b25c43 327long compat_sys_msgctl(int first, int second, void __user *uptr);
1da177e4
LT
328long compat_sys_shmctl(int first, int second, void __user *uptr);
329long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
330 unsigned nsems, const struct compat_timespec __user *timeout);
331asmlinkage long compat_sys_keyctl(u32 option,
332 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
2b1c6bd7 333asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
1da177e4 334
dfd948e3
HC
335asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
336 const struct compat_iovec __user *vec, compat_ulong_t vlen);
337asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
338 const struct compat_iovec __user *vec, compat_ulong_t vlen);
339asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
f3554f4b 340 const struct compat_iovec __user *vec,
dfd948e3
HC
341 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
342asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
f3554f4b 343 const struct compat_iovec __user *vec,
dfd948e3 344 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
378a10f3
HC
345
346#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
347asmlinkage long compat_sys_preadv64(unsigned long fd,
348 const struct compat_iovec __user *vec,
349 unsigned long vlen, loff_t pos);
350#endif
351
352#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
353asmlinkage long compat_sys_pwritev64(unsigned long fd,
354 const struct compat_iovec __user *vec,
355 unsigned long vlen, loff_t pos);
356#endif
357
e5fbf67d 358asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
1da177e4 359
38b983b3
AV
360asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
361 const compat_uptr_t __user *envp);
1da177e4
LT
362
363asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
364 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
365 struct compat_timeval __user *tvp);
366
5d0e5283
CH
367asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
368
c202f298 369asmlinkage long compat_sys_wait4(compat_pid_t pid,
7d61c459
AV
370 compat_uint_t __user *stat_addr, int options,
371 struct compat_rusage __user *ru);
c202f298 372
1da177e4
LT
373#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
374
375#define BITS_TO_COMPAT_LONGS(bits) \
376 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
377
5fa3839a 378long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
1da177e4
LT
379 unsigned long bitmap_size);
380long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
381 unsigned long bitmap_size);
382int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
ce395960 383int copy_siginfo_to_user32(struct compat_siginfo __user *to, const siginfo_t *from);
1da177e4
LT
384int get_compat_sigevent(struct sigevent *event,
385 const struct compat_sigevent __user *u_event);
62ab4505
TG
386long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
387 struct compat_siginfo __user *uinfo);
495dfbf7
AV
388#ifdef CONFIG_COMPAT_OLD_SIGACTION
389asmlinkage long compat_sys_sigaction(int sig,
390 const struct compat_old_sigaction __user *act,
391 struct compat_old_sigaction __user *oact);
392#endif
1da177e4 393
643a6545
AM
394static inline int compat_timeval_compare(struct compat_timeval *lhs,
395 struct compat_timeval *rhs)
396{
397 if (lhs->tv_sec < rhs->tv_sec)
398 return -1;
399 if (lhs->tv_sec > rhs->tv_sec)
400 return 1;
401 return lhs->tv_usec - rhs->tv_usec;
402}
403
404static inline int compat_timespec_compare(struct compat_timespec *lhs,
405 struct compat_timespec *rhs)
406{
407 if (lhs->tv_sec < rhs->tv_sec)
408 return -1;
409 if (lhs->tv_sec > rhs->tv_sec)
410 return 1;
411 return lhs->tv_nsec - rhs->tv_nsec;
412}
413
83f5d126
DL
414extern int get_compat_itimerspec(struct itimerspec *dst,
415 const struct compat_itimerspec __user *src);
416extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
417 const struct itimerspec *src);
418
b418da16
CH
419asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
420 struct timezone __user *tz);
421asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
422 struct timezone __user *tz);
423
3158e941
SR
424asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
425
bebfa101 426extern int compat_printk(const char *fmt, ...);
322a56cb
AV
427extern void sigset_from_compat(sigset_t *set, const compat_sigset_t *compat);
428extern void sigset_to_compat(compat_sigset_t *compat, const sigset_t *set);
bebfa101 429
3fd59397
SR
430asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
431 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
432 const compat_ulong_t __user *new_nodes);
433
032d82d9
RM
434extern int compat_ptrace_request(struct task_struct *child,
435 compat_long_t request,
436 compat_ulong_t addr, compat_ulong_t data);
437
c269f196
RM
438extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
439 compat_ulong_t addr, compat_ulong_t data);
440asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
441 compat_long_t addr, compat_long_t data);
c269f196 442
d8d14bd0 443asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
f6dfb4fd
DL
444/*
445 * epoll (fs/eventpoll.c) compat bits follow ...
446 */
35280bd4 447struct epoll_event; /* fortunately, this one is fixed-layout */
f6dfb4fd 448asmlinkage long compat_sys_epoll_pwait(int epfd,
35280bd4 449 struct epoll_event __user *events,
f6dfb4fd
DL
450 int maxevents, int timeout,
451 const compat_sigset_t __user *sigmask,
452 compat_size_t sigsetsize);
453
be84cb43
CM
454asmlinkage long compat_sys_utime(const char __user *filename,
455 struct compat_utimbuf __user *t);
4800a5bb
CM
456asmlinkage long compat_sys_utimensat(unsigned int dfd,
457 const char __user *filename,
458 struct compat_timespec __user *t,
459 int flags);
97416ce8 460
be84cb43
CM
461asmlinkage long compat_sys_time(compat_time_t __user *tloc);
462asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
140ff8b0 463asmlinkage long compat_sys_signalfd(int ufd,
4800a5bb
CM
464 const compat_sigset_t __user *sigmask,
465 compat_size_t sigsetsize);
4d672e7a
DL
466asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
467 const struct compat_itimerspec __user *utmr,
468 struct compat_itimerspec __user *otmr);
469asmlinkage long compat_sys_timerfd_gettime(int ufd,
470 struct compat_itimerspec __user *otmr);
140ff8b0 471
4c696ba7
HC
472asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
473 __u32 __user *pages,
474 const int __user *nodes,
475 int __user *status,
476 int flags);
4800a5bb
CM
477asmlinkage long compat_sys_futimesat(unsigned int dfd,
478 const char __user *filename,
4c696ba7 479 struct compat_timeval __user *t);
be84cb43
CM
480asmlinkage long compat_sys_utimes(const char __user *filename,
481 struct compat_timeval __user *t);
4800a5bb 482asmlinkage long compat_sys_newstat(const char __user *filename,
be84cb43 483 struct compat_stat __user *statbuf);
4800a5bb 484asmlinkage long compat_sys_newlstat(const char __user *filename,
be84cb43 485 struct compat_stat __user *statbuf);
4800a5bb
CM
486asmlinkage long compat_sys_newfstatat(unsigned int dfd,
487 const char __user *filename,
4c696ba7
HC
488 struct compat_stat __user *statbuf,
489 int flag);
be84cb43 490asmlinkage long compat_sys_newfstat(unsigned int fd,
4800a5bb 491 struct compat_stat __user *statbuf);
be84cb43
CM
492asmlinkage long compat_sys_statfs(const char __user *pathname,
493 struct compat_statfs __user *buf);
494asmlinkage long compat_sys_fstatfs(unsigned int fd,
495 struct compat_statfs __user *buf);
496asmlinkage long compat_sys_statfs64(const char __user *pathname,
497 compat_size_t sz,
498 struct compat_statfs64 __user *buf);
499asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
500 struct compat_statfs64 __user *buf);
501asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
932602e2 502 compat_ulong_t arg);
be84cb43 503asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
932602e2 504 compat_ulong_t arg);
be84cb43 505asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
932602e2
HC
506asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
507 compat_long_t min_nr,
508 compat_long_t nr,
be84cb43
CM
509 struct io_event __user *events,
510 struct compat_timespec __user *timeout);
932602e2 511asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
be84cb43 512 u32 __user *iocb);
4800a5bb
CM
513asmlinkage long compat_sys_mount(const char __user *dev_name,
514 const char __user *dir_name,
932602e2 515 const char __user *type, compat_ulong_t flags,
4800a5bb 516 const void __user *data);
be84cb43
CM
517asmlinkage long compat_sys_old_readdir(unsigned int fd,
518 struct compat_old_linux_dirent __user *,
519 unsigned int count);
520asmlinkage long compat_sys_getdents(unsigned int fd,
521 struct compat_linux_dirent __user *dirent,
522 unsigned int count);
0473c9b5 523#ifdef __ARCH_WANT_COMPAT_SYS_GETDENTS64
be84cb43 524asmlinkage long compat_sys_getdents64(unsigned int fd,
4800a5bb 525 struct linux_dirent64 __user *dirent,
be84cb43 526 unsigned int count);
0473c9b5 527#endif
be84cb43
CM
528asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
529 unsigned int nr_segs, unsigned int flags);
530asmlinkage long compat_sys_open(const char __user *filename, int flags,
a218d0fd 531 umode_t mode);
f482e1b4 532asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
a218d0fd 533 int flags, umode_t mode);
be84cb43
CM
534asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
535 struct file_handle __user *handle,
536 int flags);
3f6d078d
AV
537asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
538asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
be84cb43
CM
539asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
540 compat_ulong_t __user *outp,
541 compat_ulong_t __user *exp,
542 struct compat_timespec __user *tsp,
543 void __user *sig);
544asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
545 unsigned int nfds,
546 struct compat_timespec __user *tsp,
547 const compat_sigset_t __user *sigmask,
548 compat_size_t sigsetsize);
be84cb43
CM
549asmlinkage long compat_sys_signalfd4(int ufd,
550 const compat_sigset_t __user *sigmask,
551 compat_size_t sigsetsize, int flags);
552asmlinkage long compat_sys_get_mempolicy(int __user *policy,
553 compat_ulong_t __user *nmask,
554 compat_ulong_t maxnode,
555 compat_ulong_t addr,
556 compat_ulong_t flags);
557asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
558 compat_ulong_t maxnode);
559asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
560 compat_ulong_t mode,
561 compat_ulong_t __user *nmask,
562 compat_ulong_t maxnode, compat_ulong_t flags);
563
564asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
565 char __user *optval, unsigned int optlen);
566asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
567 unsigned flags);
507c5f12
CM
568asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
569 unsigned vlen, unsigned int flags);
be84cb43
CM
570asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
571 unsigned int flags);
3a49a0f7 572asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
be84cb43 573 unsigned flags);
3a49a0f7 574asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
be84cb43
CM
575 unsigned flags, struct sockaddr __user *addr,
576 int __user *addrlen);
577asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
578 unsigned vlen, unsigned int flags,
579 struct compat_timespec __user *timeout);
580asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
581 struct compat_timespec __user *rmtp);
582asmlinkage long compat_sys_getitimer(int which,
583 struct compat_itimerval __user *it);
584asmlinkage long compat_sys_setitimer(int which,
585 struct compat_itimerval __user *in,
586 struct compat_itimerval __user *out);
587asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
588asmlinkage long compat_sys_setrlimit(unsigned int resource,
589 struct compat_rlimit __user *rlim);
4800a5bb
CM
590asmlinkage long compat_sys_getrlimit(unsigned int resource,
591 struct compat_rlimit __user *rlim);
be84cb43
CM
592asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
593asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
594 unsigned int len,
595 compat_ulong_t __user *user_mask_ptr);
596asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
597 unsigned int len,
598 compat_ulong_t __user *user_mask_ptr);
599asmlinkage long compat_sys_timer_create(clockid_t which_clock,
600 struct compat_sigevent __user *timer_event_spec,
601 timer_t __user *created_timer_id);
602asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
603 struct compat_itimerspec __user *new,
604 struct compat_itimerspec __user *old);
605asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
606 struct compat_itimerspec __user *setting);
607asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
608 struct compat_timespec __user *tp);
609asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
610 struct compat_timespec __user *tp);
611asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
612 struct compat_timex __user *tp);
613asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
614 struct compat_timespec __user *tp);
615asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
616 struct compat_timespec __user *rqtp,
617 struct compat_timespec __user *rmtp);
4800a5bb 618asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
be84cb43
CM
619 struct compat_siginfo __user *uinfo,
620 struct compat_timespec __user *uts, compat_size_t sigsetsize);
621asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
622 compat_size_t sigsetsize);
322a56cb
AV
623asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
624 compat_sigset_t __user *oset,
625 compat_size_t sigsetsize);
fe9c1db2
AV
626asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
627 compat_size_t sigsetsize);
08d32fe5 628#ifndef CONFIG_ODD_RT_SIGACTION
08d32fe5
AV
629asmlinkage long compat_sys_rt_sigaction(int,
630 const struct compat_sigaction __user *,
631 struct compat_sigaction __user *,
632 compat_size_t);
633#endif
75907d4d
AV
634asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
635 struct compat_siginfo __user *uinfo);
be84cb43
CM
636asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
637asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
932602e2 638 compat_ulong_t arg);
be84cb43
CM
639asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
640 struct compat_timespec __user *utime, u32 __user *uaddr2,
641 u32 val3);
642asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
643 char __user *optval, int __user *optlen);
ca2c405a
HC
644asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
645 compat_ulong_t nr_segments,
be84cb43 646 struct compat_kexec_segment __user *,
ca2c405a 647 compat_ulong_t flags);
be84cb43
CM
648asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
649 const struct compat_mq_attr __user *u_mqstat,
650 struct compat_mq_attr __user *u_omqstat);
651asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
652 const struct compat_sigevent __user *u_notification);
653asmlinkage long compat_sys_mq_open(const char __user *u_name,
654 int oflag, compat_mode_t mode,
655 struct compat_mq_attr __user *u_attr);
656asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
657 const char __user *u_msg_ptr,
8eee9093 658 compat_size_t msg_len, unsigned int msg_prio,
be84cb43
CM
659 const struct compat_timespec __user *u_abs_timeout);
660asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
661 char __user *u_msg_ptr,
8eee9093 662 compat_size_t msg_len, unsigned int __user *u_msg_prio,
be84cb43
CM
663 const struct compat_timespec __user *u_abs_timeout);
664asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
665asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
4c696ba7 666
b8373363 667extern ssize_t compat_rw_copy_check_uvector(int type,
4800a5bb
CM
668 const struct compat_iovec __user *uvector,
669 unsigned long nr_segs,
b8373363 670 unsigned long fast_segs, struct iovec *fast_pointer,
ac34ebb3 671 struct iovec **ret_pointer);
c41d68a5
PA
672
673extern void __user *compat_alloc_user_space(unsigned long len);
674
a67ba43d
CM
675asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
676 const struct compat_iovec __user *lvec,
677 unsigned long liovcnt, const struct compat_iovec __user *rvec,
678 unsigned long riovcnt, unsigned long flags);
679asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
680 const struct compat_iovec __user *lvec,
681 unsigned long liovcnt, const struct compat_iovec __user *rvec,
682 unsigned long riovcnt, unsigned long flags);
683
8f9c0119
CM
684asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
685 compat_off_t __user *offset, compat_size_t count);
19f4fc3a
AV
686asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
687 compat_loff_t __user *offset, compat_size_t count);
90268439
AV
688asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
689 compat_stack_t __user *uoss_ptr);
690
691int compat_restore_altstack(const compat_stack_t __user *uss);
c40702c4 692int __compat_save_altstack(compat_stack_t __user *, unsigned long);
bd1c149a
AV
693#define compat_save_altstack_ex(uss, sp) do { \
694 compat_stack_t __user *__uss = uss; \
695 struct task_struct *t = current; \
696 put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
697 put_user_ex(sas_ss_flags(sp), &__uss->ss_flags); \
698 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
699} while (0);
8f9c0119 700
0ad50c38
CM
701asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
702 struct compat_timespec __user *interval);
703
91c2e0bc
AV
704asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
705 int, const char __user *);
3c761ea0
LT
706#else
707
708#define is_compat_task() (0)
709
1da177e4
LT
710#endif /* CONFIG_COMPAT */
711#endif /* _LINUX_COMPAT_H */