blob: e698ec1908d970280bd9eeb65a37640ab49d5d18 [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 */
Heiko Carstensf5b972e2014-03-20 15:30:14 +010020#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/compat.h>
23#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010024#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
H. J. Lu45e87782012-02-10 14:04:27 -080026#ifndef COMPAT_USE_64BIT_TIME
27#define COMPAT_USE_64BIT_TIME 0
28#endif
29
Al Viro46836612012-11-23 09:12:59 -050030#ifndef __SC_DELOUSE
Al Viro4f59c712017-07-08 11:40:39 -040031#define __SC_DELOUSE(t,v) ((__force t)(unsigned long)(v))
Al Viro46836612012-11-23 09:12:59 -050032#endif
33
Heiko Carstens217f4432014-02-26 10:56:20 +010034#define COMPAT_SYSCALL_DEFINE0(name) \
35 asmlinkage long compat_sys_##name(void)
36
Al Viro46836612012-11-23 09:12:59 -050037#define COMPAT_SYSCALL_DEFINE1(name, ...) \
38 COMPAT_SYSCALL_DEFINEx(1, _##name, __VA_ARGS__)
39#define COMPAT_SYSCALL_DEFINE2(name, ...) \
40 COMPAT_SYSCALL_DEFINEx(2, _##name, __VA_ARGS__)
41#define COMPAT_SYSCALL_DEFINE3(name, ...) \
42 COMPAT_SYSCALL_DEFINEx(3, _##name, __VA_ARGS__)
43#define COMPAT_SYSCALL_DEFINE4(name, ...) \
44 COMPAT_SYSCALL_DEFINEx(4, _##name, __VA_ARGS__)
45#define COMPAT_SYSCALL_DEFINE5(name, ...) \
46 COMPAT_SYSCALL_DEFINEx(5, _##name, __VA_ARGS__)
47#define COMPAT_SYSCALL_DEFINE6(name, ...) \
48 COMPAT_SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
49
Al Viro46836612012-11-23 09:12:59 -050050#define COMPAT_SYSCALL_DEFINEx(x, name, ...) \
Andi Kleen83460ec2013-11-12 15:08:36 -080051 asmlinkage long compat_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__))\
52 __attribute__((alias(__stringify(compat_SyS##name)))); \
Al Viro07fe6e02013-01-21 15:03:44 -050053 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__));\
Sergei Trofimovichf9597f22013-09-11 14:23:28 -070054 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__));\
Al Viro07fe6e02013-01-21 15:03:44 -050055 asmlinkage long compat_SyS##name(__MAP(x,__SC_LONG,__VA_ARGS__))\
Al Viro46836612012-11-23 09:12:59 -050056 { \
Al Viro07fe6e02013-01-21 15:03:44 -050057 return C_SYSC##name(__MAP(x,__SC_DELOUSE,__VA_ARGS__)); \
Al Viro46836612012-11-23 09:12:59 -050058 } \
Al Viro07fe6e02013-01-21 15:03:44 -050059 static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__))
Al Viro46836612012-11-23 09:12:59 -050060
Al Viro9b064fc2012-12-14 13:49:35 -050061#ifndef compat_user_stack_pointer
62#define compat_user_stack_pointer() current_user_stack_pointer()
63#endif
Al Viro90268432012-12-14 14:47:53 -050064#ifndef compat_sigaltstack /* we'll need that for MIPS */
65typedef struct compat_sigaltstack {
66 compat_uptr_t ss_sp;
67 int ss_flags;
68 compat_size_t ss_size;
69} compat_stack_t;
70#endif
Al Viro90268432012-12-14 14:47:53 -050071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define compat_jiffies_to_clock_t(x) \
73 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
74
Stephen Rothwell202e5972005-09-06 15:16:40 -070075typedef __compat_uid32_t compat_uid_t;
76typedef __compat_gid32_t compat_gid_t;
77
Heiko Carstens932602e2014-03-04 16:07:52 +010078typedef compat_ulong_t compat_aio_context_t;
79
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080080struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct rusage;
82
Chris Metcalf4800a5b2011-05-17 14:41:06 -040083struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 struct compat_timespec it_interval;
85 struct compat_timespec it_value;
86};
87
88struct compat_utimbuf {
89 compat_time_t actime;
90 compat_time_t modtime;
91};
92
93struct compat_itimerval {
94 struct compat_timeval it_interval;
95 struct compat_timeval it_value;
96};
97
Al Viro54ad9c42017-06-07 09:42:37 +010098struct itimerval;
99int get_compat_itimerval(struct itimerval *, const struct compat_itimerval __user *);
100int put_compat_itimerval(struct compat_itimerval __user *, const struct itimerval *);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102struct compat_tms {
103 compat_clock_t tms_utime;
104 compat_clock_t tms_stime;
105 compat_clock_t tms_cutime;
106 compat_clock_t tms_cstime;
107};
108
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800109struct compat_timex {
110 compat_uint_t modes;
111 compat_long_t offset;
112 compat_long_t freq;
113 compat_long_t maxerror;
114 compat_long_t esterror;
115 compat_int_t status;
116 compat_long_t constant;
117 compat_long_t precision;
118 compat_long_t tolerance;
119 struct compat_timeval time;
120 compat_long_t tick;
121 compat_long_t ppsfreq;
122 compat_long_t jitter;
123 compat_int_t shift;
124 compat_long_t stabil;
125 compat_long_t jitcnt;
126 compat_long_t calcnt;
127 compat_long_t errcnt;
128 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -0700129 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800130
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400131 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; compat_int_t:32;
133 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -0800134};
135
Al Viro3a4d44b2017-06-07 09:42:34 +0100136struct timex;
137int compat_get_timex(struct timex *, const struct compat_timex __user *);
138int compat_put_timex(struct compat_timex __user *, const struct timex *);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
141
142typedef struct {
143 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
144} compat_sigset_t;
145
Al Viro08d32fe2012-12-25 18:38:15 -0500146struct compat_sigaction {
David Howells2a148692013-03-19 14:00:53 +0000147#ifndef __ARCH_HAS_IRIX_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500148 compat_uptr_t sa_handler;
149 compat_ulong_t sa_flags;
150#else
David Howells2a148692013-03-19 14:00:53 +0000151 compat_uint_t sa_flags;
Al Viro08d32fe2012-12-25 18:38:15 -0500152 compat_uptr_t sa_handler;
153#endif
154#ifdef __ARCH_HAS_SA_RESTORER
155 compat_uptr_t sa_restorer;
156#endif
157 compat_sigset_t sa_mask __packed;
158};
Al Viro08d32fe2012-12-25 18:38:15 -0500159
Al Virob713da62017-07-09 15:53:17 -0400160typedef union compat_sigval {
161 compat_int_t sival_int;
162 compat_uptr_t sival_ptr;
163} compat_sigval_t;
164
165typedef struct compat_siginfo {
166 int si_signo;
167#ifndef __ARCH_HAS_SWAPPED_SIGINFO
168 int si_errno;
169 int si_code;
170#else
171 int si_code;
172 int si_errno;
173#endif
174
175 union {
176 int _pad[128/sizeof(int) - 3];
177
178 /* kill() */
179 struct {
180 compat_pid_t _pid; /* sender's pid */
181 __compat_uid32_t _uid; /* sender's uid */
182 } _kill;
183
184 /* POSIX.1b timers */
185 struct {
186 compat_timer_t _tid; /* timer id */
187 int _overrun; /* overrun count */
188 compat_sigval_t _sigval; /* same as below */
189 } _timer;
190
191 /* POSIX.1b signals */
192 struct {
193 compat_pid_t _pid; /* sender's pid */
194 __compat_uid32_t _uid; /* sender's uid */
195 compat_sigval_t _sigval;
196 } _rt;
197
198 /* SIGCHLD */
199 struct {
200 compat_pid_t _pid; /* which child */
201 __compat_uid32_t _uid; /* sender's uid */
202 int _status; /* exit code */
203 compat_clock_t _utime;
204 compat_clock_t _stime;
205 } _sigchld;
206
207#ifdef CONFIG_X86_X32_ABI
208 /* SIGCHLD (x32 version) */
209 struct {
210 compat_pid_t _pid; /* which child */
211 __compat_uid32_t _uid; /* sender's uid */
212 int _status; /* exit code */
213 compat_s64 _utime;
214 compat_s64 _stime;
215 } _sigchld_x32;
216#endif
217
218 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS, SIGTRAP, SIGEMT */
219 struct {
220 compat_uptr_t _addr; /* faulting insn/memory ref. */
221#ifdef __ARCH_SI_TRAPNO
222 int _trapno; /* TRAP # which caused the signal */
223#endif
Al Virob713da62017-07-09 15:53:17 -0400224 union {
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500225 /*
226 * used when si_code=BUS_MCEERR_AR or
227 * used when si_code=BUS_MCEERR_AO
228 */
229 short int _addr_lsb; /* Valid LSB of the reported address. */
Al Virob713da62017-07-09 15:53:17 -0400230 /* used when si_code=SEGV_BNDERR */
231 struct {
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500232 short _dummy_bnd;
Al Virob713da62017-07-09 15:53:17 -0400233 compat_uptr_t _lower;
234 compat_uptr_t _upper;
235 } _addr_bnd;
236 /* used when si_code=SEGV_PKUERR */
Eric W. Biedermanb68a68d2017-07-31 10:08:59 -0500237 struct {
238 short _dummy_pkey;
239 u32 _pkey;
240 } _addr_pkey;
Al Virob713da62017-07-09 15:53:17 -0400241 };
242 } _sigfault;
243
244 /* SIGPOLL */
245 struct {
246 compat_long_t _band; /* POLL_IN, POLL_OUT, POLL_MSG */
247 int _fd;
248 } _sigpoll;
249
250 struct {
251 compat_uptr_t _call_addr; /* calling user insn */
252 int _syscall; /* triggering system call number */
253 unsigned int _arch; /* AUDIT_ARCH_* of syscall */
254 } _sigsys;
255 } _sifields;
256} compat_siginfo_t;
257
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800258/*
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800259 * These functions operate on 32- or 64-bit specs depending on
H. Peter Anvin81993e82014-02-01 18:54:11 -0800260 * COMPAT_USE_64BIT_TIME, hence the void user pointer arguments.
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800261 */
262extern int compat_get_timespec(struct timespec *, const void __user *);
263extern int compat_put_timespec(const struct timespec *, void __user *);
264extern int compat_get_timeval(struct timeval *, const void __user *);
265extern int compat_put_timeval(const struct timeval *, void __user *);
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -0700266extern int compat_get_timespec64(struct timespec64 *, const void __user *);
267extern int compat_put_timespec64(const struct timespec64 *, void __user *);
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -0700268extern int get_compat_itimerspec64(struct itimerspec64 *its,
269 const struct compat_itimerspec __user *uits);
270extern int put_compat_itimerspec64(const struct itimerspec64 *its,
271 struct compat_itimerspec __user *uits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273struct compat_iovec {
274 compat_uptr_t iov_base;
275 compat_size_t iov_len;
276};
277
278struct compat_rlimit {
279 compat_ulong_t rlim_cur;
280 compat_ulong_t rlim_max;
281};
282
283struct compat_rusage {
284 struct compat_timeval ru_utime;
285 struct compat_timeval ru_stime;
286 compat_long_t ru_maxrss;
287 compat_long_t ru_ixrss;
288 compat_long_t ru_idrss;
289 compat_long_t ru_isrss;
290 compat_long_t ru_minflt;
291 compat_long_t ru_majflt;
292 compat_long_t ru_nswap;
293 compat_long_t ru_inblock;
294 compat_long_t ru_oublock;
295 compat_long_t ru_msgsnd;
296 compat_long_t ru_msgrcv;
297 compat_long_t ru_nsignals;
298 compat_long_t ru_nvcsw;
299 compat_long_t ru_nivcsw;
300};
301
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400302extern int put_compat_rusage(const struct rusage *,
303 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305struct compat_siginfo;
306
307extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
308 struct compat_siginfo __user *, int,
309 struct compat_rusage __user *);
310
311struct compat_dirent {
312 u32 d_ino;
313 compat_off_t d_off;
314 u16 d_reclen;
315 char d_name[256];
316};
317
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100318struct compat_ustat {
319 compat_daddr_t f_tfree;
320 compat_ino_t f_tinode;
321 char f_fname[6];
322 char f_fpack[6];
323};
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
326
327typedef struct compat_sigevent {
328 compat_sigval_t sigev_value;
329 compat_int_t sigev_signo;
330 compat_int_t sigev_notify;
331 union {
332 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
333 compat_int_t _tid;
334
335 struct {
336 compat_uptr_t _function;
337 compat_uptr_t _attribute;
338 } _sigev_thread;
339 } _sigev_un;
340} compat_sigevent_t;
341
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000342struct compat_ifmap {
343 compat_ulong_t mem_start;
344 compat_ulong_t mem_end;
345 unsigned short base_addr;
346 unsigned char irq;
347 unsigned char dma;
348 unsigned char port;
349};
350
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400351struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800352 unsigned int type; /* Type of physical device or protocol */
353 unsigned int size; /* Size of the data allocated by the caller */
354 compat_uptr_t ifs_ifsu; /* union of pointers */
355};
356
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000357struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800358 union {
359 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
360 } ifr_ifrn;
361 union {
362 struct sockaddr ifru_addr;
363 struct sockaddr ifru_dstaddr;
364 struct sockaddr ifru_broadaddr;
365 struct sockaddr ifru_netmask;
366 struct sockaddr ifru_hwaddr;
367 short ifru_flags;
368 compat_int_t ifru_ivalue;
369 compat_int_t ifru_mtu;
370 struct compat_ifmap ifru_map;
371 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000372 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800373 compat_caddr_t ifru_data;
374 struct compat_if_settings ifru_settings;
375 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000376};
377
378struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400379 compat_int_t ifc_len; /* size of buffer */
380 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000381};
382
Ingo Molnar34f192c2006-03-27 01:16:24 -0800383struct compat_robust_list {
384 compat_uptr_t next;
385};
386
387struct compat_robust_list_head {
388 struct compat_robust_list list;
389 compat_long_t futex_offset;
390 compat_uptr_t list_op_pending;
391};
392
Al Viro495dfbf2012-12-25 19:09:45 -0500393#ifdef CONFIG_COMPAT_OLD_SIGACTION
394struct compat_old_sigaction {
395 compat_uptr_t sa_handler;
396 compat_old_sigset_t sa_mask;
397 compat_ulong_t sa_flags;
398 compat_uptr_t sa_restorer;
399};
400#endif
401
Stephan Muellerf1c316a2016-08-19 20:39:09 +0200402struct compat_keyctl_kdf_params {
403 compat_uptr_t hashname;
404 compat_uptr_t otherinfo;
405 __u32 otherinfolen;
406 __u32 __spare[8];
407};
408
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400409struct compat_statfs;
410struct compat_statfs64;
411struct compat_old_linux_dirent;
412struct compat_linux_dirent;
413struct linux_dirent64;
414struct compat_msghdr;
415struct compat_mmsghdr;
416struct compat_sysinfo;
417struct compat_sysctl_args;
418struct compat_kexec_segment;
419struct compat_mq_attr;
Chris Metcalf48b25c42012-03-15 13:13:38 -0400420struct compat_msgbuf;
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400421
Ingo Molnar34f192c2006-03-27 01:16:24 -0800422extern void compat_exit_robust_list(struct task_struct *curr);
423
424asmlinkage long
425compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
426 compat_size_t len);
427asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100428compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800429 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Al Viro56e41d32013-01-21 23:15:25 -0500431asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
Al Viro0e65a812013-02-03 14:36:44 -0500432asmlinkage long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg);
433asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
434asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
Will Deacon05ba3f12012-07-30 14:42:43 -0700435 compat_ssize_t msgsz, int msgflg);
Al Viro0e65a812013-02-03 14:36:44 -0500436asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
Heiko Carstens291fdb02014-03-04 12:39:03 +0100437 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
Chris Metcalf48b25c42012-03-15 13:13:38 -0400438long compat_sys_msgctl(int first, int second, void __user *uptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439long compat_sys_shmctl(int first, int second, void __user *uptr);
440long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
441 unsigned nsems, const struct compat_timespec __user *timeout);
442asmlinkage long compat_sys_keyctl(u32 option,
443 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100444asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800446asmlinkage ssize_t compat_sys_readv(compat_ulong_t fd,
447 const struct compat_iovec __user *vec, compat_ulong_t vlen);
448asmlinkage ssize_t compat_sys_writev(compat_ulong_t fd,
449 const struct compat_iovec __user *vec, compat_ulong_t vlen);
450asmlinkage ssize_t compat_sys_preadv(compat_ulong_t fd,
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700451 const struct compat_iovec __user *vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800452 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
453asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700454 const struct compat_iovec __user *vec,
Heiko Carstensdfd948e2014-01-29 14:05:44 -0800455 compat_ulong_t vlen, u32 pos_low, u32 pos_high);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100456asmlinkage ssize_t compat_sys_preadv2(compat_ulong_t fd,
457 const struct compat_iovec __user *vec,
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200458 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
Milosz Tanskif17d8b32016-03-03 16:03:59 +0100459asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
460 const struct compat_iovec __user *vec,
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200461 compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
Heiko Carstens378a10f2014-03-05 10:43:51 +0100462
463#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
464asmlinkage long compat_sys_preadv64(unsigned long fd,
465 const struct compat_iovec __user *vec,
466 unsigned long vlen, loff_t pos);
467#endif
468
469#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
470asmlinkage long compat_sys_pwritev64(unsigned long fd,
471 const struct compat_iovec __user *vec,
472 unsigned long vlen, loff_t pos);
473#endif
474
Christoph Hellwigddef7ed2017-07-06 18:58:37 +0200475#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
476asmlinkage long compat_sys_readv64v2(unsigned long fd,
477 const struct compat_iovec __user *vec,
478 unsigned long vlen, loff_t pos, rwf_t flags);
479#endif
480
481#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
482asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
483 const struct compat_iovec __user *vec,
484 unsigned long vlen, loff_t pos, rwf_t flags);
485#endif
486
Stephan Springle5fbf672014-01-30 17:56:23 +0100487asmlinkage long compat_sys_lseek(unsigned int, compat_off_t, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Al Viro38b983b2012-09-30 13:38:55 -0400489asmlinkage long compat_sys_execve(const char __user *filename, const compat_uptr_t __user *argv,
490 const compat_uptr_t __user *envp);
David Drysdale51f39a12014-12-12 16:57:29 -0800491asmlinkage long compat_sys_execveat(int dfd, const char __user *filename,
492 const compat_uptr_t __user *argv,
493 const compat_uptr_t __user *envp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
496 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
497 struct compat_timeval __user *tvp);
498
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800499asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
500
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100501asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000502 compat_uint_t __user *stat_addr, int options,
503 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
506
Al Viro1e1fc132017-05-30 00:29:38 -0400507#define BITS_TO_COMPAT_LONGS(bits) DIV_ROUND_UP(bits, BITS_PER_COMPAT_LONG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700509long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 unsigned long bitmap_size);
511long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
512 unsigned long bitmap_size);
513int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
Al Viroce395962013-10-13 17:23:53 -0400514int copy_siginfo_to_user32(struct compat_siginfo __user *to, const siginfo_t *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515int get_compat_sigevent(struct sigevent *event,
516 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000517long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
518 struct compat_siginfo __user *uinfo);
Al Viro495dfbf2012-12-25 19:09:45 -0500519#ifdef CONFIG_COMPAT_OLD_SIGACTION
520asmlinkage long compat_sys_sigaction(int sig,
521 const struct compat_old_sigaction __user *act,
522 struct compat_old_sigaction __user *oact);
523#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Andrew Morton643a6542006-02-11 17:55:52 -0800525static inline int compat_timeval_compare(struct compat_timeval *lhs,
526 struct compat_timeval *rhs)
527{
528 if (lhs->tv_sec < rhs->tv_sec)
529 return -1;
530 if (lhs->tv_sec > rhs->tv_sec)
531 return 1;
532 return lhs->tv_usec - rhs->tv_usec;
533}
534
535static inline int compat_timespec_compare(struct compat_timespec *lhs,
536 struct compat_timespec *rhs)
537{
538 if (lhs->tv_sec < rhs->tv_sec)
539 return -1;
540 if (lhs->tv_sec > rhs->tv_sec)
541 return 1;
542 return lhs->tv_nsec - rhs->tv_nsec;
543}
544
Christoph Hellwigb418da12008-10-15 22:02:06 -0700545asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
546 struct timezone __user *tz);
547asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
548 struct timezone __user *tz);
549
Stephen Rothwell3158e942006-03-26 01:37:29 -0800550asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
551
Al Viro3968cf62017-09-03 21:45:17 -0400552extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
Dmitry V. Levinf4543222017-08-22 02:16:11 +0300553extern int put_compat_sigset(compat_sigset_t __user *compat,
554 const sigset_t *set, unsigned int size);
Andi Kleenbebfa102006-06-26 13:56:52 +0200555
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800556asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
557 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
558 const compat_ulong_t __user *new_nodes);
559
Roland McGrath032d82d2008-01-30 13:31:47 +0100560extern int compat_ptrace_request(struct task_struct *child,
561 compat_long_t request,
562 compat_ulong_t addr, compat_ulong_t data);
563
Roland McGrathc269f192008-01-30 13:31:48 +0100564extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
565 compat_ulong_t addr, compat_ulong_t data);
566asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
567 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100568
Heiko Carstensd8d14bd2014-01-29 14:05:46 -0800569asmlinkage long compat_sys_lookup_dcookie(u32, u32, char __user *, compat_size_t);
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800570/*
571 * epoll (fs/eventpoll.c) compat bits follow ...
572 */
Al Viro35280bd2013-02-24 14:52:17 -0500573struct epoll_event; /* fortunately, this one is fixed-layout */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800574asmlinkage long compat_sys_epoll_pwait(int epfd,
Al Viro35280bd2013-02-24 14:52:17 -0500575 struct epoll_event __user *events,
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800576 int maxevents, int timeout,
577 const compat_sigset_t __user *sigmask,
578 compat_size_t sigsetsize);
579
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400580asmlinkage long compat_sys_utime(const char __user *filename,
581 struct compat_utimbuf __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400582asmlinkage long compat_sys_utimensat(unsigned int dfd,
583 const char __user *filename,
584 struct compat_timespec __user *t,
585 int flags);
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700586
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400587asmlinkage long compat_sys_time(compat_time_t __user *tloc);
588asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000589asmlinkage long compat_sys_signalfd(int ufd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400590 const compat_sigset_t __user *sigmask,
591 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800592asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
593 const struct compat_itimerspec __user *utmr,
594 struct compat_itimerspec __user *otmr);
595asmlinkage long compat_sys_timerfd_gettime(int ufd,
596 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000597
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100598asmlinkage long compat_sys_move_pages(pid_t pid, compat_ulong_t nr_pages,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100599 __u32 __user *pages,
600 const int __user *nodes,
601 int __user *status,
602 int flags);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400603asmlinkage long compat_sys_futimesat(unsigned int dfd,
604 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100605 struct compat_timeval __user *t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400606asmlinkage long compat_sys_utimes(const char __user *filename,
607 struct compat_timeval __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400608asmlinkage long compat_sys_newstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400609 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400610asmlinkage long compat_sys_newlstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400611 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400612asmlinkage long compat_sys_newfstatat(unsigned int dfd,
613 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100614 struct compat_stat __user *statbuf,
615 int flag);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400616asmlinkage long compat_sys_newfstat(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400617 struct compat_stat __user *statbuf);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400618asmlinkage long compat_sys_statfs(const char __user *pathname,
619 struct compat_statfs __user *buf);
620asmlinkage long compat_sys_fstatfs(unsigned int fd,
621 struct compat_statfs __user *buf);
622asmlinkage long compat_sys_statfs64(const char __user *pathname,
623 compat_size_t sz,
624 struct compat_statfs64 __user *buf);
625asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
626 struct compat_statfs64 __user *buf);
627asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100628 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400629asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100630 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400631asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
Heiko Carstens932602e2014-03-04 16:07:52 +0100632asmlinkage long compat_sys_io_getevents(compat_aio_context_t ctx_id,
633 compat_long_t min_nr,
634 compat_long_t nr,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400635 struct io_event __user *events,
636 struct compat_timespec __user *timeout);
Heiko Carstens932602e2014-03-04 16:07:52 +0100637asmlinkage long compat_sys_io_submit(compat_aio_context_t ctx_id, int nr,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400638 u32 __user *iocb);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400639asmlinkage long compat_sys_mount(const char __user *dev_name,
640 const char __user *dir_name,
Heiko Carstens932602e2014-03-04 16:07:52 +0100641 const char __user *type, compat_ulong_t flags,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400642 const void __user *data);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400643asmlinkage long compat_sys_old_readdir(unsigned int fd,
644 struct compat_old_linux_dirent __user *,
645 unsigned int count);
646asmlinkage long compat_sys_getdents(unsigned int fd,
647 struct compat_linux_dirent __user *dirent,
648 unsigned int count);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400649asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
650 unsigned int nr_segs, unsigned int flags);
651asmlinkage long compat_sys_open(const char __user *filename, int flags,
Al Viroa218d0f2011-11-21 14:59:34 -0500652 umode_t mode);
Al Virof482e1b2012-12-25 20:24:38 -0500653asmlinkage long compat_sys_openat(int dfd, const char __user *filename,
Al Viroa218d0f2011-11-21 14:59:34 -0500654 int flags, umode_t mode);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400655asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
656 struct file_handle __user *handle,
657 int flags);
Al Viro3f6d0782013-02-24 13:49:08 -0500658asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
659asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400660asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
661 compat_ulong_t __user *outp,
662 compat_ulong_t __user *exp,
663 struct compat_timespec __user *tsp,
664 void __user *sig);
665asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
666 unsigned int nfds,
667 struct compat_timespec __user *tsp,
668 const compat_sigset_t __user *sigmask,
669 compat_size_t sigsetsize);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400670asmlinkage long compat_sys_signalfd4(int ufd,
671 const compat_sigset_t __user *sigmask,
672 compat_size_t sigsetsize, int flags);
673asmlinkage long compat_sys_get_mempolicy(int __user *policy,
674 compat_ulong_t __user *nmask,
675 compat_ulong_t maxnode,
676 compat_ulong_t addr,
677 compat_ulong_t flags);
678asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
679 compat_ulong_t maxnode);
680asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
681 compat_ulong_t mode,
682 compat_ulong_t __user *nmask,
683 compat_ulong_t maxnode, compat_ulong_t flags);
684
685asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
686 char __user *optval, unsigned int optlen);
687asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
688 unsigned flags);
Chris Metcalf507c5f12011-06-27 16:18:07 -0700689asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
690 unsigned vlen, unsigned int flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400691asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
692 unsigned int flags);
Heiko Carstens3a49a0f2014-03-04 17:09:57 +0100693asmlinkage long compat_sys_recv(int fd, void __user *buf, compat_size_t len,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400694 unsigned flags);
Heiko Carstens3a49a0f2014-03-04 17:09:57 +0100695asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, compat_size_t len,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400696 unsigned flags, struct sockaddr __user *addr,
697 int __user *addrlen);
698asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
699 unsigned vlen, unsigned int flags,
700 struct compat_timespec __user *timeout);
701asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
702 struct compat_timespec __user *rmtp);
703asmlinkage long compat_sys_getitimer(int which,
704 struct compat_itimerval __user *it);
705asmlinkage long compat_sys_setitimer(int which,
706 struct compat_itimerval __user *in,
707 struct compat_itimerval __user *out);
708asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
709asmlinkage long compat_sys_setrlimit(unsigned int resource,
710 struct compat_rlimit __user *rlim);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400711asmlinkage long compat_sys_getrlimit(unsigned int resource,
712 struct compat_rlimit __user *rlim);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400713asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
714asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
715 unsigned int len,
716 compat_ulong_t __user *user_mask_ptr);
717asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
718 unsigned int len,
719 compat_ulong_t __user *user_mask_ptr);
720asmlinkage long compat_sys_timer_create(clockid_t which_clock,
721 struct compat_sigevent __user *timer_event_spec,
722 timer_t __user *created_timer_id);
723asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
724 struct compat_itimerspec __user *new,
725 struct compat_itimerspec __user *old);
726asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
727 struct compat_itimerspec __user *setting);
728asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
729 struct compat_timespec __user *tp);
730asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
731 struct compat_timespec __user *tp);
732asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
733 struct compat_timex __user *tp);
734asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
735 struct compat_timespec __user *tp);
736asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
737 struct compat_timespec __user *rqtp,
738 struct compat_timespec __user *rmtp);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400739asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400740 struct compat_siginfo __user *uinfo,
741 struct compat_timespec __user *uts, compat_size_t sigsetsize);
742asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
743 compat_size_t sigsetsize);
Al Viro322a56c2012-12-25 13:32:58 -0500744asmlinkage long compat_sys_rt_sigprocmask(int how, compat_sigset_t __user *set,
745 compat_sigset_t __user *oset,
746 compat_size_t sigsetsize);
Al Virofe9c1db2012-12-25 14:31:38 -0500747asmlinkage long compat_sys_rt_sigpending(compat_sigset_t __user *uset,
748 compat_size_t sigsetsize);
Al Viro08d32fe2012-12-25 18:38:15 -0500749#ifndef CONFIG_ODD_RT_SIGACTION
Al Viro08d32fe2012-12-25 18:38:15 -0500750asmlinkage long compat_sys_rt_sigaction(int,
751 const struct compat_sigaction __user *,
752 struct compat_sigaction __user *,
753 compat_size_t);
754#endif
Al Viro75907d42012-12-25 15:19:12 -0500755asmlinkage long compat_sys_rt_sigqueueinfo(compat_pid_t pid, int sig,
756 struct compat_siginfo __user *uinfo);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400757asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
758asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
Heiko Carstens932602e2014-03-04 16:07:52 +0100759 compat_ulong_t arg);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400760asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
761 struct compat_timespec __user *utime, u32 __user *uaddr2,
762 u32 val3);
763asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
764 char __user *optval, int __user *optlen);
Heiko Carstensca2c4052014-03-04 17:13:42 +0100765asmlinkage long compat_sys_kexec_load(compat_ulong_t entry,
766 compat_ulong_t nr_segments,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400767 struct compat_kexec_segment __user *,
Heiko Carstensca2c4052014-03-04 17:13:42 +0100768 compat_ulong_t flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400769asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
770 const struct compat_mq_attr __user *u_mqstat,
771 struct compat_mq_attr __user *u_omqstat);
772asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
773 const struct compat_sigevent __user *u_notification);
774asmlinkage long compat_sys_mq_open(const char __user *u_name,
775 int oflag, compat_mode_t mode,
776 struct compat_mq_attr __user *u_attr);
777asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
778 const char __user *u_msg_ptr,
Heiko Carstens8eee9092014-03-04 16:19:16 +0100779 compat_size_t msg_len, unsigned int msg_prio,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400780 const struct compat_timespec __user *u_abs_timeout);
781asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
782 char __user *u_msg_ptr,
Heiko Carstens8eee9092014-03-04 16:19:16 +0100783 compat_size_t msg_len, unsigned int __user *u_msg_prio,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400784 const struct compat_timespec __user *u_abs_timeout);
785asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
786asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100787
Jeff Moyerb8373362010-05-26 14:44:25 -0700788extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400789 const struct compat_iovec __user *uvector,
790 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700791 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohac34ebb2012-05-31 16:26:42 -0700792 struct iovec **ret_pointer);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700793
794extern void __user *compat_alloc_user_space(unsigned long len);
795
Chris Metcalfa67ba432011-12-01 12:54:31 -0500796asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
797 const struct compat_iovec __user *lvec,
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100798 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
799 compat_ulong_t riovcnt, compat_ulong_t flags);
Chris Metcalfa67ba432011-12-01 12:54:31 -0500800asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
801 const struct compat_iovec __user *lvec,
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100802 compat_ulong_t liovcnt, const struct compat_iovec __user *rvec,
803 compat_ulong_t riovcnt, compat_ulong_t flags);
Chris Metcalfa67ba432011-12-01 12:54:31 -0500804
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100805asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
806 compat_off_t __user *offset, compat_size_t count);
Al Viro19f4fc32013-02-24 02:17:03 -0500807asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd,
808 compat_loff_t __user *offset, compat_size_t count);
Al Viro90268432012-12-14 14:47:53 -0500809asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr,
810 compat_stack_t __user *uoss_ptr);
811
Catalin Marinase9fb8b72015-01-06 16:48:36 +0000812#ifdef __ARCH_WANT_SYS_SIGPENDING
813asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
814#endif
815
816#ifdef __ARCH_WANT_SYS_SIGPROCMASK
817asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
818 compat_old_sigset_t __user *oset);
819#endif
820
Al Viro90268432012-12-14 14:47:53 -0500821int compat_restore_altstack(const compat_stack_t __user *uss);
Al Viroc40702c2012-11-20 14:24:26 -0500822int __compat_save_altstack(compat_stack_t __user *, unsigned long);
Al Virobd1c149a2013-09-01 20:35:01 +0100823#define compat_save_altstack_ex(uss, sp) do { \
824 compat_stack_t __user *__uss = uss; \
825 struct task_struct *t = current; \
826 put_user_ex(ptr_to_compat((void __user *)t->sas_ss_sp), &__uss->ss_sp); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800827 put_user_ex(t->sas_ss_flags, &__uss->ss_flags); \
Al Virobd1c149a2013-09-01 20:35:01 +0100828 put_user_ex(t->sas_ss_size, &__uss->ss_size); \
Stas Sergeev441398d2017-02-27 14:27:25 -0800829 if (t->sas_ss_flags & SS_AUTODISARM) \
830 sas_ss_reset(t); \
Al Virobd1c149a2013-09-01 20:35:01 +0100831} while (0);
Catalin Marinas8f9c0112012-09-19 12:01:52 +0100832
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800833asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
834 struct compat_timespec __user *interval);
835
Al Viro91c2e0b2013-03-05 20:10:59 -0500836asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32,
837 int, const char __user *);
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700838
Kyle Huey79170fd2017-03-20 01:16:24 -0700839asmlinkage long compat_sys_arch_prctl(int option, unsigned long arg2);
840
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700841/*
842 * For most but not all architectures, "am I in a compat syscall?" and
843 * "am I a compat task?" are the same question. For architectures on which
844 * they aren't the same question, arch code can override in_compat_syscall.
845 */
846
847#ifndef in_compat_syscall
848static inline bool in_compat_syscall(void) { return is_compat_task(); }
849#endif
850
Frederic Weisbeckercd19c362017-01-31 04:09:27 +0100851/**
852 * ns_to_compat_timeval - Compat version of ns_to_timeval
853 * @nsec: the nanoseconds value to be converted
854 *
855 * Returns the compat_timeval representation of the nsec parameter.
856 */
857static inline struct compat_timeval ns_to_compat_timeval(s64 nsec)
858{
859 struct timeval tv;
860 struct compat_timeval ctv;
861
862 tv = ns_to_timeval(nsec);
863 ctv.tv_sec = tv.tv_sec;
864 ctv.tv_usec = tv.tv_usec;
865
866 return ctv;
867}
868
869#else /* !CONFIG_COMPAT */
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800870
871#define is_compat_task() (0)
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700872static inline bool in_compat_syscall(void) { return false; }
Linus Torvalds3c761ea2012-02-26 09:44:55 -0800873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874#endif /* CONFIG_COMPAT */
Andy Lutomirski5180e3e2016-03-22 14:24:43 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#endif /* _LINUX_COMPAT_H */