1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1994-1996 Søren Schmidt 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * $FreeBSD$ 28 */ 29 30 #ifndef _I386_LINUX_H_ 31 #define _I386_LINUX_H_ 32 33 #include <sys/signal.h> /* for sigval union */ 34 35 #include <compat/linux/linux.h> 36 #include <i386/linux/linux_syscall.h> 37 38 /* 39 * debugging support 40 */ 41 extern u_char linux_debug_map[]; 42 #define ldebug(name) isclr(linux_debug_map, LINUX_SYS_linux_ ## name) 43 #define ARGS(nm, fmt) "linux(%ld/%ld): "#nm"("fmt")\n", \ 44 (long)td->td_proc->p_pid, (long)td->td_tid 45 #define LMSG(fmt) "linux(%ld/%ld): "fmt"\n", \ 46 (long)td->td_proc->p_pid, (long)td->td_tid 47 #define LINUX_DTRACE linuxulator 48 49 #define LINUX_SHAREDPAGE (VM_MAXUSER_ADDRESS - PAGE_SIZE) 50 #define LINUX_USRSTACK LINUX_SHAREDPAGE 51 52 #define PTRIN(v) (void *)(v) 53 #define PTROUT(v) (l_uintptr_t)(v) 54 55 #define CP(src,dst,fld) do { (dst).fld = (src).fld; } while (0) 56 #define CP2(src,dst,sfld,dfld) do { (dst).dfld = (src).sfld; } while (0) 57 #define PTRIN_CP(src,dst,fld) \ 58 do { (dst).fld = PTRIN((src).fld); } while (0) 59 60 /* 61 * Provide a separate set of types for the Linux types. 62 */ 63 typedef int l_int; 64 typedef int32_t l_long; 65 typedef int64_t l_longlong; 66 typedef short l_short; 67 typedef unsigned int l_uint; 68 typedef uint32_t l_ulong; 69 typedef uint64_t l_ulonglong; 70 typedef unsigned short l_ushort; 71 72 typedef char *l_caddr_t; 73 typedef l_ulong l_uintptr_t; 74 typedef l_long l_clock_t; 75 typedef l_int l_daddr_t; 76 typedef l_ushort l_dev_t; 77 typedef l_uint l_gid_t; 78 typedef l_ushort l_gid16_t; 79 typedef l_ulong l_ino_t; 80 typedef l_int l_key_t; 81 typedef l_longlong l_loff_t; 82 typedef l_ushort l_mode_t; 83 typedef l_long l_off_t; 84 typedef l_int l_pid_t; 85 typedef l_uint l_size_t; 86 typedef l_long l_suseconds_t; 87 typedef l_long l_time_t; 88 typedef l_uint l_uid_t; 89 typedef l_ushort l_uid16_t; 90 typedef l_int l_timer_t; 91 typedef l_int l_mqd_t; 92 typedef l_ulong l_fd_mask; 93 94 typedef struct { 95 l_int val[2]; 96 } l_fsid_t; 97 98 typedef struct { 99 l_time_t tv_sec; 100 l_suseconds_t tv_usec; 101 } l_timeval; 102 103 #define l_fd_set fd_set 104 105 /* 106 * Miscellaneous 107 */ 108 #define LINUX_AT_COUNT 20 /* Count of used aux entry types. 109 * Keep this synchronized with 110 * linux_fixup_elf() code. 111 */ 112 struct l___sysctl_args 113 { 114 l_int *name; 115 l_int nlen; 116 void *oldval; 117 l_size_t *oldlenp; 118 void *newval; 119 l_size_t newlen; 120 l_ulong __spare[4]; 121 }; 122 123 /* Resource limits */ 124 #define LINUX_RLIMIT_CPU 0 125 #define LINUX_RLIMIT_FSIZE 1 126 #define LINUX_RLIMIT_DATA 2 127 #define LINUX_RLIMIT_STACK 3 128 #define LINUX_RLIMIT_CORE 4 129 #define LINUX_RLIMIT_RSS 5 130 #define LINUX_RLIMIT_NPROC 6 131 #define LINUX_RLIMIT_NOFILE 7 132 #define LINUX_RLIMIT_MEMLOCK 8 133 #define LINUX_RLIMIT_AS 9 /* Address space limit */ 134 135 #define LINUX_RLIM_NLIMITS 10 136 137 struct l_rlimit { 138 l_ulong rlim_cur; 139 l_ulong rlim_max; 140 }; 141 142 struct l_mmap_argv { 143 l_uintptr_t addr; 144 l_size_t len; 145 l_int prot; 146 l_int flags; 147 l_int fd; 148 l_off_t pgoff; 149 } __packed; 150 151 /* 152 * stat family of syscalls 153 */ 154 struct l_timespec { 155 l_time_t tv_sec; 156 l_long tv_nsec; 157 }; 158 159 struct l_newstat { 160 l_ushort st_dev; 161 l_ushort __pad1; 162 l_ulong st_ino; 163 l_ushort st_mode; 164 l_ushort st_nlink; 165 l_ushort st_uid; 166 l_ushort st_gid; 167 l_ushort st_rdev; 168 l_ushort __pad2; 169 l_ulong st_size; 170 l_ulong st_blksize; 171 l_ulong st_blocks; 172 struct l_timespec st_atim; 173 struct l_timespec st_mtim; 174 struct l_timespec st_ctim; 175 l_ulong __unused4; 176 l_ulong __unused5; 177 }; 178 179 struct l_stat { 180 l_ushort st_dev; 181 l_ulong st_ino; 182 l_ushort st_mode; 183 l_ushort st_nlink; 184 l_ushort st_uid; 185 l_ushort st_gid; 186 l_ushort st_rdev; 187 l_long st_size; 188 struct l_timespec st_atim; 189 struct l_timespec st_mtim; 190 struct l_timespec st_ctim; 191 l_long st_blksize; 192 l_long st_blocks; 193 l_ulong st_flags; 194 l_ulong st_gen; 195 }; 196 197 struct l_stat64 { 198 l_ushort st_dev; 199 u_char __pad0[10]; 200 l_ulong __st_ino; 201 l_uint st_mode; 202 l_uint st_nlink; 203 l_ulong st_uid; 204 l_ulong st_gid; 205 l_ushort st_rdev; 206 u_char __pad3[10]; 207 l_longlong st_size; 208 l_ulong st_blksize; 209 l_ulong st_blocks; 210 l_ulong __pad4; 211 struct l_timespec st_atim; 212 struct l_timespec st_mtim; 213 struct l_timespec st_ctim; 214 l_ulonglong st_ino; 215 }; 216 217 struct l_statfs64 { 218 l_int f_type; 219 l_int f_bsize; 220 uint64_t f_blocks; 221 uint64_t f_bfree; 222 uint64_t f_bavail; 223 uint64_t f_files; 224 uint64_t f_ffree; 225 l_fsid_t f_fsid; 226 l_int f_namelen; 227 l_int f_frsize; 228 l_int f_flags; 229 l_int f_spare[4]; 230 }; 231 232 #define LINUX_NSIG_WORDS 2 233 234 /* sigaction flags */ 235 #define LINUX_SA_NOCLDSTOP 0x00000001 236 #define LINUX_SA_NOCLDWAIT 0x00000002 237 #define LINUX_SA_SIGINFO 0x00000004 238 #define LINUX_SA_RESTORER 0x04000000 239 #define LINUX_SA_ONSTACK 0x08000000 240 #define LINUX_SA_RESTART 0x10000000 241 #define LINUX_SA_INTERRUPT 0x20000000 242 #define LINUX_SA_NOMASK 0x40000000 243 #define LINUX_SA_ONESHOT 0x80000000 244 245 /* sigprocmask actions */ 246 #define LINUX_SIG_BLOCK 0 247 #define LINUX_SIG_UNBLOCK 1 248 #define LINUX_SIG_SETMASK 2 249 250 /* sigaltstack */ 251 #define LINUX_MINSIGSTKSZ 2048 252 253 typedef void (*l_handler_t)(l_int); 254 typedef l_ulong l_osigset_t; 255 256 typedef struct { 257 l_handler_t lsa_handler; 258 l_osigset_t lsa_mask; 259 l_ulong lsa_flags; 260 void (*lsa_restorer)(void); 261 } l_osigaction_t; 262 263 typedef struct { 264 l_handler_t lsa_handler; 265 l_ulong lsa_flags; 266 void (*lsa_restorer)(void); 267 l_sigset_t lsa_mask; 268 } l_sigaction_t; 269 270 typedef struct { 271 void *ss_sp; 272 l_int ss_flags; 273 l_size_t ss_size; 274 } l_stack_t; 275 276 /* The Linux sigcontext, pretty much a standard 386 trapframe. */ 277 struct l_sigcontext { 278 l_int sc_gs; 279 l_int sc_fs; 280 l_int sc_es; 281 l_int sc_ds; 282 l_int sc_edi; 283 l_int sc_esi; 284 l_int sc_ebp; 285 l_int sc_esp; 286 l_int sc_ebx; 287 l_int sc_edx; 288 l_int sc_ecx; 289 l_int sc_eax; 290 l_int sc_trapno; 291 l_int sc_err; 292 l_int sc_eip; 293 l_int sc_cs; 294 l_int sc_eflags; 295 l_int sc_esp_at_signal; 296 l_int sc_ss; 297 l_int sc_387; 298 l_int sc_mask; 299 l_int sc_cr2; 300 }; 301 302 struct l_ucontext { 303 l_ulong uc_flags; 304 void *uc_link; 305 l_stack_t uc_stack; 306 struct l_sigcontext uc_mcontext; 307 l_sigset_t uc_sigmask; 308 }; 309 310 #define LINUX_SI_MAX_SIZE 128 311 #define LINUX_SI_PAD_SIZE ((LINUX_SI_MAX_SIZE/sizeof(l_int)) - 3) 312 313 typedef union l_sigval { 314 l_int sival_int; 315 l_uintptr_t sival_ptr; 316 } l_sigval_t; 317 318 typedef struct l_siginfo { 319 l_int lsi_signo; 320 l_int lsi_errno; 321 l_int lsi_code; 322 union { 323 l_int _pad[LINUX_SI_PAD_SIZE]; 324 325 struct { 326 l_pid_t _pid; 327 l_uid_t _uid; 328 } _kill; 329 330 struct { 331 l_timer_t _tid; 332 l_int _overrun; 333 char _pad[sizeof(l_uid_t) - sizeof(l_int)]; 334 l_sigval_t _sigval; 335 l_int _sys_private; 336 } _timer; 337 338 struct { 339 l_pid_t _pid; /* sender's pid */ 340 l_uid_t _uid; /* sender's uid */ 341 l_sigval_t _sigval; 342 } _rt; 343 344 struct { 345 l_pid_t _pid; /* which child */ 346 l_uid_t _uid; /* sender's uid */ 347 l_int _status; /* exit code */ 348 l_clock_t _utime; 349 l_clock_t _stime; 350 } _sigchld; 351 352 struct { 353 l_uintptr_t _addr; /* Faulting insn/memory ref. */ 354 } _sigfault; 355 356 struct { 357 l_long _band; /* POLL_IN,POLL_OUT,POLL_MSG */ 358 l_int _fd; 359 } _sigpoll; 360 } _sifields; 361 } l_siginfo_t; 362 363 #define lsi_pid _sifields._kill._pid 364 #define lsi_uid _sifields._kill._uid 365 #define lsi_tid _sifields._timer._tid 366 #define lsi_overrun _sifields._timer._overrun 367 #define lsi_sys_private _sifields._timer._sys_private 368 #define lsi_status _sifields._sigchld._status 369 #define lsi_utime _sifields._sigchld._utime 370 #define lsi_stime _sifields._sigchld._stime 371 #define lsi_value _sifields._rt._sigval 372 #define lsi_int _sifields._rt._sigval.sival_int 373 #define lsi_ptr _sifields._rt._sigval.sival_ptr 374 #define lsi_addr _sifields._sigfault._addr 375 #define lsi_band _sifields._sigpoll._band 376 #define lsi_fd _sifields._sigpoll._fd 377 378 struct l_fpreg { 379 u_int16_t significand[4]; 380 u_int16_t exponent; 381 }; 382 383 struct l_fpxreg { 384 u_int16_t significand[4]; 385 u_int16_t exponent; 386 u_int16_t padding[3]; 387 }; 388 389 struct l_xmmreg { 390 u_int32_t element[4]; 391 }; 392 393 struct l_fpstate { 394 /* Regular FPU environment */ 395 u_int32_t cw; 396 u_int32_t sw; 397 u_int32_t tag; 398 u_int32_t ipoff; 399 u_int32_t cssel; 400 u_int32_t dataoff; 401 u_int32_t datasel; 402 struct l_fpreg _st[8]; 403 u_int16_t status; 404 u_int16_t magic; /* 0xffff = regular FPU data */ 405 406 /* FXSR FPU environment */ 407 u_int32_t _fxsr_env[6]; /* env is ignored. */ 408 u_int32_t mxcsr; 409 u_int32_t reserved; 410 struct l_fpxreg _fxsr_st[8]; /* reg data is ignored. */ 411 struct l_xmmreg _xmm[8]; 412 u_int32_t padding[56]; 413 }; 414 415 /* 416 * We make the stack look like Linux expects it when calling a signal 417 * handler, but use the BSD way of calling the handler and sigreturn(). 418 * This means that we need to pass the pointer to the handler too. 419 * It is appended to the frame to not interfere with the rest of it. 420 */ 421 struct l_sigframe { 422 l_int sf_sig; 423 struct l_sigcontext sf_sc; 424 struct l_fpstate sf_fpstate; 425 l_uint sf_extramask[LINUX_NSIG_WORDS-1]; 426 l_handler_t sf_handler; 427 }; 428 429 struct l_rt_sigframe { 430 l_int sf_sig; 431 l_siginfo_t *sf_siginfo; 432 struct l_ucontext *sf_ucontext; 433 l_siginfo_t sf_si; 434 struct l_ucontext sf_sc; 435 l_handler_t sf_handler; 436 }; 437 438 extern struct sysentvec linux_sysvec; 439 440 /* 441 * arch specific open/fcntl flags 442 */ 443 #define LINUX_F_GETLK64 12 444 #define LINUX_F_SETLK64 13 445 #define LINUX_F_SETLKW64 14 446 447 union l_semun { 448 l_int val; 449 struct l_semid_ds *buf; 450 l_ushort *array; 451 struct l_seminfo *__buf; 452 void *__pad; 453 }; 454 455 struct l_sockaddr { 456 l_ushort sa_family; 457 char sa_data[14]; 458 }; 459 460 struct l_ifmap { 461 l_ulong mem_start; 462 l_ulong mem_end; 463 l_ushort base_addr; 464 u_char irq; 465 u_char dma; 466 u_char port; 467 }; 468 469 #define LINUX_IFHWADDRLEN 6 470 #define LINUX_IFNAMSIZ 16 471 472 struct l_ifreq { 473 union { 474 char ifrn_name[LINUX_IFNAMSIZ]; 475 } ifr_ifrn; 476 477 union { 478 struct l_sockaddr ifru_addr; 479 struct l_sockaddr ifru_dstaddr; 480 struct l_sockaddr ifru_broadaddr; 481 struct l_sockaddr ifru_netmask; 482 struct l_sockaddr ifru_hwaddr; 483 l_short ifru_flags[1]; 484 l_int ifru_ivalue; 485 l_int ifru_mtu; 486 struct l_ifmap ifru_map; 487 char ifru_slave[LINUX_IFNAMSIZ]; 488 l_caddr_t ifru_data; 489 } ifr_ifru; 490 }; 491 492 #define ifr_name ifr_ifrn.ifrn_name /* Interface name */ 493 #define ifr_hwaddr ifr_ifru.ifru_hwaddr /* MAC address */ 494 #define ifr_ifindex ifr_ifru.ifru_ivalue /* Interface index */ 495 496 /* 497 * poll() 498 */ 499 #define LINUX_POLLIN 0x0001 500 #define LINUX_POLLPRI 0x0002 501 #define LINUX_POLLOUT 0x0004 502 #define LINUX_POLLERR 0x0008 503 #define LINUX_POLLHUP 0x0010 504 #define LINUX_POLLNVAL 0x0020 505 #define LINUX_POLLRDNORM 0x0040 506 #define LINUX_POLLRDBAND 0x0080 507 #define LINUX_POLLWRNORM 0x0100 508 #define LINUX_POLLWRBAND 0x0200 509 #define LINUX_POLLMSG 0x0400 510 511 struct l_pollfd { 512 l_int fd; 513 l_short events; 514 l_short revents; 515 }; 516 517 struct l_user_desc { 518 l_uint entry_number; 519 l_uint base_addr; 520 l_uint limit; 521 l_uint seg_32bit:1; 522 l_uint contents:2; 523 l_uint read_exec_only:1; 524 l_uint limit_in_pages:1; 525 l_uint seg_not_present:1; 526 l_uint useable:1; 527 }; 528 529 struct l_desc_struct { 530 unsigned long a, b; 531 }; 532 533 534 #define LINUX_LOWERWORD 0x0000ffff 535 536 /* 537 * Macros which does the same thing as those in Linux include/asm-um/ldt-i386.h. 538 * These convert Linux user space descriptor to machine one. 539 */ 540 #define LINUX_LDT_entry_a(info) \ 541 ((((info)->base_addr & LINUX_LOWERWORD) << 16) | \ 542 ((info)->limit & LINUX_LOWERWORD)) 543 544 #define LINUX_ENTRY_B_READ_EXEC_ONLY 9 545 #define LINUX_ENTRY_B_CONTENTS 10 546 #define LINUX_ENTRY_B_SEG_NOT_PRESENT 15 547 #define LINUX_ENTRY_B_BASE_ADDR 16 548 #define LINUX_ENTRY_B_USEABLE 20 549 #define LINUX_ENTRY_B_SEG32BIT 22 550 #define LINUX_ENTRY_B_LIMIT 23 551 552 #define LINUX_LDT_entry_b(info) \ 553 (((info)->base_addr & 0xff000000) | \ 554 ((info)->limit & 0xf0000) | \ 555 ((info)->contents << LINUX_ENTRY_B_CONTENTS) | \ 556 (((info)->seg_not_present == 0) << LINUX_ENTRY_B_SEG_NOT_PRESENT) | \ 557 (((info)->base_addr & 0x00ff0000) >> LINUX_ENTRY_B_BASE_ADDR) | \ 558 (((info)->read_exec_only == 0) << LINUX_ENTRY_B_READ_EXEC_ONLY) | \ 559 ((info)->seg_32bit << LINUX_ENTRY_B_SEG32BIT) | \ 560 ((info)->useable << LINUX_ENTRY_B_USEABLE) | \ 561 ((info)->limit_in_pages << LINUX_ENTRY_B_LIMIT) | 0x7000) 562 563 #define LINUX_LDT_empty(info) \ 564 ((info)->base_addr == 0 && \ 565 (info)->limit == 0 && \ 566 (info)->contents == 0 && \ 567 (info)->seg_not_present == 1 && \ 568 (info)->read_exec_only == 1 && \ 569 (info)->seg_32bit == 0 && \ 570 (info)->limit_in_pages == 0 && \ 571 (info)->useable == 0) 572 573 /* 574 * Macros for converting segments. 575 * They do the same as those in arch/i386/kernel/process.c in Linux. 576 */ 577 #define LINUX_GET_BASE(desc) \ 578 ((((desc)->a >> 16) & LINUX_LOWERWORD) | \ 579 (((desc)->b << 16) & 0x00ff0000) | \ 580 ((desc)->b & 0xff000000)) 581 582 #define LINUX_GET_LIMIT(desc) \ 583 (((desc)->a & LINUX_LOWERWORD) | \ 584 ((desc)->b & 0xf0000)) 585 586 #define LINUX_GET_32BIT(desc) \ 587 (((desc)->b >> LINUX_ENTRY_B_SEG32BIT) & 1) 588 #define LINUX_GET_CONTENTS(desc) \ 589 (((desc)->b >> LINUX_ENTRY_B_CONTENTS) & 3) 590 #define LINUX_GET_WRITABLE(desc) \ 591 (((desc)->b >> LINUX_ENTRY_B_READ_EXEC_ONLY) & 1) 592 #define LINUX_GET_LIMIT_PAGES(desc) \ 593 (((desc)->b >> LINUX_ENTRY_B_LIMIT) & 1) 594 #define LINUX_GET_PRESENT(desc) \ 595 (((desc)->b >> LINUX_ENTRY_B_SEG_NOT_PRESENT) & 1) 596 #define LINUX_GET_USEABLE(desc) \ 597 (((desc)->b >> LINUX_ENTRY_B_USEABLE) & 1) 598 599 #define linux_copyout_rusage(r, u) copyout(r, u, sizeof(*r)) 600 601 /* robust futexes */ 602 struct linux_robust_list { 603 struct linux_robust_list *next; 604 }; 605 606 struct linux_robust_list_head { 607 struct linux_robust_list list; 608 l_long futex_offset; 609 struct linux_robust_list *pending_list; 610 }; 611 612 #endif /* !_I386_LINUX_H_ */ 613