]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/compat.h
net, compat_ioctl: fix SIOCGMII ioctls
[net-next-2.6.git] / include / linux / compat.h
CommitLineData
1da177e4
LT
1#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 */
1da177e4
LT
7
8#ifdef CONFIG_COMPAT
9
10#include <linux/stat.h>
11#include <linux/param.h> /* for HZ */
12#include <linux/sem.h>
2dceba14
AB
13#include <linux/socket.h>
14#include <linux/if.h>
1da177e4
LT
15
16#include <asm/compat.h>
17#include <asm/siginfo.h>
3f2e05e9 18#include <asm/signal.h>
1da177e4
LT
19
20#define compat_jiffies_to_clock_t(x) \
21 (((unsigned long)(x) * COMPAT_USER_HZ) / HZ)
22
202e5979
SR
23typedef __compat_uid32_t compat_uid_t;
24typedef __compat_gid32_t compat_gid_t;
25
1da177e4
LT
26struct 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
88959ea9
SR
50struct 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;
153b5d05 70 compat_int_t tai;
88959ea9
SR
71
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;
153b5d05 74 compat_int_t :32; compat_int_t :32; compat_int_t :32;
88959ea9
SR
75};
76
1da177e4
LT
77#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
1da177e4
LT
83extern 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
2b1c6bd7
CH
130struct 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
1da177e4
LT
137typedef 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
2dceba14
AB
159struct 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
168struct compat_ifreq {
2dceba14
AB
169 union {
170 char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
171 } ifr_ifrn;
172 union {
173 struct sockaddr ifru_addr;
174 struct sockaddr ifru_dstaddr;
175 struct sockaddr ifru_broadaddr;
176 struct sockaddr ifru_netmask;
177 struct sockaddr ifru_hwaddr;
178 short ifru_flags;
179 compat_int_t ifru_ivalue;
180 compat_int_t ifru_mtu;
181 struct compat_ifmap ifru_map;
182 char ifru_slave[IFNAMSIZ]; /* Just fits the size */
183 char ifru_newname[IFNAMSIZ];
184 compat_caddr_t ifru_data;
185 /* XXXX? ifru_settings should be here */
186 } ifr_ifru;
187};
188
189struct compat_ifconf {
190 compat_int_t ifc_len; /* size of buffer */
191 compat_caddr_t ifcbuf;
192};
193
34f192c6
IM
194struct compat_robust_list {
195 compat_uptr_t next;
196};
197
198struct compat_robust_list_head {
199 struct compat_robust_list list;
200 compat_long_t futex_offset;
201 compat_uptr_t list_op_pending;
202};
203
204extern void compat_exit_robust_list(struct task_struct *curr);
205
206asmlinkage long
207compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
208 compat_size_t len);
209asmlinkage long
ba46df98 210compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
34f192c6 211 compat_size_t __user *len_ptr);
1da177e4
LT
212
213long compat_sys_semctl(int first, int second, int third, void __user *uptr);
214long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
215long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
216 int version, void __user *uptr);
217long compat_sys_msgctl(int first, int second, void __user *uptr);
218long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
219 void __user *uptr);
220long compat_sys_shmctl(int first, int second, void __user *uptr);
221long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,
222 unsigned nsems, const struct compat_timespec __user *timeout);
223asmlinkage long compat_sys_keyctl(u32 option,
224 u32 arg2, u32 arg3, u32 arg4, u32 arg5);
2b1c6bd7 225asmlinkage long compat_sys_ustat(unsigned dev, struct compat_ustat __user *u32);
1da177e4
LT
226
227asmlinkage ssize_t compat_sys_readv(unsigned long fd,
228 const struct compat_iovec __user *vec, unsigned long vlen);
229asmlinkage ssize_t compat_sys_writev(unsigned long fd,
230 const struct compat_iovec __user *vec, unsigned long vlen);
f3554f4b
GH
231asmlinkage ssize_t compat_sys_preadv(unsigned long fd,
232 const struct compat_iovec __user *vec,
601cc11d 233 unsigned long vlen, u32 pos_low, u32 pos_high);
f3554f4b
GH
234asmlinkage ssize_t compat_sys_pwritev(unsigned long fd,
235 const struct compat_iovec __user *vec,
601cc11d 236 unsigned long vlen, u32 pos_low, u32 pos_high);
1da177e4
LT
237
238int compat_do_execve(char * filename, compat_uptr_t __user *argv,
239 compat_uptr_t __user *envp, struct pt_regs * regs);
240
241asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp,
242 compat_ulong_t __user *outp, compat_ulong_t __user *exp,
243 struct compat_timeval __user *tvp);
244
c202f298 245asmlinkage long compat_sys_wait4(compat_pid_t pid,
7d61c459
AV
246 compat_uint_t __user *stat_addr, int options,
247 struct compat_rusage __user *ru);
c202f298 248
1da177e4
LT
249#define BITS_PER_COMPAT_LONG (8*sizeof(compat_long_t))
250
251#define BITS_TO_COMPAT_LONGS(bits) \
252 (((bits)+BITS_PER_COMPAT_LONG-1)/BITS_PER_COMPAT_LONG)
253
5fa3839a 254long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
1da177e4
LT
255 unsigned long bitmap_size);
256long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
257 unsigned long bitmap_size);
258int copy_siginfo_from_user32(siginfo_t *to, struct compat_siginfo __user *from);
259int copy_siginfo_to_user32(struct compat_siginfo __user *to, siginfo_t *from);
260int get_compat_sigevent(struct sigevent *event,
261 const struct compat_sigevent __user *u_event);
62ab4505
TG
262long compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
263 struct compat_siginfo __user *uinfo);
1da177e4 264
643a6545
AM
265static inline int compat_timeval_compare(struct compat_timeval *lhs,
266 struct compat_timeval *rhs)
267{
268 if (lhs->tv_sec < rhs->tv_sec)
269 return -1;
270 if (lhs->tv_sec > rhs->tv_sec)
271 return 1;
272 return lhs->tv_usec - rhs->tv_usec;
273}
274
275static inline int compat_timespec_compare(struct compat_timespec *lhs,
276 struct compat_timespec *rhs)
277{
278 if (lhs->tv_sec < rhs->tv_sec)
279 return -1;
280 if (lhs->tv_sec > rhs->tv_sec)
281 return 1;
282 return lhs->tv_nsec - rhs->tv_nsec;
283}
284
83f5d126
DL
285extern int get_compat_itimerspec(struct itimerspec *dst,
286 const struct compat_itimerspec __user *src);
287extern int put_compat_itimerspec(struct compat_itimerspec __user *dst,
288 const struct itimerspec *src);
289
b418da16
CH
290asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
291 struct timezone __user *tz);
292asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
293 struct timezone __user *tz);
294
3158e941
SR
295asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
296
bebfa101 297extern int compat_printk(const char *fmt, ...);
0235497f 298extern void sigset_from_compat(sigset_t *set, compat_sigset_t *compat);
bebfa101 299
3fd59397
SR
300asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
301 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
302 const compat_ulong_t __user *new_nodes);
303
032d82d9
RM
304extern int compat_ptrace_request(struct task_struct *child,
305 compat_long_t request,
306 compat_ulong_t addr, compat_ulong_t data);
307
c269f196
RM
308extern long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
309 compat_ulong_t addr, compat_ulong_t data);
310asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
311 compat_long_t addr, compat_long_t data);
c269f196 312
f6dfb4fd
DL
313/*
314 * epoll (fs/eventpoll.c) compat bits follow ...
315 */
f6dfb4fd
DL
316struct epoll_event;
317#define compat_epoll_event epoll_event
f6dfb4fd
DL
318asmlinkage long compat_sys_epoll_pwait(int epfd,
319 struct compat_epoll_event __user *events,
320 int maxevents, int timeout,
321 const compat_sigset_t __user *sigmask,
322 compat_size_t sigsetsize);
323
97416ce8
SR
324asmlinkage long compat_sys_utimensat(unsigned int dfd, char __user *filename,
325 struct compat_timespec __user *t, int flags);
326
140ff8b0
SR
327asmlinkage long compat_sys_signalfd(int ufd,
328 const compat_sigset_t __user *sigmask,
329 compat_size_t sigsetsize);
4d672e7a
DL
330asmlinkage long compat_sys_timerfd_settime(int ufd, int flags,
331 const struct compat_itimerspec __user *utmr,
332 struct compat_itimerspec __user *otmr);
333asmlinkage long compat_sys_timerfd_gettime(int ufd,
334 struct compat_itimerspec __user *otmr);
140ff8b0 335
4c696ba7
HC
336asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page,
337 __u32 __user *pages,
338 const int __user *nodes,
339 int __user *status,
340 int flags);
341asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename,
342 struct compat_timeval __user *t);
343asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename,
344 struct compat_stat __user *statbuf,
345 int flag);
346asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename,
347 int flags, int mode);
348
1da177e4
LT
349#endif /* CONFIG_COMPAT */
350#endif /* _LINUX_COMPAT_H */