17c497b826901f7daf0952bf80fd69e4c16090f5
[linux-2.6-microblaze.git] / include / linux / compat.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_COMPAT_H
3 #define _LINUX_COMPAT_H
4 /*
5  * These are the type definitions for the architecture specific
6  * syscall compatibility layer.
7  */
8
9 #include <linux/types.h>
10 #include <linux/time.h>
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/uaccess.h>
20 #include <linux/unistd.h>
21
22 #include <asm/compat.h>
23
24 #ifdef CONFIG_COMPAT
25 #include <asm/siginfo.h>
26 #include <asm/signal.h>
27 #endif
28
29 #ifdef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
30 /*
31  * It may be useful for an architecture to override the definitions of the
32  * COMPAT_SYSCALL_DEFINE0 and COMPAT_SYSCALL_DEFINEx() macros, in particular
33  * to use a different calling convention for syscalls. To allow for that,
34  + the prototypes for the compat_sys_*() functions below will *not* be included
35  * if CONFIG_ARCH_HAS_SYSCALL_WRAPPER is enabled.
36  */
37 #include <asm/syscall_wrapper.h>
38 #endif /* CONFIG_ARCH_HAS_SYSCALL_WRAPPER */
39
40 #ifndef COMPAT_USE_64BIT_TIME
41 #define COMPAT_USE_64BIT_TIME 0
42 #endif
43
44 #ifndef __SC_DELOUSE
45 #define __SC_DELOUSE(t,v) ((__force t)(unsigned long)(v))
46 #endif
47
48 #ifndef COMPAT_SYSCALL_DEFINE0
49 #define COMPAT_SYSCALL_DEFINE0(name) \
50         asmlinkage long compat_sys_##name(void); \
51         ALLOW_ERROR_INJECTION(compat_sys_##name, ERRNO); \
52         asmlinkage long compat_sys_##name(void)
53 #endif /* COMPAT_SYSCALL_DEFINE0 */
54
55 #define COMPAT_SYSCALL_DEFINE1(name, ...) \
56         COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
57 #define COMPAT_SYSCALL_DEFINE2(name, ...) \
58         COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
59 #define COMPAT_SYSCALL_DEFINE3(name, ...) \
60         COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
61 #define COMPAT_SYSCALL_DEFINE4(name, ...) \
62         COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
63 #define COMPAT_SYSCALL_DEFINE5(name, ...) \
64         COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
65 #define COMPAT_SYSCALL_DEFINE6(name, ...) \
66         COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
67
68 /*
69  * The asmlinkage stub is aliased to a function named __se_compat_sys_*() which
70  * sign-extends 32-bit ints to longs whenever needed. The actual work is
71  * done within __do_compat_sys_*().
72  */
73 #ifndef COMPAT_SYSCALL_DEFINEx
74 #define COMPAT_SYSCALL_DEFINEx(x, name, ...)                                    \
75         __diag_push();                                                          \
76         __diag_ignore(GCC, 8, "-Wattribute-alias",                              \
77                       "Type aliasing is used to sanitize syscall arguments");\
78         asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__));       \
79         asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))        \
80                 __attribute__((alias(__stringify(__se_compat_sys##name))));     \
81         ALLOW_ERROR_INJECTION(compat_sys##name, ERRNO);                         \
82         static inline long __do_compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
83         asmlinkage long __se_compat_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__));  \
84         asmlinkage long __se_compat_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__))   \
85         {                                                                       \
86                 long ret = __do_compat_sys##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__));\
87                 __MAP(x,__SC_TEST,__VA_ARGS__);                                 \
88                 return ret;                                                     \
89         }                                                                       \
90         __diag_pop();                                                           \
91         static inline long __do_compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))
92 #endif /* COMPAT_SYSCALL_DEFINEx */
93
94 #ifdef CONFIG_COMPAT
95
96 #ifndef compat_user_stack_pointer
97 #define compat_user_stack_pointer() current_user_stack_pointer()
98 #endif
99 #ifndef compat_sigaltstack      /* we'll need that for MIPS */
100 typedef struct compat_sigaltstack {
101         compat_uptr_t                   ss_sp;
102         int                             ss_flags;
103         compat_size_t                   ss_size;
104 } compat_stack_t;
105 #endif
106 #ifndef COMPAT_MINSIGSTKSZ
107 #define COMPAT_MINSIGSTKSZ      MINSIGSTKSZ
108 #endif
109
110 #define compat_jiffies_to_clock_t(x)    \
111                 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
112
113 typedef __compat_uid32_t        compat_uid_t;
114 typedef __compat_gid32_t        compat_gid_t;
115
116 struct compat_sel_arg_struct;
117 struct rusage;
118
119 struct compat_itimerval {
120         struct old_timeval32    it_interval;
121         struct old_timeval32    it_value;
122 };
123
124 struct itimerval;
125 int get_compat_itimerval(struct itimerval *, const struct compat_itimerval __user *);
126 int put_compat_itimerval(struct compat_itimerval __user *, const struct itimerval *);
127
128 struct compat_tms {
129         compat_clock_t          tms_utime;
130         compat_clock_t          tms_stime;
131         compat_clock_t          tms_cutime;
132         compat_clock_t          tms_cstime;
133 };
134
135 struct compat_timex {
136         compat_uint_t modes;
137         compat_long_t offset;
138         compat_long_t freq;
139         compat_long_t maxerror;
140         compat_long_t esterror;
141         compat_int_t status;
142         compat_long_t constant;
143         compat_long_t precision;
144         compat_long_t tolerance;
145         struct old_timeval32 time;
146         compat_long_t tick;
147         compat_long_t ppsfreq;
148         compat_long_t jitter;
149         compat_int_t shift;
150         compat_long_t stabil;
151         compat_long_t jitcnt;
152         compat_long_t calcnt;
153         compat_long_t errcnt;
154         compat_long_t stbcnt;
155         compat_int_t tai;
156
157         compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
158         compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
159         compat_int_t:32; compat_int_t:32; compat_int_t:32;
160 };
161
162 struct timex;
163 int compat_get_timex(struct timex *, const struct compat_timex __user *);
164 int compat_put_timex(struct compat_timex __user *, const struct timex *);
165
166 #define _COMPAT_NSIG_WORDS      (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
167
168 typedef struct {
169         compat_sigset_word      sig[_COMPAT_NSIG_WORDS];
170 } compat_sigset_t;
171
172 int set_compat_user_sigmask(const compat_sigset_t __user *usigmask,
173                             sigset_t *set, sigset_t *oldset,
174                             size_t sigsetsize);
175
176 struct compat_sigaction {
177 #ifndef __ARCH_HAS_IRIX_SIGACTION
178         compat_uptr_t                   sa_handler;
179         compat_ulong_t                  sa_flags;
180 #else
181         compat_uint_t                   sa_flags;
182         compat_uptr_t                   sa_handler;
183 #endif
184 #ifdef __ARCH_HAS_SA_RESTORER
185         compat_uptr_t                   sa_restorer;
186 #endif
187         compat_sigset_t                 sa_mask __packed;
188 };
189
190 typedef union compat_sigval {
191         compat_int_t    sival_int;
192         compat_uptr_t   sival_ptr;
193 } compat_sigval_t;
194
195 typedef struct compat_siginfo {
196         int si_signo;
197 #ifndef __ARCH_HAS_SWAPPED_SIGINFO
198         int si_errno;
199         int si_code;
200 #else
201         int si_code;
202         int si_errno;
203 #endif
204
205         union {
206                 int _pad[128/sizeof(int) - 3];
207
208                 /* kill() */
209                 struct {
210                         compat_pid_t _pid;      /* sender's pid */
211                         __compat_uid32_t _uid;  /* sender's uid */
212                 } _kill;
213
214                 /* POSIX.1b timers */
215                 struct {
216                         compat_timer_t _tid;    /* timer id */
217                         int _overrun;           /* overrun count */
218                         compat_sigval_t _sigval;        /* same as below */
219                 } _timer;
220
221                 /* POSIX.1b signals */
222                 struct {
223                         compat_pid_t _pid;      /* sender's pid */
224                         __compat_uid32_t _uid;  /* sender's uid */
225                         compat_sigval_t _sigval;
226                 } _rt;
227
228                 /* SIGCHLD */
229                 struct {
230                         compat_pid_t _pid;      /* which child */
231                         __compat_uid32_t _uid;  /* sender's uid */
232                         int _status;            /* exit code */
233                         compat_clock_t _utime;
234                         compat_clock_t _stime;
235                 } _sigchld;
236
237 #ifdef CONFIG_X86_X32_ABI
238                 /* SIGCHLD (x32 version) */
239                 struct {
240                         compat_pid_t _pid;      /* which child */
241                         __compat_uid32_t _uid;  /* sender's uid */
242                         int _status;            /* exit code */
243                         compat_s64 _utime;
244                         compat_s64 _stime;
245                 } _sigchld_x32;
246 #endif
247
248                 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGTRAP, SIGEMT */
249                 struct {
250                         compat_uptr_t _addr;    /* faulting insn/memory ref. */
251 #ifdef __ARCH_SI_TRAPNO
252                         int _trapno;    /* TRAP # which caused the signal */
253 #endif
254 #define __COMPAT_ADDR_BND_PKEY_PAD  (__alignof__(compat_uptr_t) < sizeof(short) ? \
255                                      sizeof(short) : __alignof__(compat_uptr_t))
256                         union {
257                                 /*
258                                  * used when si_code=BUS_MCEERR_AR or
259                                  * used when si_code=BUS_MCEERR_AO
260                                  */
261                                 short int _addr_lsb;    /* Valid LSB of the reported address. */
262                                 /* used when si_code=SEGV_BNDERR */
263                                 struct {
264                                         char _dummy_bnd[__COMPAT_ADDR_BND_PKEY_PAD];
265                                         compat_uptr_t _lower;
266                                         compat_uptr_t _upper;
267                                 } _addr_bnd;
268                                 /* used when si_code=SEGV_PKUERR */
269                                 struct {
270                                         char _dummy_pkey[__COMPAT_ADDR_BND_PKEY_PAD];
271                                         u32 _pkey;
272                                 } _addr_pkey;
273                         };
274                 } _sigfault;
275
276                 /* SIGPOLL */
277                 struct {
278                         compat_long_t _band;    /* POLL_IN, POLL_OUT, POLL_MSG */
279                         int _fd;
280                 } _sigpoll;
281
282                 struct {
283                         compat_uptr_t _call_addr; /* calling user insn */
284                         int _syscall;   /* triggering system call number */
285                         unsigned int _arch;     /* AUDIT_ARCH_* of syscall */
286                 } _sigsys;
287         } _sifields;
288 } compat_siginfo_t;
289
290 /*
291  * These functions operate on 32- or 64-bit specs depending on
292  * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments.
293  */
294 extern int compat_get_timespec(struct timespec *, const void __user *);
295 extern int compat_put_timespec(const struct timespec *, void __user *);
296 extern int compat_get_timeval(struct timeval *, const void __user *);
297 extern int compat_put_timeval(const struct timeval *, void __user *);
298
299 struct compat_iovec {
300         compat_uptr_t   iov_base;
301         compat_size_t   iov_len;
302 };
303
304 struct compat_rlimit {
305         compat_ulong_t  rlim_cur;
306         compat_ulong_t  rlim_max;
307 };
308
309 struct compat_rusage {
310         struct old_timeval32 ru_utime;
311         struct old_timeval32 ru_stime;
312         compat_long_t   ru_maxrss;
313         compat_long_t   ru_ixrss;
314         compat_long_t   ru_idrss;
315         compat_long_t   ru_isrss;
316         compat_long_t   ru_minflt;
317         compat_long_t   ru_majflt;
318         compat_long_t   ru_nswap;
319         compat_long_t   ru_inblock;
320         compat_long_t   ru_oublock;
321         compat_long_t   ru_msgsnd;
322         compat_long_t   ru_msgrcv;
323         compat_long_t   ru_nsignals;
324         compat_long_t   ru_nvcsw;
325         compat_long_t   ru_nivcsw;
326 };
327
328 extern int put_compat_rusage(const struct rusage *,
329                              struct compat_rusage __user *);
330
331 struct compat_siginfo;
332 struct __compat_aio_sigset;
333
334 struct compat_dirent {
335         u32             d_ino;
336         compat_off_t    d_off;
337         u16             d_reclen;
338         char            d_name[256];
339 };
340
341 struct compat_ustat {
342         compat_daddr_t          f_tfree;
343         compat_ino_t            f_tinode;
344         char                    f_fname[6];
345         char                    f_fpack[6];
346 };
347
348 #define COMPAT_SIGEV_PAD_SIZE   ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
349
350 typedef struct compat_sigevent {
351         compat_sigval_t sigev_value;
352         compat_int_t sigev_signo;
353         compat_int_t sigev_notify;
354         union {
355                 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
356                 compat_int_t _tid;
357
358                 struct {
359                         compat_uptr_t _function;
360                         compat_uptr_t _attribute;
361                 } _sigev_thread;
362         } _sigev_un;
363 } compat_sigevent_t;
364
365 struct compat_ifmap {
366         compat_ulong_t mem_start;
367         compat_ulong_t mem_end;
368         unsigned short base_addr;
369         unsigned char irq;
370         unsigned char dma;
371         unsigned char port;
372 };
373
374 struct compat_if_settings {
375         unsigned int type;      /* Type of physical device or protocol */
376         unsigned int size;      /* Size of the data allocated by the caller */
377         compat_uptr_t ifs_ifsu; /* union of pointers */
378 };
379
380 struct compat_ifreq {
381         union {
382                 char    ifrn_name[IFNAMSIZ];    /* if name, e.g. "en0" */
383         } ifr_ifrn;
384         union {
385                 struct  sockaddr ifru_addr;
386                 struct  sockaddr ifru_dstaddr;
387                 struct  sockaddr ifru_broadaddr;
388                 struct  sockaddr ifru_netmask;
389                 struct  sockaddr ifru_hwaddr;
390                 short   ifru_flags;
391                 compat_int_t    ifru_ivalue;
392                 compat_int_t    ifru_mtu;
393                 struct  compat_ifmap ifru_map;
394                 char    ifru_slave[IFNAMSIZ];   /* Just fits the size */
395                 char    ifru_newname[IFNAMSIZ];
396                 compat_caddr_t  ifru_data;
397                 struct  compat_if_settings ifru_settings;
398         } ifr_ifru;
399 };
400
401 struct compat_ifconf {
402         compat_int_t    ifc_len;                /* size of buffer */
403         compat_caddr_t  ifcbuf;
404 };
405
406 struct compat_robust_list {
407         compat_uptr_t                   next;
408 };
409
410 struct compat_robust_list_head {
411         struct compat_robust_list       list;
412         compat_long_t                   futex_offset;
413         compat_uptr_t                   list_op_pending;
414 };
415
416 #ifdef CONFIG_COMPAT_OLD_SIGACTION
417 struct compat_old_sigaction {
418         compat_uptr_t                   sa_handler;
419         compat_old_sigset_t             sa_mask;
420         compat_ulong_t                  sa_flags;
421         compat_uptr_t                   sa_restorer;
422 };
423 #endif
424
425 struct compat_keyctl_kdf_params {
426         compat_uptr_t hashname;
427         compat_uptr_t otherinfo;
428         __u32 otherinfolen;
429         __u32 __spare[8];
430 };
431
432 struct compat_statfs;
433 struct compat_statfs64;
434 struct compat_old_linux_dirent;
435 struct compat_linux_dirent;
436 struct linux_dirent64;
437 struct compat_msghdr;
438 struct compat_mmsghdr;
439 struct compat_sysinfo;
440 struct compat_sysctl_args;
441 struct compat_kexec_segment;
442 struct compat_mq_attr;
443 struct compat_msgbuf;
444
445 extern void compat_exit_robust_list(struct task_struct *curr);
446
447 #define BITS_PER_COMPAT_LONG    (8*sizeof(compat_long_t))
448
449 #define BITS_TO_COMPAT_LONGS(bits) DIV_ROUND_UP(bits, BITS_PER_COMPAT_LONG)
450
451 long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
452                        unsigned long bitmap_size);
453 long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
454                        unsigned long bitmap_size);
455 int copy_siginfo_from_user32(kernel_siginfo_t *to, const struct compat_siginfo __user *from);
456 int copy_siginfo_to_user32(struct compat_siginfo __user *to, const kernel_siginfo_t *from);
457 int get_compat_sigevent(struct sigevent *event,
458                 const struct compat_sigevent __user *u_event);
459
460 static inline int old_timeval32_compare(struct old_timeval32 *lhs,
461                                         struct old_timeval32 *rhs)
462 {
463         if (lhs->tv_sec < rhs->tv_sec)
464                 return -1;
465         if (lhs->tv_sec > rhs->tv_sec)
466                 return 1;
467         return lhs->tv_usec - rhs->tv_usec;
468 }
469
470 static inline int old_timespec32_compare(struct old_timespec32 *lhs,
471                                         struct old_timespec32 *rhs)
472 {
473         if (lhs->tv_sec < rhs->tv_sec)
474                 return -1;
475         if (lhs->tv_sec > rhs->tv_sec)
476                 return 1;
477         return lhs->tv_nsec - rhs->tv_nsec;
478 }
479
480 extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
481
482 /*
483  * Defined inline such that size can be compile time constant, which avoids
484  * CONFIG_HARDENED_USERCOPY complaining about copies from task_struct
485  */
486 static inline int
487 put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set,
488                   unsigned int size)
489 {
490         /* size <= sizeof(compat_sigset_t) <= sizeof(sigset_t) */
491 #ifdef __BIG_ENDIAN
492         compat_sigset_t v;
493         switch (_NSIG_WORDS) {
494         case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
495                 /* fall through */
496         case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
497                 /* fall through */
498         case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1];
499                 /* fall through */
500         case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0];
501         }
502         return copy_to_user(compat, &v, size) ? -EFAULT : 0;
503 #else
504         return copy_to_user(compat, set, size) ? -EFAULT : 0;
505 #endif
506 }
507
508 extern int compat_ptrace_request(struct task_struct *child,
509                                  compat_long_t request,
510                                  compat_ulong_t addr, compat_ulong_t data);
511
512 extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
513                                compat_ulong_t addr, compat_ulong_t data);
514
515 struct epoll_event;     /* fortunately, this one is fixed-layout */
516
517 extern ssize_t compat_rw_copy_check_uvector(int type,
518                 const struct compat_iovec __user *uvector,
519                 unsigned long nr_segs,
520                 unsigned long fast_segs, struct iovec *fast_pointer,
521                 struct iovec **ret_pointer);
522
523 extern void __user *compat_alloc_user_space(unsigned long len);
524
525 int compat_restore_altstack(const compat_stack_t __user *uss);
526 int __compat_save_altstack(compat_stack_t __user *, unsigned long);
527 #define compat_save_altstack_ex(uss, sp) do { \
528         compat_stack_t __user *__uss = uss; \
529         struct task_struct *t = current; \
530         put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
531         put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
532         put_user_ex(t->sas_ss_size, &__uss->ss_size); \
533         if (t->sas_ss_flags & SS_AUTODISARM) \
534                 sas_ss_reset(t); \
535 } while (0);
536
537 /*
538  * These syscall function prototypes are kept in the same order as
539  * include/uapi/asm-generic/unistd.h. Deprecated or obsolete system calls
540  * go below.
541  *
542  * Please note that these prototypes here are only provided for information
543  * purposes, for static analysis, and for linking from the syscall table.
544  * These functions should not be called elsewhere from kernel code.
545  *
546  * As the syscall calling convention may be different from the default
547  * for architectures overriding the syscall calling convention, do not
548  * include the prototypes if CONFIG_ARCH_HAS_SYSCALL_WRAPPER is enabled.
549  */
550 #ifndef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
551 asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
552 asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
553                                      u32 __user *iocb);
554 asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
555                                         compat_long_t min_nr,
556                                         compat_long_t nr,
557                                         struct io_event __user *events,
558                                         struct old_timespec32 __user *timeout);
559 asmlinkage long compat_sys_io_pgetevents(compat_aio_context_t ctx_id,
560                                         compat_long_t min_nr,
561                                         compat_long_t nr,
562                                         struct io_event __user *events,
563                                         struct old_timespec32 __user *timeout,
564                                         const struct __compat_aio_sigset __user *usig);
565
566 /* fs/cookies.c */
567 asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
568
569 /* fs/eventpoll.c */
570 asmlinkage long compat_sys_epoll_pwait(int epfd,
571                         struct epoll_event __user *events,
572                         int maxevents, int timeout,
573                         const compat_sigset_t __user *sigmask,
574                         compat_size_t sigsetsize);
575
576 /* fs/fcntl.c */
577 asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
578                                  compat_ulong_t arg);
579 asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
580                                    compat_ulong_t arg);
581
582 /* fs/ioctl.c */
583 asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
584                                  compat_ulong_t arg);
585
586 /* fs/namespace.c */
587 asmlinkage long compat_sys_mount(const char __user *dev_name,
588                                  const char __user *dir_name,
589                                  const char __user *type, compat_ulong_t flags,
590                                  const void __user *data);
591
592 /* fs/open.c */
593 asmlinkage long compat_sys_statfs(const char __user *pathname,
594                                   struct compat_statfs __user *buf);
595 asmlinkage long compat_sys_statfs64(const char __user *pathname,
596                                     compat_size_t sz,
597                                     struct compat_statfs64 __user *buf);
598 asmlinkage long compat_sys_fstatfs(unsigned int fd,
599                                    struct compat_statfs __user *buf);
600 asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
601                                      struct compat_statfs64 __user *buf);
602 asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
603 asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
604 /* No generic prototype for truncate64, ftruncate64, fallocate */
605 asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
606                                   int flags, umode_t mode);
607
608 /* fs/readdir.c */
609 asmlinkage long compat_sys_getdents(unsigned int fd,
610                                     struct compat_linux_dirent __user *dirent,
611                                     unsigned int count);
612
613 /* fs/read_write.c */
614 asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
615 asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
616                 const struct compat_iovec __user *vec, compat_ulong_t vlen);
617 asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
618                 const struct compat_iovec __user *vec, compat_ulong_t vlen);
619 /* No generic prototype for pread64 and pwrite64 */
620 asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
621                 const struct compat_iovec __user *vec,
622                 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
623 asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
624                 const struct compat_iovec __user *vec,
625                 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
626 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
627 asmlinkage long compat_sys_preadv64(unsigned long fd,
628                 const struct compat_iovec __user *vec,
629                 unsigned long vlen, loff_t pos);
630 #endif
631
632 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
633 asmlinkage long compat_sys_pwritev64(unsigned long fd,
634                 const struct compat_iovec __user *vec,
635                 unsigned long vlen, loff_t pos);
636 #endif
637
638 /* fs/sendfile.c */
639 asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
640                                     compat_off_t __user *offset, compat_size_t count);
641 asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
642                                     compat_loff_t __user *offset, compat_size_t count);
643
644 /* fs/select.c */
645 asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
646                                     compat_ulong_t __user *outp,
647                                     compat_ulong_t __user *exp,
648                                     struct old_timespec32 __user *tsp,
649                                     void __user *sig);
650 asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
651                                  unsigned int nfds,
652                                  struct old_timespec32 __user *tsp,
653                                  const compat_sigset_t __user *sigmask,
654                                  compat_size_t sigsetsize);
655
656 /* fs/signalfd.c */
657 asmlinkage long compat_sys_signalfd4(int ufd,
658                                      const compat_sigset_t __user *sigmask,
659                                      compat_size_t sigsetsize, int flags);
660
661 /* fs/splice.c */
662 asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
663                                     unsigned int nr_segs, unsigned int flags);
664
665 /* fs/stat.c */
666 asmlinkage long compat_sys_newfstatat(unsigned int dfd,
667                                       const char __user *filename,
668                                       struct compat_stat __user *statbuf,
669                                       int flag);
670 asmlinkage long compat_sys_newfstat(unsigned int fd,
671                                     struct compat_stat __user *statbuf);
672
673 /* fs/sync.c: No generic prototype for sync_file_range and sync_file_range2 */
674
675 /* fs/timerfd.c */
676 asmlinkage long compat_sys_timerfd_gettime(int ufd,
677                                    struct old_itimerspec32 __user *otmr);
678 asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
679                                    const struct old_itimerspec32 __user *utmr,
680                                    struct old_itimerspec32 __user *otmr);
681
682 /* fs/utimes.c */
683 asmlinkage long compat_sys_utimensat(unsigned int dfd,
684                                      const char __user *filename,
685                                      struct old_timespec32 __user *t,
686                                      int flags);
687
688 /* kernel/exit.c */
689 asmlinkage long compat_sys_waitid(int, compat_pid_t,
690                 struct compat_siginfo __user *, int,
691                 struct compat_rusage __user *);
692
693
694
695 /* kernel/futex.c */
696 asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
697                 struct old_timespec32 __user *utime, u32 __user *uaddr2,
698                 u32 val3);
699 asmlinkage long
700 compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
701                            compat_size_t len);
702 asmlinkage long
703 compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
704                            compat_size_t __user *len_ptr);
705
706 /* kernel/hrtimer.c */
707 asmlinkage long compat_sys_nanosleep(struct old_timespec32 __user *rqtp,
708                                      struct old_timespec32 __user *rmtp);
709
710 /* kernel/itimer.c */
711 asmlinkage long compat_sys_getitimer(int which,
712                                      struct compat_itimerval __user *it);
713 asmlinkage long compat_sys_setitimer(int which,
714                                      struct compat_itimerval __user *in,
715                                      struct compat_itimerval __user *out);
716
717 /* kernel/kexec.c */
718 asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
719                                       compat_ulong_t nr_segments,
720                                       struct compat_kexec_segment __user *,
721                                       compat_ulong_t flags);
722
723 /* kernel/posix-timers.c */
724 asmlinkage long compat_sys_timer_create(clockid_t which_clock,
725                         struct compat_sigevent __user *timer_event_spec,
726                         timer_t __user *created_timer_id);
727 asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
728                                  struct old_itimerspec32 __user *setting);
729 asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
730                                          struct old_itimerspec32 __user *new,
731                                          struct old_itimerspec32 __user *old);
732 asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
733                                          struct old_timespec32 __user *tp);
734 asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
735                                          struct old_timespec32 __user *tp);
736 asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
737                                         struct old_timespec32 __user *tp);
738 asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
739                                            struct old_timespec32 __user *rqtp,
740                                            struct old_timespec32 __user *rmtp);
741
742 /* kernel/ptrace.c */
743 asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
744                                   compat_long_t addr, compat_long_t data);
745
746 /* kernel/sched/core.c */
747 asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
748                                      unsigned int len,
749                                      compat_ulong_t __user *user_mask_ptr);
750 asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
751                                      unsigned int len,
752                                      compat_ulong_t __user *user_mask_ptr);
753 asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
754                                                  struct old_timespec32 __user *interval);
755
756 /* kernel/signal.c */
757 asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
758                                        compat_stack_t __user *uoss_ptr);
759 asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
760                                          compat_size_t sigsetsize);
761 #ifndef CONFIG_ODD_RT_SIGACTION
762 asmlinkage long compat_sys_rt_sigaction(int,
763                                  const struct compat_sigaction __user *,
764                                  struct compat_sigaction __user *,
765                                  compat_size_t);
766 #endif
767 asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
768                                           compat_sigset_t __user *oset,
769                                           compat_size_t sigsetsize);
770 asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
771                                          compat_size_t sigsetsize);
772 asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
773                 struct compat_siginfo __user *uinfo,
774                 struct old_timespec32 __user *uts, compat_size_t sigsetsize);
775 asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
776                                 struct compat_siginfo __user *uinfo);
777 /* No generic prototype for rt_sigreturn */
778
779 /* kernel/sys.c */
780 asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
781 asmlinkage long compat_sys_getrlimit(unsigned int resource,
782                                      struct compat_rlimit __user *rlim);
783 asmlinkage long compat_sys_setrlimit(unsigned int resource,
784                                      struct compat_rlimit __user *rlim);
785 asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
786
787 /* kernel/time.c */
788 asmlinkage long compat_sys_gettimeofday(struct old_timeval32 __user *tv,
789                 struct timezone __user *tz);
790 asmlinkage long compat_sys_settimeofday(struct old_timeval32 __user *tv,
791                 struct timezone __user *tz);
792 asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
793
794 /* kernel/timer.c */
795 asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
796
797 /* ipc/mqueue.c */
798 asmlinkage long compat_sys_mq_open(const char __user *u_name,
799                         int oflag, compat_mode_t mode,
800                         struct compat_mq_attr __user *u_attr);
801 asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
802                         const char __user *u_msg_ptr,
803                         compat_size_t msg_len, unsigned int msg_prio,
804                         const struct old_timespec32 __user *u_abs_timeout);
805 asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
806                         char __user *u_msg_ptr,
807                         compat_size_t msg_len, unsigned int __user *u_msg_prio,
808                         const struct old_timespec32 __user *u_abs_timeout);
809 asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
810                         const struct compat_sigevent __user *u_notification);
811 asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
812                         const struct compat_mq_attr __user *u_mqstat,
813                         struct compat_mq_attr __user *u_omqstat);
814
815 /* ipc/msg.c */
816 asmlinkage long compat_sys_msgctl(int first, int second, void __user *uptr);
817 asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
818                 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
819 asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
820                 compat_ssize_t msgsz, int msgflg);
821
822 /* ipc/sem.c */
823 asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
824 asmlinkage long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
825                 unsigned nsems, const struct old_timespec32 __user *timeout);
826
827 /* ipc/shm.c */
828 asmlinkage long compat_sys_shmctl(int first, int second, void __user *uptr);
829 asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
830
831 /* net/socket.c */
832 asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
833                             unsigned flags, struct sockaddr __user *addr,
834                             int __user *addrlen);
835 asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
836                                       char __user *optval, unsigned int optlen);
837 asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
838                                       char __user *optval, int __user *optlen);
839 asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
840                                    unsigned flags);
841 asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
842                                    unsigned int flags);
843
844 /* mm/filemap.c: No generic prototype for readahead */
845
846 /* security/keys/keyctl.c */
847 asmlinkage long compat_sys_keyctl(u32 option,
848                               u32 arg2, u32 arg3, u32 arg4, u32 arg5);
849
850 /* arch/example/kernel/sys_example.c */
851 asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
852                      const compat_uptr_t __user *envp);
853
854 /* mm/fadvise.c: No generic prototype for fadvise64_64 */
855
856 /* mm/, CONFIG_MMU only */
857 asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
858                                  compat_ulong_t mode,
859                                  compat_ulong_t __user *nmask,
860                                  compat_ulong_t maxnode, compat_ulong_t flags);
861 asmlinkage long compat_sys_get_mempolicy(int __user *policy,
862                                          compat_ulong_t __user *nmask,
863                                          compat_ulong_t maxnode,
864                                          compat_ulong_t addr,
865                                          compat_ulong_t flags);
866 asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
867                                          compat_ulong_t maxnode);
868 asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
869                 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
870                 const compat_ulong_t __user *new_nodes);
871 asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
872                                       __u32 __user *pages,
873                                       const int __user *nodes,
874                                       int __user *status,
875                                       int flags);
876
877 asmlinkage long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid,
878                                         compat_pid_t pid, int sig,
879                                         struct compat_siginfo __user *uinfo);
880 asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
881                                     unsigned vlen, unsigned int flags,
882                                     struct old_timespec32 __user *timeout);
883 asmlinkage long compat_sys_wait4(compat_pid_t pid,
884                                  compat_uint_t __user *stat_addr, int options,
885                                  struct compat_rusage __user *ru);
886 asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
887                                             int, const char __user *);
888 asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
889                                              struct file_handle __user *handle,
890                                              int flags);
891 asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
892                                          struct compat_timex __user *tp);
893 asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
894                                     unsigned vlen, unsigned int flags);
895 asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
896                 const struct compat_iovec __user *lvec,
897                 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
898                 compat_ulong_t riovcnt, compat_ulong_t flags);
899 asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
900                 const struct compat_iovec __user *lvec,
901                 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
902                 compat_ulong_t riovcnt, compat_ulong_t flags);
903 asmlinkage long compat_sys_execveat(int dfd, const char __user *filename,
904                      const compat_uptr_t __user *argv,
905                      const compat_uptr_t __user *envp, int flags);
906 asmlinkage ssize_t compat_sys_preadv2(compat_ulong_t fd,
907                 const struct compat_iovec __user *vec,
908                 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
909 asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
910                 const struct compat_iovec __user *vec,
911                 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
912 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
913 asmlinkage long  compat_sys_readv64v2(unsigned long fd,
914                 const struct compat_iovec __user *vec,
915                 unsigned long vlen, loff_t pos, rwf_t flags);
916 #endif
917
918 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
919 asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
920                 const struct compat_iovec __user *vec,
921                 unsigned long vlen, loff_t pos, rwf_t flags);
922 #endif
923
924
925 /*
926  * Deprecated system calls which are still defined in
927  * include/uapi/asm-generic/unistd.h and wanted by >= 1 arch
928  */
929
930 /* __ARCH_WANT_SYSCALL_NO_AT */
931 asmlinkage long compat_sys_open(const char __user *filename, int flags,
932                                 umode_t mode);
933 asmlinkage long compat_sys_utimes(const char __user *filename,
934                                   struct old_timeval32 __user *t);
935
936 /* __ARCH_WANT_SYSCALL_NO_FLAGS */
937 asmlinkage long compat_sys_signalfd(int ufd,
938                                     const compat_sigset_t __user *sigmask,
939                                     compat_size_t sigsetsize);
940
941 /* __ARCH_WANT_SYSCALL_OFF_T */
942 asmlinkage long compat_sys_newstat(const char __user *filename,
943                                    struct compat_stat __user *statbuf);
944 asmlinkage long compat_sys_newlstat(const char __user *filename,
945                                     struct compat_stat __user *statbuf);
946
947 /* __ARCH_WANT_SYSCALL_DEPRECATED */
948 asmlinkage long compat_sys_time(old_time32_t __user *tloc);
949 asmlinkage long compat_sys_utime(const char __user *filename,
950                                  struct old_utimbuf32 __user *t);
951 asmlinkage long compat_sys_futimesat(unsigned int dfd,
952                                      const char __user *filename,
953                                      struct old_timeval32 __user *t);
954 asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
955                 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
956                 struct old_timeval32 __user *tvp);
957 asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
958 asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
959                                 unsigned flags);
960 asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
961
962 /* obsolete: fs/readdir.c */
963 asmlinkage long compat_sys_old_readdir(unsigned int fd,
964                                        struct compat_old_linux_dirent __user *,
965                                        unsigned int count);
966
967 /* obsolete: fs/select.c */
968 asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
969
970 /* obsolete: ipc */
971 asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
972
973 /* obsolete: kernel/signal.c */
974 #ifdef __ARCH_WANT_SYS_SIGPENDING
975 asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
976 #endif
977
978 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
979 asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
980                                        compat_old_sigset_t __user *oset);
981 #endif
982 #ifdef CONFIG_COMPAT_OLD_SIGACTION
983 asmlinkage long compat_sys_sigaction(int sig,
984                                    const struct compat_old_sigaction __user *act,
985                                    struct compat_old_sigaction __user *oact);
986 #endif
987
988 /* obsolete: kernel/time/time.c */
989 asmlinkage long compat_sys_stime(old_time32_t __user *tptr);
990
991 /* obsolete: net/socket.c */
992 asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
993
994 #endif /* CONFIG_ARCH_HAS_SYSCALL_WRAPPER */
995
996
997 /*
998  * For most but not all architectures, "am I in a compat syscall?" and
999  * "am I a compat task?" are the same question.  For architectures on which
1000  * they aren't the same question, arch code can override in_compat_syscall.
1001  */
1002
1003 #ifndef in_compat_syscall
1004 static inline bool in_compat_syscall(void) { return is_compat_task(); }
1005 #endif
1006
1007 /**
1008  * ns_to_old_timeval32 - Compat version of ns_to_timeval
1009  * @nsec:       the nanoseconds value to be converted
1010  *
1011  * Returns the old_timeval32 representation of the nsec parameter.
1012  */
1013 static inline struct old_timeval32 ns_to_old_timeval32(s64 nsec)
1014 {
1015         struct timeval tv;
1016         struct old_timeval32 ctv;
1017
1018         tv = ns_to_timeval(nsec);
1019         ctv.tv_sec = tv.tv_sec;
1020         ctv.tv_usec = tv.tv_usec;
1021
1022         return ctv;
1023 }
1024
1025 /*
1026  * Kernel code should not call compat syscalls (i.e., compat_sys_xyzyyz())
1027  * directly.  Instead, use one of the functions which work equivalently, such
1028  * as the kcompat_sys_xyzyyz() functions prototyped below.
1029  */
1030
1031 int kcompat_sys_statfs64(const char __user * pathname, compat_size_t sz,
1032                      struct compat_statfs64 __user * buf);
1033 int kcompat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
1034                           struct compat_statfs64 __user * buf);
1035
1036 #else /* !CONFIG_COMPAT */
1037
1038 #define is_compat_task() (0)
1039 /* Ensure no one redefines in_compat_syscall() under !CONFIG_COMPAT */
1040 #define in_compat_syscall in_compat_syscall
1041 static inline bool in_compat_syscall(void) { return false; }
1042
1043 #endif /* CONFIG_COMPAT */
1044
1045 #endif /* _LINUX_COMPAT_H */