blob: ef68119a4fd2ffd28444dba7ca97d551ab563222 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <asm/compat.h>
17#include <asm/siginfo.h>
David Howells3f2e05e2006-10-02 14:12:31 +010018#include <asm/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#define compat_jiffies_to_clock_t(x) \
21 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
22
Stephen Rothwell202e5972005-09-06 15:16:40 -070023typedef __compat_uid32_t compat_uid_t;
24typedef __compat_gid32_t compat_gid_t;
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026struct rusage;
27
28struct compat_itimerspec {
29 struct compat_timespec it_interval;
30 struct compat_timespec it_value;
31};
32
33struct compat_utimbuf {
34 compat_time_t actime;
35 compat_time_t modtime;
36};
37
38struct compat_itimerval {
39 struct compat_timeval it_interval;
40 struct compat_timeval it_value;
41};
42
43struct compat_tms {
44 compat_clock_t tms_utime;
45 compat_clock_t tms_stime;
46 compat_clock_t tms_cutime;
47 compat_clock_t tms_cstime;
48};
49
Stephen Rothwell88959ea2006-03-26 01:37:27 -080050struct compat_timex {
51 compat_uint_t modes;
52 compat_long_t offset;
53 compat_long_t freq;
54 compat_long_t maxerror;
55 compat_long_t esterror;
56 compat_int_t status;
57 compat_long_t constant;
58 compat_long_t precision;
59 compat_long_t tolerance;
60 struct compat_timeval time;
61 compat_long_t tick;
62 compat_long_t ppsfreq;
63 compat_long_t jitter;
64 compat_int_t shift;
65 compat_long_t stabil;
66 compat_long_t jitcnt;
67 compat_long_t calcnt;
68 compat_long_t errcnt;
69 compat_long_t stbcnt;
Roman Zippel153b5d02008-05-01 04:34:37 -070070 compat_int_t tai;
Stephen Rothwell88959ea2006-03-26 01:37:27 -080071
72 compat_int_t :32; compat_int_t :32; compat_int_t :32; compat_int_t :32;
73 compat_int_t :32; compat_int_t :32; compat_int_t :32; compat_int_t :32;
Roman Zippel153b5d02008-05-01 04:34:37 -070074 compat_int_t :32; compat_int_t :32; compat_int_t :32;
Stephen Rothwell88959ea2006-03-26 01:37:27 -080075};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW)
78
79typedef struct {
80 compat_sigset_word sig[_COMPAT_NSIG_WORDS];
81} compat_sigset_t;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083extern int get_compat_timespec(struct timespec *, const struct compat_timespec __user *);
84extern int put_compat_timespec(const struct timespec *, struct compat_timespec __user *);
85
86struct compat_iovec {
87 compat_uptr_t iov_base;
88 compat_size_t iov_len;
89};
90
91struct compat_rlimit {
92 compat_ulong_t rlim_cur;
93 compat_ulong_t rlim_max;
94};
95
96struct compat_rusage {
97 struct compat_timeval ru_utime;
98 struct compat_timeval ru_stime;
99 compat_long_t ru_maxrss;
100 compat_long_t ru_ixrss;
101 compat_long_t ru_idrss;
102 compat_long_t ru_isrss;
103 compat_long_t ru_minflt;
104 compat_long_t ru_majflt;
105 compat_long_t ru_nswap;
106 compat_long_t ru_inblock;
107 compat_long_t ru_oublock;
108 compat_long_t ru_msgsnd;
109 compat_long_t ru_msgrcv;
110 compat_long_t ru_nsignals;
111 compat_long_t ru_nvcsw;
112 compat_long_t ru_nivcsw;
113};
114
115extern int put_compat_rusage(const struct rusage *, struct compat_rusage __user *);
116
117struct compat_siginfo;
118
119extern asmlinkage long compat_sys_waitid(int, compat_pid_t,
120 struct compat_siginfo __user *, int,
121 struct compat_rusage __user *);
122
123struct compat_dirent {
124 u32 d_ino;
125 compat_off_t d_off;
126 u16 d_reclen;
127 char d_name[256];
128};
129
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100130struct compat_ustat {
131 compat_daddr_t f_tfree;
132 compat_ino_t f_tinode;
133 char f_fname[6];
134 char f_fpack[6];
135};
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137typedef union compat_sigval {
138 compat_int_t sival_int;
139 compat_uptr_t sival_ptr;
140} compat_sigval_t;
141
142#define COMPAT_SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
143
144typedef struct compat_sigevent {
145 compat_sigval_t sigev_value;
146 compat_int_t sigev_signo;
147 compat_int_t sigev_notify;
148 union {
149 compat_int_t _pad[COMPAT_SIGEV_PAD_SIZE];
150 compat_int_t _tid;
151
152 struct {
153 compat_uptr_t _function;
154 compat_uptr_t _attribute;
155 } _sigev_thread;
156 } _sigev_un;
157} compat_sigevent_t;
158
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000159struct compat_ifmap {
160 compat_ulong_t mem_start;
161 compat_ulong_t mem_end;
162 unsigned short base_addr;
163 unsigned char irq;
164 unsigned char dma;
165 unsigned char port;
166};
167
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800168struct compat_if_settings
169{
170 unsigned int type; /* Type of physical device or protocol */
171 unsigned int size; /* Size of the data allocated by the caller */
172 compat_uptr_t ifs_ifsu; /* union of pointers */
173};
174
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000175struct compat_ifreq {
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800176 union {
177 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
178 } ifr_ifrn;
179 union {
180 struct sockaddr ifru_addr;
181 struct sockaddr ifru_dstaddr;
182 struct sockaddr ifru_broadaddr;
183 struct sockaddr ifru_netmask;
184 struct sockaddr ifru_hwaddr;
185 short ifru_flags;
186 compat_int_t ifru_ivalue;
187 compat_int_t ifru_mtu;
188 struct compat_ifmap ifru_map;
189 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000190 char ifru_newname[IFNAMSIZ];
Arnd Bergmann7a50a242009-11-08 20:57:03 -0800191 compat_caddr_t ifru_data;
192 struct compat_if_settings ifru_settings;
193 } ifr_ifru;
Arnd Bergmann2dceba12009-11-06 08:09:03 +0000194};
195
196struct compat_ifconf {
197 compat_int_t ifc_len; /* size of buffer */
198 compat_caddr_t ifcbuf;
199};
200
Ingo Molnar34f192c2006-03-27 01:16:24 -0800201struct compat_robust_list {
202 compat_uptr_t next;
203};
204
205struct compat_robust_list_head {
206 struct compat_robust_list list;
207 compat_long_t futex_offset;
208 compat_uptr_t list_op_pending;
209};
210
211extern void compat_exit_robust_list(struct task_struct *curr);
212
213asmlinkage long
214compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
215 compat_size_t len);
216asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100217compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800218 compat_size_t __user *len_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220long compat_sys_semctl(int first, int second, int third, void __user *uptr);
221long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
222long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
223 int version, void __user *uptr);
224long compat_sys_msgctl(int first, int second, void __user *uptr);
225long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
226 void __user *uptr);
227long compat_sys_shmctl(int first, int second, void __user *uptr);
228long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
229 unsigned nsems, const struct compat_timespec __user *timeout);
230asmlinkage long compat_sys_keyctl(u32 option,
231 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
Christoph Hellwig2b1c6bd2008-11-28 10:09:09 +0100232asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234asmlinkage ssize_t compat_sys_readv(unsigned long fd,
235 const struct compat_iovec __user *vec, unsigned long vlen);
236asmlinkage ssize_t compat_sys_writev(unsigned long fd,
237 const struct compat_iovec __user *vec, unsigned long vlen);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700238asmlinkage ssize_t compat_sys_preadv(unsigned long fd,
239 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700240 unsigned long vlen, u32 pos_low, u32 pos_high);
Gerd Hoffmannf3554f42009-04-02 16:59:23 -0700241asmlinkage ssize_t compat_sys_pwritev(unsigned long fd,
242 const struct compat_iovec __user *vec,
Linus Torvalds601cc112009-04-03 08:03:22 -0700243 unsigned long vlen, u32 pos_low, u32 pos_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245int compat_do_execve(char * filename, compat_uptr_t __user *argv,
246 compat_uptr_t __user *envp, struct pt_regs * regs);
247
248asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
249 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
250 struct compat_timeval __user *tvp);
251
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100252asmlinkage long compat_sys_wait4(compat_pid_t pid,
Al Viro7d61c452008-03-29 03:09:28 +0000253 compat_uint_t __user *stat_addr, int options,
254 struct compat_rusage __user *ru);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
257
258#define BITS_TO_COMPAT_LONGS(bits) \
259 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
260
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700261long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 unsigned long bitmap_size);
263long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
264 unsigned long bitmap_size);
265int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
266int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from);
267int get_compat_sigevent(struct sigevent *event,
268 const struct compat_sigevent __user *u_event);
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000269long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
270 struct compat_siginfo __user *uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Andrew Morton643a6542006-02-11 17:55:52 -0800272static inline int compat_timeval_compare(struct compat_timeval *lhs,
273 struct compat_timeval *rhs)
274{
275 if (lhs->tv_sec < rhs->tv_sec)
276 return -1;
277 if (lhs->tv_sec > rhs->tv_sec)
278 return 1;
279 return lhs->tv_usec - rhs->tv_usec;
280}
281
282static inline int compat_timespec_compare(struct compat_timespec *lhs,
283 struct compat_timespec *rhs)
284{
285 if (lhs->tv_sec < rhs->tv_sec)
286 return -1;
287 if (lhs->tv_sec > rhs->tv_sec)
288 return 1;
289 return lhs->tv_nsec - rhs->tv_nsec;
290}
291
Davide Libenzi83f5d122007-05-10 22:23:18 -0700292extern int get_compat_itimerspec(struct itimerspec *dst,
293 const struct compat_itimerspec __user *src);
294extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
295 const struct itimerspec *src);
296
Christoph Hellwigb418da12008-10-15 22:02:06 -0700297asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
298 struct timezone __user *tz);
299asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
300 struct timezone __user *tz);
301
Stephen Rothwell3158e942006-03-26 01:37:29 -0800302asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
303
Andi Kleenbebfa102006-06-26 13:56:52 +0200304extern int compat_printk(const char *fmt, ...);
Linus Torvalds02354972006-10-02 14:05:20 -0700305extern void sigset_from_compat(sigset_t *set, compat_sigset_t *compat);
Andi Kleenbebfa102006-06-26 13:56:52 +0200306
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800307asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
308 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
309 const compat_ulong_t __user *new_nodes);
310
Roland McGrath032d82d2008-01-30 13:31:47 +0100311extern int compat_ptrace_request(struct task_struct *child,
312 compat_long_t request,
313 compat_ulong_t addr, compat_ulong_t data);
314
Roland McGrathc269f192008-01-30 13:31:48 +0100315extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
316 compat_ulong_t addr, compat_ulong_t data);
317asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
318 compat_long_t addr, compat_long_t data);
Roland McGrathc269f192008-01-30 13:31:48 +0100319
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800320/*
321 * epoll (fs/eventpoll.c) compat bits follow ...
322 */
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800323struct epoll_event;
324#define compat_epoll_event epoll_event
Davide Libenzif6dfb4f2007-03-07 20:41:21 -0800325asmlinkage long compat_sys_epoll_pwait(int epfd,
326 struct compat_epoll_event __user *events,
327 int maxevents, int timeout,
328 const compat_sigset_t __user *sigmask,
329 compat_size_t sigsetsize);
330
Stephen Rothwell97416ce2007-05-09 02:32:35 -0700331asmlinkage long compat_sys_utimensat(unsigned int dfd, char __user *filename,
332 struct compat_timespec __user *t, int flags);
333
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000334asmlinkage long compat_sys_signalfd(int ufd,
335 const compat_sigset_t __user *sigmask,
336 compat_size_t sigsetsize);
Davide Libenzi4d672e72008-02-04 22:27:26 -0800337asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
338 const struct compat_itimerspec __user *utmr,
339 struct compat_itimerspec __user *otmr);
340asmlinkage long compat_sys_timerfd_gettime(int ufd,
341 struct compat_itimerspec __user *otmr);
Stephen Rothwell140ff8b2007-05-14 13:47:47 +1000342
Heiko Carstens4c696ba2009-01-14 14:13:53 +0100343asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
344 __u32 __user *pages,
345 const int __user *nodes,
346 int __user *status,
347 int flags);
348asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename,
349 struct compat_timeval __user *t);
350asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename,
351 struct compat_stat __user *statbuf,
352 int flag);
353asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename,
354 int flags, int mode);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356#endif /* CONFIG_COMPAT */
357#endif /* _LINUX_COMPAT_H */