1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * All rights reserved. 6 * Copyright (c) 2013 Dmitry Chagin <dchagin@FreeBSD.org> 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 32 #ifndef _AMD64_LINUX_H_ 33 #define _AMD64_LINUX_H_ 34 35 #include <sys/abi_compat.h> 36 37 #include <compat/linux/linux.h> 38 #include <amd64/linux/linux_syscall.h> 39 40 #define LINUX_LEGACY_SYSCALLS 41 42 #define LINUX_DTRACE linuxulator 43 44 /* 45 * Provide a separate set of types for the Linux types. 46 */ 47 typedef int32_t l_int; 48 typedef int64_t l_long; 49 typedef int16_t l_short; 50 typedef uint32_t l_uint; 51 typedef uint64_t l_ulong; 52 typedef uint16_t l_ushort; 53 54 typedef l_ulong l_uintptr_t; 55 typedef l_long l_clock_t; 56 typedef l_int l_daddr_t; 57 typedef l_ulong l_dev_t; 58 typedef l_uint l_gid_t; 59 typedef l_ushort l_gid16_t; 60 typedef l_uint l_uid_t; 61 typedef l_ushort l_uid16_t; 62 typedef l_ulong l_ino_t; 63 typedef l_int l_key_t; 64 typedef l_long l_loff_t; 65 typedef l_uint l_mode_t; 66 typedef l_long l_off_t; 67 typedef l_int l_pid_t; 68 typedef l_ulong l_size_t; 69 typedef l_long l_ssize_t; 70 typedef l_long l_suseconds_t; 71 typedef l_long l_time_t; 72 typedef l_int l_timer_t; 73 typedef l_int l_mqd_t; 74 typedef l_size_t l_socklen_t; 75 typedef l_ulong l_fd_mask; 76 77 #include <compat/linux/linux_siginfo.h> 78 79 typedef struct { 80 l_int val[2]; 81 } l_fsid_t; 82 83 typedef struct { 84 l_time_t tv_sec; 85 l_suseconds_t tv_usec; 86 } l_timeval; 87 88 #define l_fd_set fd_set 89 90 /* 91 * Miscellaneous 92 */ 93 #define LINUX_AT_COUNT 21 /* Count of used aux entry types. 94 * Keep this synchronized with 95 * linux_copyout_auxargs() code. 96 */ 97 98 struct l___sysctl_args 99 { 100 l_uintptr_t name; 101 l_int nlen; 102 l_uintptr_t oldval; 103 l_uintptr_t oldlenp; 104 l_uintptr_t newval; 105 l_size_t newlen; 106 l_ulong __spare[4]; 107 }; 108 109 /* Resource limits */ 110 #define LINUX_RLIMIT_CPU 0 111 #define LINUX_RLIMIT_FSIZE 1 112 #define LINUX_RLIMIT_DATA 2 113 #define LINUX_RLIMIT_STACK 3 114 #define LINUX_RLIMIT_CORE 4 115 #define LINUX_RLIMIT_RSS 5 116 #define LINUX_RLIMIT_NPROC 6 117 #define LINUX_RLIMIT_NOFILE 7 118 #define LINUX_RLIMIT_MEMLOCK 8 119 #define LINUX_RLIMIT_AS 9 /* Address space limit */ 120 121 #define LINUX_RLIM_NLIMITS 10 122 123 struct l_rlimit { 124 l_ulong rlim_cur; 125 l_ulong rlim_max; 126 }; 127 128 /* 129 * stat family of syscalls 130 */ 131 struct l_timespec { 132 l_time_t tv_sec; 133 l_long tv_nsec; 134 }; 135 136 struct l_newstat { 137 l_dev_t st_dev; 138 l_ino_t st_ino; 139 l_ulong st_nlink; 140 l_uint st_mode; 141 l_uid_t st_uid; 142 l_gid_t st_gid; 143 l_uint __st_pad1; 144 l_dev_t st_rdev; 145 l_off_t st_size; 146 l_long st_blksize; 147 l_long st_blocks; 148 struct l_timespec st_atim; 149 struct l_timespec st_mtim; 150 struct l_timespec st_ctim; 151 l_long __unused1; 152 l_long __unused2; 153 l_long __unused3; 154 }; 155 156 /* sigaction flags */ 157 #define LINUX_SA_NOCLDSTOP 0x00000001 158 #define LINUX_SA_NOCLDWAIT 0x00000002 159 #define LINUX_SA_SIGINFO 0x00000004 160 #define LINUX_SA_RESTORER 0x04000000 161 #define LINUX_SA_ONSTACK 0x08000000 162 #define LINUX_SA_RESTART 0x10000000 163 #define LINUX_SA_INTERRUPT 0x20000000 164 #define LINUX_SA_NOMASK 0x40000000 165 #define LINUX_SA_ONESHOT 0x80000000 166 167 /* sigaltstack */ 168 #define LINUX_MINSIGSTKSZ 2048 169 170 typedef void (*l_handler_t)(l_int); 171 172 typedef struct { 173 l_handler_t lsa_handler; 174 l_ulong lsa_flags; 175 l_uintptr_t lsa_restorer; 176 l_sigset_t lsa_mask; 177 } l_sigaction_t; 178 179 typedef struct { 180 l_uintptr_t ss_sp; 181 l_int ss_flags; 182 l_size_t ss_size; 183 } l_stack_t; 184 185 /* 186 * mount flags 187 */ 188 #define LINUX_MS_RDONLY 0x0001 189 #define LINUX_MS_NOSUID 0x0002 190 #define LINUX_MS_NODEV 0x0004 191 #define LINUX_MS_NOEXEC 0x0008 192 #define LINUX_MS_REMOUNT 0x0020 193 194 /* 195 * SystemV IPC defines 196 */ 197 #define LINUX_IPC_RMID 0 198 #define LINUX_IPC_SET 1 199 #define LINUX_IPC_STAT 2 200 #define LINUX_IPC_INFO 3 201 202 #define LINUX_SHM_LOCK 11 203 #define LINUX_SHM_UNLOCK 12 204 #define LINUX_SHM_STAT 13 205 #define LINUX_SHM_INFO 14 206 207 #define LINUX_SHM_RDONLY 0x1000 208 #define LINUX_SHM_RND 0x2000 209 #define LINUX_SHM_REMAP 0x4000 210 211 /* semctl commands */ 212 #define LINUX_GETPID 11 213 #define LINUX_GETVAL 12 214 #define LINUX_GETALL 13 215 #define LINUX_GETNCNT 14 216 #define LINUX_GETZCNT 15 217 #define LINUX_SETVAL 16 218 #define LINUX_SETALL 17 219 #define LINUX_SEM_STAT 18 220 #define LINUX_SEM_INFO 19 221 222 union l_semun { 223 l_int val; 224 l_uintptr_t buf; 225 l_uintptr_t array; 226 l_uintptr_t __buf; 227 l_uintptr_t __pad; 228 }; 229 230 #define LINUX_ARCH_SET_GS 0x1001 231 #define LINUX_ARCH_SET_FS 0x1002 232 #define LINUX_ARCH_GET_FS 0x1003 233 #define LINUX_ARCH_GET_GS 0x1004 234 #define LINUX_ARCH_CET_STATUS 0x3001 235 236 #define linux_copyout_rusage(r, u) copyout(r, u, sizeof(*r)) 237 238 /* This corresponds to 'struct user_regs_struct' in Linux. */ 239 struct linux_pt_regset { 240 l_ulong r15; 241 l_ulong r14; 242 l_ulong r13; 243 l_ulong r12; 244 l_ulong rbp; 245 l_ulong rbx; 246 l_ulong r11; 247 l_ulong r10; 248 l_ulong r9; 249 l_ulong r8; 250 l_ulong rax; 251 l_ulong rcx; 252 l_ulong rdx; 253 l_ulong rsi; 254 l_ulong rdi; 255 l_ulong orig_rax; 256 l_ulong rip; 257 l_ulong cs; 258 l_ulong eflags; 259 l_ulong rsp; 260 l_ulong ss; 261 l_ulong fs_base; 262 l_ulong gs_base; 263 l_ulong ds; 264 l_ulong es; 265 l_ulong fs; 266 l_ulong gs; 267 }; 268 269 #ifdef _KERNEL 270 struct reg; 271 struct syscall_info; 272 273 void bsd_to_linux_regset(const struct reg *b_reg, 274 struct linux_pt_regset *l_regset); 275 void linux_to_bsd_regset(struct reg *b_reg, 276 const struct linux_pt_regset *l_regset); 277 void linux_ptrace_get_syscall_info_machdep(const struct reg *reg, 278 struct syscall_info *si); 279 int linux_ptrace_getregs_machdep(struct thread *td, pid_t pid, 280 struct linux_pt_regset *l_regset); 281 #endif /* _KERNEL */ 282 283 #endif /* !_AMD64_LINUX_H_ */ 284