1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_COMPAT_H 3 #define _ASM_COMPAT_H 4 /* 5 * Architecture specific compatibility types 6 */ 7 #include <linux/thread_info.h> 8 #include <linux/types.h> 9 #include <asm/page.h> 10 #include <asm/ptrace.h> 11 12 #define COMPAT_USER_HZ 100 13 #define COMPAT_UTS_MACHINE "mips\0\0\0" 14 15 typedef u32 compat_size_t; 16 typedef s32 compat_ssize_t; 17 typedef s32 compat_time_t; 18 typedef s32 compat_clock_t; 19 typedef s32 compat_suseconds_t; 20 21 typedef s32 compat_pid_t; 22 typedef s32 __compat_uid_t; 23 typedef s32 __compat_gid_t; 24 typedef __compat_uid_t __compat_uid32_t; 25 typedef __compat_gid_t __compat_gid32_t; 26 typedef u32 compat_mode_t; 27 typedef u32 compat_ino_t; 28 typedef u32 compat_dev_t; 29 typedef s32 compat_off_t; 30 typedef s64 compat_loff_t; 31 typedef u32 compat_nlink_t; 32 typedef s32 compat_ipc_pid_t; 33 typedef s32 compat_daddr_t; 34 typedef s32 compat_caddr_t; 35 typedef struct { 36 s32 val[2]; 37 } compat_fsid_t; 38 typedef s32 compat_timer_t; 39 typedef s32 compat_key_t; 40 41 typedef s32 compat_int_t; 42 typedef s32 compat_long_t; 43 typedef s64 compat_s64; 44 typedef u32 compat_uint_t; 45 typedef u32 compat_ulong_t; 46 typedef u64 compat_u64; 47 typedef u32 compat_uptr_t; 48 49 struct compat_timespec { 50 compat_time_t tv_sec; 51 s32 tv_nsec; 52 }; 53 54 struct compat_timeval { 55 compat_time_t tv_sec; 56 s32 tv_usec; 57 }; 58 59 struct 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; 65 __compat_uid_t st_uid; 66 __compat_gid_t st_gid; 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 82 struct 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 97 struct 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 105 struct 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; 116 int f_flags; 117 int f_spare[5]; 118 }; 119 120 #define COMPAT_RLIM_INFINITY 0x7fffffffUL 121 122 typedef u32 compat_old_sigset_t; /* at least 32 bits */ 123 124 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */ 125 #define _COMPAT_NSIG_BPW 32 126 127 typedef u32 compat_sigset_word; 128 129 #define COMPAT_OFF_T_MAX 0x7fffffff 130 131 /* 132 * A pointer passed in from user mode. This should not 133 * be used for syscall parameters, just declare them 134 * as pointers because the syscall entry code will have 135 * appropriately converted them already. 136 */ 137 138 static inline void __user *compat_ptr(compat_uptr_t uptr) 139 { 140 /* cast to a __user pointer via "unsigned long" makes sparse happy */ 141 return (void __user *)(unsigned long)(long)uptr; 142 } 143 144 static inline compat_uptr_t ptr_to_compat(void __user *uptr) 145 { 146 return (u32)(unsigned long)uptr; 147 } 148 149 static inline void __user *arch_compat_alloc_user_space(long len) 150 { 151 struct pt_regs *regs = (struct pt_regs *) 152 ((unsigned long) current_thread_info() + THREAD_SIZE - 32) - 1; 153 154 return (void __user *) (regs->regs[29] - len); 155 } 156 157 struct compat_ipc64_perm { 158 compat_key_t key; 159 __compat_uid32_t uid; 160 __compat_gid32_t gid; 161 __compat_uid32_t cuid; 162 __compat_gid32_t cgid; 163 compat_mode_t mode; 164 unsigned short seq; 165 unsigned short __pad2; 166 compat_ulong_t __unused1; 167 compat_ulong_t __unused2; 168 }; 169 170 struct compat_semid64_ds { 171 struct compat_ipc64_perm sem_perm; 172 compat_time_t sem_otime; 173 compat_time_t sem_ctime; 174 compat_ulong_t sem_nsems; 175 compat_ulong_t __unused1; 176 compat_ulong_t __unused2; 177 }; 178 179 struct compat_msqid64_ds { 180 struct compat_ipc64_perm msg_perm; 181 #ifndef CONFIG_CPU_LITTLE_ENDIAN 182 compat_ulong_t __unused1; 183 #endif 184 compat_time_t msg_stime; 185 #ifdef CONFIG_CPU_LITTLE_ENDIAN 186 compat_ulong_t __unused1; 187 #endif 188 #ifndef CONFIG_CPU_LITTLE_ENDIAN 189 compat_ulong_t __unused2; 190 #endif 191 compat_time_t msg_rtime; 192 #ifdef CONFIG_CPU_LITTLE_ENDIAN 193 compat_ulong_t __unused2; 194 #endif 195 #ifndef CONFIG_CPU_LITTLE_ENDIAN 196 compat_ulong_t __unused3; 197 #endif 198 compat_time_t msg_ctime; 199 #ifdef CONFIG_CPU_LITTLE_ENDIAN 200 compat_ulong_t __unused3; 201 #endif 202 compat_ulong_t msg_cbytes; 203 compat_ulong_t msg_qnum; 204 compat_ulong_t msg_qbytes; 205 compat_pid_t msg_lspid; 206 compat_pid_t msg_lrpid; 207 compat_ulong_t __unused4; 208 compat_ulong_t __unused5; 209 }; 210 211 struct compat_shmid64_ds { 212 struct compat_ipc64_perm shm_perm; 213 compat_size_t shm_segsz; 214 compat_time_t shm_atime; 215 compat_time_t shm_dtime; 216 compat_time_t shm_ctime; 217 compat_pid_t shm_cpid; 218 compat_pid_t shm_lpid; 219 compat_ulong_t shm_nattch; 220 compat_ulong_t __unused1; 221 compat_ulong_t __unused2; 222 }; 223 224 /* MIPS has unusual order of fields in stack_t */ 225 typedef struct compat_sigaltstack { 226 compat_uptr_t ss_sp; 227 compat_size_t ss_size; 228 int ss_flags; 229 } compat_stack_t; 230 #define compat_sigaltstack compat_sigaltstack 231 232 static inline int is_compat_task(void) 233 { 234 return test_thread_flag(TIF_32BIT_ADDR); 235 } 236 237 #endif /* _ASM_COMPAT_H */ 238