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