Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
compat.h
Go to the documentation of this file.
1 #ifndef _ASM_COMPAT_H
2 #define _ASM_COMPAT_H
3 /*
4  * Architecture specific compatibility types
5  */
6 #include <linux/thread_info.h>
7 #include <linux/types.h>
8 #include <asm/page.h>
9 #include <asm/ptrace.h>
10 
11 #define COMPAT_USER_HZ 100
12 #define COMPAT_UTS_MACHINE "mips\0\0\0"
13 
19 
20 typedef s32 compat_pid_t;
26 typedef u32 compat_ino_t;
27 typedef u32 compat_dev_t;
28 typedef s32 compat_off_t;
34 typedef struct {
35  s32 val[2];
38 typedef s32 compat_key_t;
39 
40 typedef s32 compat_int_t;
42 typedef s64 compat_s64;
45 typedef u64 compat_u64;
47 
51 };
52 
56 };
57 
58 struct compat_stat {
78  s32 st_pad4[14];
79 };
80 
81 struct compat_flock {
82  short l_type;
83  short l_whence;
88  short __unused;
89  s32 pad[4];
90 };
91 
92 #define F_GETLK64 33
93 #define F_SETLK64 34
94 #define F_SETLKW64 35
95 
97  short l_type;
98  short l_whence;
102 };
103 
105  int f_type;
106  int f_bsize;
107  int f_frsize;
108  int f_blocks;
109  int f_bfree;
110  int f_files;
111  int f_ffree;
112  int f_bavail;
115  int f_flags;
116  int f_spare[5];
117 };
118 
119 #define COMPAT_RLIM_INFINITY 0x7fffffffUL
120 
121 typedef u32 compat_old_sigset_t; /* at least 32 bits */
122 
123 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
124 #define _COMPAT_NSIG_BPW 32
125 
127 
128 typedef union compat_sigval {
132 
133 #define SI_PAD_SIZE32 (128/sizeof(int) - 3)
134 
135 typedef struct compat_siginfo {
136  int si_signo;
137  int si_code;
138  int si_errno;
139 
140  union {
142 
143  /* kill() */
144  struct {
145  compat_pid_t _pid; /* sender's pid */
146  __compat_uid_t _uid; /* sender's uid */
147  } _kill;
148 
149  /* SIGCHLD */
150  struct {
151  compat_pid_t _pid; /* which child */
152  __compat_uid_t _uid; /* sender's uid */
153  int _status; /* exit code */
156  } _sigchld;
157 
158  /* IRIX SIGCHLD */
159  struct {
160  compat_pid_t _pid; /* which child */
162  int _status; /* exit code */
164  } _irix_sigchld;
165 
166  /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
167  struct {
168  s32 _addr; /* faulting insn/memory ref. */
169  } _sigfault;
170 
171  /* SIGPOLL, SIGXFSZ (To do ...) */
172  struct {
173  int _band; /* POLL_IN, POLL_OUT, POLL_MSG */
174  int _fd;
175  } _sigpoll;
176 
177  /* POSIX.1b timers */
178  struct {
179  timer_t _tid; /* timer id */
180  int _overrun; /* overrun count */
181  compat_sigval_t _sigval;/* same as below */
182  int _sys_private; /* not to be passed to user */
183  } _timer;
184 
185  /* POSIX.1b signals */
186  struct {
187  compat_pid_t _pid; /* sender's pid */
188  __compat_uid_t _uid; /* sender's uid */
190  } _rt;
191 
192  } _sifields;
194 
195 #define COMPAT_OFF_T_MAX 0x7fffffff
196 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
197 
198 /*
199  * A pointer passed in from user mode. This should not
200  * be used for syscall parameters, just declare them
201  * as pointers because the syscall entry code will have
202  * appropriately converted them already.
203  */
204 
205 static inline void __user *compat_ptr(compat_uptr_t uptr)
206 {
207  /* cast to a __user pointer via "unsigned long" makes sparse happy */
208  return (void __user *)(unsigned long)(long)uptr;
209 }
210 
211 static inline compat_uptr_t ptr_to_compat(void __user *uptr)
212 {
213  return (u32)(unsigned long)uptr;
214 }
215 
216 static inline void __user *arch_compat_alloc_user_space(long len)
217 {
218  struct pt_regs *regs = (struct pt_regs *)
219  ((unsigned long) current_thread_info() + THREAD_SIZE - 32) - 1;
220 
221  return (void __user *) (regs->regs[29] - len);
222 }
223 
231  unsigned short seq;
232  unsigned short __pad2;
235 };
236 
244 };
245 
248 #ifndef CONFIG_CPU_LITTLE_ENDIAN
250 #endif
252 #ifdef CONFIG_CPU_LITTLE_ENDIAN
254 #endif
255 #ifndef CONFIG_CPU_LITTLE_ENDIAN
257 #endif
259 #ifdef CONFIG_CPU_LITTLE_ENDIAN
261 #endif
262 #ifndef CONFIG_CPU_LITTLE_ENDIAN
264 #endif
266 #ifdef CONFIG_CPU_LITTLE_ENDIAN
268 #endif
276 };
277 
289 };
290 
291 static inline int is_compat_task(void)
292 {
293  return test_thread_flag(TIF_32BIT_ADDR);
294 }
295 
296 #endif /* _ASM_COMPAT_H */