1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2002 Doug Rabson 5 * Copyright (c) 2003 Peter Wemm 6 * All rights reserved. 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 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 #define __ELF_WORD_SIZE 32 34 35 #include <sys/param.h> 36 #include <sys/exec.h> 37 #include <sys/fcntl.h> 38 #include <sys/imgact.h> 39 #include <sys/kernel.h> 40 #include <sys/lock.h> 41 #include <sys/malloc.h> 42 #include <sys/mutex.h> 43 #include <sys/mman.h> 44 #include <sys/namei.h> 45 #include <sys/proc.h> 46 #include <sys/procfs.h> 47 #include <sys/resourcevar.h> 48 #include <sys/systm.h> 49 #include <sys/signalvar.h> 50 #include <sys/stat.h> 51 #include <sys/sx.h> 52 #include <sys/syscall.h> 53 #include <sys/sysctl.h> 54 #include <sys/sysent.h> 55 #include <sys/vnode.h> 56 #include <sys/imgact_elf.h> 57 58 #include <vm/vm.h> 59 #include <vm/vm_kern.h> 60 #include <vm/vm_param.h> 61 #include <vm/pmap.h> 62 #include <vm/vm_map.h> 63 #include <vm/vm_object.h> 64 #include <vm/vm_extern.h> 65 66 #include <compat/freebsd32/freebsd32_signal.h> 67 #include <compat/freebsd32/freebsd32_util.h> 68 #include <compat/freebsd32/freebsd32_proto.h> 69 #include <compat/freebsd32/freebsd32_syscall.h> 70 #include <compat/ia32/ia32_signal.h> 71 #include <machine/frame.h> 72 #include <machine/md_var.h> 73 #include <machine/pcb.h> 74 #include <machine/cpufunc.h> 75 76 CTASSERT(sizeof(struct ia32_mcontext) == 640); 77 CTASSERT(sizeof(struct ia32_ucontext) == 704); 78 CTASSERT(sizeof(struct ia32_sigframe) == 800); 79 CTASSERT(sizeof(struct siginfo32) == 64); 80 #ifdef COMPAT_FREEBSD4 81 CTASSERT(sizeof(struct ia32_mcontext4) == 260); 82 CTASSERT(sizeof(struct ia32_ucontext4) == 324); 83 CTASSERT(sizeof(struct ia32_sigframe4) == 408); 84 #endif 85 86 extern const char *freebsd32_syscallnames[]; 87 88 static SYSCTL_NODE(_compat, OID_AUTO, ia32, CTLFLAG_RW | CTLFLAG_MPSAFE, 0, 89 "ia32 mode"); 90 91 static u_long ia32_maxdsiz = IA32_MAXDSIZ; 92 SYSCTL_ULONG(_compat_ia32, OID_AUTO, maxdsiz, CTLFLAG_RWTUN, &ia32_maxdsiz, 0, ""); 93 u_long ia32_maxssiz = IA32_MAXSSIZ; 94 SYSCTL_ULONG(_compat_ia32, OID_AUTO, maxssiz, CTLFLAG_RWTUN, &ia32_maxssiz, 0, ""); 95 static u_long ia32_maxvmem = IA32_MAXVMEM; 96 SYSCTL_ULONG(_compat_ia32, OID_AUTO, maxvmem, CTLFLAG_RWTUN, &ia32_maxvmem, 0, ""); 97 98 struct sysentvec ia32_freebsd_sysvec = { 99 .sv_size = FREEBSD32_SYS_MAXSYSCALL, 100 .sv_table = freebsd32_sysent, 101 .sv_transtrap = NULL, 102 .sv_fixup = elf32_freebsd_fixup, 103 .sv_sendsig = ia32_sendsig, 104 .sv_sigcode = ia32_sigcode, 105 .sv_szsigcode = &sz_ia32_sigcode, 106 .sv_name = "FreeBSD ELF32", 107 .sv_coredump = elf32_coredump, 108 .sv_elf_core_osabi = ELFOSABI_FREEBSD, 109 .sv_elf_core_abi_vendor = FREEBSD_ABI_VENDOR, 110 .sv_elf_core_prepare_notes = elf32_prepare_notes, 111 .sv_imgact_try = NULL, 112 .sv_minsigstksz = MINSIGSTKSZ, 113 .sv_minuser = FREEBSD32_MINUSER, 114 .sv_maxuser = FREEBSD32_MAXUSER, 115 .sv_usrstack = FREEBSD32_USRSTACK, 116 .sv_psstrings = FREEBSD32_PS_STRINGS, 117 .sv_stackprot = VM_PROT_ALL, 118 .sv_copyout_auxargs = elf32_freebsd_copyout_auxargs, 119 .sv_copyout_strings = freebsd32_copyout_strings, 120 .sv_setregs = ia32_setregs, 121 .sv_fixlimit = ia32_fixlimit, 122 .sv_maxssiz = &ia32_maxssiz, 123 .sv_flags = SV_ABI_FREEBSD | SV_ASLR | SV_IA32 | SV_ILP32 | 124 SV_SHP | SV_TIMEKEEP | SV_RNG_SEED_VER, 125 .sv_set_syscall_retval = ia32_set_syscall_retval, 126 .sv_fetch_syscall_args = ia32_fetch_syscall_args, 127 .sv_syscallnames = freebsd32_syscallnames, 128 .sv_shared_page_base = FREEBSD32_SHAREDPAGE, 129 .sv_shared_page_len = PAGE_SIZE, 130 .sv_schedtail = NULL, 131 .sv_thread_detach = NULL, 132 .sv_trap = NULL, 133 .sv_stackgap = elf32_stackgap, 134 .sv_onexec_old = exec_onexec_old, 135 .sv_onexit = exit_onexit, 136 .sv_set_fork_retval = x86_set_fork_retval, 137 }; 138 INIT_SYSENTVEC(elf_ia32_sysvec, &ia32_freebsd_sysvec); 139 140 static Elf32_Brandinfo ia32_brand_info = { 141 .brand = ELFOSABI_FREEBSD, 142 .machine = EM_386, 143 .compat_3_brand = "FreeBSD", 144 .emul_path = NULL, 145 .interp_path = "/libexec/ld-elf.so.1", 146 .sysvec = &ia32_freebsd_sysvec, 147 .interp_newpath = "/libexec/ld-elf32.so.1", 148 .brand_note = &elf32_freebsd_brandnote, 149 .flags = BI_CAN_EXEC_DYN | BI_BRAND_NOTE 150 }; 151 152 SYSINIT(ia32, SI_SUB_EXEC, SI_ORDER_MIDDLE, 153 (sysinit_cfunc_t) elf32_insert_brand_entry, 154 &ia32_brand_info); 155 156 static Elf32_Brandinfo ia32_brand_oinfo = { 157 .brand = ELFOSABI_FREEBSD, 158 .machine = EM_386, 159 .compat_3_brand = "FreeBSD", 160 .emul_path = NULL, 161 .interp_path = "/usr/libexec/ld-elf.so.1", 162 .sysvec = &ia32_freebsd_sysvec, 163 .interp_newpath = "/libexec/ld-elf32.so.1", 164 .brand_note = &elf32_freebsd_brandnote, 165 .flags = BI_CAN_EXEC_DYN | BI_BRAND_NOTE 166 }; 167 168 SYSINIT(oia32, SI_SUB_EXEC, SI_ORDER_ANY, 169 (sysinit_cfunc_t) elf32_insert_brand_entry, 170 &ia32_brand_oinfo); 171 172 static Elf32_Brandinfo kia32_brand_info = { 173 .brand = ELFOSABI_FREEBSD, 174 .machine = EM_386, 175 .compat_3_brand = "FreeBSD", 176 .emul_path = NULL, 177 .interp_path = "/lib/ld.so.1", 178 .sysvec = &ia32_freebsd_sysvec, 179 .brand_note = &elf32_kfreebsd_brandnote, 180 .flags = BI_CAN_EXEC_DYN | BI_BRAND_NOTE_MANDATORY 181 }; 182 183 SYSINIT(kia32, SI_SUB_EXEC, SI_ORDER_ANY, 184 (sysinit_cfunc_t) elf32_insert_brand_entry, 185 &kia32_brand_info); 186 187 void 188 elf32_dump_thread(struct thread *td, void *dst, size_t *off) 189 { 190 void *buf; 191 size_t len; 192 193 len = 0; 194 if (use_xsave) { 195 if (dst != NULL) { 196 fpugetregs(td); 197 len += elf32_populate_note(NT_X86_XSTATE, 198 get_pcb_user_save_td(td), dst, 199 cpu_max_ext_state_size, &buf); 200 *(uint64_t *)((char *)buf + X86_XSTATE_XCR0_OFFSET) = 201 xsave_mask; 202 } else 203 len += elf32_populate_note(NT_X86_XSTATE, NULL, NULL, 204 cpu_max_ext_state_size, NULL); 205 } 206 *off = len; 207 } 208 209 void 210 ia32_fixlimit(struct rlimit *rl, int which) 211 { 212 213 switch (which) { 214 case RLIMIT_DATA: 215 if (ia32_maxdsiz != 0) { 216 if (rl->rlim_cur > ia32_maxdsiz) 217 rl->rlim_cur = ia32_maxdsiz; 218 if (rl->rlim_max > ia32_maxdsiz) 219 rl->rlim_max = ia32_maxdsiz; 220 } 221 break; 222 case RLIMIT_STACK: 223 if (ia32_maxssiz != 0) { 224 if (rl->rlim_cur > ia32_maxssiz) 225 rl->rlim_cur = ia32_maxssiz; 226 if (rl->rlim_max > ia32_maxssiz) 227 rl->rlim_max = ia32_maxssiz; 228 } 229 break; 230 case RLIMIT_VMEM: 231 if (ia32_maxvmem != 0) { 232 if (rl->rlim_cur > ia32_maxvmem) 233 rl->rlim_cur = ia32_maxvmem; 234 if (rl->rlim_max > ia32_maxvmem) 235 rl->rlim_max = ia32_maxvmem; 236 } 237 break; 238 } 239 } 240