]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/i386/i386/elf_machdep.c
Update clang to trunk r256633.
[FreeBSD/FreeBSD.git] / sys / i386 / i386 / 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 "opt_cpu.h"
30
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/systm.h>
34 #include <sys/exec.h>
35 #include <sys/imgact.h>
36 #include <sys/linker.h>
37 #include <sys/proc.h>
38 #include <sys/sysent.h>
39 #include <sys/imgact_elf.h>
40 #include <sys/syscall.h>
41 #include <sys/signalvar.h>
42 #include <sys/vnode.h>
43
44 #include <vm/vm.h>
45 #include <vm/pmap.h>
46 #include <vm/vm_param.h>
47
48 #include <machine/elf.h>
49 #include <machine/md_var.h>
50 #include <machine/npx.h>
51
52 #if !defined(CPU_DISABLE_SSE) && defined(I686_CPU)
53 #define CPU_ENABLE_SSE
54 #endif
55
56 struct sysentvec elf32_freebsd_sysvec = {
57         .sv_size        = SYS_MAXSYSCALL,
58         .sv_table       = sysent,
59         .sv_mask        = 0,
60         .sv_errsize     = 0,
61         .sv_errtbl      = NULL,
62         .sv_transtrap   = NULL,
63         .sv_fixup       = __elfN(freebsd_fixup),
64         .sv_sendsig     = sendsig,
65         .sv_sigcode     = sigcode,
66         .sv_szsigcode   = &szsigcode,
67         .sv_name        = "FreeBSD ELF32",
68         .sv_coredump    = __elfN(coredump),
69         .sv_imgact_try  = NULL,
70         .sv_minsigstksz = MINSIGSTKSZ,
71         .sv_pagesize    = PAGE_SIZE,
72         .sv_minuser     = VM_MIN_ADDRESS,
73         .sv_maxuser     = VM_MAXUSER_ADDRESS,
74         .sv_usrstack    = USRSTACK,
75         .sv_psstrings   = PS_STRINGS,
76         .sv_stackprot   = VM_PROT_ALL,
77         .sv_copyout_strings     = exec_copyout_strings,
78         .sv_setregs     = exec_setregs,
79         .sv_fixlimit    = NULL,
80         .sv_maxssiz     = NULL,
81         .sv_flags       = SV_ABI_FREEBSD | SV_IA32 | SV_ILP32 | SV_SHP |
82                             SV_TIMEKEEP,
83         .sv_set_syscall_retval = cpu_set_syscall_retval,
84         .sv_fetch_syscall_args = cpu_fetch_syscall_args,
85         .sv_syscallnames = syscallnames,
86         .sv_shared_page_base = SHAREDPAGE,
87         .sv_shared_page_len = PAGE_SIZE,
88         .sv_schedtail   = NULL,
89         .sv_thread_detach = NULL,
90 };
91 INIT_SYSENTVEC(elf32_sysvec, &elf32_freebsd_sysvec);
92
93 static Elf32_Brandinfo freebsd_brand_info = {
94         .brand          = ELFOSABI_FREEBSD,
95         .machine        = EM_386,
96         .compat_3_brand = "FreeBSD",
97         .emul_path      = NULL,
98         .interp_path    = "/libexec/ld-elf.so.1",
99         .sysvec         = &elf32_freebsd_sysvec,
100         .interp_newpath = NULL,
101         .brand_note     = &elf32_freebsd_brandnote,
102         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
103 };
104
105 SYSINIT(elf32, SI_SUB_EXEC, SI_ORDER_FIRST,
106         (sysinit_cfunc_t) elf32_insert_brand_entry,
107         &freebsd_brand_info);
108
109 static Elf32_Brandinfo freebsd_brand_oinfo = {
110         .brand          = ELFOSABI_FREEBSD,
111         .machine        = EM_386,
112         .compat_3_brand = "FreeBSD",
113         .emul_path      = NULL,
114         .interp_path    = "/usr/libexec/ld-elf.so.1",
115         .sysvec         = &elf32_freebsd_sysvec,
116         .interp_newpath = NULL,
117         .brand_note     = &elf32_freebsd_brandnote,
118         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
119 };
120
121 SYSINIT(oelf32, SI_SUB_EXEC, SI_ORDER_ANY,
122         (sysinit_cfunc_t) elf32_insert_brand_entry,
123         &freebsd_brand_oinfo);
124
125 static Elf32_Brandinfo kfreebsd_brand_info = {
126         .brand          = ELFOSABI_FREEBSD,
127         .machine        = EM_386,
128         .compat_3_brand = "FreeBSD",
129         .emul_path      = NULL,
130         .interp_path    = "/lib/ld.so.1",
131         .sysvec         = &elf32_freebsd_sysvec,
132         .interp_newpath = NULL,
133         .brand_note     = &elf32_kfreebsd_brandnote,
134         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE_MANDATORY
135 };
136
137 SYSINIT(kelf32, SI_SUB_EXEC, SI_ORDER_ANY,
138         (sysinit_cfunc_t) elf32_insert_brand_entry,
139         &kfreebsd_brand_info);
140
141
142 void
143 elf32_dump_thread(struct thread *td, void *dst, size_t *off)
144 {
145 #ifdef CPU_ENABLE_SSE
146         void *buf;
147 #endif
148         size_t len;
149
150         len = 0;
151 #ifdef CPU_ENABLE_SSE
152         if (use_xsave) {
153                 if (dst != NULL) {
154                         npxgetregs(td);
155                         len += elf32_populate_note(NT_X86_XSTATE,
156                             get_pcb_user_save_td(td), dst,
157                             cpu_max_ext_state_size, &buf);
158                         *(uint64_t *)((char *)buf + X86_XSTATE_XCR0_OFFSET) =
159                             xsave_mask;
160                 } else
161                         len += elf32_populate_note(NT_X86_XSTATE, NULL, NULL,
162                             cpu_max_ext_state_size, NULL);
163         }
164 #endif
165         *off = len;
166 }
167
168 /* Process one elf relocation with addend. */
169 static int
170 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
171     int type, int local, elf_lookup_fn lookup)
172 {
173         Elf_Addr *where;
174         Elf_Addr addr;
175         Elf_Addr addend;
176         Elf_Word rtype, symidx;
177         const Elf_Rel *rel;
178         const Elf_Rela *rela;
179         int error;
180
181         switch (type) {
182         case ELF_RELOC_REL:
183                 rel = (const Elf_Rel *)data;
184                 where = (Elf_Addr *) (relocbase + rel->r_offset);
185                 addend = *where;
186                 rtype = ELF_R_TYPE(rel->r_info);
187                 symidx = ELF_R_SYM(rel->r_info);
188                 break;
189         case ELF_RELOC_RELA:
190                 rela = (const Elf_Rela *)data;
191                 where = (Elf_Addr *) (relocbase + rela->r_offset);
192                 addend = rela->r_addend;
193                 rtype = ELF_R_TYPE(rela->r_info);
194                 symidx = ELF_R_SYM(rela->r_info);
195                 break;
196         default:
197                 panic("unknown reloc type %d\n", type);
198         }
199
200         if (local) {
201                 if (rtype == R_386_RELATIVE) {  /* A + B */
202                         addr = elf_relocaddr(lf, relocbase + addend);
203                         if (*where != addr)
204                                 *where = addr;
205                 }
206                 return (0);
207         }
208
209         switch (rtype) {
210
211                 case R_386_NONE:        /* none */
212                         break;
213
214                 case R_386_32:          /* S + A */
215                         error = lookup(lf, symidx, 1, &addr);
216                         if (error != 0)
217                                 return -1;
218                         addr += addend;
219                         if (*where != addr)
220                                 *where = addr;
221                         break;
222
223                 case R_386_PC32:        /* S + A - P */
224                         error = lookup(lf, symidx, 1, &addr);
225                         if (error != 0)
226                                 return -1;
227                         addr += addend - (Elf_Addr)where;
228                         if (*where != addr)
229                                 *where = addr;
230                         break;
231
232                 case R_386_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_386_GLOB_DAT:    /* S */
242                         error = lookup(lf, symidx, 1, &addr);
243                         if (error != 0)
244                                 return -1;
245                         if (*where != addr)
246                                 *where = addr;
247                         break;
248
249                 case R_386_RELATIVE:
250                         break;
251
252                 default:
253                         printf("kldload: unexpected relocation type %d\n",
254                                rtype);
255                         return -1;
256         }
257         return(0);
258 }
259
260 int
261 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
262     elf_lookup_fn lookup)
263 {
264
265         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
266 }
267
268 int
269 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
270     int type, elf_lookup_fn lookup)
271 {
272
273         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
274 }
275
276 int
277 elf_cpu_load_file(linker_file_t lf __unused)
278 {
279
280         return (0);
281 }
282
283 int
284 elf_cpu_unload_file(linker_file_t lf __unused)
285 {
286
287         return (0);
288 }