blob: 57cb6ecafa8609d1aafd423a7b65179fe833f094 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_COMPAT_H
2#define _LINUX_COMPAT_H
3/*
4 * These are the type definitions for the architecture specific
5 * syscall compatibility layer.
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Andy Lutomirski5180e3e2016-03-22 14:24:43 -07008#include <linux/types.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#ifdef CONFIG_COMPAT
11
12#include <linux/stat.h>
13#include <linux/param.h> /* for HZ */
14#include <linux/sem.h>
Arnd Bergmann2dceba12009-11-06 08:09:03 +000015#include <linux/socket.h>
16#include <linux/if.h>
Chris Metcalfbe84cb42011-05-09 13:12:30 -040017#include <linux/fs.h>
Stephen Rothwell45e96832011-05-24 13:28:54 +100018#include <linux/aio_abi.h> /* for aio_context_t */
Heiko Carstensf5b972e2014-03-20 15:30:14 +010019#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/compat.h>
22#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010023#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
H. J. Lu45e87782012-02-10 14:04:27 -080025#ifndef COMPAT_USE_64BIT_TIME
26#define COMPAT_USE_64BIT_TIME 0
27#endif
28
Al Viro46836612012-11-23 09:12:59 -050029#ifndef __SC_DELOUSE
Al Viro4f59c712017-07-08 11:40:39 -040030#define __SC_DELOUSE(t,v) ((__force t)(unsigned long)(v))
Al Viro46836612012-11-23 09:12:59 -050031#endif
32
Heiko Carstens217f4432014-02-26 10:56:20 +010033#define COMPAT_SYSCALL_DEFINE0(name) \
34 asmlinkage long compat_sys_##name(void)
35
Al Viro46836612012-11-23 09:12:59 -050036#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
Al Viro46836612012-11-23 09:12:59 -050049#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
Andi Kleen83460ec2013-11-12 15:08:36 -080050 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))\
51 __attribute__((alias(__stringify(compat_SyS##name)))); \
Al Viro07fe6e02013-01-21 15:03:44 -050052 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
Sergei Trofimovichf9597f22013-09-11 14:23:28 -070053 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__));\
Al Viro07fe6e02013-01-21 15:03:44 -050054 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__))\
Al Viro46836612012-11-23 09:12:59 -050055 { \
Al Viro07fe6e02013-01-21 15:03:44 -050056 return C_SYSC##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__)); \
Al Viro46836612012-11-23 09:12:59 -050057 } \
Al Viro07fe6e02013-01-21 15:03:44 -050058 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__))
Al Viro46836612012-11-23 09:12:59 -050059
Al Viro9b064fc2012-12-14 13:49:35 -050060#ifndef compat_user_stack_pointer
61#define compat_user_stack_pointer() current_user_stack_pointer()
62#endif
Al Viro90268432012-12-14 14:47:53 -050063#ifndef compat_sigaltstack /* we'll need that for MIPS */
64typedef 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
Al Viro90268432012-12-14 14:47:53 -050070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define compat_jiffies_to_clock_t(x) \
72 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
73
Stephen Rothwell202e5972005-09-06 15:16:40 -070074typedef __compat_uid32_t compat_uid_t;
75typedef __compat_gid32_t compat_gid_t;
76
Heiko Carstens932602e2014-03-04 16:07:52 +010077typedef compat_ulong_t compat_aio_context_t;
78
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080079struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080struct rusage;
81
Chris Metcalf4800a5b2011-05-17 14:41:06 -040082struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct compat_timespec it_interval;
84 struct compat_timespec it_value;
85};
86
87struct compat_utimbuf {
88 compat_time_t actime;
89 compat_time_t modtime;
90};
91
92struct compat_itimerval {
93 struct compat_timeval it_interval;
94 struct compat_timeval it_value;
95};
96
Al Viro54ad9c42017-06-07 09:42:37 +010097struct itimerval;
98int get_compat_itimerval(struct itimerval *, const struct compat_itimerval __user *);
99int put_compat_itimerval(struct compat_itimerval __user *, const struct itimerval *);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101struct compat_tms {
102 compat_clock_t tms_utime;
103 compat_clock_t tms_stime;
104 compat_clock_t tms_cutime;
105 compat_clock_t tms_cstime;
106};
107
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800108struct compat_timex {
109 compat_uint_t modes;
110 compat_long_t offset;
111 compat_long_t freq;
112 compat_long_t maxerror;
113 compat_long_t esterror;
114 compat_int_t status;
115 compat_long_t constant;
116 compat_long_t precision;
117 compat_long_t tolerance;
118 struct compat_timeval time;
119 compat_long_t tick;
120 compat_long_t ppsfreq;
121 compat_long_t jitter;
122 compat_int_t shift;
123 compat_long_t stabil;
124 compat_long_t jitcnt;
125 compat_long_t calcnt;
126 compat_long_t errcnt;
127 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700128 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800129
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400130 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; compat_int_t:32;
132 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800133};
134
Al Viro3a4d44b2017-06-07 09:42:34 +0100135struct timex;
136int compat_get_timex(struct timex *, const struct compat_timex __user *);
137int compat_put_timex(struct compat_timex __user *, const struct timex *);
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
140
141typedef struct {
142 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
143} compat_sigset_t;
144
Al Viro08d32fe2012-12-25 18:38:15 -0500145struct compat_sigaction {
David Howells2a148692013-03-19 14:00:53 +0000146#ifndef __ARCH_HAS_IRIX_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500147 compat_uptr_t sa_handler;
148 compat_ulong_t sa_flags;
149#else
David Howells2a148692013-03-19 14:00:53 +0000150 compat_uint_t sa_flags;
Al Viro08d32fe2012-12-25 18:38:15 -0500151 compat_uptr_t sa_handler;
152#endif
153#ifdef __ARCH_HAS_SA_RESTORER
154 compat_uptr_t sa_restorer;
155#endif
156 compat_sigset_t sa_mask __packed;
157};
Al Viro08d32fe2012-12-25 18:38:15 -0500158
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800159/*
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800160 * These functions operate on 32- or 64-bit specs depending on
H. Peter Anvin81993e82014-02-01 18:54:11 -0800161 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments.
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800162 */
163extern int compat_get_timespec(struct timespec *, const void __user *);
164extern int compat_put_timespec(const struct timespec *, void __user *);
165extern int compat_get_timeval(struct timeval *, const void __user *);
166extern int compat_put_timeval(const struct timeval *, void __user *);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -0700167extern int compat_get_timespec64(struct timespec64 *, const void __user *);
168extern int compat_put_timespec64(const struct timespec64 *, void __user *);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -0700169extern int get_compat_itimerspec64(struct itimerspec64 *its,
170 const struct compat_itimerspec __user *uits);
171extern int put_compat_itimerspec64(const struct itimerspec64 *its,
172 struct compat_itimerspec __user *uits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174struct compat_iovec {
175 compat_uptr_t iov_base;
176 compat_size_t iov_len;
177};
178
179struct compat_rlimit {
180 compat_ulong_t rlim_cur;
181 compat_ulong_t rlim_max;
182};
183
184struct compat_rusage {
185 struct compat_timeval ru_utime;
186 struct compat_timeval ru_stime;
187 compat_long_t ru_maxrss;
188 compat_long_t ru_ixrss;
189 compat_long_t ru_idrss;
190 compat_long_t ru_isrss;
191 compat_long_t ru_minflt;
192 compat_long_t ru_majflt;
193 compat_long_t ru_nswap;
194 compat_long_t ru_inblock;
195 compat_long_t ru_oublock;
196 compat_long_t ru_msgsnd;
197 compat_long_t ru_msgrcv;
198 compat_long_t ru_nsignals;
199 compat_long_t ru_nvcsw;
200 compat_long_t ru_nivcsw;
201};
202
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400203extern int put_compat_rusage(const struct rusage *,
204 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206struct compat_siginfo;
207
208extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
209 struct compat_siginfo __user *, int,
210 struct compat_rusage __user *);
211
212struct compat_dirent {
213 u32 d_ino;
214 compat_off_t d_off;
215 u16 d_reclen;
216 char d_name[256];
217};
218
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100219struct compat_ustat {
220 compat_daddr_t f_tfree;
221 compat_ino_t f_tinode;
222 char f_fname[6];
223 char f_fpack[6];
224};
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
227
228typedef struct compat_sigevent {
229 compat_sigval_t sigev_value;
230 compat_int_t sigev_signo;
231 compat_int_t sigev_notify;
232 union {
233 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
234 compat_int_t _tid;
235
236 struct {
237 compat_uptr_t _function;
238 compat_uptr_t _attribute;
239 } _sigev_thread;
240 } _sigev_un;
241} compat_sigevent_t;
242
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000243struct compat_ifmap {
244 compat_ulong_t mem_start;
245 compat_ulong_t mem_end;
246 unsigned short base_addr;
247 unsigned char irq;
248 unsigned char dma;
249 unsigned char port;
250};
251
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400252struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800253 unsigned int type; /* Type of physical device or protocol */
254 unsigned int size; /* Size of the data allocated by the caller */
255 compat_uptr_t ifs_ifsu; /* union of pointers */
256};
257
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000258struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800259 union {
260 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
261 } ifr_ifrn;
262 union {
263 struct sockaddr ifru_addr;
264 struct sockaddr ifru_dstaddr;
265 struct sockaddr ifru_broadaddr;
266 struct sockaddr ifru_netmask;
267 struct sockaddr ifru_hwaddr;
268 short ifru_flags;
269 compat_int_t ifru_ivalue;
270 compat_int_t ifru_mtu;
271 struct compat_ifmap ifru_map;
272 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000273 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800274 compat_caddr_t ifru_data;
275 struct compat_if_settings ifru_settings;
276 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000277};
278
279struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400280 compat_int_t ifc_len; /* size of buffer */
281 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000282};
283
Ingo Molnar34f192c2006-03-27 01:16:24 -0800284struct compat_robust_list {
285 compat_uptr_t next;
286};
287
288struct compat_robust_list_head {
289 struct compat_robust_list list;
290 compat_long_t futex_offset;
291 compat_uptr_t list_op_pending;
292};
293
Al Viro495dfbf2012-12-25 19:09:45 -0500294#ifdef CONFIG_COMPAT_OLD_SIGACTION
295struct compat_old_sigaction {
296 compat_uptr_t sa_handler;
297 compat_old_sigset_t sa_mask;
298 compat_ulong_t sa_flags;
299 compat_uptr_t sa_restorer;
300};
301#endif
302
Stephan Muellerf1c316a2016-08-19 20:39:09 +0200303struct compat_keyctl_kdf_params {
304 compat_uptr_t hashname;
305 compat_uptr_t otherinfo;
306 __u32 otherinfolen;
307 __u32 __spare[8];
308};
309
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400310struct compat_statfs;
311struct compat_statfs64;
312struct compat_old_linux_dirent;
313struct compat_linux_dirent;
314struct linux_dirent64;
315struct compat_msghdr;
316struct compat_mmsghdr;
317struct compat_sysinfo;
318struct compat_sysctl_args;
319struct compat_kexec_segment;
320struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400321struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400322
Ingo Molnar34f192c2006-03-27 01:16:24 -0800323extern void compat_exit_robust_list(struct task_struct *curr);
324
325asmlinkage long
326compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
327 compat_size_t len);
328asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100329compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800330 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Al Viro56e41d32013-01-21 23:15:25 -0500332asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
Al Viro0e65a812013-02-03 14:36:44 -0500333asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
334asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
335asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700336 compat_ssize_t msgsz, int msgflg);
Al Viro0e65a812013-02-03 14:36:44 -0500337asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
Heiko Carstens291fdb02014-03-04 12:39:03 +0100338 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400339long compat_sys_msgctl(int first, int second, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340long compat_sys_shmctl(int first, int second, void __user *uptr);
341long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
342 unsigned nsems, const struct compat_timespec __user *timeout);
343asmlinkage long compat_sys_keyctl(u32 option,
344 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100345asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800347asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
348 const struct compat_iovec __user *vec, compat_ulong_t vlen);
349asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
350 const struct compat_iovec __user *vec, compat_ulong_t vlen);
351asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700352 const struct compat_iovec __user *vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800353 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
354asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700355 const struct compat_iovec __user *vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800356 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100357asmlinkage ssize_t compat_sys_preadv2(compat_ulong_t fd,
358 const struct compat_iovec __user *vec,
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200359 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100360asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
361 const struct compat_iovec __user *vec,
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200362 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
Heiko Carstens378a10f2014-03-05 10:43:51 +0100363
364#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
365asmlinkage long compat_sys_preadv64(unsigned long fd,
366 const struct compat_iovec __user *vec,
367 unsigned long vlen, loff_t pos);
368#endif
369
370#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
371asmlinkage long compat_sys_pwritev64(unsigned long fd,
372 const struct compat_iovec __user *vec,
373 unsigned long vlen, loff_t pos);
374#endif
375
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200376#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
377asmlinkage long compat_sys_readv64v2(unsigned long fd,
378 const struct compat_iovec __user *vec,
379 unsigned long vlen, loff_t pos, rwf_t flags);
380#endif
381
382#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
383asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
384 const struct compat_iovec __user *vec,
385 unsigned long vlen, loff_t pos, rwf_t flags);
386#endif
387
Stephan Springle5fbf672014-01-30 17:56:23 +0100388asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Al Viro38b983b2012-09-30 13:38:55 -0400390asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
391 const compat_uptr_t __user *envp);
David Drysdale51f39a12014-12-12 16:57:29 -0800392asmlinkage long compat_sys_execveat(int dfd, const char __user *filename,
393 const compat_uptr_t __user *argv,
394 const compat_uptr_t __user *envp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
397 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
398 struct compat_timeval __user *tvp);
399
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800400asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
401
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100402asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000403 compat_uint_t __user *stat_addr, int options,
404 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
407
Al Viro1e1fc132017-05-30 00:29:38 -0400408#define BITS_TO_COMPAT_LONGS(bits) DIV_ROUND_UP(bits, BITS_PER_COMPAT_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700410long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 unsigned long bitmap_size);
412long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
413 unsigned long bitmap_size);
414int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
Al Viroce395962013-10-13 17:23:53 -0400415int copy_siginfo_to_user32(struct compat_siginfo __user *to, const siginfo_t *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416int get_compat_sigevent(struct sigevent *event,
417 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000418long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
419 struct compat_siginfo __user *uinfo);
Al Viro495dfbf2012-12-25 19:09:45 -0500420#ifdef CONFIG_COMPAT_OLD_SIGACTION
421asmlinkage long compat_sys_sigaction(int sig,
422 const struct compat_old_sigaction __user *act,
423 struct compat_old_sigaction __user *oact);
424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Andrew Morton643a6542006-02-11 17:55:52 -0800426static inline int compat_timeval_compare(struct compat_timeval *lhs,
427 struct compat_timeval *rhs)
428{
429 if (lhs->tv_sec < rhs->tv_sec)
430 return -1;
431 if (lhs->tv_sec > rhs->tv_sec)
432 return 1;
433 return lhs->tv_usec - rhs->tv_usec;
434}
435
436static inline int compat_timespec_compare(struct compat_timespec *lhs,
437 struct compat_timespec *rhs)
438{
439 if (lhs->tv_sec < rhs->tv_sec)
440 return -1;
441 if (lhs->tv_sec > rhs->tv_sec)
442 return 1;
443 return lhs->tv_nsec - rhs->tv_nsec;
444}
445
Christoph Hellwigb418da12008-10-15 22:02:06 -0700446asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
447 struct timezone __user *tz);
448asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
449 struct timezone __user *tz);
450
Stephen Rothwell3158e942006-03-26 01:37:29 -0800451asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
452
Al Viro3968cf62017-09-03 21:45:17 -0400453extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
Dmitry V. Levinf4543222017-08-22 02:16:11 +0300454extern int put_compat_sigset(compat_sigset_t __user *compat,
455 const sigset_t *set, unsigned int size);
Andi Kleenbebfa102006-06-26 13:56:52 +0200456
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800457asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
458 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
459 const compat_ulong_t __user *new_nodes);
460
Roland McGrath032d82d2008-01-30 13:31:47 +0100461extern int compat_ptrace_request(struct task_struct *child,
462 compat_long_t request,
463 compat_ulong_t addr, compat_ulong_t data);
464
Roland McGrathc269f192008-01-30 13:31:48 +0100465extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
466 compat_ulong_t addr, compat_ulong_t data);
467asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
468 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100469
Heiko Carstensd8d14bd2014-01-29 14:05:46 -0800470asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800471/*
472 * epoll (fs/eventpoll.c) compat bits follow ...
473 */
Al Viro35280bd2013-02-24 14:52:17 -0500474struct epoll_event; /* fortunately, this one is fixed-layout */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800475asmlinkage long compat_sys_epoll_pwait(int epfd,
Al Viro35280bd2013-02-24 14:52:17 -0500476 struct epoll_event __user *events,
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800477 int maxevents, int timeout,
478 const compat_sigset_t __user *sigmask,
479 compat_size_t sigsetsize);
480
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400481asmlinkage long compat_sys_utime(const char __user *filename,
482 struct compat_utimbuf __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400483asmlinkage long compat_sys_utimensat(unsigned int dfd,
484 const char __user *filename,
485 struct compat_timespec __user *t,
486 int flags);
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700487
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400488asmlinkage long compat_sys_time(compat_time_t __user *tloc);
489asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000490asmlinkage long compat_sys_signalfd(int ufd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400491 const compat_sigset_t __user *sigmask,
492 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800493asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
494 const struct compat_itimerspec __user *utmr,
495 struct compat_itimerspec __user *otmr);
496asmlinkage long compat_sys_timerfd_gettime(int ufd,
497 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000498
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100499asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100500 __u32 __user *pages,
501 const int __user *nodes,
502 int __user *status,
503 int flags);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400504asmlinkage long compat_sys_futimesat(unsigned int dfd,
505 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100506 struct compat_timeval __user *t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400507asmlinkage long compat_sys_utimes(const char __user *filename,
508 struct compat_timeval __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400509asmlinkage long compat_sys_newstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400510 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400511asmlinkage long compat_sys_newlstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400512 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400513asmlinkage long compat_sys_newfstatat(unsigned int dfd,
514 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100515 struct compat_stat __user *statbuf,
516 int flag);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400517asmlinkage long compat_sys_newfstat(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400518 struct compat_stat __user *statbuf);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400519asmlinkage long compat_sys_statfs(const char __user *pathname,
520 struct compat_statfs __user *buf);
521asmlinkage long compat_sys_fstatfs(unsigned int fd,
522 struct compat_statfs __user *buf);
523asmlinkage long compat_sys_statfs64(const char __user *pathname,
524 compat_size_t sz,
525 struct compat_statfs64 __user *buf);
526asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
527 struct compat_statfs64 __user *buf);
528asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100529 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400530asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100531 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400532asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
Heiko Carstens932602e2014-03-04 16:07:52 +0100533asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
534 compat_long_t min_nr,
535 compat_long_t nr,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400536 struct io_event __user *events,
537 struct compat_timespec __user *timeout);
Heiko Carstens932602e2014-03-04 16:07:52 +0100538asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400539 u32 __user *iocb);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400540asmlinkage long compat_sys_mount(const char __user *dev_name,
541 const char __user *dir_name,
Heiko Carstens932602e2014-03-04 16:07:52 +0100542 const char __user *type, compat_ulong_t flags,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400543 const void __user *data);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400544asmlinkage long compat_sys_old_readdir(unsigned int fd,
545 struct compat_old_linux_dirent __user *,
546 unsigned int count);
547asmlinkage long compat_sys_getdents(unsigned int fd,
548 struct compat_linux_dirent __user *dirent,
549 unsigned int count);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400550asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
551 unsigned int nr_segs, unsigned int flags);
552asmlinkage long compat_sys_open(const char __user *filename, int flags,
Al Viroa218d0f2011-11-21 14:59:34 -0500553 umode_t mode);
Al Virof482e1b2012-12-25 20:24:38 -0500554asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
Al Viroa218d0f2011-11-21 14:59:34 -0500555 int flags, umode_t mode);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400556asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
557 struct file_handle __user *handle,
558 int flags);
Al Viro3f6d0782013-02-24 13:49:08 -0500559asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
560asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400561asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
562 compat_ulong_t __user *outp,
563 compat_ulong_t __user *exp,
564 struct compat_timespec __user *tsp,
565 void __user *sig);
566asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
567 unsigned int nfds,
568 struct compat_timespec __user *tsp,
569 const compat_sigset_t __user *sigmask,
570 compat_size_t sigsetsize);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400571asmlinkage long compat_sys_signalfd4(int ufd,
572 const compat_sigset_t __user *sigmask,
573 compat_size_t sigsetsize, int flags);
574asmlinkage long compat_sys_get_mempolicy(int __user *policy,
575 compat_ulong_t __user *nmask,
576 compat_ulong_t maxnode,
577 compat_ulong_t addr,
578 compat_ulong_t flags);
579asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
580 compat_ulong_t maxnode);
581asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
582 compat_ulong_t mode,
583 compat_ulong_t __user *nmask,
584 compat_ulong_t maxnode, compat_ulong_t flags);
585
586asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
587 char __user *optval, unsigned int optlen);
588asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
589 unsigned flags);
Chris Metcalf507c5f12011-06-27 16:18:07 -0700590asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
591 unsigned vlen, unsigned int flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400592asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
593 unsigned int flags);
Heiko Carstens3a49a0f2014-03-04 17:09:57 +0100594asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400595 unsigned flags);
Heiko Carstens3a49a0f2014-03-04 17:09:57 +0100596asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400597 unsigned flags, struct sockaddr __user *addr,
598 int __user *addrlen);
599asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
600 unsigned vlen, unsigned int flags,
601 struct compat_timespec __user *timeout);
602asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
603 struct compat_timespec __user *rmtp);
604asmlinkage long compat_sys_getitimer(int which,
605 struct compat_itimerval __user *it);
606asmlinkage long compat_sys_setitimer(int which,
607 struct compat_itimerval __user *in,
608 struct compat_itimerval __user *out);
609asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
610asmlinkage long compat_sys_setrlimit(unsigned int resource,
611 struct compat_rlimit __user *rlim);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400612asmlinkage long compat_sys_getrlimit(unsigned int resource,
613 struct compat_rlimit __user *rlim);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400614asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
615asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
616 unsigned int len,
617 compat_ulong_t __user *user_mask_ptr);
618asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
619 unsigned int len,
620 compat_ulong_t __user *user_mask_ptr);
621asmlinkage long compat_sys_timer_create(clockid_t which_clock,
622 struct compat_sigevent __user *timer_event_spec,
623 timer_t __user *created_timer_id);
624asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
625 struct compat_itimerspec __user *new,
626 struct compat_itimerspec __user *old);
627asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
628 struct compat_itimerspec __user *setting);
629asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
630 struct compat_timespec __user *tp);
631asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
632 struct compat_timespec __user *tp);
633asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
634 struct compat_timex __user *tp);
635asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
636 struct compat_timespec __user *tp);
637asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
638 struct compat_timespec __user *rqtp,
639 struct compat_timespec __user *rmtp);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400640asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400641 struct compat_siginfo __user *uinfo,
642 struct compat_timespec __user *uts, compat_size_t sigsetsize);
643asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
644 compat_size_t sigsetsize);
Al Viro322a56c2012-12-25 13:32:58 -0500645asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
646 compat_sigset_t __user *oset,
647 compat_size_t sigsetsize);
Al Virofe9c1db2012-12-25 14:31:38 -0500648asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
649 compat_size_t sigsetsize);
Al Viro08d32fe2012-12-25 18:38:15 -0500650#ifndef CONFIG_ODD_RT_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500651asmlinkage long compat_sys_rt_sigaction(int,
652 const struct compat_sigaction __user *,
653 struct compat_sigaction __user *,
654 compat_size_t);
655#endif
Al Viro75907d42012-12-25 15:19:12 -0500656asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
657 struct compat_siginfo __user *uinfo);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400658asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
659asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100660 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400661asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
662 struct compat_timespec __user *utime, u32 __user *uaddr2,
663 u32 val3);
664asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
665 char __user *optval, int __user *optlen);
Heiko Carstensca2c4052014-03-04 17:13:42 +0100666asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
667 compat_ulong_t nr_segments,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400668 struct compat_kexec_segment __user *,
Heiko Carstensca2c4052014-03-04 17:13:42 +0100669 compat_ulong_t flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400670asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
671 const struct compat_mq_attr __user *u_mqstat,
672 struct compat_mq_attr __user *u_omqstat);
673asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
674 const struct compat_sigevent __user *u_notification);
675asmlinkage long compat_sys_mq_open(const char __user *u_name,
676 int oflag, compat_mode_t mode,
677 struct compat_mq_attr __user *u_attr);
678asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
679 const char __user *u_msg_ptr,
Heiko Carstens8eee9092014-03-04 16:19:16 +0100680 compat_size_t msg_len, unsigned int msg_prio,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400681 const struct compat_timespec __user *u_abs_timeout);
682asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
683 char __user *u_msg_ptr,
Heiko Carstens8eee9092014-03-04 16:19:16 +0100684 compat_size_t msg_len, unsigned int __user *u_msg_prio,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400685 const struct compat_timespec __user *u_abs_timeout);
686asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
687asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100688
Jeff Moyerb8373362010-05-26 14:44:25 -0700689extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400690 const struct compat_iovec __user *uvector,
691 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700692 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700693 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700694
695extern void __user *compat_alloc_user_space(unsigned long len);
696
Chris Metcalfa67ba432011-12-01 12:54:31 -0500697asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
698 const struct compat_iovec __user *lvec,
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100699 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
700 compat_ulong_t riovcnt, compat_ulong_t flags);
Chris Metcalfa67ba432011-12-01 12:54:31 -0500701asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
702 const struct compat_iovec __user *lvec,
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100703 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
704 compat_ulong_t riovcnt, compat_ulong_t flags);
Chris Metcalfa67ba432011-12-01 12:54:31 -0500705
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100706asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
707 compat_off_t __user *offset, compat_size_t count);
Al Viro19f4fc32013-02-24 02:17:03 -0500708asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
709 compat_loff_t __user *offset, compat_size_t count);
Al Viro90268432012-12-14 14:47:53 -0500710asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
711 compat_stack_t __user *uoss_ptr);
712
Catalin Marinase9fb8b72015-01-06 16:48:36 +0000713#ifdef __ARCH_WANT_SYS_SIGPENDING
714asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
715#endif
716
717#ifdef __ARCH_WANT_SYS_SIGPROCMASK
718asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
719 compat_old_sigset_t __user *oset);
720#endif
721
Al Viro90268432012-12-14 14:47:53 -0500722int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500723int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Al Virobd1c149a2013-09-01 20:35:01 +0100724#define compat_save_altstack_ex(uss, sp) do { \
725 compat_stack_t __user *__uss = uss; \
726 struct task_struct *t = current; \
727 put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800728 put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
Al Virobd1c149a2013-09-01 20:35:01 +0100729 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800730 if (t->sas_ss_flags & SS_AUTODISARM) \
731 sas_ss_reset(t); \
Al Virobd1c149a2013-09-01 20:35:01 +0100732} while (0);
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100733
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800734asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
735 struct compat_timespec __user *interval);
736
Al Viro91c2e0b2013-03-05 20:10:59 -0500737asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
738 int, const char __user *);
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700739
Kyle Huey79170fd2017-03-20 01:16:24 -0700740asmlinkage long compat_sys_arch_prctl(int option, unsigned long arg2);
741
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700742/*
743 * For most but not all architectures, "am I in a compat syscall?" and
744 * "am I a compat task?" are the same question. For architectures on which
745 * they aren't the same question, arch code can override in_compat_syscall.
746 */
747
748#ifndef in_compat_syscall
749static inline bool in_compat_syscall(void) { return is_compat_task(); }
750#endif
751
Frederic Weisbeckercd19c362017-01-31 04:09:27 +0100752/**
753 * ns_to_compat_timeval - Compat version of ns_to_timeval
754 * @nsec: the nanoseconds value to be converted
755 *
756 * Returns the compat_timeval representation of the nsec parameter.
757 */
758static inline struct compat_timeval ns_to_compat_timeval(s64 nsec)
759{
760 struct timeval tv;
761 struct compat_timeval ctv;
762
763 tv = ns_to_timeval(nsec);
764 ctv.tv_sec = tv.tv_sec;
765 ctv.tv_usec = tv.tv_usec;
766
767 return ctv;
768}
769
770#else /* !CONFIG_COMPAT */
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800771
772#define is_compat_task() (0)
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700773static inline bool in_compat_syscall(void) { return false; }
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#endif /* CONFIG_COMPAT */
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#endif /* _LINUX_COMPAT_H */