blob: 3f35f4cfb98d85fb7b3ff282c27a87018062d56a [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#include <linux/stat.h>
12#include <linux/param.h> /* for HZ */
13#include <linux/sem.h>
Arnd Bergmann2dceba12009-11-06 08:09:03 +000014#include <linux/socket.h>
15#include <linux/if.h>
Chris Metcalfbe84cb42011-05-09 13:12:30 -040016#include <linux/fs.h>
Stephen Rothwell45e96832011-05-24 13:28:54 +100017#include <linux/aio_abi.h> /* for aio_context_t */
Matt Redfearnfde9fc72018-02-19 16:55:06 +000018#include <linux/uaccess.h>
Heiko Carstensf5b972e2014-03-20 15:30:14 +010019#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Deepa Dinamani5055c672018-03-13 21:03:24 -070021#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/compat.h>
23#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010024#include <asm/signal.h>
Deepa Dinamani5055c672018-03-13 21:03:24 -070025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Dominik Brodowski7303e302018-04-05 11:53:03 +020027#ifdef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
28/*
29 * It may be useful for an architecture to override the definitions of the
30 * COMPAT_SYSCALL_DEFINE0 and COMPAT_SYSCALL_DEFINEx() macros, in particular
31 * to use a different calling convention for syscalls. To allow for that,
32 + the prototypes for the compat_sys_*() functions below will *not* be included
33 * if CONFIG_ARCH_HAS_SYSCALL_WRAPPER is enabled.
34 */
35#include <asm/syscall_wrapper.h>
36#endif /* CONFIG_ARCH_HAS_SYSCALL_WRAPPER */
37
H. J. Lu45e87782012-02-10 14:04:27 -080038#ifndef COMPAT_USE_64BIT_TIME
39#define COMPAT_USE_64BIT_TIME 0
40#endif
41
Al Viro46836612012-11-23 09:12:59 -050042#ifndef __SC_DELOUSE
Al Viro4f59c712017-07-08 11:40:39 -040043#define __SC_DELOUSE(t,v) ((__force t)(unsigned long)(v))
Al Viro46836612012-11-23 09:12:59 -050044#endif
45
Dominik Brodowski7303e302018-04-05 11:53:03 +020046#ifndef COMPAT_SYSCALL_DEFINE0
Heiko Carstens217f4432014-02-26 10:56:20 +010047#define COMPAT_SYSCALL_DEFINE0(name) \
Howard McLauchlanc9a21192018-03-21 18:59:08 -070048 asmlinkage long compat_sys_##name(void); \
49 ALLOW_ERROR_INJECTION(compat_sys_##name, ERRNO); \
Heiko Carstens217f4432014-02-26 10:56:20 +010050 asmlinkage long compat_sys_##name(void)
Dominik Brodowski7303e302018-04-05 11:53:03 +020051#endif /* COMPAT_SYSCALL_DEFINE0 */
Heiko Carstens217f4432014-02-26 10:56:20 +010052
Al Viro46836612012-11-23 09:12:59 -050053#define COMPAT_SYSCALL_DEFINE1(name, ...) \
54 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
55#define COMPAT_SYSCALL_DEFINE2(name, ...) \
56 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
57#define COMPAT_SYSCALL_DEFINE3(name, ...) \
58 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
59#define COMPAT_SYSCALL_DEFINE4(name, ...) \
60 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
61#define COMPAT_SYSCALL_DEFINE5(name, ...) \
62 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
63#define COMPAT_SYSCALL_DEFINE6(name, ...) \
64 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
65
Dominik Brodowski5ac9efa2018-04-09 12:51:43 +020066/*
67 * The asmlinkage stub is aliased to a function named __se_compat_sys_*() which
68 * sign-extends 32-bit ints to longs whenever needed. The actual work is
69 * done within __do_compat_sys_*().
70 */
Dominik Brodowski7303e302018-04-05 11:53:03 +020071#ifndef COMPAT_SYSCALL_DEFINEx
Dominik Brodowski5ac9efa2018-04-09 12:51:43 +020072#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
73 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__)); \
74 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__)) \
75 __attribute__((alias(__stringify(__se_compat_sys##name)))); \
76 ALLOW_ERROR_INJECTION(compat_sys##name, ERRNO); \
77 static inline long __do_compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
78 asmlinkage long __se_compat_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__)); \
79 asmlinkage long __se_compat_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__)) \
80 { \
81 return __do_compat_sys##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__));\
82 } \
83 static inline long __do_compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))
Dominik Brodowski7303e302018-04-05 11:53:03 +020084#endif /* COMPAT_SYSCALL_DEFINEx */
Al Viro46836612012-11-23 09:12:59 -050085
Deepa Dinamani5055c672018-03-13 21:03:24 -070086#ifdef CONFIG_COMPAT
87
Al Viro9b064fc2012-12-14 13:49:35 -050088#ifndef compat_user_stack_pointer
89#define compat_user_stack_pointer() current_user_stack_pointer()
90#endif
Al Viro90268432012-12-14 14:47:53 -050091#ifndef compat_sigaltstack /* we'll need that for MIPS */
92typedef struct compat_sigaltstack {
93 compat_uptr_t ss_sp;
94 int ss_flags;
95 compat_size_t ss_size;
96} compat_stack_t;
97#endif
Al Viro90268432012-12-14 14:47:53 -050098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define compat_jiffies_to_clock_t(x) \
100 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
101
Stephen Rothwell202e5972005-09-06 15:16:40 -0700102typedef __compat_uid32_t compat_uid_t;
103typedef __compat_gid32_t compat_gid_t;
104
Heiko Carstens932602e2014-03-04 16:07:52 +0100105typedef compat_ulong_t compat_aio_context_t;
106
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800107struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108struct rusage;
109
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400110struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct compat_timespec it_interval;
112 struct compat_timespec it_value;
113};
114
115struct compat_utimbuf {
116 compat_time_t actime;
117 compat_time_t modtime;
118};
119
120struct compat_itimerval {
121 struct compat_timeval it_interval;
122 struct compat_timeval it_value;
123};
124
Al Viro54ad9c42017-06-07 09:42:37 +0100125struct itimerval;
126int get_compat_itimerval(struct itimerval *, const struct compat_itimerval __user *);
127int put_compat_itimerval(struct compat_itimerval __user *, const struct itimerval *);
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct compat_tms {
130 compat_clock_t tms_utime;
131 compat_clock_t tms_stime;
132 compat_clock_t tms_cutime;
133 compat_clock_t tms_cstime;
134};
135
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800136struct compat_timex {
137 compat_uint_t modes;
138 compat_long_t offset;
139 compat_long_t freq;
140 compat_long_t maxerror;
141 compat_long_t esterror;
142 compat_int_t status;
143 compat_long_t constant;
144 compat_long_t precision;
145 compat_long_t tolerance;
146 struct compat_timeval time;
147 compat_long_t tick;
148 compat_long_t ppsfreq;
149 compat_long_t jitter;
150 compat_int_t shift;
151 compat_long_t stabil;
152 compat_long_t jitcnt;
153 compat_long_t calcnt;
154 compat_long_t errcnt;
155 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700156 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800157
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400158 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; compat_int_t:32;
160 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800161};
162
Al Viro3a4d44b2017-06-07 09:42:34 +0100163struct timex;
164int compat_get_timex(struct timex *, const struct compat_timex __user *);
165int compat_put_timex(struct compat_timex __user *, const struct timex *);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
168
169typedef struct {
170 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
171} compat_sigset_t;
172
Al Viro08d32fe2012-12-25 18:38:15 -0500173struct compat_sigaction {
David Howells2a148692013-03-19 14:00:53 +0000174#ifndef __ARCH_HAS_IRIX_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500175 compat_uptr_t sa_handler;
176 compat_ulong_t sa_flags;
177#else
David Howells2a148692013-03-19 14:00:53 +0000178 compat_uint_t sa_flags;
Al Viro08d32fe2012-12-25 18:38:15 -0500179 compat_uptr_t sa_handler;
180#endif
181#ifdef __ARCH_HAS_SA_RESTORER
182 compat_uptr_t sa_restorer;
183#endif
184 compat_sigset_t sa_mask __packed;
185};
Al Viro08d32fe2012-12-25 18:38:15 -0500186
Al Virob713da62017-07-09 15:53:17 -0400187typedef union compat_sigval {
188 compat_int_t sival_int;
189 compat_uptr_t sival_ptr;
190} compat_sigval_t;
191
192typedef struct compat_siginfo {
193 int si_signo;
194#ifndef __ARCH_HAS_SWAPPED_SIGINFO
195 int si_errno;
196 int si_code;
197#else
198 int si_code;
199 int si_errno;
200#endif
201
202 union {
203 int _pad[128/sizeof(int) - 3];
204
205 /* kill() */
206 struct {
207 compat_pid_t _pid; /* sender's pid */
208 __compat_uid32_t _uid; /* sender's uid */
209 } _kill;
210
211 /* POSIX.1b timers */
212 struct {
213 compat_timer_t _tid; /* timer id */
214 int _overrun; /* overrun count */
215 compat_sigval_t _sigval; /* same as below */
216 } _timer;
217
218 /* POSIX.1b signals */
219 struct {
220 compat_pid_t _pid; /* sender's pid */
221 __compat_uid32_t _uid; /* sender's uid */
222 compat_sigval_t _sigval;
223 } _rt;
224
225 /* SIGCHLD */
226 struct {
227 compat_pid_t _pid; /* which child */
228 __compat_uid32_t _uid; /* sender's uid */
229 int _status; /* exit code */
230 compat_clock_t _utime;
231 compat_clock_t _stime;
232 } _sigchld;
233
234#ifdef CONFIG_X86_X32_ABI
235 /* SIGCHLD (x32 version) */
236 struct {
237 compat_pid_t _pid; /* which child */
238 __compat_uid32_t _uid; /* sender's uid */
239 int _status; /* exit code */
240 compat_s64 _utime;
241 compat_s64 _stime;
242 } _sigchld_x32;
243#endif
244
245 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGTRAP, SIGEMT */
246 struct {
247 compat_uptr_t _addr; /* faulting insn/memory ref. */
248#ifdef __ARCH_SI_TRAPNO
249 int _trapno; /* TRAP # which caused the signal */
250#endif
Eric W. Biederman8420f712018-04-02 14:45:42 -0500251#define __COMPAT_ADDR_BND_PKEY_PAD (__alignof__(compat_uptr_t) < sizeof(short) ? \
252 sizeof(short) : __alignof__(compat_uptr_t))
Al Virob713da62017-07-09 15:53:17 -0400253 union {
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500254 /*
255 * used when si_code=BUS_MCEERR_AR or
256 * used when si_code=BUS_MCEERR_AO
257 */
258 short int _addr_lsb; /* Valid LSB of the reported address. */
Al Virob713da62017-07-09 15:53:17 -0400259 /* used when si_code=SEGV_BNDERR */
260 struct {
Eric W. Biederman8420f712018-04-02 14:45:42 -0500261 char _dummy_bnd[__COMPAT_ADDR_BND_PKEY_PAD];
Al Virob713da62017-07-09 15:53:17 -0400262 compat_uptr_t _lower;
263 compat_uptr_t _upper;
264 } _addr_bnd;
265 /* used when si_code=SEGV_PKUERR */
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500266 struct {
Eric W. Biederman8420f712018-04-02 14:45:42 -0500267 char _dummy_pkey[__COMPAT_ADDR_BND_PKEY_PAD];
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500268 u32 _pkey;
269 } _addr_pkey;
Al Virob713da62017-07-09 15:53:17 -0400270 };
271 } _sigfault;
272
273 /* SIGPOLL */
274 struct {
275 compat_long_t _band; /* POLL_IN, POLL_OUT, POLL_MSG */
276 int _fd;
277 } _sigpoll;
278
279 struct {
280 compat_uptr_t _call_addr; /* calling user insn */
281 int _syscall; /* triggering system call number */
282 unsigned int _arch; /* AUDIT_ARCH_* of syscall */
283 } _sigsys;
284 } _sifields;
285} compat_siginfo_t;
286
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800287/*
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800288 * These functions operate on 32- or 64-bit specs depending on
H. Peter Anvin81993e82014-02-01 18:54:11 -0800289 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments.
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800290 */
291extern int compat_get_timespec(struct timespec *, const void __user *);
292extern int compat_put_timespec(const struct timespec *, void __user *);
293extern int compat_get_timeval(struct timeval *, const void __user *);
294extern int compat_put_timeval(const struct timeval *, void __user *);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -0700295extern int compat_get_timespec64(struct timespec64 *, const void __user *);
296extern int compat_put_timespec64(const struct timespec64 *, void __user *);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -0700297extern int get_compat_itimerspec64(struct itimerspec64 *its,
298 const struct compat_itimerspec __user *uits);
299extern int put_compat_itimerspec64(const struct itimerspec64 *its,
300 struct compat_itimerspec __user *uits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302struct compat_iovec {
303 compat_uptr_t iov_base;
304 compat_size_t iov_len;
305};
306
307struct compat_rlimit {
308 compat_ulong_t rlim_cur;
309 compat_ulong_t rlim_max;
310};
311
312struct compat_rusage {
313 struct compat_timeval ru_utime;
314 struct compat_timeval ru_stime;
315 compat_long_t ru_maxrss;
316 compat_long_t ru_ixrss;
317 compat_long_t ru_idrss;
318 compat_long_t ru_isrss;
319 compat_long_t ru_minflt;
320 compat_long_t ru_majflt;
321 compat_long_t ru_nswap;
322 compat_long_t ru_inblock;
323 compat_long_t ru_oublock;
324 compat_long_t ru_msgsnd;
325 compat_long_t ru_msgrcv;
326 compat_long_t ru_nsignals;
327 compat_long_t ru_nvcsw;
328 compat_long_t ru_nivcsw;
329};
330
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400331extern int put_compat_rusage(const struct rusage *,
332 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334struct compat_siginfo;
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336struct compat_dirent {
337 u32 d_ino;
338 compat_off_t d_off;
339 u16 d_reclen;
340 char d_name[256];
341};
342
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100343struct compat_ustat {
344 compat_daddr_t f_tfree;
345 compat_ino_t f_tinode;
346 char f_fname[6];
347 char f_fpack[6];
348};
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
351
352typedef struct compat_sigevent {
353 compat_sigval_t sigev_value;
354 compat_int_t sigev_signo;
355 compat_int_t sigev_notify;
356 union {
357 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
358 compat_int_t _tid;
359
360 struct {
361 compat_uptr_t _function;
362 compat_uptr_t _attribute;
363 } _sigev_thread;
364 } _sigev_un;
365} compat_sigevent_t;
366
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000367struct compat_ifmap {
368 compat_ulong_t mem_start;
369 compat_ulong_t mem_end;
370 unsigned short base_addr;
371 unsigned char irq;
372 unsigned char dma;
373 unsigned char port;
374};
375
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400376struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800377 unsigned int type; /* Type of physical device or protocol */
378 unsigned int size; /* Size of the data allocated by the caller */
379 compat_uptr_t ifs_ifsu; /* union of pointers */
380};
381
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000382struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800383 union {
384 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
385 } ifr_ifrn;
386 union {
387 struct sockaddr ifru_addr;
388 struct sockaddr ifru_dstaddr;
389 struct sockaddr ifru_broadaddr;
390 struct sockaddr ifru_netmask;
391 struct sockaddr ifru_hwaddr;
392 short ifru_flags;
393 compat_int_t ifru_ivalue;
394 compat_int_t ifru_mtu;
395 struct compat_ifmap ifru_map;
396 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000397 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800398 compat_caddr_t ifru_data;
399 struct compat_if_settings ifru_settings;
400 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000401};
402
403struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400404 compat_int_t ifc_len; /* size of buffer */
405 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000406};
407
Ingo Molnar34f192c2006-03-27 01:16:24 -0800408struct compat_robust_list {
409 compat_uptr_t next;
410};
411
412struct compat_robust_list_head {
413 struct compat_robust_list list;
414 compat_long_t futex_offset;
415 compat_uptr_t list_op_pending;
416};
417
Al Viro495dfbf2012-12-25 19:09:45 -0500418#ifdef CONFIG_COMPAT_OLD_SIGACTION
419struct compat_old_sigaction {
420 compat_uptr_t sa_handler;
421 compat_old_sigset_t sa_mask;
422 compat_ulong_t sa_flags;
423 compat_uptr_t sa_restorer;
424};
425#endif
426
Stephan Muellerf1c316a2016-08-19 20:39:09 +0200427struct compat_keyctl_kdf_params {
428 compat_uptr_t hashname;
429 compat_uptr_t otherinfo;
430 __u32 otherinfolen;
431 __u32 __spare[8];
432};
433
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400434struct compat_statfs;
435struct compat_statfs64;
436struct compat_old_linux_dirent;
437struct compat_linux_dirent;
438struct linux_dirent64;
439struct compat_msghdr;
440struct compat_mmsghdr;
441struct compat_sysinfo;
442struct compat_sysctl_args;
443struct compat_kexec_segment;
444struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400445struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400446
Ingo Molnar34f192c2006-03-27 01:16:24 -0800447extern void compat_exit_robust_list(struct task_struct *curr);
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
450
Al Viro1e1fc132017-05-30 00:29:38 -0400451#define BITS_TO_COMPAT_LONGS(bits) DIV_ROUND_UP(bits, BITS_PER_COMPAT_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700453long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 unsigned long bitmap_size);
455long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
456 unsigned long bitmap_size);
Eric W. Biederman212a36a2017-07-31 17:15:31 -0500457int copy_siginfo_from_user32(siginfo_t *to, const struct compat_siginfo __user *from);
Al Viroce395962013-10-13 17:23:53 -0400458int copy_siginfo_to_user32(struct compat_siginfo __user *to, const siginfo_t *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459int get_compat_sigevent(struct sigevent *event,
460 const struct compat_sigevent __user *u_event);
461
Andrew Morton643a6542006-02-11 17:55:52 -0800462static inline int compat_timeval_compare(struct compat_timeval *lhs,
463 struct compat_timeval *rhs)
464{
465 if (lhs->tv_sec < rhs->tv_sec)
466 return -1;
467 if (lhs->tv_sec > rhs->tv_sec)
468 return 1;
469 return lhs->tv_usec - rhs->tv_usec;
470}
471
472static inline int compat_timespec_compare(struct compat_timespec *lhs,
473 struct compat_timespec *rhs)
474{
475 if (lhs->tv_sec < rhs->tv_sec)
476 return -1;
477 if (lhs->tv_sec > rhs->tv_sec)
478 return 1;
479 return lhs->tv_nsec - rhs->tv_nsec;
480}
481
Al Viro3968cf62017-09-03 21:45:17 -0400482extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
Matt Redfearnfde9fc72018-02-19 16:55:06 +0000483
484/*
485 * Defined inline such that size can be compile time constant, which avoids
486 * CONFIG_HARDENED_USERCOPY complaining about copies from task_struct
487 */
488static inline int
489put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set,
490 unsigned int size)
491{
492 /* size <= sizeof(compat_sigset_t) <= sizeof(sigset_t) */
493#ifdef __BIG_ENDIAN
494 compat_sigset_t v;
495 switch (_NSIG_WORDS) {
496 case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
497 case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
498 case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1];
499 case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0];
500 }
501 return copy_to_user(compat, &v, size) ? -EFAULT : 0;
502#else
503 return copy_to_user(compat, set, size) ? -EFAULT : 0;
504#endif
505}
Andi Kleenbebfa102006-06-26 13:56:52 +0200506
Roland McGrath032d82d2008-01-30 13:31:47 +0100507extern int compat_ptrace_request(struct task_struct *child,
508 compat_long_t request,
509 compat_ulong_t addr, compat_ulong_t data);
510
Roland McGrathc269f192008-01-30 13:31:48 +0100511extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
512 compat_ulong_t addr, compat_ulong_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100513
Al Viro35280bd2013-02-24 14:52:17 -0500514struct epoll_event; /* fortunately, this one is fixed-layout */
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100515
Jeff Moyerb8373362010-05-26 14:44:25 -0700516extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400517 const struct compat_iovec __user *uvector,
518 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700519 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700520 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700521
522extern void __user *compat_alloc_user_space(unsigned long len);
523
Al Viro90268432012-12-14 14:47:53 -0500524int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500525int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Al Virobd1c149a2013-09-01 20:35:01 +0100526#define compat_save_altstack_ex(uss, sp) do { \
527 compat_stack_t __user *__uss = uss; \
528 struct task_struct *t = current; \
529 put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800530 put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
Al Virobd1c149a2013-09-01 20:35:01 +0100531 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800532 if (t->sas_ss_flags & SS_AUTODISARM) \
533 sas_ss_reset(t); \
Al Virobd1c149a2013-09-01 20:35:01 +0100534} while (0);
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100535
Dominik Brodowskic679a082018-03-25 23:04:48 +0200536/*
537 * These syscall function prototypes are kept in the same order as
Dominik Brodowski3e2052e2018-03-22 14:09:17 +0100538 * include/uapi/asm-generic/unistd.h. Deprecated or obsolete system calls
539 * go below.
Dominik Brodowskic679a082018-03-25 23:04:48 +0200540 *
541 * Please note that these prototypes here are only provided for information
542 * purposes, for static analysis, and for linking from the syscall table.
543 * These functions should not be called elsewhere from kernel code.
Dominik Brodowski7303e302018-04-05 11:53:03 +0200544 *
545 * As the syscall calling convention may be different from the default
546 * for architectures overriding the syscall calling convention, do not
547 * include the prototypes if CONFIG_ARCH_HAS_SYSCALL_WRAPPER is enabled.
Dominik Brodowskic679a082018-03-25 23:04:48 +0200548 */
Dominik Brodowski7303e302018-04-05 11:53:03 +0200549#ifndef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
Dominik Brodowskic679a082018-03-25 23:04:48 +0200550asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
551asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
552 u32 __user *iocb);
553asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
554 compat_long_t min_nr,
555 compat_long_t nr,
556 struct io_event __user *events,
557 struct compat_timespec __user *timeout);
558
559/* fs/cookies.c */
560asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
561
562/* fs/eventpoll.c */
563asmlinkage long compat_sys_epoll_pwait(int epfd,
564 struct epoll_event __user *events,
565 int maxevents, int timeout,
566 const compat_sigset_t __user *sigmask,
567 compat_size_t sigsetsize);
568
569/* fs/fcntl.c */
570asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
571 compat_ulong_t arg);
572asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
573 compat_ulong_t arg);
574
575/* fs/ioctl.c */
576asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
577 compat_ulong_t arg);
578
579/* fs/namespace.c */
580asmlinkage long compat_sys_mount(const char __user *dev_name,
581 const char __user *dir_name,
582 const char __user *type, compat_ulong_t flags,
583 const void __user *data);
584
585/* fs/open.c */
586asmlinkage long compat_sys_statfs(const char __user *pathname,
587 struct compat_statfs __user *buf);
588asmlinkage long compat_sys_statfs64(const char __user *pathname,
589 compat_size_t sz,
590 struct compat_statfs64 __user *buf);
591asmlinkage long compat_sys_fstatfs(unsigned int fd,
592 struct compat_statfs __user *buf);
593asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
594 struct compat_statfs64 __user *buf);
595asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
596asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
597/* No generic prototype for truncate64, ftruncate64, fallocate */
598asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
599 int flags, umode_t mode);
600
601/* fs/readdir.c */
602asmlinkage long compat_sys_getdents(unsigned int fd,
603 struct compat_linux_dirent __user *dirent,
604 unsigned int count);
605
606/* fs/read_write.c */
607asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
608asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
609 const struct compat_iovec __user *vec, compat_ulong_t vlen);
610asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
611 const struct compat_iovec __user *vec, compat_ulong_t vlen);
612/* No generic prototype for pread64 and pwrite64 */
613asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
614 const struct compat_iovec __user *vec,
615 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
616asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
617 const struct compat_iovec __user *vec,
618 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
619#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
620asmlinkage long compat_sys_preadv64(unsigned long fd,
621 const struct compat_iovec __user *vec,
622 unsigned long vlen, loff_t pos);
623#endif
624
625#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
626asmlinkage long compat_sys_pwritev64(unsigned long fd,
627 const struct compat_iovec __user *vec,
628 unsigned long vlen, loff_t pos);
629#endif
630
631/* fs/sendfile.c */
632asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
633 compat_off_t __user *offset, compat_size_t count);
634asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
635 compat_loff_t __user *offset, compat_size_t count);
636
637/* fs/select.c */
638asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
639 compat_ulong_t __user *outp,
640 compat_ulong_t __user *exp,
641 struct compat_timespec __user *tsp,
642 void __user *sig);
643asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
644 unsigned int nfds,
645 struct compat_timespec __user *tsp,
646 const compat_sigset_t __user *sigmask,
647 compat_size_t sigsetsize);
648
649/* fs/signalfd.c */
650asmlinkage long compat_sys_signalfd4(int ufd,
651 const compat_sigset_t __user *sigmask,
652 compat_size_t sigsetsize, int flags);
653
654/* fs/splice.c */
655asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
656 unsigned int nr_segs, unsigned int flags);
657
658/* fs/stat.c */
659asmlinkage long compat_sys_newfstatat(unsigned int dfd,
660 const char __user *filename,
661 struct compat_stat __user *statbuf,
662 int flag);
663asmlinkage long compat_sys_newfstat(unsigned int fd,
664 struct compat_stat __user *statbuf);
665
666/* fs/sync.c: No generic prototype for sync_file_range and sync_file_range2 */
667
668/* fs/timerfd.c */
669asmlinkage long compat_sys_timerfd_gettime(int ufd,
670 struct compat_itimerspec __user *otmr);
671asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
672 const struct compat_itimerspec __user *utmr,
673 struct compat_itimerspec __user *otmr);
674
675/* fs/utimes.c */
676asmlinkage long compat_sys_utimensat(unsigned int dfd,
677 const char __user *filename,
678 struct compat_timespec __user *t,
679 int flags);
680
681/* kernel/exit.c */
682asmlinkage long compat_sys_waitid(int, compat_pid_t,
683 struct compat_siginfo __user *, int,
684 struct compat_rusage __user *);
685
686
687
688/* kernel/futex.c */
689asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
690 struct compat_timespec __user *utime, u32 __user *uaddr2,
691 u32 val3);
692asmlinkage long
693compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
694 compat_size_t len);
695asmlinkage long
696compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
697 compat_size_t __user *len_ptr);
698
699/* kernel/hrtimer.c */
700asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
701 struct compat_timespec __user *rmtp);
702
703/* kernel/itimer.c */
704asmlinkage long compat_sys_getitimer(int which,
705 struct compat_itimerval __user *it);
706asmlinkage long compat_sys_setitimer(int which,
707 struct compat_itimerval __user *in,
708 struct compat_itimerval __user *out);
709
710/* kernel/kexec.c */
711asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
712 compat_ulong_t nr_segments,
713 struct compat_kexec_segment __user *,
714 compat_ulong_t flags);
715
716/* kernel/posix-timers.c */
717asmlinkage long compat_sys_timer_create(clockid_t which_clock,
718 struct compat_sigevent __user *timer_event_spec,
719 timer_t __user *created_timer_id);
720asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
721 struct compat_itimerspec __user *setting);
722asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
723 struct compat_itimerspec __user *new,
724 struct compat_itimerspec __user *old);
725asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
726 struct compat_timespec __user *tp);
727asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
728 struct compat_timespec __user *tp);
729asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
730 struct compat_timespec __user *tp);
731asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
732 struct compat_timespec __user *rqtp,
733 struct compat_timespec __user *rmtp);
734
735/* kernel/ptrace.c */
736asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
737 compat_long_t addr, compat_long_t data);
738
739/* kernel/sched/core.c */
740asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
741 unsigned int len,
742 compat_ulong_t __user *user_mask_ptr);
743asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
744 unsigned int len,
745 compat_ulong_t __user *user_mask_ptr);
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800746asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
747 struct compat_timespec __user *interval);
748
Dominik Brodowskic679a082018-03-25 23:04:48 +0200749/* kernel/signal.c */
750asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
751 compat_stack_t __user *uoss_ptr);
752asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
753 compat_size_t sigsetsize);
754#ifndef CONFIG_ODD_RT_SIGACTION
755asmlinkage long compat_sys_rt_sigaction(int,
756 const struct compat_sigaction __user *,
757 struct compat_sigaction __user *,
758 compat_size_t);
759#endif
760asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
761 compat_sigset_t __user *oset,
762 compat_size_t sigsetsize);
763asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
764 compat_size_t sigsetsize);
765asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
766 struct compat_siginfo __user *uinfo,
767 struct compat_timespec __user *uts, compat_size_t sigsetsize);
768asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
769 struct compat_siginfo __user *uinfo);
770/* No generic prototype for rt_sigreturn */
771
772/* kernel/sys.c */
773asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
774asmlinkage long compat_sys_getrlimit(unsigned int resource,
775 struct compat_rlimit __user *rlim);
776asmlinkage long compat_sys_setrlimit(unsigned int resource,
777 struct compat_rlimit __user *rlim);
778asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
779
780/* kernel/time.c */
781asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
782 struct timezone __user *tz);
783asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
784 struct timezone __user *tz);
785asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
786
787/* kernel/timer.c */
788asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
789
790/* ipc/mqueue.c */
791asmlinkage long compat_sys_mq_open(const char __user *u_name,
792 int oflag, compat_mode_t mode,
793 struct compat_mq_attr __user *u_attr);
794asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
795 const char __user *u_msg_ptr,
796 compat_size_t msg_len, unsigned int msg_prio,
797 const struct compat_timespec __user *u_abs_timeout);
798asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
799 char __user *u_msg_ptr,
800 compat_size_t msg_len, unsigned int __user *u_msg_prio,
801 const struct compat_timespec __user *u_abs_timeout);
802asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
803 const struct compat_sigevent __user *u_notification);
804asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
805 const struct compat_mq_attr __user *u_mqstat,
806 struct compat_mq_attr __user *u_omqstat);
807
808/* ipc/msg.c */
809asmlinkage long compat_sys_msgctl(int first, int second, void __user *uptr);
810asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
811 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
812asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
813 compat_ssize_t msgsz, int msgflg);
814
815/* ipc/sem.c */
816asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
817asmlinkage long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
818 unsigned nsems, const struct compat_timespec __user *timeout);
819
820/* ipc/shm.c */
821asmlinkage long compat_sys_shmctl(int first, int second, void __user *uptr);
822asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
823
824/* net/socket.c */
825asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
826 unsigned flags, struct sockaddr __user *addr,
827 int __user *addrlen);
828asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
829 char __user *optval, unsigned int optlen);
830asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
831 char __user *optval, int __user *optlen);
832asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
833 unsigned flags);
834asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
835 unsigned int flags);
836
837/* mm/filemap.c: No generic prototype for readahead */
838
839/* security/keys/keyctl.c */
840asmlinkage long compat_sys_keyctl(u32 option,
841 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
842
843/* arch/example/kernel/sys_example.c */
844asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
845 const compat_uptr_t __user *envp);
846
847/* mm/fadvise.c: No generic prototype for fadvise64_64 */
848
849/* mm/, CONFIG_MMU only */
850asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
851 compat_ulong_t mode,
852 compat_ulong_t __user *nmask,
853 compat_ulong_t maxnode, compat_ulong_t flags);
854asmlinkage long compat_sys_get_mempolicy(int __user *policy,
855 compat_ulong_t __user *nmask,
856 compat_ulong_t maxnode,
857 compat_ulong_t addr,
858 compat_ulong_t flags);
859asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
860 compat_ulong_t maxnode);
861asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
862 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
863 const compat_ulong_t __user *new_nodes);
864asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
865 __u32 __user *pages,
866 const int __user *nodes,
867 int __user *status,
868 int flags);
869
870asmlinkage long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid,
871 compat_pid_t pid, int sig,
872 struct compat_siginfo __user *uinfo);
873asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
874 unsigned vlen, unsigned int flags,
875 struct compat_timespec __user *timeout);
876asmlinkage long compat_sys_wait4(compat_pid_t pid,
877 compat_uint_t __user *stat_addr, int options,
878 struct compat_rusage __user *ru);
Al Viro91c2e0b2013-03-05 20:10:59 -0500879asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
880 int, const char __user *);
Dominik Brodowskic679a082018-03-25 23:04:48 +0200881asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
882 struct file_handle __user *handle,
883 int flags);
884asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
885 struct compat_timex __user *tp);
886asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
887 unsigned vlen, unsigned int flags);
888asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
889 const struct compat_iovec __user *lvec,
890 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
891 compat_ulong_t riovcnt, compat_ulong_t flags);
892asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
893 const struct compat_iovec __user *lvec,
894 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
895 compat_ulong_t riovcnt, compat_ulong_t flags);
896asmlinkage long compat_sys_execveat(int dfd, const char __user *filename,
897 const compat_uptr_t __user *argv,
898 const compat_uptr_t __user *envp, int flags);
899asmlinkage ssize_t compat_sys_preadv2(compat_ulong_t fd,
900 const struct compat_iovec __user *vec,
901 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
902asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
903 const struct compat_iovec __user *vec,
904 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
905#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
906asmlinkage long compat_sys_readv64v2(unsigned long fd,
907 const struct compat_iovec __user *vec,
908 unsigned long vlen, loff_t pos, rwf_t flags);
909#endif
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700910
Dominik Brodowskic679a082018-03-25 23:04:48 +0200911#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
912asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
913 const struct compat_iovec __user *vec,
914 unsigned long vlen, loff_t pos, rwf_t flags);
915#endif
916
917
918/*
Dominik Brodowskic679a082018-03-25 23:04:48 +0200919 * Deprecated system calls which are still defined in
920 * include/uapi/asm-generic/unistd.h and wanted by >= 1 arch
921 */
922
923/* __ARCH_WANT_SYSCALL_NO_AT */
924asmlinkage long compat_sys_open(const char __user *filename, int flags,
925 umode_t mode);
926asmlinkage long compat_sys_utimes(const char __user *filename,
927 struct compat_timeval __user *t);
928
929/* __ARCH_WANT_SYSCALL_NO_FLAGS */
930asmlinkage long compat_sys_signalfd(int ufd,
931 const compat_sigset_t __user *sigmask,
932 compat_size_t sigsetsize);
933
934/* __ARCH_WANT_SYSCALL_OFF_T */
935asmlinkage long compat_sys_newstat(const char __user *filename,
936 struct compat_stat __user *statbuf);
937asmlinkage long compat_sys_newlstat(const char __user *filename,
938 struct compat_stat __user *statbuf);
939
940/* __ARCH_WANT_SYSCALL_DEPRECATED */
941asmlinkage long compat_sys_time(compat_time_t __user *tloc);
942asmlinkage long compat_sys_utime(const char __user *filename,
943 struct compat_utimbuf __user *t);
944asmlinkage long compat_sys_futimesat(unsigned int dfd,
945 const char __user *filename,
946 struct compat_timeval __user *t);
947asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
948 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
949 struct compat_timeval __user *tvp);
950asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
951asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
952 unsigned flags);
953asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
954
955/* obsolete: fs/readdir.c */
956asmlinkage long compat_sys_old_readdir(unsigned int fd,
957 struct compat_old_linux_dirent __user *,
958 unsigned int count);
959
960/* obsolete: fs/select.c */
961asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
962
963/* obsolete: ipc */
964asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
965
966/* obsolete: kernel/signal.c */
967#ifdef __ARCH_WANT_SYS_SIGPENDING
968asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
969#endif
970
971#ifdef __ARCH_WANT_SYS_SIGPROCMASK
972asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
973 compat_old_sigset_t __user *oset);
974#endif
975#ifdef CONFIG_COMPAT_OLD_SIGACTION
976asmlinkage long compat_sys_sigaction(int sig,
977 const struct compat_old_sigaction __user *act,
978 struct compat_old_sigaction __user *oact);
979#endif
980
981/* obsolete: kernel/time/time.c */
982asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
983
984/* obsolete: net/socket.c */
985asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
986
Dominik Brodowski7303e302018-04-05 11:53:03 +0200987#endif /* CONFIG_ARCH_HAS_SYSCALL_WRAPPER */
988
Dominik Brodowskic679a082018-03-25 23:04:48 +0200989
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700990/*
991 * For most but not all architectures, "am I in a compat syscall?" and
992 * "am I a compat task?" are the same question. For architectures on which
993 * they aren't the same question, arch code can override in_compat_syscall.
994 */
995
996#ifndef in_compat_syscall
997static inline bool in_compat_syscall(void) { return is_compat_task(); }
998#endif
999
Frederic Weisbeckercd19c362017-01-31 04:09:27 +01001000/**
1001 * ns_to_compat_timeval - Compat version of ns_to_timeval
1002 * @nsec: the nanoseconds value to be converted
1003 *
1004 * Returns the compat_timeval representation of the nsec parameter.
1005 */
1006static inline struct compat_timeval ns_to_compat_timeval(s64 nsec)
1007{
1008 struct timeval tv;
1009 struct compat_timeval ctv;
1010
1011 tv = ns_to_timeval(nsec);
1012 ctv.tv_sec = tv.tv_sec;
1013 ctv.tv_usec = tv.tv_usec;
1014
1015 return ctv;
1016}
1017
1018#else /* !CONFIG_COMPAT */
Linus Torvalds3c761ea2012-02-26 09:44:55 -08001019
1020#define is_compat_task() (0)
Deepa Dinamani5055c672018-03-13 21:03:24 -07001021#ifndef in_compat_syscall
Andy Lutomirski5180e3e2016-03-22 14:24:43 -07001022static inline bool in_compat_syscall(void) { return false; }
Deepa Dinamani5055c672018-03-13 21:03:24 -07001023#endif
Linus Torvalds3c761ea2012-02-26 09:44:55 -08001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025#endif /* CONFIG_COMPAT */
Andy Lutomirski5180e3e2016-03-22 14:24:43 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027#endif /* _LINUX_COMPAT_H */