]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/amd64/elf_machdep.c
Upgrade to Unbound 1.5.7.
[FreeBSD/FreeBSD.git] / sys / amd64 / amd64 / elf_machdep.c
1 /*-
2  * Copyright 1996-1998 John D. Polstra.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
28
29 #include <sys/param.h>
30 #include <sys/kernel.h>
31 #include <sys/systm.h>
32 #include <sys/exec.h>
33 #include <sys/imgact.h>
34 #include <sys/linker.h>
35 #include <sys/proc.h>
36 #include <sys/sysent.h>
37 #include <sys/imgact_elf.h>
38 #include <sys/syscall.h>
39 #include <sys/signalvar.h>
40 #include <sys/vnode.h>
41
42 #include <vm/vm.h>
43 #include <vm/pmap.h>
44 #include <vm/vm_param.h>
45
46 #include <machine/elf.h>
47 #include <machine/fpu.h>
48 #include <machine/md_var.h>
49
50 struct sysentvec elf64_freebsd_sysvec = {
51         .sv_size        = SYS_MAXSYSCALL,
52         .sv_table       = sysent,
53         .sv_mask        = 0,
54         .sv_errsize     = 0,
55         .sv_errtbl      = NULL,
56         .sv_transtrap   = NULL,
57         .sv_fixup       = __elfN(freebsd_fixup),
58         .sv_sendsig     = sendsig,
59         .sv_sigcode     = sigcode,
60         .sv_szsigcode   = &szsigcode,
61         .sv_name        = "FreeBSD ELF64",
62         .sv_coredump    = __elfN(coredump),
63         .sv_imgact_try  = NULL,
64         .sv_minsigstksz = MINSIGSTKSZ,
65         .sv_pagesize    = PAGE_SIZE,
66         .sv_minuser     = VM_MIN_ADDRESS,
67         .sv_maxuser     = VM_MAXUSER_ADDRESS,
68         .sv_usrstack    = USRSTACK,
69         .sv_psstrings   = PS_STRINGS,
70         .sv_stackprot   = VM_PROT_ALL,
71         .sv_copyout_strings     = exec_copyout_strings,
72         .sv_setregs     = exec_setregs,
73         .sv_fixlimit    = NULL,
74         .sv_maxssiz     = NULL,
75         .sv_flags       = SV_ABI_FREEBSD | SV_LP64 | SV_SHP | SV_TIMEKEEP,
76         .sv_set_syscall_retval = cpu_set_syscall_retval,
77         .sv_fetch_syscall_args = cpu_fetch_syscall_args,
78         .sv_syscallnames = syscallnames,
79         .sv_shared_page_base = SHAREDPAGE,
80         .sv_shared_page_len = PAGE_SIZE,
81         .sv_schedtail   = NULL,
82         .sv_thread_detach = NULL,
83 };
84 INIT_SYSENTVEC(elf64_sysvec, &elf64_freebsd_sysvec);
85
86 static Elf64_Brandinfo freebsd_brand_info = {
87         .brand          = ELFOSABI_FREEBSD,
88         .machine        = EM_X86_64,
89         .compat_3_brand = "FreeBSD",
90         .emul_path      = NULL,
91         .interp_path    = "/libexec/ld-elf.so.1",
92         .sysvec         = &elf64_freebsd_sysvec,
93         .interp_newpath = NULL,
94         .brand_note     = &elf64_freebsd_brandnote,
95         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
96 };
97
98 SYSINIT(elf64, SI_SUB_EXEC, SI_ORDER_FIRST,
99         (sysinit_cfunc_t) elf64_insert_brand_entry,
100         &freebsd_brand_info);
101
102 static Elf64_Brandinfo freebsd_brand_oinfo = {
103         .brand          = ELFOSABI_FREEBSD,
104         .machine        = EM_X86_64,
105         .compat_3_brand = "FreeBSD",
106         .emul_path      = NULL,
107         .interp_path    = "/usr/libexec/ld-elf.so.1",
108         .sysvec         = &elf64_freebsd_sysvec,
109         .interp_newpath = NULL,
110         .brand_note     = &elf64_freebsd_brandnote,
111         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
112 };
113
114 SYSINIT(oelf64, SI_SUB_EXEC, SI_ORDER_ANY,
115         (sysinit_cfunc_t) elf64_insert_brand_entry,
116         &freebsd_brand_oinfo);
117
118 static Elf64_Brandinfo kfreebsd_brand_info = {
119         .brand          = ELFOSABI_FREEBSD,
120         .machine        = EM_X86_64,
121         .compat_3_brand = "FreeBSD",
122         .emul_path      = NULL,
123         .interp_path    = "/lib/ld-kfreebsd-x86-64.so.1",
124         .sysvec         = &elf64_freebsd_sysvec,
125         .interp_newpath = NULL,
126         .brand_note     = &elf64_kfreebsd_brandnote,
127         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE_MANDATORY
128 };
129
130 SYSINIT(kelf64, SI_SUB_EXEC, SI_ORDER_ANY,
131         (sysinit_cfunc_t) elf64_insert_brand_entry,
132         &kfreebsd_brand_info);
133
134 void
135 elf64_dump_thread(struct thread *td, void *dst, size_t *off)
136 {
137         void *buf;
138         size_t len;
139
140         len = 0;
141         if (use_xsave) {
142                 if (dst != NULL) {
143                         fpugetregs(td);
144                         len += elf64_populate_note(NT_X86_XSTATE,
145                             get_pcb_user_save_td(td), dst,
146                             cpu_max_ext_state_size, &buf);
147                         *(uint64_t *)((char *)buf + X86_XSTATE_XCR0_OFFSET) =
148                             xsave_mask;
149                 } else
150                         len += elf64_populate_note(NT_X86_XSTATE, NULL, NULL,
151                             cpu_max_ext_state_size, NULL);
152         }
153         *off = len;
154 }
155
156 /* Process one elf relocation with addend. */
157 static int
158 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
159     int type, int local, elf_lookup_fn lookup)
160 {
161         Elf64_Addr *where, val;
162         Elf32_Addr *where32, val32;
163         Elf_Addr addr;
164         Elf_Addr addend;
165         Elf_Size rtype, symidx;
166         const Elf_Rel *rel;
167         const Elf_Rela *rela;
168         int error;
169
170         switch (type) {
171         case ELF_RELOC_REL:
172                 rel = (const Elf_Rel *)data;
173                 where = (Elf_Addr *) (relocbase + rel->r_offset);
174                 rtype = ELF_R_TYPE(rel->r_info);
175                 symidx = ELF_R_SYM(rel->r_info);
176                 /* Addend is 32 bit on 32 bit relocs */
177                 switch (rtype) {
178                 case R_X86_64_PC32:
179                 case R_X86_64_32S:
180                         addend = *(Elf32_Addr *)where;
181                         break;
182                 default:
183                         addend = *where;
184                         break;
185                 }
186                 break;
187         case ELF_RELOC_RELA:
188                 rela = (const Elf_Rela *)data;
189                 where = (Elf_Addr *) (relocbase + rela->r_offset);
190                 addend = rela->r_addend;
191                 rtype = ELF_R_TYPE(rela->r_info);
192                 symidx = ELF_R_SYM(rela->r_info);
193                 break;
194         default:
195                 panic("unknown reloc type %d\n", type);
196         }
197
198         switch (rtype) {
199
200                 case R_X86_64_NONE:     /* none */
201                         break;
202
203                 case R_X86_64_64:               /* S + A */
204                         error = lookup(lf, symidx, 1, &addr);
205                         val = addr + addend;
206                         if (error != 0)
207                                 return -1;
208                         if (*where != val)
209                                 *where = val;
210                         break;
211
212                 case R_X86_64_PC32:     /* S + A - P */
213                         error = lookup(lf, symidx, 1, &addr);
214                         where32 = (Elf32_Addr *)where;
215                         val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
216                         if (error != 0)
217                                 return -1;
218                         if (*where32 != val32)
219                                 *where32 = val32;
220                         break;
221
222                 case R_X86_64_32S:      /* S + A sign extend */
223                         error = lookup(lf, symidx, 1, &addr);
224                         val32 = (Elf32_Addr)(addr + addend);
225                         where32 = (Elf32_Addr *)where;
226                         if (error != 0)
227                                 return -1;
228                         if (*where32 != val32)
229                                 *where32 = val32;
230                         break;
231
232                 case R_X86_64_COPY:     /* none */
233                         /*
234                          * There shouldn't be copy relocations in kernel
235                          * objects.
236                          */
237                         printf("kldload: unexpected R_COPY relocation\n");
238                         return -1;
239                         break;
240
241                 case R_X86_64_GLOB_DAT: /* S */
242                 case R_X86_64_JMP_SLOT: /* XXX need addend + offset */
243                         error = lookup(lf, symidx, 1, &addr);
244                         if (error != 0)
245                                 return -1;
246                         if (*where != addr)
247                                 *where = addr;
248                         break;
249
250                 case R_X86_64_RELATIVE: /* B + A */
251                         addr = relocbase + addend;
252                         val = addr;
253                         if (*where != val)
254                                 *where = val;
255                         break;
256
257                 default:
258                         printf("kldload: unexpected relocation type %ld\n",
259                                rtype);
260                         return -1;
261         }
262         return(0);
263 }
264
265 int
266 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
267     elf_lookup_fn lookup)
268 {
269
270         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
271 }
272
273 int
274 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
275     int type, elf_lookup_fn lookup)
276 {
277
278         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
279 }
280
281 int
282 elf_cpu_load_file(linker_file_t lf __unused)
283 {
284
285         return (0);
286 }
287
288 int
289 elf_cpu_unload_file(linker_file_t lf __unused)
290 {
291
292         return (0);
293 }