xref: /freebsd/sys/amd64/linux32/linux32_sysvec.c (revision 6e481f83f7ff59b62539d608ba87818588fd5797)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2004 Tim J. Robbins
5  * Copyright (c) 2003 Peter Wemm
6  * Copyright (c) 2002 Doug Rabson
7  * Copyright (c) 1998-1999 Andrew Gallatin
8  * Copyright (c) 1994-1996 Søren Schmidt
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer
16  *    in this position and unchanged.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. The name of the author may not be used to endorse or promote products
21  *    derived from this software without specific prior written permission
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37 #include "opt_compat.h"
38 
39 #ifndef COMPAT_FREEBSD32
40 #error "Unable to compile Linux-emulator due to missing COMPAT_FREEBSD32 option!"
41 #endif
42 
43 #define	__ELF_WORD_SIZE	32
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/exec.h>
48 #include <sys/fcntl.h>
49 #include <sys/imgact.h>
50 #include <sys/imgact_elf.h>
51 #include <sys/kernel.h>
52 #include <sys/lock.h>
53 #include <sys/malloc.h>
54 #include <sys/module.h>
55 #include <sys/mutex.h>
56 #include <sys/proc.h>
57 #include <sys/resourcevar.h>
58 #include <sys/signalvar.h>
59 #include <sys/sysctl.h>
60 #include <sys/syscallsubr.h>
61 #include <sys/sysent.h>
62 #include <sys/sysproto.h>
63 #include <sys/vnode.h>
64 #include <sys/eventhandler.h>
65 
66 #include <vm/vm.h>
67 #include <vm/pmap.h>
68 #include <vm/vm_extern.h>
69 #include <vm/vm_map.h>
70 #include <vm/vm_object.h>
71 #include <vm/vm_page.h>
72 #include <vm/vm_param.h>
73 
74 #include <machine/cpu.h>
75 #include <machine/md_var.h>
76 #include <machine/pcb.h>
77 #include <machine/specialreg.h>
78 
79 #include <amd64/linux32/linux.h>
80 #include <amd64/linux32/linux32_proto.h>
81 #include <compat/linux/linux_emul.h>
82 #include <compat/linux/linux_futex.h>
83 #include <compat/linux/linux_ioctl.h>
84 #include <compat/linux/linux_mib.h>
85 #include <compat/linux/linux_misc.h>
86 #include <compat/linux/linux_signal.h>
87 #include <compat/linux/linux_util.h>
88 #include <compat/linux/linux_vdso.h>
89 
90 MODULE_VERSION(linux, 1);
91 
92 #define	AUXARGS_ENTRY_32(pos, id, val)	\
93 	do {				\
94 		suword32(pos++, id);	\
95 		suword32(pos++, val);	\
96 	} while (0)
97 
98 #if BYTE_ORDER == LITTLE_ENDIAN
99 #define SHELLMAGIC      0x2123 /* #! */
100 #else
101 #define SHELLMAGIC      0x2321
102 #endif
103 
104 /*
105  * Allow the sendsig functions to use the ldebug() facility even though they
106  * are not syscalls themselves.  Map them to syscall 0.  This is slightly less
107  * bogus than using ldebug(sigreturn).
108  */
109 #define	LINUX32_SYS_linux_rt_sendsig	0
110 #define	LINUX32_SYS_linux_sendsig	0
111 
112 const char *linux_kplatform;
113 static int linux_szsigcode;
114 static vm_object_t linux_shared_page_obj;
115 static char *linux_shared_page_mapping;
116 extern char _binary_linux32_locore_o_start;
117 extern char _binary_linux32_locore_o_end;
118 
119 extern struct sysent linux32_sysent[LINUX32_SYS_MAXSYSCALL];
120 
121 SET_DECLARE(linux_ioctl_handler_set, struct linux_ioctl_handler);
122 
123 static int	elf_linux_fixup(register_t **stack_base,
124 		    struct image_params *iparams);
125 static register_t *linux_copyout_strings(struct image_params *imgp);
126 static void     linux_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask);
127 static void	exec_linux_setregs(struct thread *td,
128 				   struct image_params *imgp, u_long stack);
129 static void	linux32_fixlimit(struct rlimit *rl, int which);
130 static bool	linux32_trans_osrel(const Elf_Note *note, int32_t *osrel);
131 static void	linux_vdso_install(void *param);
132 static void	linux_vdso_deinstall(void *param);
133 
134 #define LINUX_T_UNKNOWN  255
135 static int _bsd_to_linux_trapcode[] = {
136 	LINUX_T_UNKNOWN,	/* 0 */
137 	6,			/* 1  T_PRIVINFLT */
138 	LINUX_T_UNKNOWN,	/* 2 */
139 	3,			/* 3  T_BPTFLT */
140 	LINUX_T_UNKNOWN,	/* 4 */
141 	LINUX_T_UNKNOWN,	/* 5 */
142 	16,			/* 6  T_ARITHTRAP */
143 	254,			/* 7  T_ASTFLT */
144 	LINUX_T_UNKNOWN,	/* 8 */
145 	13,			/* 9  T_PROTFLT */
146 	1,			/* 10 T_TRCTRAP */
147 	LINUX_T_UNKNOWN,	/* 11 */
148 	14,			/* 12 T_PAGEFLT */
149 	LINUX_T_UNKNOWN,	/* 13 */
150 	17,			/* 14 T_ALIGNFLT */
151 	LINUX_T_UNKNOWN,	/* 15 */
152 	LINUX_T_UNKNOWN,	/* 16 */
153 	LINUX_T_UNKNOWN,	/* 17 */
154 	0,			/* 18 T_DIVIDE */
155 	2,			/* 19 T_NMI */
156 	4,			/* 20 T_OFLOW */
157 	5,			/* 21 T_BOUND */
158 	7,			/* 22 T_DNA */
159 	8,			/* 23 T_DOUBLEFLT */
160 	9,			/* 24 T_FPOPFLT */
161 	10,			/* 25 T_TSSFLT */
162 	11,			/* 26 T_SEGNPFLT */
163 	12,			/* 27 T_STKFLT */
164 	18,			/* 28 T_MCHK */
165 	19,			/* 29 T_XMMFLT */
166 	15			/* 30 T_RESERVED */
167 };
168 #define bsd_to_linux_trapcode(code) \
169     ((code)<nitems(_bsd_to_linux_trapcode)? \
170      _bsd_to_linux_trapcode[(code)]: \
171      LINUX_T_UNKNOWN)
172 
173 struct linux32_ps_strings {
174 	u_int32_t ps_argvstr;	/* first of 0 or more argument strings */
175 	u_int ps_nargvstr;	/* the number of argument strings */
176 	u_int32_t ps_envstr;	/* first of 0 or more environment strings */
177 	u_int ps_nenvstr;	/* the number of environment strings */
178 };
179 
180 LINUX_VDSO_SYM_INTPTR(linux32_sigcode);
181 LINUX_VDSO_SYM_INTPTR(linux32_rt_sigcode);
182 LINUX_VDSO_SYM_INTPTR(linux32_vsyscall);
183 LINUX_VDSO_SYM_CHAR(linux_platform);
184 
185 /*
186  * If FreeBSD & Linux have a difference of opinion about what a trap
187  * means, deal with it here.
188  *
189  * MPSAFE
190  */
191 static int
192 translate_traps(int signal, int trap_code)
193 {
194 	if (signal != SIGBUS)
195 		return signal;
196 	switch (trap_code) {
197 	case T_PROTFLT:
198 	case T_TSSFLT:
199 	case T_DOUBLEFLT:
200 	case T_PAGEFLT:
201 		return SIGSEGV;
202 	default:
203 		return signal;
204 	}
205 }
206 
207 static int
208 elf_linux_fixup(register_t **stack_base, struct image_params *imgp)
209 {
210 	Elf32_Auxargs *args;
211 	Elf32_Addr *base;
212 	Elf32_Addr *pos;
213 	struct linux32_ps_strings *arginfo;
214 	int issetugid;
215 
216 	arginfo = (struct linux32_ps_strings *)LINUX32_PS_STRINGS;
217 
218 	KASSERT(curthread->td_proc == imgp->proc,
219 	    ("unsafe elf_linux_fixup(), should be curproc"));
220 	base = (Elf32_Addr *)*stack_base;
221 	args = (Elf32_Auxargs *)imgp->auxargs;
222 	pos = base + (imgp->args->argc + imgp->args->envc + 2);
223 
224 	issetugid = imgp->proc->p_flag & P_SUGID ? 1 : 0;
225 	AUXARGS_ENTRY_32(pos, LINUX_AT_SYSINFO_EHDR,
226 	    imgp->proc->p_sysent->sv_shared_page_base);
227 	AUXARGS_ENTRY_32(pos, LINUX_AT_SYSINFO, linux32_vsyscall);
228 	AUXARGS_ENTRY_32(pos, LINUX_AT_HWCAP, cpu_feature);
229 
230 	/*
231 	 * Do not export AT_CLKTCK when emulating Linux kernel prior to 2.4.0,
232 	 * as it has appeared in the 2.4.0-rc7 first time.
233 	 * Being exported, AT_CLKTCK is returned by sysconf(_SC_CLK_TCK),
234 	 * glibc falls back to the hard-coded CLK_TCK value when aux entry
235 	 * is not present.
236 	 * Also see linux_times() implementation.
237 	 */
238 	if (linux_kernver(curthread) >= LINUX_KERNVER_2004000)
239 		AUXARGS_ENTRY_32(pos, LINUX_AT_CLKTCK, stclohz);
240 	AUXARGS_ENTRY_32(pos, AT_PHDR, args->phdr);
241 	AUXARGS_ENTRY_32(pos, AT_PHENT, args->phent);
242 	AUXARGS_ENTRY_32(pos, AT_PHNUM, args->phnum);
243 	AUXARGS_ENTRY_32(pos, AT_PAGESZ, args->pagesz);
244 	AUXARGS_ENTRY_32(pos, AT_FLAGS, args->flags);
245 	AUXARGS_ENTRY_32(pos, AT_ENTRY, args->entry);
246 	AUXARGS_ENTRY_32(pos, AT_BASE, args->base);
247 	AUXARGS_ENTRY_32(pos, LINUX_AT_SECURE, issetugid);
248 	AUXARGS_ENTRY_32(pos, AT_UID, imgp->proc->p_ucred->cr_ruid);
249 	AUXARGS_ENTRY_32(pos, AT_EUID, imgp->proc->p_ucred->cr_svuid);
250 	AUXARGS_ENTRY_32(pos, AT_GID, imgp->proc->p_ucred->cr_rgid);
251 	AUXARGS_ENTRY_32(pos, AT_EGID, imgp->proc->p_ucred->cr_svgid);
252 	AUXARGS_ENTRY_32(pos, LINUX_AT_PLATFORM, PTROUT(linux_platform));
253 	AUXARGS_ENTRY(pos, LINUX_AT_RANDOM, PTROUT(imgp->canary));
254 	if (imgp->execpathp != 0)
255 		AUXARGS_ENTRY(pos, LINUX_AT_EXECFN, PTROUT(imgp->execpathp));
256 	if (args->execfd != -1)
257 		AUXARGS_ENTRY_32(pos, AT_EXECFD, args->execfd);
258 	AUXARGS_ENTRY_32(pos, AT_NULL, 0);
259 
260 	free(imgp->auxargs, M_TEMP);
261 	imgp->auxargs = NULL;
262 
263 	base--;
264 	suword32(base, (uint32_t)imgp->args->argc);
265 	*stack_base = (register_t *)base;
266 	return (0);
267 }
268 
269 static void
270 linux_rt_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
271 {
272 	struct thread *td = curthread;
273 	struct proc *p = td->td_proc;
274 	struct sigacts *psp;
275 	struct trapframe *regs;
276 	struct l_rt_sigframe *fp, frame;
277 	int oonstack;
278 	int sig;
279 	int code;
280 
281 	sig = ksi->ksi_signo;
282 	code = ksi->ksi_code;
283 	PROC_LOCK_ASSERT(p, MA_OWNED);
284 	psp = p->p_sigacts;
285 	mtx_assert(&psp->ps_mtx, MA_OWNED);
286 	regs = td->td_frame;
287 	oonstack = sigonstack(regs->tf_rsp);
288 
289 #ifdef DEBUG
290 	if (ldebug(rt_sendsig))
291 		printf(ARGS(rt_sendsig, "%p, %d, %p, %u"),
292 		    catcher, sig, (void*)mask, code);
293 #endif
294 	/* Allocate space for the signal handler context. */
295 	if ((td->td_pflags & TDP_ALTSTACK) && !oonstack &&
296 	    SIGISMEMBER(psp->ps_sigonstack, sig)) {
297 		fp = (struct l_rt_sigframe *)((uintptr_t)td->td_sigstk.ss_sp +
298 		    td->td_sigstk.ss_size - sizeof(struct l_rt_sigframe));
299 	} else
300 		fp = (struct l_rt_sigframe *)regs->tf_rsp - 1;
301 	mtx_unlock(&psp->ps_mtx);
302 
303 	/* Build the argument list for the signal handler. */
304 	sig = bsd_to_linux_signal(sig);
305 
306 	bzero(&frame, sizeof(frame));
307 
308 	frame.sf_handler = PTROUT(catcher);
309 	frame.sf_sig = sig;
310 	frame.sf_siginfo = PTROUT(&fp->sf_si);
311 	frame.sf_ucontext = PTROUT(&fp->sf_sc);
312 
313 	/* Fill in POSIX parts. */
314 	ksiginfo_to_lsiginfo(ksi, &frame.sf_si, sig);
315 
316 	/*
317 	 * Build the signal context to be used by sigreturn and libgcc unwind.
318 	 */
319 	frame.sf_sc.uc_flags = 0;		/* XXX ??? */
320 	frame.sf_sc.uc_link = 0;		/* XXX ??? */
321 
322 	frame.sf_sc.uc_stack.ss_sp = PTROUT(td->td_sigstk.ss_sp);
323 	frame.sf_sc.uc_stack.ss_size = td->td_sigstk.ss_size;
324 	frame.sf_sc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
325 	    ? ((oonstack) ? LINUX_SS_ONSTACK : 0) : LINUX_SS_DISABLE;
326 	PROC_UNLOCK(p);
327 
328 	bsd_to_linux_sigset(mask, &frame.sf_sc.uc_sigmask);
329 
330 	frame.sf_sc.uc_mcontext.sc_mask   = frame.sf_sc.uc_sigmask.__mask;
331 	frame.sf_sc.uc_mcontext.sc_edi    = regs->tf_rdi;
332 	frame.sf_sc.uc_mcontext.sc_esi    = regs->tf_rsi;
333 	frame.sf_sc.uc_mcontext.sc_ebp    = regs->tf_rbp;
334 	frame.sf_sc.uc_mcontext.sc_ebx    = regs->tf_rbx;
335 	frame.sf_sc.uc_mcontext.sc_esp    = regs->tf_rsp;
336 	frame.sf_sc.uc_mcontext.sc_edx    = regs->tf_rdx;
337 	frame.sf_sc.uc_mcontext.sc_ecx    = regs->tf_rcx;
338 	frame.sf_sc.uc_mcontext.sc_eax    = regs->tf_rax;
339 	frame.sf_sc.uc_mcontext.sc_eip    = regs->tf_rip;
340 	frame.sf_sc.uc_mcontext.sc_cs     = regs->tf_cs;
341 	frame.sf_sc.uc_mcontext.sc_gs     = regs->tf_gs;
342 	frame.sf_sc.uc_mcontext.sc_fs     = regs->tf_fs;
343 	frame.sf_sc.uc_mcontext.sc_es     = regs->tf_es;
344 	frame.sf_sc.uc_mcontext.sc_ds     = regs->tf_ds;
345 	frame.sf_sc.uc_mcontext.sc_eflags = regs->tf_rflags;
346 	frame.sf_sc.uc_mcontext.sc_esp_at_signal = regs->tf_rsp;
347 	frame.sf_sc.uc_mcontext.sc_ss     = regs->tf_ss;
348 	frame.sf_sc.uc_mcontext.sc_err    = regs->tf_err;
349 	frame.sf_sc.uc_mcontext.sc_cr2    = (u_int32_t)(uintptr_t)ksi->ksi_addr;
350 	frame.sf_sc.uc_mcontext.sc_trapno = bsd_to_linux_trapcode(code);
351 
352 #ifdef DEBUG
353 	if (ldebug(rt_sendsig))
354 		printf(LMSG("rt_sendsig flags: 0x%x, sp: %p, ss: 0x%lx, mask: 0x%x"),
355 		    frame.sf_sc.uc_stack.ss_flags, td->td_sigstk.ss_sp,
356 		    td->td_sigstk.ss_size, frame.sf_sc.uc_mcontext.sc_mask);
357 #endif
358 
359 	if (copyout(&frame, fp, sizeof(frame)) != 0) {
360 		/*
361 		 * Process has trashed its stack; give it an illegal
362 		 * instruction to halt it in its tracks.
363 		 */
364 #ifdef DEBUG
365 		if (ldebug(rt_sendsig))
366 			printf(LMSG("rt_sendsig: bad stack %p, oonstack=%x"),
367 			    fp, oonstack);
368 #endif
369 		PROC_LOCK(p);
370 		sigexit(td, SIGILL);
371 	}
372 
373 	/* Build context to run handler in. */
374 	regs->tf_rsp = PTROUT(fp);
375 	regs->tf_rip = linux32_rt_sigcode;
376 	regs->tf_rflags &= ~(PSL_T | PSL_D);
377 	regs->tf_cs = _ucode32sel;
378 	regs->tf_ss = _udatasel;
379 	regs->tf_ds = _udatasel;
380 	regs->tf_es = _udatasel;
381 	regs->tf_fs = _ufssel;
382 	regs->tf_gs = _ugssel;
383 	regs->tf_flags = TF_HASSEGS;
384 	set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
385 	PROC_LOCK(p);
386 	mtx_lock(&psp->ps_mtx);
387 }
388 
389 
390 /*
391  * Send an interrupt to process.
392  *
393  * Stack is set up to allow sigcode stored
394  * in u. to call routine, followed by kcall
395  * to sigreturn routine below.  After sigreturn
396  * resets the signal mask, the stack, and the
397  * frame pointer, it returns to the user
398  * specified pc, psl.
399  */
400 static void
401 linux_sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
402 {
403 	struct thread *td = curthread;
404 	struct proc *p = td->td_proc;
405 	struct sigacts *psp;
406 	struct trapframe *regs;
407 	struct l_sigframe *fp, frame;
408 	l_sigset_t lmask;
409 	int oonstack;
410 	int sig, code;
411 
412 	sig = ksi->ksi_signo;
413 	code = ksi->ksi_code;
414 	PROC_LOCK_ASSERT(p, MA_OWNED);
415 	psp = p->p_sigacts;
416 	mtx_assert(&psp->ps_mtx, MA_OWNED);
417 	if (SIGISMEMBER(psp->ps_siginfo, sig)) {
418 		/* Signal handler installed with SA_SIGINFO. */
419 		linux_rt_sendsig(catcher, ksi, mask);
420 		return;
421 	}
422 
423 	regs = td->td_frame;
424 	oonstack = sigonstack(regs->tf_rsp);
425 
426 #ifdef DEBUG
427 	if (ldebug(sendsig))
428 		printf(ARGS(sendsig, "%p, %d, %p, %u"),
429 		    catcher, sig, (void*)mask, code);
430 #endif
431 
432 	/* Allocate space for the signal handler context. */
433 	if ((td->td_pflags & TDP_ALTSTACK) && !oonstack &&
434 	    SIGISMEMBER(psp->ps_sigonstack, sig)) {
435 		fp = (struct l_sigframe *)((uintptr_t)td->td_sigstk.ss_sp +
436 		    td->td_sigstk.ss_size - sizeof(struct l_sigframe));
437 	} else
438 		fp = (struct l_sigframe *)regs->tf_rsp - 1;
439 	mtx_unlock(&psp->ps_mtx);
440 	PROC_UNLOCK(p);
441 
442 	/* Build the argument list for the signal handler. */
443 	sig = bsd_to_linux_signal(sig);
444 
445 	bzero(&frame, sizeof(frame));
446 
447 	frame.sf_handler = PTROUT(catcher);
448 	frame.sf_sig = sig;
449 
450 	bsd_to_linux_sigset(mask, &lmask);
451 
452 	/* Build the signal context to be used by sigreturn. */
453 	frame.sf_sc.sc_mask   = lmask.__mask;
454 	frame.sf_sc.sc_gs     = regs->tf_gs;
455 	frame.sf_sc.sc_fs     = regs->tf_fs;
456 	frame.sf_sc.sc_es     = regs->tf_es;
457 	frame.sf_sc.sc_ds     = regs->tf_ds;
458 	frame.sf_sc.sc_edi    = regs->tf_rdi;
459 	frame.sf_sc.sc_esi    = regs->tf_rsi;
460 	frame.sf_sc.sc_ebp    = regs->tf_rbp;
461 	frame.sf_sc.sc_ebx    = regs->tf_rbx;
462 	frame.sf_sc.sc_esp    = regs->tf_rsp;
463 	frame.sf_sc.sc_edx    = regs->tf_rdx;
464 	frame.sf_sc.sc_ecx    = regs->tf_rcx;
465 	frame.sf_sc.sc_eax    = regs->tf_rax;
466 	frame.sf_sc.sc_eip    = regs->tf_rip;
467 	frame.sf_sc.sc_cs     = regs->tf_cs;
468 	frame.sf_sc.sc_eflags = regs->tf_rflags;
469 	frame.sf_sc.sc_esp_at_signal = regs->tf_rsp;
470 	frame.sf_sc.sc_ss     = regs->tf_ss;
471 	frame.sf_sc.sc_err    = regs->tf_err;
472 	frame.sf_sc.sc_cr2    = (u_int32_t)(uintptr_t)ksi->ksi_addr;
473 	frame.sf_sc.sc_trapno = bsd_to_linux_trapcode(code);
474 
475 	frame.sf_extramask[0] = lmask.__mask;
476 
477 	if (copyout(&frame, fp, sizeof(frame)) != 0) {
478 		/*
479 		 * Process has trashed its stack; give it an illegal
480 		 * instruction to halt it in its tracks.
481 		 */
482 		PROC_LOCK(p);
483 		sigexit(td, SIGILL);
484 	}
485 
486 	/* Build context to run handler in. */
487 	regs->tf_rsp = PTROUT(fp);
488 	regs->tf_rip = linux32_sigcode;
489 	regs->tf_rflags &= ~(PSL_T | PSL_D);
490 	regs->tf_cs = _ucode32sel;
491 	regs->tf_ss = _udatasel;
492 	regs->tf_ds = _udatasel;
493 	regs->tf_es = _udatasel;
494 	regs->tf_fs = _ufssel;
495 	regs->tf_gs = _ugssel;
496 	regs->tf_flags = TF_HASSEGS;
497 	set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
498 	PROC_LOCK(p);
499 	mtx_lock(&psp->ps_mtx);
500 }
501 
502 /*
503  * System call to cleanup state after a signal
504  * has been taken.  Reset signal mask and
505  * stack state from context left by sendsig (above).
506  * Return to previous pc and psl as specified by
507  * context left by sendsig. Check carefully to
508  * make sure that the user has not modified the
509  * psl to gain improper privileges or to cause
510  * a machine fault.
511  */
512 int
513 linux_sigreturn(struct thread *td, struct linux_sigreturn_args *args)
514 {
515 	struct l_sigframe frame;
516 	struct trapframe *regs;
517 	sigset_t bmask;
518 	l_sigset_t lmask;
519 	int eflags;
520 	ksiginfo_t ksi;
521 
522 	regs = td->td_frame;
523 
524 #ifdef DEBUG
525 	if (ldebug(sigreturn))
526 		printf(ARGS(sigreturn, "%p"), (void *)args->sfp);
527 #endif
528 	/*
529 	 * The trampoline code hands us the sigframe.
530 	 * It is unsafe to keep track of it ourselves, in the event that a
531 	 * program jumps out of a signal handler.
532 	 */
533 	if (copyin(args->sfp, &frame, sizeof(frame)) != 0)
534 		return (EFAULT);
535 
536 	/* Check for security violations. */
537 #define	EFLAGS_SECURE(ef, oef)	((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
538 	eflags = frame.sf_sc.sc_eflags;
539 	if (!EFLAGS_SECURE(eflags, regs->tf_rflags))
540 		return(EINVAL);
541 
542 	/*
543 	 * Don't allow users to load a valid privileged %cs.  Let the
544 	 * hardware check for invalid selectors, excess privilege in
545 	 * other selectors, invalid %eip's and invalid %esp's.
546 	 */
547 #define	CS_SECURE(cs)	(ISPL(cs) == SEL_UPL)
548 	if (!CS_SECURE(frame.sf_sc.sc_cs)) {
549 		ksiginfo_init_trap(&ksi);
550 		ksi.ksi_signo = SIGBUS;
551 		ksi.ksi_code = BUS_OBJERR;
552 		ksi.ksi_trapno = T_PROTFLT;
553 		ksi.ksi_addr = (void *)regs->tf_rip;
554 		trapsignal(td, &ksi);
555 		return(EINVAL);
556 	}
557 
558 	lmask.__mask = frame.sf_sc.sc_mask;
559 	lmask.__mask = frame.sf_extramask[0];
560 	linux_to_bsd_sigset(&lmask, &bmask);
561 	kern_sigprocmask(td, SIG_SETMASK, &bmask, NULL, 0);
562 
563 	/* Restore signal context. */
564 	regs->tf_rdi    = frame.sf_sc.sc_edi;
565 	regs->tf_rsi    = frame.sf_sc.sc_esi;
566 	regs->tf_rbp    = frame.sf_sc.sc_ebp;
567 	regs->tf_rbx    = frame.sf_sc.sc_ebx;
568 	regs->tf_rdx    = frame.sf_sc.sc_edx;
569 	regs->tf_rcx    = frame.sf_sc.sc_ecx;
570 	regs->tf_rax    = frame.sf_sc.sc_eax;
571 	regs->tf_rip    = frame.sf_sc.sc_eip;
572 	regs->tf_cs     = frame.sf_sc.sc_cs;
573 	regs->tf_ds     = frame.sf_sc.sc_ds;
574 	regs->tf_es     = frame.sf_sc.sc_es;
575 	regs->tf_fs     = frame.sf_sc.sc_fs;
576 	regs->tf_gs     = frame.sf_sc.sc_gs;
577 	regs->tf_rflags = eflags;
578 	regs->tf_rsp    = frame.sf_sc.sc_esp_at_signal;
579 	regs->tf_ss     = frame.sf_sc.sc_ss;
580 	set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
581 
582 	return (EJUSTRETURN);
583 }
584 
585 /*
586  * System call to cleanup state after a signal
587  * has been taken.  Reset signal mask and
588  * stack state from context left by rt_sendsig (above).
589  * Return to previous pc and psl as specified by
590  * context left by sendsig. Check carefully to
591  * make sure that the user has not modified the
592  * psl to gain improper privileges or to cause
593  * a machine fault.
594  */
595 int
596 linux_rt_sigreturn(struct thread *td, struct linux_rt_sigreturn_args *args)
597 {
598 	struct l_ucontext uc;
599 	struct l_sigcontext *context;
600 	sigset_t bmask;
601 	l_stack_t *lss;
602 	stack_t ss;
603 	struct trapframe *regs;
604 	int eflags;
605 	ksiginfo_t ksi;
606 
607 	regs = td->td_frame;
608 
609 #ifdef DEBUG
610 	if (ldebug(rt_sigreturn))
611 		printf(ARGS(rt_sigreturn, "%p"), (void *)args->ucp);
612 #endif
613 	/*
614 	 * The trampoline code hands us the ucontext.
615 	 * It is unsafe to keep track of it ourselves, in the event that a
616 	 * program jumps out of a signal handler.
617 	 */
618 	if (copyin(args->ucp, &uc, sizeof(uc)) != 0)
619 		return (EFAULT);
620 
621 	context = &uc.uc_mcontext;
622 
623 	/* Check for security violations. */
624 #define	EFLAGS_SECURE(ef, oef)	((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
625 	eflags = context->sc_eflags;
626 	if (!EFLAGS_SECURE(eflags, regs->tf_rflags))
627 		return(EINVAL);
628 
629 	/*
630 	 * Don't allow users to load a valid privileged %cs.  Let the
631 	 * hardware check for invalid selectors, excess privilege in
632 	 * other selectors, invalid %eip's and invalid %esp's.
633 	 */
634 #define	CS_SECURE(cs)	(ISPL(cs) == SEL_UPL)
635 	if (!CS_SECURE(context->sc_cs)) {
636 		ksiginfo_init_trap(&ksi);
637 		ksi.ksi_signo = SIGBUS;
638 		ksi.ksi_code = BUS_OBJERR;
639 		ksi.ksi_trapno = T_PROTFLT;
640 		ksi.ksi_addr = (void *)regs->tf_rip;
641 		trapsignal(td, &ksi);
642 		return(EINVAL);
643 	}
644 
645 	linux_to_bsd_sigset(&uc.uc_sigmask, &bmask);
646 	kern_sigprocmask(td, SIG_SETMASK, &bmask, NULL, 0);
647 
648 	/*
649 	 * Restore signal context
650 	 */
651 	regs->tf_gs	= context->sc_gs;
652 	regs->tf_fs	= context->sc_fs;
653 	regs->tf_es	= context->sc_es;
654 	regs->tf_ds	= context->sc_ds;
655 	regs->tf_rdi    = context->sc_edi;
656 	regs->tf_rsi    = context->sc_esi;
657 	regs->tf_rbp    = context->sc_ebp;
658 	regs->tf_rbx    = context->sc_ebx;
659 	regs->tf_rdx    = context->sc_edx;
660 	regs->tf_rcx    = context->sc_ecx;
661 	regs->tf_rax    = context->sc_eax;
662 	regs->tf_rip    = context->sc_eip;
663 	regs->tf_cs     = context->sc_cs;
664 	regs->tf_rflags = eflags;
665 	regs->tf_rsp    = context->sc_esp_at_signal;
666 	regs->tf_ss     = context->sc_ss;
667 	set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
668 
669 	/*
670 	 * call sigaltstack & ignore results..
671 	 */
672 	lss = &uc.uc_stack;
673 	ss.ss_sp = PTRIN(lss->ss_sp);
674 	ss.ss_size = lss->ss_size;
675 	ss.ss_flags = linux_to_bsd_sigaltstack(lss->ss_flags);
676 
677 #ifdef DEBUG
678 	if (ldebug(rt_sigreturn))
679 		printf(LMSG("rt_sigret flags: 0x%x, sp: %p, ss: 0x%lx, mask: 0x%x"),
680 		    ss.ss_flags, ss.ss_sp, ss.ss_size, context->sc_mask);
681 #endif
682 	(void)kern_sigaltstack(td, &ss, NULL);
683 
684 	return (EJUSTRETURN);
685 }
686 
687 static int
688 linux32_fetch_syscall_args(struct thread *td)
689 {
690 	struct proc *p;
691 	struct trapframe *frame;
692 	struct syscall_args *sa;
693 
694 	p = td->td_proc;
695 	frame = td->td_frame;
696 	sa = &td->td_sa;
697 
698 	sa->args[0] = frame->tf_rbx;
699 	sa->args[1] = frame->tf_rcx;
700 	sa->args[2] = frame->tf_rdx;
701 	sa->args[3] = frame->tf_rsi;
702 	sa->args[4] = frame->tf_rdi;
703 	sa->args[5] = frame->tf_rbp;	/* Unconfirmed */
704 	sa->code = frame->tf_rax;
705 
706 	if (sa->code >= p->p_sysent->sv_size)
707 		/* nosys */
708 		sa->callp = &p->p_sysent->sv_table[p->p_sysent->sv_size - 1];
709 	else
710 		sa->callp = &p->p_sysent->sv_table[sa->code];
711 	sa->narg = sa->callp->sy_narg;
712 
713 	td->td_retval[0] = 0;
714 	td->td_retval[1] = frame->tf_rdx;
715 
716 	return (0);
717 }
718 
719 /*
720  * If a Linux binary is exec'ing something, try this image activator
721  * first.  We override standard shell script execution in order to
722  * be able to modify the interpreter path.  We only do this if a Linux
723  * binary is doing the exec, so we do not create an EXEC module for it.
724  */
725 static int	exec_linux_imgact_try(struct image_params *iparams);
726 
727 static int
728 exec_linux_imgact_try(struct image_params *imgp)
729 {
730 	const char *head = (const char *)imgp->image_header;
731 	char *rpath;
732 	int error = -1;
733 
734 	/*
735 	* The interpreter for shell scripts run from a Linux binary needs
736 	* to be located in /compat/linux if possible in order to recursively
737 	* maintain Linux path emulation.
738 	*/
739 	if (((const short *)head)[0] == SHELLMAGIC) {
740 		/*
741 		* Run our normal shell image activator.  If it succeeds attempt
742 		* to use the alternate path for the interpreter.  If an
743 		* alternate * path is found, use our stringspace to store it.
744 		*/
745 		if ((error = exec_shell_imgact(imgp)) == 0) {
746 			linux_emul_convpath(FIRST_THREAD_IN_PROC(imgp->proc),
747 			    imgp->interpreter_name, UIO_SYSSPACE, &rpath, 0,
748 			    AT_FDCWD);
749 			if (rpath != NULL)
750 				imgp->args->fname_buf =
751 				    imgp->interpreter_name = rpath;
752 		}
753 	}
754 	return (error);
755 }
756 
757 /*
758  * Clear registers on exec
759  * XXX copied from ia32_signal.c.
760  */
761 static void
762 exec_linux_setregs(struct thread *td, struct image_params *imgp, u_long stack)
763 {
764 	struct trapframe *regs = td->td_frame;
765 	struct pcb *pcb = td->td_pcb;
766 
767 	if (td->td_proc->p_md.md_ldt != NULL)
768 		user_ldt_free(td);
769 
770 	critical_enter();
771 	wrmsr(MSR_FSBASE, 0);
772 	wrmsr(MSR_KGSBASE, 0);	/* User value while we're in the kernel */
773 	pcb->pcb_fsbase = 0;
774 	pcb->pcb_gsbase = 0;
775 	critical_exit();
776 	pcb->pcb_initial_fpucw = __LINUX_NPXCW__;
777 
778 	bzero((char *)regs, sizeof(struct trapframe));
779 	regs->tf_rip = imgp->entry_addr;
780 	regs->tf_rsp = stack;
781 	regs->tf_rflags = PSL_USER | (regs->tf_rflags & PSL_T);
782 	regs->tf_gs = _ugssel;
783 	regs->tf_fs = _ufssel;
784 	regs->tf_es = _udatasel;
785 	regs->tf_ds = _udatasel;
786 	regs->tf_ss = _udatasel;
787 	regs->tf_flags = TF_HASSEGS;
788 	regs->tf_cs = _ucode32sel;
789 	regs->tf_rbx = imgp->ps_strings;
790 
791 	fpstate_drop(td);
792 
793 	/* Do full restore on return so that we can change to a different %cs */
794 	set_pcb_flags(pcb, PCB_32BIT | PCB_FULL_IRET);
795 }
796 
797 /*
798  * XXX copied from ia32_sysvec.c.
799  */
800 static register_t *
801 linux_copyout_strings(struct image_params *imgp)
802 {
803 	int argc, envc;
804 	u_int32_t *vectp;
805 	char *stringp, *destp;
806 	u_int32_t *stack_base;
807 	struct linux32_ps_strings *arginfo;
808 	char canary[LINUX_AT_RANDOM_LEN];
809 	size_t execpath_len;
810 
811 	/* Calculate string base and vector table pointers. */
812 	if (imgp->execpath != NULL && imgp->auxargs != NULL)
813 		execpath_len = strlen(imgp->execpath) + 1;
814 	else
815 		execpath_len = 0;
816 
817 	arginfo = (struct linux32_ps_strings *)LINUX32_PS_STRINGS;
818 	destp =	(caddr_t)arginfo - SPARE_USRSPACE -
819 	    roundup(sizeof(canary), sizeof(char *)) -
820 	    roundup(execpath_len, sizeof(char *)) -
821 	    roundup(ARG_MAX - imgp->args->stringspace, sizeof(char *));
822 
823 	if (execpath_len != 0) {
824 		imgp->execpathp = (uintptr_t)arginfo - execpath_len;
825 		copyout(imgp->execpath, (void *)imgp->execpathp, execpath_len);
826 	}
827 
828 	/* Prepare the canary for SSP. */
829 	arc4rand(canary, sizeof(canary), 0);
830 	imgp->canary = (uintptr_t)arginfo -
831 	    roundup(execpath_len, sizeof(char *)) -
832 	    roundup(sizeof(canary), sizeof(char *));
833 	copyout(canary, (void *)imgp->canary, sizeof(canary));
834 
835 	/* If we have a valid auxargs ptr, prepare some room on the stack. */
836 	if (imgp->auxargs) {
837 		/*
838 		 * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for
839 		 * lower compatibility.
840 		 */
841 		imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size :
842 		    (LINUX_AT_COUNT * 2);
843 		/*
844 		 * The '+ 2' is for the null pointers at the end of each of
845 		 * the arg and env vector sets,and imgp->auxarg_size is room
846 		 * for argument of Runtime loader.
847 		 */
848 		vectp = (u_int32_t *) (destp - (imgp->args->argc +
849 		    imgp->args->envc + 2 + imgp->auxarg_size) *
850 		    sizeof(u_int32_t));
851 
852 	} else
853 		/*
854 		 * The '+ 2' is for the null pointers at the end of each of
855 		 * the arg and env vector sets
856 		 */
857 		vectp = (u_int32_t *)(destp - (imgp->args->argc +
858 		    imgp->args->envc + 2) * sizeof(u_int32_t));
859 
860 	/* vectp also becomes our initial stack base. */
861 	stack_base = vectp;
862 
863 	stringp = imgp->args->begin_argv;
864 	argc = imgp->args->argc;
865 	envc = imgp->args->envc;
866 	/* Copy out strings - arguments and environment. */
867 	copyout(stringp, destp, ARG_MAX - imgp->args->stringspace);
868 
869 	/* Fill in "ps_strings" struct for ps, w, etc. */
870 	suword32(&arginfo->ps_argvstr, (uint32_t)(intptr_t)vectp);
871 	suword32(&arginfo->ps_nargvstr, argc);
872 
873 	/* Fill in argument portion of vector table. */
874 	for (; argc > 0; --argc) {
875 		suword32(vectp++, (uint32_t)(intptr_t)destp);
876 		while (*stringp++ != 0)
877 			destp++;
878 		destp++;
879 	}
880 
881 	/* A null vector table pointer separates the argp's from the envp's. */
882 	suword32(vectp++, 0);
883 
884 	suword32(&arginfo->ps_envstr, (uint32_t)(intptr_t)vectp);
885 	suword32(&arginfo->ps_nenvstr, envc);
886 
887 	/* Fill in environment portion of vector table. */
888 	for (; envc > 0; --envc) {
889 		suword32(vectp++, (uint32_t)(intptr_t)destp);
890 		while (*stringp++ != 0)
891 			destp++;
892 		destp++;
893 	}
894 
895 	/* The end of the vector table is a null pointer. */
896 	suword32(vectp, 0);
897 
898 	return ((register_t *)stack_base);
899 }
900 
901 static SYSCTL_NODE(_compat, OID_AUTO, linux32, CTLFLAG_RW, 0,
902     "32-bit Linux emulation");
903 
904 static u_long	linux32_maxdsiz = LINUX32_MAXDSIZ;
905 SYSCTL_ULONG(_compat_linux32, OID_AUTO, maxdsiz, CTLFLAG_RW,
906     &linux32_maxdsiz, 0, "");
907 static u_long	linux32_maxssiz = LINUX32_MAXSSIZ;
908 SYSCTL_ULONG(_compat_linux32, OID_AUTO, maxssiz, CTLFLAG_RW,
909     &linux32_maxssiz, 0, "");
910 static u_long	linux32_maxvmem = LINUX32_MAXVMEM;
911 SYSCTL_ULONG(_compat_linux32, OID_AUTO, maxvmem, CTLFLAG_RW,
912     &linux32_maxvmem, 0, "");
913 
914 #if defined(DEBUG)
915 SYSCTL_PROC(_compat_linux32, OID_AUTO, debug, CTLTYPE_STRING | CTLFLAG_RW, 0, 0,
916     linux_sysctl_debug, "A", "Linux debugging control");
917 #endif
918 
919 static void
920 linux32_fixlimit(struct rlimit *rl, int which)
921 {
922 
923 	switch (which) {
924 	case RLIMIT_DATA:
925 		if (linux32_maxdsiz != 0) {
926 			if (rl->rlim_cur > linux32_maxdsiz)
927 				rl->rlim_cur = linux32_maxdsiz;
928 			if (rl->rlim_max > linux32_maxdsiz)
929 				rl->rlim_max = linux32_maxdsiz;
930 		}
931 		break;
932 	case RLIMIT_STACK:
933 		if (linux32_maxssiz != 0) {
934 			if (rl->rlim_cur > linux32_maxssiz)
935 				rl->rlim_cur = linux32_maxssiz;
936 			if (rl->rlim_max > linux32_maxssiz)
937 				rl->rlim_max = linux32_maxssiz;
938 		}
939 		break;
940 	case RLIMIT_VMEM:
941 		if (linux32_maxvmem != 0) {
942 			if (rl->rlim_cur > linux32_maxvmem)
943 				rl->rlim_cur = linux32_maxvmem;
944 			if (rl->rlim_max > linux32_maxvmem)
945 				rl->rlim_max = linux32_maxvmem;
946 		}
947 		break;
948 	}
949 }
950 
951 struct sysentvec elf_linux_sysvec = {
952 	.sv_size	= LINUX32_SYS_MAXSYSCALL,
953 	.sv_table	= linux32_sysent,
954 	.sv_mask	= 0,
955 	.sv_errsize	= ELAST + 1,
956 	.sv_errtbl	= bsd_to_linux_errno_generic,
957 	.sv_transtrap	= translate_traps,
958 	.sv_fixup	= elf_linux_fixup,
959 	.sv_sendsig	= linux_sendsig,
960 	.sv_sigcode	= &_binary_linux32_locore_o_start,
961 	.sv_szsigcode	= &linux_szsigcode,
962 	.sv_name	= "Linux ELF32",
963 	.sv_coredump	= elf32_coredump,
964 	.sv_imgact_try	= exec_linux_imgact_try,
965 	.sv_minsigstksz	= LINUX_MINSIGSTKSZ,
966 	.sv_pagesize	= PAGE_SIZE,
967 	.sv_minuser	= VM_MIN_ADDRESS,
968 	.sv_maxuser	= LINUX32_MAXUSER,
969 	.sv_usrstack	= LINUX32_USRSTACK,
970 	.sv_psstrings	= LINUX32_PS_STRINGS,
971 	.sv_stackprot	= VM_PROT_ALL,
972 	.sv_copyout_strings = linux_copyout_strings,
973 	.sv_setregs	= exec_linux_setregs,
974 	.sv_fixlimit	= linux32_fixlimit,
975 	.sv_maxssiz	= &linux32_maxssiz,
976 	.sv_flags	= SV_ABI_LINUX | SV_ILP32 | SV_IA32 | SV_SHP,
977 	.sv_set_syscall_retval = cpu_set_syscall_retval,
978 	.sv_fetch_syscall_args = linux32_fetch_syscall_args,
979 	.sv_syscallnames = NULL,
980 	.sv_shared_page_base = LINUX32_SHAREDPAGE,
981 	.sv_shared_page_len = PAGE_SIZE,
982 	.sv_schedtail	= linux_schedtail,
983 	.sv_thread_detach = linux_thread_detach,
984 	.sv_trap	= NULL,
985 };
986 
987 static void
988 linux_vdso_install(void *param)
989 {
990 
991 	linux_szsigcode = (&_binary_linux32_locore_o_end -
992 	    &_binary_linux32_locore_o_start);
993 
994 	if (linux_szsigcode > elf_linux_sysvec.sv_shared_page_len)
995 		panic("Linux invalid vdso size\n");
996 
997 	__elfN(linux_vdso_fixup)(&elf_linux_sysvec);
998 
999 	linux_shared_page_obj = __elfN(linux_shared_page_init)
1000 	    (&linux_shared_page_mapping);
1001 
1002 	__elfN(linux_vdso_reloc)(&elf_linux_sysvec);
1003 
1004 	bcopy(elf_linux_sysvec.sv_sigcode, linux_shared_page_mapping,
1005 	    linux_szsigcode);
1006 	elf_linux_sysvec.sv_shared_page_obj = linux_shared_page_obj;
1007 
1008 	linux_kplatform = linux_shared_page_mapping +
1009 	    (linux_platform - (caddr_t)elf_linux_sysvec.sv_shared_page_base);
1010 }
1011 SYSINIT(elf_linux_vdso_init, SI_SUB_EXEC, SI_ORDER_ANY,
1012     (sysinit_cfunc_t)linux_vdso_install, NULL);
1013 
1014 static void
1015 linux_vdso_deinstall(void *param)
1016 {
1017 
1018 	__elfN(linux_shared_page_fini)(linux_shared_page_obj);
1019 }
1020 SYSUNINIT(elf_linux_vdso_uninit, SI_SUB_EXEC, SI_ORDER_FIRST,
1021     (sysinit_cfunc_t)linux_vdso_deinstall, NULL);
1022 
1023 static char GNU_ABI_VENDOR[] = "GNU";
1024 static int GNULINUX_ABI_DESC = 0;
1025 
1026 static bool
1027 linux32_trans_osrel(const Elf_Note *note, int32_t *osrel)
1028 {
1029 	const Elf32_Word *desc;
1030 	uintptr_t p;
1031 
1032 	p = (uintptr_t)(note + 1);
1033 	p += roundup2(note->n_namesz, sizeof(Elf32_Addr));
1034 
1035 	desc = (const Elf32_Word *)p;
1036 	if (desc[0] != GNULINUX_ABI_DESC)
1037 		return (false);
1038 
1039 	/*
1040 	 * For Linux we encode osrel as follows (see linux_mib.c):
1041 	 * VVVMMMIII (version, major, minor), see linux_mib.c.
1042 	 */
1043 	*osrel = desc[1] * 1000000 + desc[2] * 1000 + desc[3];
1044 
1045 	return (true);
1046 }
1047 
1048 static Elf_Brandnote linux32_brandnote = {
1049 	.hdr.n_namesz	= sizeof(GNU_ABI_VENDOR),
1050 	.hdr.n_descsz	= 16,	/* XXX at least 16 */
1051 	.hdr.n_type	= 1,
1052 	.vendor		= GNU_ABI_VENDOR,
1053 	.flags		= BN_TRANSLATE_OSREL,
1054 	.trans_osrel	= linux32_trans_osrel
1055 };
1056 
1057 static Elf32_Brandinfo linux_brand = {
1058 	.brand		= ELFOSABI_LINUX,
1059 	.machine	= EM_386,
1060 	.compat_3_brand	= "Linux",
1061 	.emul_path	= "/compat/linux",
1062 	.interp_path	= "/lib/ld-linux.so.1",
1063 	.sysvec		= &elf_linux_sysvec,
1064 	.interp_newpath	= NULL,
1065 	.brand_note	= &linux32_brandnote,
1066 	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
1067 };
1068 
1069 static Elf32_Brandinfo linux_glibc2brand = {
1070 	.brand		= ELFOSABI_LINUX,
1071 	.machine	= EM_386,
1072 	.compat_3_brand	= "Linux",
1073 	.emul_path	= "/compat/linux",
1074 	.interp_path	= "/lib/ld-linux.so.2",
1075 	.sysvec		= &elf_linux_sysvec,
1076 	.interp_newpath	= NULL,
1077 	.brand_note	= &linux32_brandnote,
1078 	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
1079 };
1080 
1081 static Elf32_Brandinfo linux_muslbrand = {
1082 	.brand		= ELFOSABI_LINUX,
1083 	.machine	= EM_386,
1084 	.compat_3_brand	= "Linux",
1085 	.emul_path	= "/compat/linux",
1086 	.interp_path	= "/lib/ld-musl-i386.so.1",
1087 	.sysvec		= &elf_linux_sysvec,
1088 	.interp_newpath	= NULL,
1089 	.brand_note	= &linux32_brandnote,
1090 	.flags		= BI_CAN_EXEC_DYN | BI_BRAND_NOTE
1091 };
1092 
1093 Elf32_Brandinfo *linux_brandlist[] = {
1094 	&linux_brand,
1095 	&linux_glibc2brand,
1096 	&linux_muslbrand,
1097 	NULL
1098 };
1099 
1100 static int
1101 linux_elf_modevent(module_t mod, int type, void *data)
1102 {
1103 	Elf32_Brandinfo **brandinfo;
1104 	int error;
1105 	struct linux_ioctl_handler **lihp;
1106 
1107 	error = 0;
1108 
1109 	switch(type) {
1110 	case MOD_LOAD:
1111 		for (brandinfo = &linux_brandlist[0]; *brandinfo != NULL;
1112 		     ++brandinfo)
1113 			if (elf32_insert_brand_entry(*brandinfo) < 0)
1114 				error = EINVAL;
1115 		if (error == 0) {
1116 			SET_FOREACH(lihp, linux_ioctl_handler_set)
1117 				linux_ioctl_register_handler(*lihp);
1118 			LIST_INIT(&futex_list);
1119 			mtx_init(&futex_mtx, "ftllk", NULL, MTX_DEF);
1120 			stclohz = (stathz ? stathz : hz);
1121 			if (bootverbose)
1122 				printf("Linux ELF exec handler installed\n");
1123 		} else
1124 			printf("cannot insert Linux ELF brand handler\n");
1125 		break;
1126 	case MOD_UNLOAD:
1127 		for (brandinfo = &linux_brandlist[0]; *brandinfo != NULL;
1128 		     ++brandinfo)
1129 			if (elf32_brand_inuse(*brandinfo))
1130 				error = EBUSY;
1131 		if (error == 0) {
1132 			for (brandinfo = &linux_brandlist[0];
1133 			     *brandinfo != NULL; ++brandinfo)
1134 				if (elf32_remove_brand_entry(*brandinfo) < 0)
1135 					error = EINVAL;
1136 		}
1137 		if (error == 0) {
1138 			SET_FOREACH(lihp, linux_ioctl_handler_set)
1139 				linux_ioctl_unregister_handler(*lihp);
1140 			mtx_destroy(&futex_mtx);
1141 			if (bootverbose)
1142 				printf("Linux ELF exec handler removed\n");
1143 		} else
1144 			printf("Could not deinstall ELF interpreter entry\n");
1145 		break;
1146 	default:
1147 		return (EOPNOTSUPP);
1148 	}
1149 	return (error);
1150 }
1151 
1152 static moduledata_t linux_elf_mod = {
1153 	"linuxelf",
1154 	linux_elf_modevent,
1155 	0
1156 };
1157 
1158 DECLARE_MODULE_TIED(linuxelf, linux_elf_mod, SI_SUB_EXEC, SI_ORDER_ANY);
1159 MODULE_DEPEND(linuxelf, linux_common, 1, 1, 1);
1160 FEATURE(linux, "Linux 32bit support");
1161