blob: 9847c5a013c3c230e025008463c164922230ac7d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Andy Lutomirski5180e3e2016-03-22 14:24:43 -07009#include <linux/types.h>
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#ifdef CONFIG_COMPAT
12
13#include <linux/stat.h>
14#include <linux/param.h> /* for HZ */
15#include <linux/sem.h>
Arnd Bergmann2dceba12009-11-06 08:09:03 +000016#include <linux/socket.h>
17#include <linux/if.h>
Chris Metcalfbe84cb42011-05-09 13:12:30 -040018#include <linux/fs.h>
Stephen Rothwell45e96832011-05-24 13:28:54 +100019#include <linux/aio_abi.h> /* for aio_context_t */
Matt Redfearnfde9fc72018-02-19 16:55:06 +000020#include <linux/uaccess.h>
Heiko Carstensf5b972e2014-03-20 15:30:14 +010021#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/compat.h>
24#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010025#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
H. J. Lu45e87782012-02-10 14:04:27 -080027#ifndef COMPAT_USE_64BIT_TIME
28#define COMPAT_USE_64BIT_TIME 0
29#endif
30
Al Viro46836612012-11-23 09:12:59 -050031#ifndef __SC_DELOUSE
Al Viro4f59c712017-07-08 11:40:39 -040032#define __SC_DELOUSE(t,v) ((__force t)(unsigned long)(v))
Al Viro46836612012-11-23 09:12:59 -050033#endif
34
Heiko Carstens217f4432014-02-26 10:56:20 +010035#define COMPAT_SYSCALL_DEFINE0(name) \
Howard McLauchlanc9a21192018-03-21 18:59:08 -070036 asmlinkage long compat_sys_##name(void); \
37 ALLOW_ERROR_INJECTION(compat_sys_##name, ERRNO); \
Heiko Carstens217f4432014-02-26 10:56:20 +010038 asmlinkage long compat_sys_##name(void)
39
Al Viro46836612012-11-23 09:12:59 -050040#define COMPAT_SYSCALL_DEFINE1(name, ...) \
41 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
42#define COMPAT_SYSCALL_DEFINE2(name, ...) \
43 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
44#define COMPAT_SYSCALL_DEFINE3(name, ...) \
45 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
46#define COMPAT_SYSCALL_DEFINE4(name, ...) \
47 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
48#define COMPAT_SYSCALL_DEFINE5(name, ...) \
49 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
50#define COMPAT_SYSCALL_DEFINE6(name, ...) \
51 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
52
Al Viro46836612012-11-23 09:12:59 -050053#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
Dominik Brodowski3e2052e2018-03-22 14:09:17 +010054 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
Andi Kleen83460ec2013-11-12 15:08:36 -080055 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))\
56 __attribute__((alias(__stringify(compat_SyS##name)))); \
Howard McLauchlanc9a21192018-03-21 18:59:08 -070057 ALLOW_ERROR_INJECTION(compat_sys##name, ERRNO); \
Al Viro07fe6e02013-01-21 15:03:44 -050058 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
Sergei Trofimovichf9597f22013-09-11 14:23:28 -070059 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__));\
Al Viro07fe6e02013-01-21 15:03:44 -050060 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__))\
Al Viro46836612012-11-23 09:12:59 -050061 { \
Al Viro07fe6e02013-01-21 15:03:44 -050062 return C_SYSC##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__)); \
Al Viro46836612012-11-23 09:12:59 -050063 } \
Al Viro07fe6e02013-01-21 15:03:44 -050064 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__))
Al Viro46836612012-11-23 09:12:59 -050065
Al Viro9b064fc2012-12-14 13:49:35 -050066#ifndef compat_user_stack_pointer
67#define compat_user_stack_pointer() current_user_stack_pointer()
68#endif
Al Viro90268432012-12-14 14:47:53 -050069#ifndef compat_sigaltstack /* we'll need that for MIPS */
70typedef struct compat_sigaltstack {
71 compat_uptr_t ss_sp;
72 int ss_flags;
73 compat_size_t ss_size;
74} compat_stack_t;
75#endif
Al Viro90268432012-12-14 14:47:53 -050076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define compat_jiffies_to_clock_t(x) \
78 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
79
Stephen Rothwell202e5972005-09-06 15:16:40 -070080typedef __compat_uid32_t compat_uid_t;
81typedef __compat_gid32_t compat_gid_t;
82
Heiko Carstens932602e2014-03-04 16:07:52 +010083typedef compat_ulong_t compat_aio_context_t;
84
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080085struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct rusage;
87
Chris Metcalf4800a5b2011-05-17 14:41:06 -040088struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct compat_timespec it_interval;
90 struct compat_timespec it_value;
91};
92
93struct compat_utimbuf {
94 compat_time_t actime;
95 compat_time_t modtime;
96};
97
98struct compat_itimerval {
99 struct compat_timeval it_interval;
100 struct compat_timeval it_value;
101};
102
Al Viro54ad9c42017-06-07 09:42:37 +0100103struct itimerval;
104int get_compat_itimerval(struct itimerval *, const struct compat_itimerval __user *);
105int put_compat_itimerval(struct compat_itimerval __user *, const struct itimerval *);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107struct compat_tms {
108 compat_clock_t tms_utime;
109 compat_clock_t tms_stime;
110 compat_clock_t tms_cutime;
111 compat_clock_t tms_cstime;
112};
113
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800114struct compat_timex {
115 compat_uint_t modes;
116 compat_long_t offset;
117 compat_long_t freq;
118 compat_long_t maxerror;
119 compat_long_t esterror;
120 compat_int_t status;
121 compat_long_t constant;
122 compat_long_t precision;
123 compat_long_t tolerance;
124 struct compat_timeval time;
125 compat_long_t tick;
126 compat_long_t ppsfreq;
127 compat_long_t jitter;
128 compat_int_t shift;
129 compat_long_t stabil;
130 compat_long_t jitcnt;
131 compat_long_t calcnt;
132 compat_long_t errcnt;
133 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700134 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800135
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400136 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
137 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
138 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800139};
140
Al Viro3a4d44b2017-06-07 09:42:34 +0100141struct timex;
142int compat_get_timex(struct timex *, const struct compat_timex __user *);
143int compat_put_timex(struct compat_timex __user *, const struct timex *);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
146
147typedef struct {
148 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
149} compat_sigset_t;
150
Al Viro08d32fe2012-12-25 18:38:15 -0500151struct compat_sigaction {
David Howells2a148692013-03-19 14:00:53 +0000152#ifndef __ARCH_HAS_IRIX_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500153 compat_uptr_t sa_handler;
154 compat_ulong_t sa_flags;
155#else
David Howells2a148692013-03-19 14:00:53 +0000156 compat_uint_t sa_flags;
Al Viro08d32fe2012-12-25 18:38:15 -0500157 compat_uptr_t sa_handler;
158#endif
159#ifdef __ARCH_HAS_SA_RESTORER
160 compat_uptr_t sa_restorer;
161#endif
162 compat_sigset_t sa_mask __packed;
163};
Al Viro08d32fe2012-12-25 18:38:15 -0500164
Al Virob713da62017-07-09 15:53:17 -0400165typedef union compat_sigval {
166 compat_int_t sival_int;
167 compat_uptr_t sival_ptr;
168} compat_sigval_t;
169
170typedef struct compat_siginfo {
171 int si_signo;
172#ifndef __ARCH_HAS_SWAPPED_SIGINFO
173 int si_errno;
174 int si_code;
175#else
176 int si_code;
177 int si_errno;
178#endif
179
180 union {
181 int _pad[128/sizeof(int) - 3];
182
183 /* kill() */
184 struct {
185 compat_pid_t _pid; /* sender's pid */
186 __compat_uid32_t _uid; /* sender's uid */
187 } _kill;
188
189 /* POSIX.1b timers */
190 struct {
191 compat_timer_t _tid; /* timer id */
192 int _overrun; /* overrun count */
193 compat_sigval_t _sigval; /* same as below */
194 } _timer;
195
196 /* POSIX.1b signals */
197 struct {
198 compat_pid_t _pid; /* sender's pid */
199 __compat_uid32_t _uid; /* sender's uid */
200 compat_sigval_t _sigval;
201 } _rt;
202
203 /* SIGCHLD */
204 struct {
205 compat_pid_t _pid; /* which child */
206 __compat_uid32_t _uid; /* sender's uid */
207 int _status; /* exit code */
208 compat_clock_t _utime;
209 compat_clock_t _stime;
210 } _sigchld;
211
212#ifdef CONFIG_X86_X32_ABI
213 /* SIGCHLD (x32 version) */
214 struct {
215 compat_pid_t _pid; /* which child */
216 __compat_uid32_t _uid; /* sender's uid */
217 int _status; /* exit code */
218 compat_s64 _utime;
219 compat_s64 _stime;
220 } _sigchld_x32;
221#endif
222
223 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGTRAP, SIGEMT */
224 struct {
225 compat_uptr_t _addr; /* faulting insn/memory ref. */
226#ifdef __ARCH_SI_TRAPNO
227 int _trapno; /* TRAP # which caused the signal */
228#endif
Al Virob713da62017-07-09 15:53:17 -0400229 union {
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500230 /*
231 * used when si_code=BUS_MCEERR_AR or
232 * used when si_code=BUS_MCEERR_AO
233 */
234 short int _addr_lsb; /* Valid LSB of the reported address. */
Al Virob713da62017-07-09 15:53:17 -0400235 /* used when si_code=SEGV_BNDERR */
236 struct {
Eric W. Biederman859d8802018-03-06 00:20:25 -0600237 compat_uptr_t _dummy_bnd;
Al Virob713da62017-07-09 15:53:17 -0400238 compat_uptr_t _lower;
239 compat_uptr_t _upper;
240 } _addr_bnd;
241 /* used when si_code=SEGV_PKUERR */
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500242 struct {
Eric W. Biederman859d8802018-03-06 00:20:25 -0600243 compat_uptr_t _dummy_pkey;
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500244 u32 _pkey;
245 } _addr_pkey;
Al Virob713da62017-07-09 15:53:17 -0400246 };
247 } _sigfault;
248
249 /* SIGPOLL */
250 struct {
251 compat_long_t _band; /* POLL_IN, POLL_OUT, POLL_MSG */
252 int _fd;
253 } _sigpoll;
254
255 struct {
256 compat_uptr_t _call_addr; /* calling user insn */
257 int _syscall; /* triggering system call number */
258 unsigned int _arch; /* AUDIT_ARCH_* of syscall */
259 } _sigsys;
260 } _sifields;
261} compat_siginfo_t;
262
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800263/*
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800264 * These functions operate on 32- or 64-bit specs depending on
H. Peter Anvin81993e82014-02-01 18:54:11 -0800265 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments.
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800266 */
267extern int compat_get_timespec(struct timespec *, const void __user *);
268extern int compat_put_timespec(const struct timespec *, void __user *);
269extern int compat_get_timeval(struct timeval *, const void __user *);
270extern int compat_put_timeval(const struct timeval *, void __user *);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -0700271extern int compat_get_timespec64(struct timespec64 *, const void __user *);
272extern int compat_put_timespec64(const struct timespec64 *, void __user *);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -0700273extern int get_compat_itimerspec64(struct itimerspec64 *its,
274 const struct compat_itimerspec __user *uits);
275extern int put_compat_itimerspec64(const struct itimerspec64 *its,
276 struct compat_itimerspec __user *uits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278struct compat_iovec {
279 compat_uptr_t iov_base;
280 compat_size_t iov_len;
281};
282
283struct compat_rlimit {
284 compat_ulong_t rlim_cur;
285 compat_ulong_t rlim_max;
286};
287
288struct compat_rusage {
289 struct compat_timeval ru_utime;
290 struct compat_timeval ru_stime;
291 compat_long_t ru_maxrss;
292 compat_long_t ru_ixrss;
293 compat_long_t ru_idrss;
294 compat_long_t ru_isrss;
295 compat_long_t ru_minflt;
296 compat_long_t ru_majflt;
297 compat_long_t ru_nswap;
298 compat_long_t ru_inblock;
299 compat_long_t ru_oublock;
300 compat_long_t ru_msgsnd;
301 compat_long_t ru_msgrcv;
302 compat_long_t ru_nsignals;
303 compat_long_t ru_nvcsw;
304 compat_long_t ru_nivcsw;
305};
306
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400307extern int put_compat_rusage(const struct rusage *,
308 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310struct compat_siginfo;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312struct compat_dirent {
313 u32 d_ino;
314 compat_off_t d_off;
315 u16 d_reclen;
316 char d_name[256];
317};
318
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100319struct compat_ustat {
320 compat_daddr_t f_tfree;
321 compat_ino_t f_tinode;
322 char f_fname[6];
323 char f_fpack[6];
324};
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
327
328typedef struct compat_sigevent {
329 compat_sigval_t sigev_value;
330 compat_int_t sigev_signo;
331 compat_int_t sigev_notify;
332 union {
333 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
334 compat_int_t _tid;
335
336 struct {
337 compat_uptr_t _function;
338 compat_uptr_t _attribute;
339 } _sigev_thread;
340 } _sigev_un;
341} compat_sigevent_t;
342
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000343struct compat_ifmap {
344 compat_ulong_t mem_start;
345 compat_ulong_t mem_end;
346 unsigned short base_addr;
347 unsigned char irq;
348 unsigned char dma;
349 unsigned char port;
350};
351
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400352struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800353 unsigned int type; /* Type of physical device or protocol */
354 unsigned int size; /* Size of the data allocated by the caller */
355 compat_uptr_t ifs_ifsu; /* union of pointers */
356};
357
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000358struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800359 union {
360 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
361 } ifr_ifrn;
362 union {
363 struct sockaddr ifru_addr;
364 struct sockaddr ifru_dstaddr;
365 struct sockaddr ifru_broadaddr;
366 struct sockaddr ifru_netmask;
367 struct sockaddr ifru_hwaddr;
368 short ifru_flags;
369 compat_int_t ifru_ivalue;
370 compat_int_t ifru_mtu;
371 struct compat_ifmap ifru_map;
372 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000373 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800374 compat_caddr_t ifru_data;
375 struct compat_if_settings ifru_settings;
376 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000377};
378
379struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400380 compat_int_t ifc_len; /* size of buffer */
381 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000382};
383
Ingo Molnar34f192c2006-03-27 01:16:24 -0800384struct compat_robust_list {
385 compat_uptr_t next;
386};
387
388struct compat_robust_list_head {
389 struct compat_robust_list list;
390 compat_long_t futex_offset;
391 compat_uptr_t list_op_pending;
392};
393
Al Viro495dfbf2012-12-25 19:09:45 -0500394#ifdef CONFIG_COMPAT_OLD_SIGACTION
395struct compat_old_sigaction {
396 compat_uptr_t sa_handler;
397 compat_old_sigset_t sa_mask;
398 compat_ulong_t sa_flags;
399 compat_uptr_t sa_restorer;
400};
401#endif
402
Stephan Muellerf1c316a2016-08-19 20:39:09 +0200403struct compat_keyctl_kdf_params {
404 compat_uptr_t hashname;
405 compat_uptr_t otherinfo;
406 __u32 otherinfolen;
407 __u32 __spare[8];
408};
409
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400410struct compat_statfs;
411struct compat_statfs64;
412struct compat_old_linux_dirent;
413struct compat_linux_dirent;
414struct linux_dirent64;
415struct compat_msghdr;
416struct compat_mmsghdr;
417struct compat_sysinfo;
418struct compat_sysctl_args;
419struct compat_kexec_segment;
420struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400421struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400422
Ingo Molnar34f192c2006-03-27 01:16:24 -0800423extern void compat_exit_robust_list(struct task_struct *curr);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
426
Al Viro1e1fc132017-05-30 00:29:38 -0400427#define BITS_TO_COMPAT_LONGS(bits) DIV_ROUND_UP(bits, BITS_PER_COMPAT_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700429long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned long bitmap_size);
431long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
432 unsigned long bitmap_size);
Eric W. Biederman212a36a2017-07-31 17:15:31 -0500433int copy_siginfo_from_user32(siginfo_t *to, const struct compat_siginfo __user *from);
Al Viroce395962013-10-13 17:23:53 -0400434int copy_siginfo_to_user32(struct compat_siginfo __user *to, const siginfo_t *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435int get_compat_sigevent(struct sigevent *event,
436 const struct compat_sigevent __user *u_event);
437
Andrew Morton643a6542006-02-11 17:55:52 -0800438static inline int compat_timeval_compare(struct compat_timeval *lhs,
439 struct compat_timeval *rhs)
440{
441 if (lhs->tv_sec < rhs->tv_sec)
442 return -1;
443 if (lhs->tv_sec > rhs->tv_sec)
444 return 1;
445 return lhs->tv_usec - rhs->tv_usec;
446}
447
448static inline int compat_timespec_compare(struct compat_timespec *lhs,
449 struct compat_timespec *rhs)
450{
451 if (lhs->tv_sec < rhs->tv_sec)
452 return -1;
453 if (lhs->tv_sec > rhs->tv_sec)
454 return 1;
455 return lhs->tv_nsec - rhs->tv_nsec;
456}
457
Al Viro3968cf62017-09-03 21:45:17 -0400458extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
Matt Redfearnfde9fc72018-02-19 16:55:06 +0000459
460/*
461 * Defined inline such that size can be compile time constant, which avoids
462 * CONFIG_HARDENED_USERCOPY complaining about copies from task_struct
463 */
464static inline int
465put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set,
466 unsigned int size)
467{
468 /* size <= sizeof(compat_sigset_t) <= sizeof(sigset_t) */
469#ifdef __BIG_ENDIAN
470 compat_sigset_t v;
471 switch (_NSIG_WORDS) {
472 case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
473 case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
474 case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1];
475 case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0];
476 }
477 return copy_to_user(compat, &v, size) ? -EFAULT : 0;
478#else
479 return copy_to_user(compat, set, size) ? -EFAULT : 0;
480#endif
481}
Andi Kleenbebfa102006-06-26 13:56:52 +0200482
Roland McGrath032d82d2008-01-30 13:31:47 +0100483extern int compat_ptrace_request(struct task_struct *child,
484 compat_long_t request,
485 compat_ulong_t addr, compat_ulong_t data);
486
Roland McGrathc269f192008-01-30 13:31:48 +0100487extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
488 compat_ulong_t addr, compat_ulong_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100489
Al Viro35280bd2013-02-24 14:52:17 -0500490struct epoll_event; /* fortunately, this one is fixed-layout */
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100491
Jeff Moyerb8373362010-05-26 14:44:25 -0700492extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400493 const struct compat_iovec __user *uvector,
494 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700495 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700496 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700497
498extern void __user *compat_alloc_user_space(unsigned long len);
499
Al Viro90268432012-12-14 14:47:53 -0500500int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500501int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Al Virobd1c149a2013-09-01 20:35:01 +0100502#define compat_save_altstack_ex(uss, sp) do { \
503 compat_stack_t __user *__uss = uss; \
504 struct task_struct *t = current; \
505 put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800506 put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
Al Virobd1c149a2013-09-01 20:35:01 +0100507 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800508 if (t->sas_ss_flags & SS_AUTODISARM) \
509 sas_ss_reset(t); \
Al Virobd1c149a2013-09-01 20:35:01 +0100510} while (0);
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100511
Dominik Brodowskic679a082018-03-25 23:04:48 +0200512/*
513 * These syscall function prototypes are kept in the same order as
Dominik Brodowski3e2052e2018-03-22 14:09:17 +0100514 * include/uapi/asm-generic/unistd.h. Deprecated or obsolete system calls
515 * go below.
Dominik Brodowskic679a082018-03-25 23:04:48 +0200516 *
517 * Please note that these prototypes here are only provided for information
518 * purposes, for static analysis, and for linking from the syscall table.
519 * These functions should not be called elsewhere from kernel code.
520 */
521asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
522asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
523 u32 __user *iocb);
524asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
525 compat_long_t min_nr,
526 compat_long_t nr,
527 struct io_event __user *events,
528 struct compat_timespec __user *timeout);
529
530/* fs/cookies.c */
531asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
532
533/* fs/eventpoll.c */
534asmlinkage long compat_sys_epoll_pwait(int epfd,
535 struct epoll_event __user *events,
536 int maxevents, int timeout,
537 const compat_sigset_t __user *sigmask,
538 compat_size_t sigsetsize);
539
540/* fs/fcntl.c */
541asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
542 compat_ulong_t arg);
543asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
544 compat_ulong_t arg);
545
546/* fs/ioctl.c */
547asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
548 compat_ulong_t arg);
549
550/* fs/namespace.c */
551asmlinkage long compat_sys_mount(const char __user *dev_name,
552 const char __user *dir_name,
553 const char __user *type, compat_ulong_t flags,
554 const void __user *data);
555
556/* fs/open.c */
557asmlinkage long compat_sys_statfs(const char __user *pathname,
558 struct compat_statfs __user *buf);
559asmlinkage long compat_sys_statfs64(const char __user *pathname,
560 compat_size_t sz,
561 struct compat_statfs64 __user *buf);
562asmlinkage long compat_sys_fstatfs(unsigned int fd,
563 struct compat_statfs __user *buf);
564asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
565 struct compat_statfs64 __user *buf);
566asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
567asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
568/* No generic prototype for truncate64, ftruncate64, fallocate */
569asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
570 int flags, umode_t mode);
571
572/* fs/readdir.c */
573asmlinkage long compat_sys_getdents(unsigned int fd,
574 struct compat_linux_dirent __user *dirent,
575 unsigned int count);
576
577/* fs/read_write.c */
578asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
579asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
580 const struct compat_iovec __user *vec, compat_ulong_t vlen);
581asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
582 const struct compat_iovec __user *vec, compat_ulong_t vlen);
583/* No generic prototype for pread64 and pwrite64 */
584asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
585 const struct compat_iovec __user *vec,
586 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
587asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
588 const struct compat_iovec __user *vec,
589 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
590#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
591asmlinkage long compat_sys_preadv64(unsigned long fd,
592 const struct compat_iovec __user *vec,
593 unsigned long vlen, loff_t pos);
594#endif
595
596#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
597asmlinkage long compat_sys_pwritev64(unsigned long fd,
598 const struct compat_iovec __user *vec,
599 unsigned long vlen, loff_t pos);
600#endif
601
602/* fs/sendfile.c */
603asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
604 compat_off_t __user *offset, compat_size_t count);
605asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
606 compat_loff_t __user *offset, compat_size_t count);
607
608/* fs/select.c */
609asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
610 compat_ulong_t __user *outp,
611 compat_ulong_t __user *exp,
612 struct compat_timespec __user *tsp,
613 void __user *sig);
614asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
615 unsigned int nfds,
616 struct compat_timespec __user *tsp,
617 const compat_sigset_t __user *sigmask,
618 compat_size_t sigsetsize);
619
620/* fs/signalfd.c */
621asmlinkage long compat_sys_signalfd4(int ufd,
622 const compat_sigset_t __user *sigmask,
623 compat_size_t sigsetsize, int flags);
624
625/* fs/splice.c */
626asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
627 unsigned int nr_segs, unsigned int flags);
628
629/* fs/stat.c */
630asmlinkage long compat_sys_newfstatat(unsigned int dfd,
631 const char __user *filename,
632 struct compat_stat __user *statbuf,
633 int flag);
634asmlinkage long compat_sys_newfstat(unsigned int fd,
635 struct compat_stat __user *statbuf);
636
637/* fs/sync.c: No generic prototype for sync_file_range and sync_file_range2 */
638
639/* fs/timerfd.c */
640asmlinkage long compat_sys_timerfd_gettime(int ufd,
641 struct compat_itimerspec __user *otmr);
642asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
643 const struct compat_itimerspec __user *utmr,
644 struct compat_itimerspec __user *otmr);
645
646/* fs/utimes.c */
647asmlinkage long compat_sys_utimensat(unsigned int dfd,
648 const char __user *filename,
649 struct compat_timespec __user *t,
650 int flags);
651
652/* kernel/exit.c */
653asmlinkage long compat_sys_waitid(int, compat_pid_t,
654 struct compat_siginfo __user *, int,
655 struct compat_rusage __user *);
656
657
658
659/* kernel/futex.c */
660asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
661 struct compat_timespec __user *utime, u32 __user *uaddr2,
662 u32 val3);
663asmlinkage long
664compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
665 compat_size_t len);
666asmlinkage long
667compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
668 compat_size_t __user *len_ptr);
669
670/* kernel/hrtimer.c */
671asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
672 struct compat_timespec __user *rmtp);
673
674/* kernel/itimer.c */
675asmlinkage long compat_sys_getitimer(int which,
676 struct compat_itimerval __user *it);
677asmlinkage long compat_sys_setitimer(int which,
678 struct compat_itimerval __user *in,
679 struct compat_itimerval __user *out);
680
681/* kernel/kexec.c */
682asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
683 compat_ulong_t nr_segments,
684 struct compat_kexec_segment __user *,
685 compat_ulong_t flags);
686
687/* kernel/posix-timers.c */
688asmlinkage long compat_sys_timer_create(clockid_t which_clock,
689 struct compat_sigevent __user *timer_event_spec,
690 timer_t __user *created_timer_id);
691asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
692 struct compat_itimerspec __user *setting);
693asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
694 struct compat_itimerspec __user *new,
695 struct compat_itimerspec __user *old);
696asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
697 struct compat_timespec __user *tp);
698asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
699 struct compat_timespec __user *tp);
700asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
701 struct compat_timespec __user *tp);
702asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
703 struct compat_timespec __user *rqtp,
704 struct compat_timespec __user *rmtp);
705
706/* kernel/ptrace.c */
707asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
708 compat_long_t addr, compat_long_t data);
709
710/* kernel/sched/core.c */
711asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
712 unsigned int len,
713 compat_ulong_t __user *user_mask_ptr);
714asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
715 unsigned int len,
716 compat_ulong_t __user *user_mask_ptr);
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800717asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
718 struct compat_timespec __user *interval);
719
Dominik Brodowskic679a082018-03-25 23:04:48 +0200720/* kernel/signal.c */
721asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
722 compat_stack_t __user *uoss_ptr);
723asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
724 compat_size_t sigsetsize);
725#ifndef CONFIG_ODD_RT_SIGACTION
726asmlinkage long compat_sys_rt_sigaction(int,
727 const struct compat_sigaction __user *,
728 struct compat_sigaction __user *,
729 compat_size_t);
730#endif
731asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
732 compat_sigset_t __user *oset,
733 compat_size_t sigsetsize);
734asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
735 compat_size_t sigsetsize);
736asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
737 struct compat_siginfo __user *uinfo,
738 struct compat_timespec __user *uts, compat_size_t sigsetsize);
739asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
740 struct compat_siginfo __user *uinfo);
741/* No generic prototype for rt_sigreturn */
742
743/* kernel/sys.c */
744asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
745asmlinkage long compat_sys_getrlimit(unsigned int resource,
746 struct compat_rlimit __user *rlim);
747asmlinkage long compat_sys_setrlimit(unsigned int resource,
748 struct compat_rlimit __user *rlim);
749asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
750
751/* kernel/time.c */
752asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
753 struct timezone __user *tz);
754asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
755 struct timezone __user *tz);
756asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
757
758/* kernel/timer.c */
759asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
760
761/* ipc/mqueue.c */
762asmlinkage long compat_sys_mq_open(const char __user *u_name,
763 int oflag, compat_mode_t mode,
764 struct compat_mq_attr __user *u_attr);
765asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
766 const char __user *u_msg_ptr,
767 compat_size_t msg_len, unsigned int msg_prio,
768 const struct compat_timespec __user *u_abs_timeout);
769asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
770 char __user *u_msg_ptr,
771 compat_size_t msg_len, unsigned int __user *u_msg_prio,
772 const struct compat_timespec __user *u_abs_timeout);
773asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
774 const struct compat_sigevent __user *u_notification);
775asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
776 const struct compat_mq_attr __user *u_mqstat,
777 struct compat_mq_attr __user *u_omqstat);
778
779/* ipc/msg.c */
780asmlinkage long compat_sys_msgctl(int first, int second, void __user *uptr);
781asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
782 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
783asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
784 compat_ssize_t msgsz, int msgflg);
785
786/* ipc/sem.c */
787asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
788asmlinkage long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
789 unsigned nsems, const struct compat_timespec __user *timeout);
790
791/* ipc/shm.c */
792asmlinkage long compat_sys_shmctl(int first, int second, void __user *uptr);
793asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
794
795/* net/socket.c */
796asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
797 unsigned flags, struct sockaddr __user *addr,
798 int __user *addrlen);
799asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
800 char __user *optval, unsigned int optlen);
801asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
802 char __user *optval, int __user *optlen);
803asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
804 unsigned flags);
805asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
806 unsigned int flags);
807
808/* mm/filemap.c: No generic prototype for readahead */
809
810/* security/keys/keyctl.c */
811asmlinkage long compat_sys_keyctl(u32 option,
812 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
813
814/* arch/example/kernel/sys_example.c */
815asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
816 const compat_uptr_t __user *envp);
817
818/* mm/fadvise.c: No generic prototype for fadvise64_64 */
819
820/* mm/, CONFIG_MMU only */
821asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
822 compat_ulong_t mode,
823 compat_ulong_t __user *nmask,
824 compat_ulong_t maxnode, compat_ulong_t flags);
825asmlinkage long compat_sys_get_mempolicy(int __user *policy,
826 compat_ulong_t __user *nmask,
827 compat_ulong_t maxnode,
828 compat_ulong_t addr,
829 compat_ulong_t flags);
830asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
831 compat_ulong_t maxnode);
832asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
833 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
834 const compat_ulong_t __user *new_nodes);
835asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
836 __u32 __user *pages,
837 const int __user *nodes,
838 int __user *status,
839 int flags);
840
841asmlinkage long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid,
842 compat_pid_t pid, int sig,
843 struct compat_siginfo __user *uinfo);
844asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
845 unsigned vlen, unsigned int flags,
846 struct compat_timespec __user *timeout);
847asmlinkage long compat_sys_wait4(compat_pid_t pid,
848 compat_uint_t __user *stat_addr, int options,
849 struct compat_rusage __user *ru);
Al Viro91c2e0b2013-03-05 20:10:59 -0500850asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
851 int, const char __user *);
Dominik Brodowskic679a082018-03-25 23:04:48 +0200852asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
853 struct file_handle __user *handle,
854 int flags);
855asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
856 struct compat_timex __user *tp);
857asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
858 unsigned vlen, unsigned int flags);
859asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
860 const struct compat_iovec __user *lvec,
861 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
862 compat_ulong_t riovcnt, compat_ulong_t flags);
863asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
864 const struct compat_iovec __user *lvec,
865 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
866 compat_ulong_t riovcnt, compat_ulong_t flags);
867asmlinkage long compat_sys_execveat(int dfd, const char __user *filename,
868 const compat_uptr_t __user *argv,
869 const compat_uptr_t __user *envp, int flags);
870asmlinkage ssize_t compat_sys_preadv2(compat_ulong_t fd,
871 const struct compat_iovec __user *vec,
872 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
873asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
874 const struct compat_iovec __user *vec,
875 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
876#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
877asmlinkage long compat_sys_readv64v2(unsigned long fd,
878 const struct compat_iovec __user *vec,
879 unsigned long vlen, loff_t pos, rwf_t flags);
880#endif
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700881
Dominik Brodowskic679a082018-03-25 23:04:48 +0200882#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
883asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
884 const struct compat_iovec __user *vec,
885 unsigned long vlen, loff_t pos, rwf_t flags);
886#endif
887
888
889/*
Dominik Brodowskic679a082018-03-25 23:04:48 +0200890 * Deprecated system calls which are still defined in
891 * include/uapi/asm-generic/unistd.h and wanted by >= 1 arch
892 */
893
894/* __ARCH_WANT_SYSCALL_NO_AT */
895asmlinkage long compat_sys_open(const char __user *filename, int flags,
896 umode_t mode);
897asmlinkage long compat_sys_utimes(const char __user *filename,
898 struct compat_timeval __user *t);
899
900/* __ARCH_WANT_SYSCALL_NO_FLAGS */
901asmlinkage long compat_sys_signalfd(int ufd,
902 const compat_sigset_t __user *sigmask,
903 compat_size_t sigsetsize);
904
905/* __ARCH_WANT_SYSCALL_OFF_T */
906asmlinkage long compat_sys_newstat(const char __user *filename,
907 struct compat_stat __user *statbuf);
908asmlinkage long compat_sys_newlstat(const char __user *filename,
909 struct compat_stat __user *statbuf);
910
911/* __ARCH_WANT_SYSCALL_DEPRECATED */
912asmlinkage long compat_sys_time(compat_time_t __user *tloc);
913asmlinkage long compat_sys_utime(const char __user *filename,
914 struct compat_utimbuf __user *t);
915asmlinkage long compat_sys_futimesat(unsigned int dfd,
916 const char __user *filename,
917 struct compat_timeval __user *t);
918asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
919 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
920 struct compat_timeval __user *tvp);
921asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
922asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
923 unsigned flags);
924asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
925
926/* obsolete: fs/readdir.c */
927asmlinkage long compat_sys_old_readdir(unsigned int fd,
928 struct compat_old_linux_dirent __user *,
929 unsigned int count);
930
931/* obsolete: fs/select.c */
932asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
933
934/* obsolete: ipc */
935asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
936
937/* obsolete: kernel/signal.c */
938#ifdef __ARCH_WANT_SYS_SIGPENDING
939asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
940#endif
941
942#ifdef __ARCH_WANT_SYS_SIGPROCMASK
943asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
944 compat_old_sigset_t __user *oset);
945#endif
946#ifdef CONFIG_COMPAT_OLD_SIGACTION
947asmlinkage long compat_sys_sigaction(int sig,
948 const struct compat_old_sigaction __user *act,
949 struct compat_old_sigaction __user *oact);
950#endif
951
952/* obsolete: kernel/time/time.c */
953asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
954
955/* obsolete: net/socket.c */
956asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
957
958
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700959/*
960 * For most but not all architectures, "am I in a compat syscall?" and
961 * "am I a compat task?" are the same question. For architectures on which
962 * they aren't the same question, arch code can override in_compat_syscall.
963 */
964
965#ifndef in_compat_syscall
966static inline bool in_compat_syscall(void) { return is_compat_task(); }
967#endif
968
Frederic Weisbeckercd19c362017-01-31 04:09:27 +0100969/**
970 * ns_to_compat_timeval - Compat version of ns_to_timeval
971 * @nsec: the nanoseconds value to be converted
972 *
973 * Returns the compat_timeval representation of the nsec parameter.
974 */
975static inline struct compat_timeval ns_to_compat_timeval(s64 nsec)
976{
977 struct timeval tv;
978 struct compat_timeval ctv;
979
980 tv = ns_to_timeval(nsec);
981 ctv.tv_sec = tv.tv_sec;
982 ctv.tv_usec = tv.tv_usec;
983
984 return ctv;
985}
986
987#else /* !CONFIG_COMPAT */
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800988
989#define is_compat_task() (0)
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700990static inline bool in_compat_syscall(void) { return false; }
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992#endif /* CONFIG_COMPAT */
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994#endif /* _LINUX_COMPAT_H */