blob: 41c9f6515f4621f6f20e90e0f5adbb4958829c58 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_COMPAT_H
2#define _LINUX_COMPAT_H
3/*
4 * These are the type definitions for the architecture specific
5 * syscall compatibility layer.
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#ifdef CONFIG_COMPAT
9
10#include <linux/stat.h>
11#include <linux/param.h> /* for HZ */
12#include <linux/sem.h>
Arnd Bergmann2dceba12009-11-06 08:09:03 +000013#include <linux/socket.h>
14#include <linux/if.h>
Chris Metcalfbe84cb42011-05-09 13:12:30 -040015#include <linux/fs.h>
Stephen Rothwell45e96832011-05-24 13:28:54 +100016#include <linux/aio_abi.h> /* for aio_context_t */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/compat.h>
19#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010020#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define compat_jiffies_to_clock_t(x) \
23 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
24
Stephen Rothwell202e5972005-09-06 15:16:40 -070025typedef __compat_uid32_t compat_uid_t;
26typedef __compat_gid32_t compat_gid_t;
27
Christoph Hellwig5d0e5282010-03-10 15:21:13 -080028struct compat_sel_arg_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029struct rusage;
30
Chris Metcalf4800a5b2011-05-17 14:41:06 -040031struct compat_itimerspec {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 struct compat_timespec it_interval;
33 struct compat_timespec it_value;
34};
35
36struct compat_utimbuf {
37 compat_time_t actime;
38 compat_time_t modtime;
39};
40
41struct compat_itimerval {
42 struct compat_timeval it_interval;
43 struct compat_timeval it_value;
44};
45
46struct compat_tms {
47 compat_clock_t tms_utime;
48 compat_clock_t tms_stime;
49 compat_clock_t tms_cutime;
50 compat_clock_t tms_cstime;
51};
52
Stephen Rothwell88959ea2006-03-26 01:37:27 -080053struct compat_timex {
54 compat_uint_t modes;
55 compat_long_t offset;
56 compat_long_t freq;
57 compat_long_t maxerror;
58 compat_long_t esterror;
59 compat_int_t status;
60 compat_long_t constant;
61 compat_long_t precision;
62 compat_long_t tolerance;
63 struct compat_timeval time;
64 compat_long_t tick;
65 compat_long_t ppsfreq;
66 compat_long_t jitter;
67 compat_int_t shift;
68 compat_long_t stabil;
69 compat_long_t jitcnt;
70 compat_long_t calcnt;
71 compat_long_t errcnt;
72 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -070073 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -080074
Chris Metcalf4800a5b2011-05-17 14:41:06 -040075 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
76 compat_int_t:32; compat_int_t:32; compat_int_t:32; compat_int_t:32;
77 compat_int_t:32; compat_int_t:32; compat_int_t:32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -080078};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
81
82typedef struct {
83 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
84} compat_sigset_t;
85
Chris Metcalf4800a5b2011-05-17 14:41:06 -040086extern int get_compat_timespec(struct timespec *,
87 const struct compat_timespec __user *);
88extern int put_compat_timespec(const struct timespec *,
89 struct compat_timespec __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91struct compat_iovec {
92 compat_uptr_t iov_base;
93 compat_size_t iov_len;
94};
95
96struct compat_rlimit {
97 compat_ulong_t rlim_cur;
98 compat_ulong_t rlim_max;
99};
100
101struct compat_rusage {
102 struct compat_timeval ru_utime;
103 struct compat_timeval ru_stime;
104 compat_long_t ru_maxrss;
105 compat_long_t ru_ixrss;
106 compat_long_t ru_idrss;
107 compat_long_t ru_isrss;
108 compat_long_t ru_minflt;
109 compat_long_t ru_majflt;
110 compat_long_t ru_nswap;
111 compat_long_t ru_inblock;
112 compat_long_t ru_oublock;
113 compat_long_t ru_msgsnd;
114 compat_long_t ru_msgrcv;
115 compat_long_t ru_nsignals;
116 compat_long_t ru_nvcsw;
117 compat_long_t ru_nivcsw;
118};
119
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400120extern int put_compat_rusage(const struct rusage *,
121 struct compat_rusage __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123struct compat_siginfo;
124
125extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
126 struct compat_siginfo __user *, int,
127 struct compat_rusage __user *);
128
129struct compat_dirent {
130 u32 d_ino;
131 compat_off_t d_off;
132 u16 d_reclen;
133 char d_name[256];
134};
135
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100136struct compat_ustat {
137 compat_daddr_t f_tfree;
138 compat_ino_t f_tinode;
139 char f_fname[6];
140 char f_fpack[6];
141};
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143typedef union compat_sigval {
144 compat_int_t sival_int;
145 compat_uptr_t sival_ptr;
146} compat_sigval_t;
147
148#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
149
150typedef struct compat_sigevent {
151 compat_sigval_t sigev_value;
152 compat_int_t sigev_signo;
153 compat_int_t sigev_notify;
154 union {
155 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
156 compat_int_t _tid;
157
158 struct {
159 compat_uptr_t _function;
160 compat_uptr_t _attribute;
161 } _sigev_thread;
162 } _sigev_un;
163} compat_sigevent_t;
164
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000165struct compat_ifmap {
166 compat_ulong_t mem_start;
167 compat_ulong_t mem_end;
168 unsigned short base_addr;
169 unsigned char irq;
170 unsigned char dma;
171 unsigned char port;
172};
173
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400174struct compat_if_settings {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800175 unsigned int type; /* Type of physical device or protocol */
176 unsigned int size; /* Size of the data allocated by the caller */
177 compat_uptr_t ifs_ifsu; /* union of pointers */
178};
179
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000180struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800181 union {
182 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
183 } ifr_ifrn;
184 union {
185 struct sockaddr ifru_addr;
186 struct sockaddr ifru_dstaddr;
187 struct sockaddr ifru_broadaddr;
188 struct sockaddr ifru_netmask;
189 struct sockaddr ifru_hwaddr;
190 short ifru_flags;
191 compat_int_t ifru_ivalue;
192 compat_int_t ifru_mtu;
193 struct compat_ifmap ifru_map;
194 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000195 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800196 compat_caddr_t ifru_data;
197 struct compat_if_settings ifru_settings;
198 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000199};
200
201struct compat_ifconf {
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400202 compat_int_t ifc_len; /* size of buffer */
203 compat_caddr_t ifcbuf;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000204};
205
Ingo Molnar34f192c2006-03-27 01:16:24 -0800206struct compat_robust_list {
207 compat_uptr_t next;
208};
209
210struct compat_robust_list_head {
211 struct compat_robust_list list;
212 compat_long_t futex_offset;
213 compat_uptr_t list_op_pending;
214};
215
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400216struct compat_statfs;
217struct compat_statfs64;
218struct compat_old_linux_dirent;
219struct compat_linux_dirent;
220struct linux_dirent64;
221struct compat_msghdr;
222struct compat_mmsghdr;
223struct compat_sysinfo;
224struct compat_sysctl_args;
225struct compat_kexec_segment;
226struct compat_mq_attr;
227
Ingo Molnar34f192c2006-03-27 01:16:24 -0800228extern void compat_exit_robust_list(struct task_struct *curr);
229
230asmlinkage long
231compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
232 compat_size_t len);
233asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100234compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800235 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237long compat_sys_semctl(int first, int second, int third, void __user *uptr);
238long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
239long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
240 int version, void __user *uptr);
241long compat_sys_msgctl(int first, int second, void __user *uptr);
242long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
243 void __user *uptr);
244long compat_sys_shmctl(int first, int second, void __user *uptr);
245long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
246 unsigned nsems, const struct compat_timespec __user *timeout);
247asmlinkage long compat_sys_keyctl(u32 option,
248 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100249asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251asmlinkage ssize_t compat_sys_readv(unsigned long fd,
252 const struct compat_iovec __user *vec, unsigned long vlen);
253asmlinkage ssize_t compat_sys_writev(unsigned long fd,
254 const struct compat_iovec __user *vec, unsigned long vlen);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700255asmlinkage ssize_t compat_sys_preadv(unsigned long fd,
256 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700257 unsigned long vlen, u32 pos_low, u32 pos_high);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700258asmlinkage ssize_t compat_sys_pwritev(unsigned long fd,
259 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700260 unsigned long vlen, u32 pos_low, u32 pos_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400262int compat_do_execve(char *filename, compat_uptr_t __user *argv,
263 compat_uptr_t __user *envp, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
266 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
267 struct compat_timeval __user *tvp);
268
Christoph Hellwig5d0e5282010-03-10 15:21:13 -0800269asmlinkage long compat_sys_old_select(struct compat_sel_arg_struct __user *arg);
270
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100271asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000272 compat_uint_t __user *stat_addr, int options,
273 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
276
277#define BITS_TO_COMPAT_LONGS(bits) \
278 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
279
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700280long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 unsigned long bitmap_size);
282long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
283 unsigned long bitmap_size);
284int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
285int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from);
286int get_compat_sigevent(struct sigevent *event,
287 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000288long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
289 struct compat_siginfo __user *uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Andrew Morton643a6542006-02-11 17:55:52 -0800291static inline int compat_timeval_compare(struct compat_timeval *lhs,
292 struct compat_timeval *rhs)
293{
294 if (lhs->tv_sec < rhs->tv_sec)
295 return -1;
296 if (lhs->tv_sec > rhs->tv_sec)
297 return 1;
298 return lhs->tv_usec - rhs->tv_usec;
299}
300
301static inline int compat_timespec_compare(struct compat_timespec *lhs,
302 struct compat_timespec *rhs)
303{
304 if (lhs->tv_sec < rhs->tv_sec)
305 return -1;
306 if (lhs->tv_sec > rhs->tv_sec)
307 return 1;
308 return lhs->tv_nsec - rhs->tv_nsec;
309}
310
Davide Libenzi83f5d122007-05-10 22:23:18 -0700311extern int get_compat_itimerspec(struct itimerspec *dst,
312 const struct compat_itimerspec __user *src);
313extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
314 const struct itimerspec *src);
315
Christoph Hellwigb418da12008-10-15 22:02:06 -0700316asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
317 struct timezone __user *tz);
318asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
319 struct timezone __user *tz);
320
Stephen Rothwell3158e942006-03-26 01:37:29 -0800321asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
322
Andi Kleenbebfa102006-06-26 13:56:52 +0200323extern int compat_printk(const char *fmt, ...);
Linus Torvalds02354972006-10-02 14:05:20 -0700324extern void sigset_from_compat(sigset_t *set, compat_sigset_t *compat);
Andi Kleenbebfa102006-06-26 13:56:52 +0200325
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800326asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
327 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
328 const compat_ulong_t __user *new_nodes);
329
Roland McGrath032d82d2008-01-30 13:31:47 +0100330extern int compat_ptrace_request(struct task_struct *child,
331 compat_long_t request,
332 compat_ulong_t addr, compat_ulong_t data);
333
Roland McGrathc269f192008-01-30 13:31:48 +0100334extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
335 compat_ulong_t addr, compat_ulong_t data);
336asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
337 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100338
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800339/*
340 * epoll (fs/eventpoll.c) compat bits follow ...
341 */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800342struct epoll_event;
343#define compat_epoll_event epoll_event
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800344asmlinkage long compat_sys_epoll_pwait(int epfd,
345 struct compat_epoll_event __user *events,
346 int maxevents, int timeout,
347 const compat_sigset_t __user *sigmask,
348 compat_size_t sigsetsize);
349
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400350asmlinkage long compat_sys_utime(const char __user *filename,
351 struct compat_utimbuf __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400352asmlinkage long compat_sys_utimensat(unsigned int dfd,
353 const char __user *filename,
354 struct compat_timespec __user *t,
355 int flags);
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700356
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400357asmlinkage long compat_sys_time(compat_time_t __user *tloc);
358asmlinkage long compat_sys_stime(compat_time_t __user *tptr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000359asmlinkage long compat_sys_signalfd(int ufd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400360 const compat_sigset_t __user *sigmask,
361 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800362asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
363 const struct compat_itimerspec __user *utmr,
364 struct compat_itimerspec __user *otmr);
365asmlinkage long compat_sys_timerfd_gettime(int ufd,
366 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000367
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100368asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
369 __u32 __user *pages,
370 const int __user *nodes,
371 int __user *status,
372 int flags);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400373asmlinkage long compat_sys_futimesat(unsigned int dfd,
374 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100375 struct compat_timeval __user *t);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400376asmlinkage long compat_sys_utimes(const char __user *filename,
377 struct compat_timeval __user *t);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400378asmlinkage long compat_sys_newstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400379 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400380asmlinkage long compat_sys_newlstat(const char __user *filename,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400381 struct compat_stat __user *statbuf);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400382asmlinkage long compat_sys_newfstatat(unsigned int dfd,
383 const char __user *filename,
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100384 struct compat_stat __user *statbuf,
385 int flag);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400386asmlinkage long compat_sys_newfstat(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400387 struct compat_stat __user *statbuf);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400388asmlinkage long compat_sys_statfs(const char __user *pathname,
389 struct compat_statfs __user *buf);
390asmlinkage long compat_sys_fstatfs(unsigned int fd,
391 struct compat_statfs __user *buf);
392asmlinkage long compat_sys_statfs64(const char __user *pathname,
393 compat_size_t sz,
394 struct compat_statfs64 __user *buf);
395asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
396 struct compat_statfs64 __user *buf);
397asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd,
398 unsigned long arg);
399asmlinkage long compat_sys_fcntl(unsigned int fd, unsigned int cmd,
400 unsigned long arg);
401asmlinkage long compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p);
402asmlinkage long compat_sys_io_getevents(aio_context_t ctx_id,
403 unsigned long min_nr,
404 unsigned long nr,
405 struct io_event __user *events,
406 struct compat_timespec __user *timeout);
407asmlinkage long compat_sys_io_submit(aio_context_t ctx_id, int nr,
408 u32 __user *iocb);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400409asmlinkage long compat_sys_mount(const char __user *dev_name,
410 const char __user *dir_name,
411 const char __user *type, unsigned long flags,
412 const void __user *data);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400413asmlinkage long compat_sys_old_readdir(unsigned int fd,
414 struct compat_old_linux_dirent __user *,
415 unsigned int count);
416asmlinkage long compat_sys_getdents(unsigned int fd,
417 struct compat_linux_dirent __user *dirent,
418 unsigned int count);
419asmlinkage long compat_sys_getdents64(unsigned int fd,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400420 struct linux_dirent64 __user *dirent,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400421 unsigned int count);
422asmlinkage long compat_sys_vmsplice(int fd, const struct compat_iovec __user *,
423 unsigned int nr_segs, unsigned int flags);
424asmlinkage long compat_sys_open(const char __user *filename, int flags,
Al Viroa218d0f2011-11-21 14:59:34 -0500425 umode_t mode);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100426asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename,
Al Viroa218d0f2011-11-21 14:59:34 -0500427 int flags, umode_t mode);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400428asmlinkage long compat_sys_open_by_handle_at(int mountdirfd,
429 struct file_handle __user *handle,
430 int flags);
431asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp,
432 compat_ulong_t __user *outp,
433 compat_ulong_t __user *exp,
434 struct compat_timespec __user *tsp,
435 void __user *sig);
436asmlinkage long compat_sys_ppoll(struct pollfd __user *ufds,
437 unsigned int nfds,
438 struct compat_timespec __user *tsp,
439 const compat_sigset_t __user *sigmask,
440 compat_size_t sigsetsize);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400441asmlinkage long compat_sys_signalfd4(int ufd,
442 const compat_sigset_t __user *sigmask,
443 compat_size_t sigsetsize, int flags);
444asmlinkage long compat_sys_get_mempolicy(int __user *policy,
445 compat_ulong_t __user *nmask,
446 compat_ulong_t maxnode,
447 compat_ulong_t addr,
448 compat_ulong_t flags);
449asmlinkage long compat_sys_set_mempolicy(int mode, compat_ulong_t __user *nmask,
450 compat_ulong_t maxnode);
451asmlinkage long compat_sys_mbind(compat_ulong_t start, compat_ulong_t len,
452 compat_ulong_t mode,
453 compat_ulong_t __user *nmask,
454 compat_ulong_t maxnode, compat_ulong_t flags);
455
456asmlinkage long compat_sys_setsockopt(int fd, int level, int optname,
457 char __user *optval, unsigned int optlen);
458asmlinkage long compat_sys_sendmsg(int fd, struct compat_msghdr __user *msg,
459 unsigned flags);
Chris Metcalf507c5f12011-06-27 16:18:07 -0700460asmlinkage long compat_sys_sendmmsg(int fd, struct compat_mmsghdr __user *mmsg,
461 unsigned vlen, unsigned int flags);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400462asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
463 unsigned int flags);
464asmlinkage long compat_sys_recv(int fd, void __user *buf, size_t len,
465 unsigned flags);
466asmlinkage long compat_sys_recvfrom(int fd, void __user *buf, size_t len,
467 unsigned flags, struct sockaddr __user *addr,
468 int __user *addrlen);
469asmlinkage long compat_sys_recvmmsg(int fd, struct compat_mmsghdr __user *mmsg,
470 unsigned vlen, unsigned int flags,
471 struct compat_timespec __user *timeout);
472asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
473 struct compat_timespec __user *rmtp);
474asmlinkage long compat_sys_getitimer(int which,
475 struct compat_itimerval __user *it);
476asmlinkage long compat_sys_setitimer(int which,
477 struct compat_itimerval __user *in,
478 struct compat_itimerval __user *out);
479asmlinkage long compat_sys_times(struct compat_tms __user *tbuf);
480asmlinkage long compat_sys_setrlimit(unsigned int resource,
481 struct compat_rlimit __user *rlim);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400482asmlinkage long compat_sys_getrlimit(unsigned int resource,
483 struct compat_rlimit __user *rlim);
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400484asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru);
485asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
486 unsigned int len,
487 compat_ulong_t __user *user_mask_ptr);
488asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid,
489 unsigned int len,
490 compat_ulong_t __user *user_mask_ptr);
491asmlinkage long compat_sys_timer_create(clockid_t which_clock,
492 struct compat_sigevent __user *timer_event_spec,
493 timer_t __user *created_timer_id);
494asmlinkage long compat_sys_timer_settime(timer_t timer_id, int flags,
495 struct compat_itimerspec __user *new,
496 struct compat_itimerspec __user *old);
497asmlinkage long compat_sys_timer_gettime(timer_t timer_id,
498 struct compat_itimerspec __user *setting);
499asmlinkage long compat_sys_clock_settime(clockid_t which_clock,
500 struct compat_timespec __user *tp);
501asmlinkage long compat_sys_clock_gettime(clockid_t which_clock,
502 struct compat_timespec __user *tp);
503asmlinkage long compat_sys_clock_adjtime(clockid_t which_clock,
504 struct compat_timex __user *tp);
505asmlinkage long compat_sys_clock_getres(clockid_t which_clock,
506 struct compat_timespec __user *tp);
507asmlinkage long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
508 struct compat_timespec __user *rqtp,
509 struct compat_timespec __user *rmtp);
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400510asmlinkage long compat_sys_rt_sigtimedwait(compat_sigset_t __user *uthese,
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400511 struct compat_siginfo __user *uinfo,
512 struct compat_timespec __user *uts, compat_size_t sigsetsize);
513asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset,
514 compat_size_t sigsetsize);
515asmlinkage long compat_sys_sysinfo(struct compat_sysinfo __user *info);
516asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
517 unsigned long arg);
518asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
519 struct compat_timespec __user *utime, u32 __user *uaddr2,
520 u32 val3);
521asmlinkage long compat_sys_getsockopt(int fd, int level, int optname,
522 char __user *optval, int __user *optlen);
523asmlinkage long compat_sys_kexec_load(unsigned long entry,
524 unsigned long nr_segments,
525 struct compat_kexec_segment __user *,
526 unsigned long flags);
527asmlinkage long compat_sys_mq_getsetattr(mqd_t mqdes,
528 const struct compat_mq_attr __user *u_mqstat,
529 struct compat_mq_attr __user *u_omqstat);
530asmlinkage long compat_sys_mq_notify(mqd_t mqdes,
531 const struct compat_sigevent __user *u_notification);
532asmlinkage long compat_sys_mq_open(const char __user *u_name,
533 int oflag, compat_mode_t mode,
534 struct compat_mq_attr __user *u_attr);
535asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes,
536 const char __user *u_msg_ptr,
537 size_t msg_len, unsigned int msg_prio,
538 const struct compat_timespec __user *u_abs_timeout);
539asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes,
540 char __user *u_msg_ptr,
541 size_t msg_len, unsigned int __user *u_msg_prio,
542 const struct compat_timespec __user *u_abs_timeout);
543asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
544asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args);
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100545
Jeff Moyerb8373362010-05-26 14:44:25 -0700546extern ssize_t compat_rw_copy_check_uvector(int type,
Chris Metcalf4800a5b2011-05-17 14:41:06 -0400547 const struct compat_iovec __user *uvector,
548 unsigned long nr_segs,
Jeff Moyerb8373362010-05-26 14:44:25 -0700549 unsigned long fast_segs, struct iovec *fast_pointer,
Christopher Yeohfcf63402011-10-31 17:06:39 -0700550 struct iovec **ret_pointer,
551 int check_access);
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700552
553extern void __user *compat_alloc_user_space(unsigned long len);
554
Chris Metcalfa67ba432011-12-01 12:54:31 -0500555asmlinkage ssize_t compat_sys_process_vm_readv(compat_pid_t pid,
556 const struct compat_iovec __user *lvec,
557 unsigned long liovcnt, const struct compat_iovec __user *rvec,
558 unsigned long riovcnt, unsigned long flags);
559asmlinkage ssize_t compat_sys_process_vm_writev(compat_pid_t pid,
560 const struct compat_iovec __user *lvec,
561 unsigned long liovcnt, const struct compat_iovec __user *rvec,
562 unsigned long riovcnt, unsigned long flags);
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif /* CONFIG_COMPAT */
565#endif /* _LINUX_COMPAT_H */