Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_SPARC64_COMPAT_H
3#define _ASM_SPARC64_COMPAT_H
4/*
5 * Architecture specific compatibility types
6 */
7#include <linux/types.h>
8
9#define COMPAT_USER_HZ 100
10#define COMPAT_UTS_MACHINE "sparc\0\0"
11
12typedef u32 compat_size_t;
13typedef s32 compat_ssize_t;
14typedef s32 compat_time_t;
15typedef s32 compat_clock_t;
16typedef s32 compat_pid_t;
17typedef u16 __compat_uid_t;
18typedef u16 __compat_gid_t;
19typedef u32 __compat_uid32_t;
20typedef u32 __compat_gid32_t;
21typedef u16 compat_mode_t;
22typedef u32 compat_ino_t;
23typedef u16 compat_dev_t;
24typedef s32 compat_off_t;
25typedef s64 compat_loff_t;
26typedef s16 compat_nlink_t;
27typedef u16 compat_ipc_pid_t;
28typedef s32 compat_daddr_t;
29typedef u32 compat_caddr_t;
30typedef __kernel_fsid_t compat_fsid_t;
31typedef s32 compat_key_t;
32typedef s32 compat_timer_t;
33
34typedef s32 compat_int_t;
35typedef s32 compat_long_t;
36typedef s64 compat_s64;
37typedef u32 compat_uint_t;
38typedef u32 compat_ulong_t;
39typedef u64 compat_u64;
40typedef u32 compat_uptr_t;
41
42struct compat_timespec {
43 compat_time_t tv_sec;
44 s32 tv_nsec;
45};
46
47struct compat_timeval {
48 compat_time_t tv_sec;
49 s32 tv_usec;
50};
51
52struct compat_stat {
53 compat_dev_t st_dev;
54 compat_ino_t st_ino;
55 compat_mode_t st_mode;
56 compat_nlink_t st_nlink;
57 __compat_uid_t st_uid;
58 __compat_gid_t st_gid;
59 compat_dev_t st_rdev;
60 compat_off_t st_size;
61 compat_time_t st_atime;
62 compat_ulong_t st_atime_nsec;
63 compat_time_t st_mtime;
64 compat_ulong_t st_mtime_nsec;
65 compat_time_t st_ctime;
66 compat_ulong_t st_ctime_nsec;
67 compat_off_t st_blksize;
68 compat_off_t st_blocks;
69 u32 __unused4[2];
70};
71
72struct compat_stat64 {
73 unsigned long long st_dev;
74
75 unsigned long long st_ino;
76
77 unsigned int st_mode;
78 unsigned int st_nlink;
79
80 unsigned int st_uid;
81 unsigned int st_gid;
82
83 unsigned long long st_rdev;
84
85 unsigned char __pad3[8];
86
87 long long st_size;
88 unsigned int st_blksize;
89
90 unsigned char __pad4[8];
91 unsigned int st_blocks;
92
93 unsigned int st_atime;
94 unsigned int st_atime_nsec;
95
96 unsigned int st_mtime;
97 unsigned int st_mtime_nsec;
98
99 unsigned int st_ctime;
100 unsigned int st_ctime_nsec;
101
102 unsigned int __unused4;
103 unsigned int __unused5;
104};
105
106struct compat_flock {
107 short l_type;
108 short l_whence;
109 compat_off_t l_start;
110 compat_off_t l_len;
111 compat_pid_t l_pid;
112 short __unused;
113};
114
115#define F_GETLK64 12
116#define F_SETLK64 13
117#define F_SETLKW64 14
118
119struct compat_flock64 {
120 short l_type;
121 short l_whence;
122 compat_loff_t l_start;
123 compat_loff_t l_len;
124 compat_pid_t l_pid;
125 short __unused;
126};
127
128struct compat_statfs {
129 int f_type;
130 int f_bsize;
131 int f_blocks;
132 int f_bfree;
133 int f_bavail;
134 int f_files;
135 int f_ffree;
136 compat_fsid_t f_fsid;
137 int f_namelen; /* SunOS ignores this field. */
138 int f_frsize;
139 int f_flags;
140 int f_spare[4];
141};
142
143#define COMPAT_RLIM_INFINITY 0x7fffffff
144
145typedef u32 compat_old_sigset_t;
146
147#define _COMPAT_NSIG 64
148#define _COMPAT_NSIG_BPW 32
149
150typedef u32 compat_sigset_word;
151
152#define COMPAT_OFF_T_MAX 0x7fffffff
153
154/*
155 * A pointer passed in from user mode. This should not
156 * be used for syscall parameters, just declare them
157 * as pointers because the syscall entry code will have
158 * appropriately converted them already.
159 */
160
161static inline void __user *compat_ptr(compat_uptr_t uptr)
162{
163 return (void __user *)(unsigned long)uptr;
164}
165
166static inline compat_uptr_t ptr_to_compat(void __user *uptr)
167{
168 return (u32)(unsigned long)uptr;
169}
170
171static inline void __user *arch_compat_alloc_user_space(long len)
172{
173 struct pt_regs *regs = current_thread_info()->kregs;
174 unsigned long usp = regs->u_regs[UREG_I6];
175
176 if (test_thread_64bit_stack(usp))
177 usp += STACK_BIAS;
178
179 if (test_thread_flag(TIF_32BIT))
180 usp &= 0xffffffffUL;
181
182 usp -= len;
183 usp &= ~0x7UL;
184
185 return (void __user *) usp;
186}
187
188struct compat_ipc64_perm {
189 compat_key_t key;
190 __compat_uid32_t uid;
191 __compat_gid32_t gid;
192 __compat_uid32_t cuid;
193 __compat_gid32_t cgid;
194 unsigned short __pad1;
195 compat_mode_t mode;
196 unsigned short __pad2;
197 unsigned short seq;
198 unsigned long __unused1; /* yes they really are 64bit pads */
199 unsigned long __unused2;
200};
201
202struct compat_semid64_ds {
203 struct compat_ipc64_perm sem_perm;
204 unsigned int __pad1;
205 compat_time_t sem_otime;
206 unsigned int __pad2;
207 compat_time_t sem_ctime;
208 u32 sem_nsems;
209 u32 __unused1;
210 u32 __unused2;
211};
212
213struct compat_msqid64_ds {
214 struct compat_ipc64_perm msg_perm;
215 unsigned int __pad1;
216 compat_time_t msg_stime;
217 unsigned int __pad2;
218 compat_time_t msg_rtime;
219 unsigned int __pad3;
220 compat_time_t msg_ctime;
221 unsigned int msg_cbytes;
222 unsigned int msg_qnum;
223 unsigned int msg_qbytes;
224 compat_pid_t msg_lspid;
225 compat_pid_t msg_lrpid;
226 unsigned int __unused1;
227 unsigned int __unused2;
228};
229
230struct compat_shmid64_ds {
231 struct compat_ipc64_perm shm_perm;
232 unsigned int __pad1;
233 compat_time_t shm_atime;
234 unsigned int __pad2;
235 compat_time_t shm_dtime;
236 unsigned int __pad3;
237 compat_time_t shm_ctime;
238 compat_size_t shm_segsz;
239 compat_pid_t shm_cpid;
240 compat_pid_t shm_lpid;
241 unsigned int shm_nattch;
242 unsigned int __unused1;
243 unsigned int __unused2;
244};
245
246static inline int is_compat_task(void)
247{
248 return test_thread_flag(TIF_32BIT);
249}
250
251static inline bool in_compat_syscall(void)
252{
253 /* Vector 0x110 is LINUX_32BIT_SYSCALL_TRAP */
254 return pt_regs_trap_type(current_pt_regs()) == 0x110;
255}
256#define in_compat_syscall in_compat_syscall
257
258#endif /* _ASM_SPARC64_COMPAT_H */
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_SPARC64_COMPAT_H
3#define _ASM_SPARC64_COMPAT_H
4/*
5 * Architecture specific compatibility types
6 */
7#include <linux/types.h>
8
9#include <asm-generic/compat.h>
10
11#define COMPAT_USER_HZ 100
12#define COMPAT_UTS_MACHINE "sparc\0\0"
13
14typedef u16 __compat_uid_t;
15typedef u16 __compat_gid_t;
16typedef u32 __compat_uid32_t;
17typedef u32 __compat_gid32_t;
18typedef u16 compat_mode_t;
19typedef u16 compat_dev_t;
20typedef s16 compat_nlink_t;
21typedef u16 compat_ipc_pid_t;
22typedef u32 compat_caddr_t;
23typedef __kernel_fsid_t compat_fsid_t;
24typedef s64 compat_s64;
25typedef u64 compat_u64;
26struct compat_stat {
27 compat_dev_t st_dev;
28 compat_ino_t st_ino;
29 compat_mode_t st_mode;
30 compat_nlink_t st_nlink;
31 __compat_uid_t st_uid;
32 __compat_gid_t st_gid;
33 compat_dev_t st_rdev;
34 compat_off_t st_size;
35 old_time32_t st_atime;
36 compat_ulong_t st_atime_nsec;
37 old_time32_t st_mtime;
38 compat_ulong_t st_mtime_nsec;
39 old_time32_t st_ctime;
40 compat_ulong_t st_ctime_nsec;
41 compat_off_t st_blksize;
42 compat_off_t st_blocks;
43 u32 __unused4[2];
44};
45
46struct compat_stat64 {
47 unsigned long long st_dev;
48
49 unsigned long long st_ino;
50
51 unsigned int st_mode;
52 unsigned int st_nlink;
53
54 unsigned int st_uid;
55 unsigned int st_gid;
56
57 unsigned long long st_rdev;
58
59 unsigned char __pad3[8];
60
61 long long st_size;
62 unsigned int st_blksize;
63
64 unsigned char __pad4[8];
65 unsigned int st_blocks;
66
67 unsigned int st_atime;
68 unsigned int st_atime_nsec;
69
70 unsigned int st_mtime;
71 unsigned int st_mtime_nsec;
72
73 unsigned int st_ctime;
74 unsigned int st_ctime_nsec;
75
76 unsigned int __unused4;
77 unsigned int __unused5;
78};
79
80struct compat_flock {
81 short l_type;
82 short l_whence;
83 compat_off_t l_start;
84 compat_off_t l_len;
85 compat_pid_t l_pid;
86 short __unused;
87};
88
89#define F_GETLK64 12
90#define F_SETLK64 13
91#define F_SETLKW64 14
92
93struct compat_flock64 {
94 short l_type;
95 short l_whence;
96 compat_loff_t l_start;
97 compat_loff_t l_len;
98 compat_pid_t l_pid;
99 short __unused;
100};
101
102struct compat_statfs {
103 int f_type;
104 int f_bsize;
105 int f_blocks;
106 int f_bfree;
107 int f_bavail;
108 int f_files;
109 int f_ffree;
110 compat_fsid_t f_fsid;
111 int f_namelen; /* SunOS ignores this field. */
112 int f_frsize;
113 int f_flags;
114 int f_spare[4];
115};
116
117#define COMPAT_RLIM_INFINITY 0x7fffffff
118
119typedef u32 compat_old_sigset_t;
120
121#define _COMPAT_NSIG 64
122#define _COMPAT_NSIG_BPW 32
123
124typedef u32 compat_sigset_word;
125
126#define COMPAT_OFF_T_MAX 0x7fffffff
127
128#ifdef CONFIG_COMPAT
129static inline void __user *arch_compat_alloc_user_space(long len)
130{
131 struct pt_regs *regs = current_thread_info()->kregs;
132 unsigned long usp = regs->u_regs[UREG_I6];
133
134 if (test_thread_64bit_stack(usp))
135 usp += STACK_BIAS;
136
137 if (test_thread_flag(TIF_32BIT))
138 usp &= 0xffffffffUL;
139
140 usp -= len;
141 usp &= ~0x7UL;
142
143 return (void __user *) usp;
144}
145#endif
146
147struct compat_ipc64_perm {
148 compat_key_t key;
149 __compat_uid32_t uid;
150 __compat_gid32_t gid;
151 __compat_uid32_t cuid;
152 __compat_gid32_t cgid;
153 unsigned short __pad1;
154 compat_mode_t mode;
155 unsigned short __pad2;
156 unsigned short seq;
157 unsigned long __unused1; /* yes they really are 64bit pads */
158 unsigned long __unused2;
159};
160
161struct compat_semid64_ds {
162 struct compat_ipc64_perm sem_perm;
163 unsigned int sem_otime_high;
164 unsigned int sem_otime;
165 unsigned int sem_ctime_high;
166 unsigned int sem_ctime;
167 u32 sem_nsems;
168 u32 __unused1;
169 u32 __unused2;
170};
171
172struct compat_msqid64_ds {
173 struct compat_ipc64_perm msg_perm;
174 unsigned int msg_stime_high;
175 unsigned int msg_stime;
176 unsigned int msg_rtime_high;
177 unsigned int msg_rtime;
178 unsigned int msg_ctime_high;
179 unsigned int msg_ctime;
180 unsigned int msg_cbytes;
181 unsigned int msg_qnum;
182 unsigned int msg_qbytes;
183 compat_pid_t msg_lspid;
184 compat_pid_t msg_lrpid;
185 unsigned int __unused1;
186 unsigned int __unused2;
187};
188
189struct compat_shmid64_ds {
190 struct compat_ipc64_perm shm_perm;
191 unsigned int shm_atime_high;
192 unsigned int shm_atime;
193 unsigned int shm_dtime_high;
194 unsigned int shm_dtime;
195 unsigned int shm_ctime_high;
196 unsigned int shm_ctime;
197 compat_size_t shm_segsz;
198 compat_pid_t shm_cpid;
199 compat_pid_t shm_lpid;
200 unsigned int shm_nattch;
201 unsigned int __unused1;
202 unsigned int __unused2;
203};
204
205#ifdef CONFIG_COMPAT
206static inline int is_compat_task(void)
207{
208 return test_thread_flag(TIF_32BIT);
209}
210
211static inline bool in_compat_syscall(void)
212{
213 /* Vector 0x110 is LINUX_32BIT_SYSCALL_TRAP */
214 return pt_regs_trap_type(current_pt_regs()) == 0x110;
215}
216#define in_compat_syscall in_compat_syscall
217#endif
218
219#endif /* _ASM_SPARC64_COMPAT_H */