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