]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/amd64/amd64/elf_machdep.c
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.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/sysent.h>
36 #include <sys/imgact_elf.h>
37 #include <sys/syscall.h>
38 #include <sys/signalvar.h>
39 #include <sys/vnode.h>
40
41 #include <vm/vm.h>
42 #include <vm/pmap.h>
43 #include <vm/vm_param.h>
44
45 #include <machine/elf.h>
46 #include <machine/md_var.h>
47
48 struct sysentvec elf64_freebsd_sysvec = {
49         .sv_size        = SYS_MAXSYSCALL,
50         .sv_table       = sysent,
51         .sv_mask        = 0,
52         .sv_sigsize     = 0,
53         .sv_sigtbl      = NULL,
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_prepsyscall = NULL,
62         .sv_name        = "FreeBSD ELF64",
63         .sv_coredump    = __elfN(coredump),
64         .sv_imgact_try  = NULL,
65         .sv_minsigstksz = MINSIGSTKSZ,
66         .sv_pagesize    = PAGE_SIZE,
67         .sv_minuser     = VM_MIN_ADDRESS,
68         .sv_maxuser     = VM_MAXUSER_ADDRESS,
69         .sv_usrstack    = USRSTACK,
70         .sv_psstrings   = PS_STRINGS,
71         .sv_stackprot   = VM_PROT_ALL,
72         .sv_copyout_strings     = exec_copyout_strings,
73         .sv_setregs     = exec_setregs,
74         .sv_fixlimit    = NULL,
75         .sv_maxssiz     = NULL,
76         .sv_flags       = SV_ABI_FREEBSD | SV_LP64
77 };
78
79 static Elf64_Brandinfo freebsd_brand_info = {
80         .brand          = ELFOSABI_FREEBSD,
81         .machine        = EM_X86_64,
82         .compat_3_brand = "FreeBSD",
83         .emul_path      = NULL,
84         .interp_path    = "/libexec/ld-elf.so.1",
85         .sysvec         = &elf64_freebsd_sysvec,
86         .interp_newpath = NULL,
87         .brand_note     = &elf64_freebsd_brandnote,
88         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
89 };
90
91 SYSINIT(elf64, SI_SUB_EXEC, SI_ORDER_ANY,
92         (sysinit_cfunc_t) elf64_insert_brand_entry,
93         &freebsd_brand_info);
94
95 static Elf64_Brandinfo freebsd_brand_oinfo = {
96         .brand          = ELFOSABI_FREEBSD,
97         .machine        = EM_X86_64,
98         .compat_3_brand = "FreeBSD",
99         .emul_path      = NULL,
100         .interp_path    = "/usr/libexec/ld-elf.so.1",
101         .sysvec         = &elf64_freebsd_sysvec,
102         .interp_newpath = NULL,
103         .brand_note     = &elf64_freebsd_brandnote,
104         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
105 };
106
107 SYSINIT(oelf64, SI_SUB_EXEC, SI_ORDER_ANY,
108         (sysinit_cfunc_t) elf64_insert_brand_entry,
109         &freebsd_brand_oinfo);
110
111
112 void
113 elf64_dump_thread(struct thread *td __unused, void *dst __unused,
114     size_t *off __unused)
115 {
116 }
117
118
119 /* Process one elf relocation with addend. */
120 static int
121 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
122     int type, int local, elf_lookup_fn lookup)
123 {
124         Elf64_Addr *where, val;
125         Elf32_Addr *where32, val32;
126         Elf_Addr addr;
127         Elf_Addr addend;
128         Elf_Size rtype, symidx;
129         const Elf_Rel *rel;
130         const Elf_Rela *rela;
131
132         switch (type) {
133         case ELF_RELOC_REL:
134                 rel = (const Elf_Rel *)data;
135                 where = (Elf_Addr *) (relocbase + rel->r_offset);
136                 rtype = ELF_R_TYPE(rel->r_info);
137                 symidx = ELF_R_SYM(rel->r_info);
138                 /* Addend is 32 bit on 32 bit relocs */
139                 switch (rtype) {
140                 case R_X86_64_PC32:
141                 case R_X86_64_32S:
142                         addend = *(Elf32_Addr *)where;
143                         break;
144                 default:
145                         addend = *where;
146                         break;
147                 }
148                 break;
149         case ELF_RELOC_RELA:
150                 rela = (const Elf_Rela *)data;
151                 where = (Elf_Addr *) (relocbase + rela->r_offset);
152                 addend = rela->r_addend;
153                 rtype = ELF_R_TYPE(rela->r_info);
154                 symidx = ELF_R_SYM(rela->r_info);
155                 break;
156         default:
157                 panic("unknown reloc type %d\n", type);
158         }
159
160         switch (rtype) {
161
162                 case R_X86_64_NONE:     /* none */
163                         break;
164
165                 case R_X86_64_64:               /* S + A */
166                         addr = lookup(lf, symidx, 1);
167                         val = addr + addend;
168                         if (addr == 0)
169                                 return -1;
170                         if (*where != val)
171                                 *where = val;
172                         break;
173
174                 case R_X86_64_PC32:     /* S + A - P */
175                         addr = lookup(lf, symidx, 1);
176                         where32 = (Elf32_Addr *)where;
177                         val32 = (Elf32_Addr)(addr + addend - (Elf_Addr)where);
178                         if (addr == 0)
179                                 return -1;
180                         if (*where32 != val32)
181                                 *where32 = val32;
182                         break;
183
184                 case R_X86_64_32S:      /* S + A sign extend */
185                         addr = lookup(lf, symidx, 1);
186                         val32 = (Elf32_Addr)(addr + addend);
187                         where32 = (Elf32_Addr *)where;
188                         if (addr == 0)
189                                 return -1;
190                         if (*where32 != val32)
191                                 *where32 = val32;
192                         break;
193
194                 case R_X86_64_COPY:     /* none */
195                         /*
196                          * There shouldn't be copy relocations in kernel
197                          * objects.
198                          */
199                         printf("kldload: unexpected R_COPY relocation\n");
200                         return -1;
201                         break;
202
203                 case R_X86_64_GLOB_DAT: /* S */
204                 case R_X86_64_JMP_SLOT: /* XXX need addend + offset */
205                         addr = lookup(lf, symidx, 1);
206                         if (addr == 0)
207                                 return -1;
208                         if (*where != addr)
209                                 *where = addr;
210                         break;
211
212                 case R_X86_64_RELATIVE: /* B + A */
213                         addr = relocbase + addend;
214                         val = addr;
215                         if (*where != val)
216                                 *where = val;
217                         break;
218
219                 default:
220                         printf("kldload: unexpected relocation type %ld\n",
221                                rtype);
222                         return -1;
223         }
224         return(0);
225 }
226
227 int
228 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
229     elf_lookup_fn lookup)
230 {
231
232         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
233 }
234
235 int
236 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
237     int type, elf_lookup_fn lookup)
238 {
239
240         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
241 }
242
243 int
244 elf_cpu_load_file(linker_file_t lf __unused)
245 {
246
247         return (0);
248 }
249
250 int
251 elf_cpu_unload_file(linker_file_t lf __unused)
252 {
253
254         return (0);
255 }