1 /* $NetBSD: cpu_exec.c,v 1.8 2013/12/20 06:50:28 matt Exp $ */ 2 3 /*- 4 * Copyright (c) 2012 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Matt Thomas of 3am Software Foundry. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 #include <sys/cdefs.h> 33 __KERNEL_RCSID(0, "$NetBSD: cpu_exec.c,v 1.8 2013/12/20 06:50:28 matt Exp $"); 34 35 #include "opt_compat_netbsd.h" 36 #include "opt_compat_netbsd32.h" 37 38 #include <sys/param.h> 39 #include <sys/systm.h> 40 #include <sys/proc.h> 41 #include <sys/exec.h> 42 43 #include <uvm/uvm_extern.h> 44 45 #include <compat/common/compat_util.h> 46 #include <sys/exec_elf.h> /* mandatory */ 47 48 #ifdef COMPAT_NETBSD32 49 #include <compat/netbsd32/netbsd32_exec.h> 50 #endif 51 52 #include <arm/locore.h> 53 54 #if EXEC_ELF32 55 int 56 arm_netbsd_elf32_probe(struct lwp *l, struct exec_package *epp, void *eh0, 57 char *itp, vaddr_t *start_p) 58 { 59 const char *itp_suffix = NULL; 60 const Elf_Ehdr * const eh = eh0; 61 const bool elf_aapcs_p = 62 (eh->e_flags & EF_ARM_EABIMASK) >= EF_ARM_EABI_VER4; 63 #ifdef COMPAT_NETBSD32 64 const bool netbsd32_p = (epp->ep_esch->es_emul == &emul_netbsd32); 65 #else 66 const bool netbsd32_p = false; 67 #endif 68 #ifdef __ARM_EABI__ 69 const bool aapcs_p = true; 70 #else 71 const bool aapcs_p = false; 72 #endif 73 #ifdef __ARMEB__ 74 const bool be8_p = (eh->e_flags & EF_ARM_BE8) != 0; 75 76 /* 77 * If the BE-8 model is supported, CPSR[7] will be clear. 78 * If the BE-32 model is supported, CPSR[7] will be set. 79 */ 80 register_t ctl = armreg_sctrl_read(); 81 if (((ctl & CPU_CONTROL_BEND_ENABLE) != 0) == be8_p) 82 return ENOEXEC; 83 #endif /* __ARMEB__ */ 84 85 /* 86 * This is subtle. If we are netbsd32, then we don't want to match the 87 * same ABI as the kernel. If we aren't (netbsd32 == false), then we 88 * don't want to be different from the kernel's ABI. 89 * true true true ENOEXEC 90 * true false true 0 91 * true true false 0 92 * true false false ENOEXEC 93 * false true true 0 94 * false false true ENOEXEC 95 * false true false ENOEXEC 96 * false false false 0 97 */ 98 if (netbsd32_p ^ elf_aapcs_p ^ aapcs_p) 99 return ENOEXEC; 100 101 if (netbsd32_p) 102 itp_suffix = (elf_aapcs_p) ? "eabi" : "oabi"; 103 104 if (itp_suffix != NULL) 105 (void)compat_elf_check_interp(epp, itp, itp_suffix); 106 107 /* 108 * Copy (if any) the machine_arch of the executable to the proc. 109 */ 110 if (epp->ep_machine_arch[0] != 0) { 111 strlcpy(l->l_proc->p_md.md_march, epp->ep_machine_arch, 112 sizeof(l->l_proc->p_md.md_march)); 113 } 114 /* 115 * If we are AAPCS (EABI) and armv6/armv7, we want alignment faults 116 * be off. 117 */ 118 if (aapcs_p && (CPU_IS_ARMV7_P() || CPU_IS_ARMV6_P())) { 119 l->l_md.md_flags |= MDLWP_NOALIGNFLT; 120 } 121 return 0; 122 } 123 #endif 124