]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/mips/include/asm/compat.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / mips / include / asm / compat.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ASM_COMPAT_H
3#define _ASM_COMPAT_H
4/*
5 * Architecture specific compatibility types
6 */
4302e5d5 7#include <linux/thread_info.h>
1da177e4
LT
8#include <linux/types.h>
9#include <asm/page.h>
b7237825 10#include <asm/ptrace.h>
1da177e4 11
e28cbf22
CH
12#define COMPAT_USER_HZ 100
13#define COMPAT_UTS_MACHINE "mips\0\0\0"
1da177e4
LT
14
15typedef u32 compat_size_t;
16typedef s32 compat_ssize_t;
17typedef s32 compat_time_t;
18typedef s32 compat_clock_t;
19typedef s32 compat_suseconds_t;
20
21typedef s32 compat_pid_t;
4ee1303a
RB
22typedef s32 __compat_uid_t;
23typedef s32 __compat_gid_t;
24typedef __compat_uid_t __compat_uid32_t;
25typedef __compat_gid_t __compat_gid32_t;
1da177e4
LT
26typedef u32 compat_mode_t;
27typedef u32 compat_ino_t;
28typedef u32 compat_dev_t;
29typedef s32 compat_off_t;
30typedef s64 compat_loff_t;
31typedef u32 compat_nlink_t;
32typedef s32 compat_ipc_pid_t;
33typedef s32 compat_daddr_t;
34typedef s32 compat_caddr_t;
35typedef struct {
36 s32 val[2];
37} compat_fsid_t;
0d77e5a2 38typedef s32 compat_timer_t;
05e43966 39typedef s32 compat_key_t;
1da177e4
LT
40
41typedef s32 compat_int_t;
42typedef s32 compat_long_t;
4b777587 43typedef s64 compat_s64;
1da177e4
LT
44typedef u32 compat_uint_t;
45typedef u32 compat_ulong_t;
4b777587 46typedef u64 compat_u64;
751f409d 47typedef u32 compat_uptr_t;
1da177e4
LT
48
49struct compat_timespec {
50 compat_time_t tv_sec;
51 s32 tv_nsec;
52};
53
54struct compat_timeval {
55 compat_time_t tv_sec;
56 s32 tv_usec;
57};
58
59struct compat_stat {
60 compat_dev_t st_dev;
61 s32 st_pad1[3];
62 compat_ino_t st_ino;
63 compat_mode_t st_mode;
64 compat_nlink_t st_nlink;
4ee1303a
RB
65 __compat_uid_t st_uid;
66 __compat_gid_t st_gid;
1da177e4
LT
67 compat_dev_t st_rdev;
68 s32 st_pad2[2];
69 compat_off_t st_size;
70 s32 st_pad3;
71 compat_time_t st_atime;
72 s32 st_atime_nsec;
73 compat_time_t st_mtime;
74 s32 st_mtime_nsec;
75 compat_time_t st_ctime;
76 s32 st_ctime_nsec;
77 s32 st_blksize;
78 s32 st_blocks;
79 s32 st_pad4[14];
80};
81
82struct compat_flock {
83 short l_type;
84 short l_whence;
85 compat_off_t l_start;
86 compat_off_t l_len;
87 s32 l_sysid;
88 compat_pid_t l_pid;
89 short __unused;
90 s32 pad[4];
91};
92
93#define F_GETLK64 33
94#define F_SETLK64 34
95#define F_SETLKW64 35
96
97struct compat_flock64 {
98 short l_type;
99 short l_whence;
100 compat_loff_t l_start;
101 compat_loff_t l_len;
102 compat_pid_t l_pid;
103};
104
105struct compat_statfs {
106 int f_type;
107 int f_bsize;
108 int f_frsize;
109 int f_blocks;
110 int f_bfree;
111 int f_files;
112 int f_ffree;
113 int f_bavail;
114 compat_fsid_t f_fsid;
115 int f_namelen;
1448c721
EB
116 int f_flags;
117 int f_spare[5];
1da177e4
LT
118};
119
120#define COMPAT_RLIM_INFINITY 0x7fffffffUL
121
122typedef u32 compat_old_sigset_t; /* at least 32 bits */
123
70342287 124#define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
1da177e4
LT
125#define _COMPAT_NSIG_BPW 32
126
127typedef u32 compat_sigset_word;
128
751f409d
DV
129typedef union compat_sigval {
130 compat_int_t sival_int;
131 compat_uptr_t sival_ptr;
132} compat_sigval_t;
133
d00d9203
AA
134/* Can't use the generic version because si_code and si_errno are swapped */
135
751f409d
DV
136#define SI_PAD_SIZE32 (128/sizeof(int) - 3)
137
138typedef struct compat_siginfo {
139 int si_signo;
140 int si_code;
141 int si_errno;
142
143 union {
d00d9203 144 int _pad[128 / sizeof(int) - 3];
751f409d
DV
145
146 /* kill() */
147 struct {
148 compat_pid_t _pid; /* sender's pid */
d00d9203 149 __compat_uid32_t _uid; /* sender's uid */
751f409d
DV
150 } _kill;
151
d00d9203
AA
152 /* POSIX.1b timers */
153 struct {
154 compat_timer_t _tid; /* timer id */
155 int _overrun; /* overrun count */
156 compat_sigval_t _sigval; /* same as below */
157 } _timer;
158
159 /* POSIX.1b signals */
160 struct {
161 compat_pid_t _pid; /* sender's pid */
162 __compat_uid32_t _uid; /* sender's uid */
163 compat_sigval_t _sigval;
164 } _rt;
165
751f409d
DV
166 /* SIGCHLD */
167 struct {
168 compat_pid_t _pid; /* which child */
d00d9203 169 __compat_uid32_t _uid; /* sender's uid */
751f409d
DV
170 int _status; /* exit code */
171 compat_clock_t _utime;
172 compat_clock_t _stime;
173 } _sigchld;
174
751f409d
DV
175 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
176 struct {
d00d9203
AA
177 compat_uptr_t _addr; /* faulting insn/memory ref. */
178#ifdef __ARCH_SI_TRAPNO
179 int _trapno; /* TRAP # which caused the signal */
180#endif
181 short _addr_lsb; /* LSB of the reported address */
182 struct {
183 compat_uptr_t _lower;
184 compat_uptr_t _upper;
185 } _addr_bnd;
751f409d
DV
186 } _sigfault;
187
d00d9203 188 /* SIGPOLL */
751f409d 189 struct {
d00d9203 190 compat_long_t _band; /* POLL_IN, POLL_OUT, POLL_MSG */
751f409d
DV
191 int _fd;
192 } _sigpoll;
193
751f409d 194 struct {
d00d9203
AA
195 compat_uptr_t _call_addr; /* calling insn */
196 int _syscall; /* triggering system call number */
197 compat_uint_t _arch; /* AUDIT_ARCH_* of syscall */
198 } _sigsys;
751f409d
DV
199 } _sifields;
200} compat_siginfo_t;
201
1da177e4
LT
202#define COMPAT_OFF_T_MAX 0x7fffffff
203#define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
204
205/*
206 * A pointer passed in from user mode. This should not
207 * be used for syscall parameters, just declare them
208 * as pointers because the syscall entry code will have
8b3de0df 209 * appropriately converted them already.
1da177e4 210 */
1da177e4 211
219ac73a 212static inline void __user *compat_ptr(compat_uptr_t uptr)
1da177e4 213{
01bebc66
AN
214 /* cast to a __user pointer via "unsigned long" makes sparse happy */
215 return (void __user *)(unsigned long)(long)uptr;
1da177e4
LT
216}
217
62ac285f
IM
218static inline compat_uptr_t ptr_to_compat(void __user *uptr)
219{
220 return (u32)(unsigned long)uptr;
221}
222
c41d68a5 223static inline void __user *arch_compat_alloc_user_space(long len)
1da177e4
LT
224{
225 struct pt_regs *regs = (struct pt_regs *)
226 ((unsigned long) current_thread_info() + THREAD_SIZE - 32) - 1;
227
219ac73a 228 return (void __user *) (regs->regs[29] - len);
1da177e4 229}
1da177e4 230
05e43966
AN
231struct compat_ipc64_perm {
232 compat_key_t key;
233 __compat_uid32_t uid;
234 __compat_gid32_t gid;
235 __compat_uid32_t cuid;
236 __compat_gid32_t cgid;
237 compat_mode_t mode;
238 unsigned short seq;
239 unsigned short __pad2;
240 compat_ulong_t __unused1;
241 compat_ulong_t __unused2;
242};
243
244struct compat_semid64_ds {
245 struct compat_ipc64_perm sem_perm;
246 compat_time_t sem_otime;
247 compat_time_t sem_ctime;
248 compat_ulong_t sem_nsems;
249 compat_ulong_t __unused1;
250 compat_ulong_t __unused2;
251};
252
253struct compat_msqid64_ds {
254 struct compat_ipc64_perm msg_perm;
255#ifndef CONFIG_CPU_LITTLE_ENDIAN
256 compat_ulong_t __unused1;
257#endif
258 compat_time_t msg_stime;
259#ifdef CONFIG_CPU_LITTLE_ENDIAN
260 compat_ulong_t __unused1;
261#endif
262#ifndef CONFIG_CPU_LITTLE_ENDIAN
263 compat_ulong_t __unused2;
264#endif
265 compat_time_t msg_rtime;
266#ifdef CONFIG_CPU_LITTLE_ENDIAN
267 compat_ulong_t __unused2;
268#endif
269#ifndef CONFIG_CPU_LITTLE_ENDIAN
270 compat_ulong_t __unused3;
271#endif
272 compat_time_t msg_ctime;
273#ifdef CONFIG_CPU_LITTLE_ENDIAN
274 compat_ulong_t __unused3;
275#endif
276 compat_ulong_t msg_cbytes;
277 compat_ulong_t msg_qnum;
278 compat_ulong_t msg_qbytes;
279 compat_pid_t msg_lspid;
280 compat_pid_t msg_lrpid;
281 compat_ulong_t __unused4;
282 compat_ulong_t __unused5;
283};
284
285struct compat_shmid64_ds {
286 struct compat_ipc64_perm shm_perm;
287 compat_size_t shm_segsz;
288 compat_time_t shm_atime;
289 compat_time_t shm_dtime;
290 compat_time_t shm_ctime;
291 compat_pid_t shm_cpid;
292 compat_pid_t shm_lpid;
293 compat_ulong_t shm_nattch;
294 compat_ulong_t __unused1;
295 compat_ulong_t __unused2;
296};
297
ea536ad4
AV
298/* MIPS has unusual order of fields in stack_t */
299typedef struct compat_sigaltstack {
300 compat_uptr_t ss_sp;
301 compat_size_t ss_size;
302 int ss_flags;
303} compat_stack_t;
304#define compat_sigaltstack compat_sigaltstack
305
4302e5d5
RB
306static inline int is_compat_task(void)
307{
6ad560b4 308 return test_thread_flag(TIF_32BIT_ADDR);
4302e5d5
RB
309}
310
1da177e4 311#endif /* _ASM_COMPAT_H */