]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/arm64/elf_machdep.c
Use uintptr_t instead of register_t * for the stack base.
[FreeBSD/FreeBSD.git] / sys / arm64 / arm64 / elf_machdep.c
1 /*-
2  * Copyright (c) 2014, 2015 The FreeBSD Foundation.
3  * Copyright (c) 2014 Andrew Turner.
4  * All rights reserved.
5  *
6  * This software was developed by Andrew Turner under
7  * sponsorship from the FreeBSD Foundation.
8  *
9  * Portions of this software were developed by Konstantin Belousov
10  * under sponsorship from the FreeBSD Foundation.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
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  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include <sys/param.h>
38 #include <sys/kernel.h>
39 #include <sys/systm.h>
40 #include <sys/exec.h>
41 #include <sys/imgact.h>
42 #include <sys/linker.h>
43 #include <sys/proc.h>
44 #include <sys/sysent.h>
45 #include <sys/imgact_elf.h>
46 #include <sys/syscall.h>
47 #include <sys/signalvar.h>
48 #include <sys/vnode.h>
49
50 #include <vm/vm.h>
51 #include <vm/vm_param.h>
52
53 #include <machine/elf.h>
54 #include <machine/md_var.h>
55
56 #include "linker_if.h"
57
58 u_long elf_hwcap;
59
60 static struct sysentvec elf64_freebsd_sysvec = {
61         .sv_size        = SYS_MAXSYSCALL,
62         .sv_table       = sysent,
63         .sv_errsize     = 0,
64         .sv_errtbl      = NULL,
65         .sv_transtrap   = NULL,
66         .sv_fixup       = __elfN(freebsd_fixup),
67         .sv_sendsig     = sendsig,
68         .sv_sigcode     = sigcode,
69         .sv_szsigcode   = &szsigcode,
70         .sv_name        = "FreeBSD ELF64",
71         .sv_coredump    = __elfN(coredump),
72         .sv_imgact_try  = NULL,
73         .sv_minsigstksz = MINSIGSTKSZ,
74         .sv_minuser     = VM_MIN_ADDRESS,
75         .sv_maxuser     = VM_MAXUSER_ADDRESS,
76         .sv_usrstack    = USRSTACK,
77         .sv_psstrings   = PS_STRINGS,
78         .sv_stackprot   = VM_PROT_READ | VM_PROT_WRITE,
79         .sv_copyout_auxargs = __elfN(freebsd_copyout_auxargs),
80         .sv_copyout_strings = exec_copyout_strings,
81         .sv_setregs     = exec_setregs,
82         .sv_fixlimit    = NULL,
83         .sv_maxssiz     = NULL,
84         .sv_flags       = SV_SHP | SV_TIMEKEEP | SV_ABI_FREEBSD | SV_LP64 |
85             SV_ASLR,
86         .sv_set_syscall_retval = cpu_set_syscall_retval,
87         .sv_fetch_syscall_args = cpu_fetch_syscall_args,
88         .sv_syscallnames = syscallnames,
89         .sv_shared_page_base = SHAREDPAGE,
90         .sv_shared_page_len = PAGE_SIZE,
91         .sv_schedtail   = NULL,
92         .sv_thread_detach = NULL,
93         .sv_trap        = NULL,
94         .sv_hwcap       = &elf_hwcap,
95 };
96 INIT_SYSENTVEC(elf64_sysvec, &elf64_freebsd_sysvec);
97
98 static Elf64_Brandinfo freebsd_brand_info = {
99         .brand          = ELFOSABI_FREEBSD,
100         .machine        = EM_AARCH64,
101         .compat_3_brand = "FreeBSD",
102         .emul_path      = NULL,
103         .interp_path    = "/libexec/ld-elf.so.1",
104         .sysvec         = &elf64_freebsd_sysvec,
105         .interp_newpath = NULL,
106         .brand_note     = &elf64_freebsd_brandnote,
107         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
108 };
109
110 SYSINIT(elf64, SI_SUB_EXEC, SI_ORDER_FIRST,
111     (sysinit_cfunc_t)elf64_insert_brand_entry, &freebsd_brand_info);
112
113 void
114 elf64_dump_thread(struct thread *td __unused, void *dst __unused,
115     size_t *off __unused)
116 {
117
118 }
119
120 bool
121 elf_is_ifunc_reloc(Elf_Size r_info __unused)
122 {
123
124         return (ELF_R_TYPE(r_info) == R_AARCH64_IRELATIVE);
125 }
126
127 static int
128 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
129     int type, int local, elf_lookup_fn lookup)
130 {
131         Elf_Addr *where, addr, addend, val;
132         Elf_Word rtype, symidx;
133         const Elf_Rel *rel;
134         const Elf_Rela *rela;
135         int error;
136
137         switch (type) {
138         case ELF_RELOC_REL:
139                 rel = (const Elf_Rel *)data;
140                 where = (Elf_Addr *) (relocbase + rel->r_offset);
141                 addend = *where;
142                 rtype = ELF_R_TYPE(rel->r_info);
143                 symidx = ELF_R_SYM(rel->r_info);
144                 break;
145         case ELF_RELOC_RELA:
146                 rela = (const Elf_Rela *)data;
147                 where = (Elf_Addr *) (relocbase + rela->r_offset);
148                 addend = rela->r_addend;
149                 rtype = ELF_R_TYPE(rela->r_info);
150                 symidx = ELF_R_SYM(rela->r_info);
151                 break;
152         default:
153                 panic("unknown reloc type %d\n", type);
154         }
155
156         if (local) {
157                 if (rtype == R_AARCH64_RELATIVE)
158                         *where = elf_relocaddr(lf, relocbase + addend);
159                 return (0);
160         }
161
162         switch (rtype) {
163         case R_AARCH64_NONE:
164         case R_AARCH64_RELATIVE:
165                 break;
166         case R_AARCH64_ABS64:
167         case R_AARCH64_GLOB_DAT:
168         case R_AARCH64_JUMP_SLOT:
169                 error = lookup(lf, symidx, 1, &addr);
170                 if (error != 0)
171                         return (-1);
172                 *where = addr + addend;
173                 break;
174         case R_AARCH64_IRELATIVE:
175                 addr = relocbase + addend;
176                 val = ((Elf64_Addr (*)(void))addr)();
177                 if (*where != val)
178                         *where = val;
179                 break;
180         default:
181                 printf("kldload: unexpected relocation type %d\n", rtype);
182                 return (-1);
183         }
184         return (0);
185 }
186
187 int
188 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
189     int type, elf_lookup_fn lookup)
190 {
191
192         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
193 }
194
195 /* Process one elf relocation with addend. */
196 int
197 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
198     elf_lookup_fn lookup)
199 {
200
201         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
202 }
203
204 int
205 elf_cpu_load_file(linker_file_t lf)
206 {
207
208         if (lf->id != 1)
209                 cpu_icache_sync_range((vm_offset_t)lf->address, lf->size);
210         return (0);
211 }
212
213 int
214 elf_cpu_unload_file(linker_file_t lf __unused)
215 {
216
217         return (0);
218 }