]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/i386/i386/elf_machdep.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 <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 elf32_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 ELF32",
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_IA32 | SV_ILP32
77 };
78
79 static Elf32_Brandinfo freebsd_brand_info = {
80         .brand          = ELFOSABI_FREEBSD,
81         .machine        = EM_386,
82         .compat_3_brand = "FreeBSD",
83         .emul_path      = NULL,
84         .interp_path    = "/libexec/ld-elf.so.1",
85         .sysvec         = &elf32_freebsd_sysvec,
86         .interp_newpath = NULL,
87         .brand_note     = &elf32_freebsd_brandnote,
88         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
89 };
90
91 SYSINIT(elf32, SI_SUB_EXEC, SI_ORDER_FIRST,
92         (sysinit_cfunc_t) elf32_insert_brand_entry,
93         &freebsd_brand_info);
94
95 static Elf32_Brandinfo freebsd_brand_oinfo = {
96         .brand          = ELFOSABI_FREEBSD,
97         .machine        = EM_386,
98         .compat_3_brand = "FreeBSD",
99         .emul_path      = NULL,
100         .interp_path    = "/usr/libexec/ld-elf.so.1",
101         .sysvec         = &elf32_freebsd_sysvec,
102         .interp_newpath = NULL,
103         .brand_note     = &elf32_freebsd_brandnote,
104         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
105 };
106
107 SYSINIT(oelf32, SI_SUB_EXEC, SI_ORDER_ANY,
108         (sysinit_cfunc_t) elf32_insert_brand_entry,
109         &freebsd_brand_oinfo);
110
111 static Elf32_Brandinfo kfreebsd_brand_info = {
112         .brand          = ELFOSABI_FREEBSD,
113         .machine        = EM_386,
114         .compat_3_brand = "FreeBSD",
115         .emul_path      = NULL,
116         .interp_path    = "/lib/ld.so.1",
117         .sysvec         = &elf32_freebsd_sysvec,
118         .interp_newpath = NULL,
119         .brand_note     = &elf32_kfreebsd_brandnote,
120         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE_MANDATORY
121 };
122
123 SYSINIT(kelf32, SI_SUB_EXEC, SI_ORDER_ANY,
124         (sysinit_cfunc_t) elf32_insert_brand_entry,
125         &kfreebsd_brand_info);
126
127
128 void
129 elf32_dump_thread(struct thread *td __unused, void *dst __unused,
130     size_t *off __unused)
131 {
132 }
133
134
135 /* Process one elf relocation with addend. */
136 static int
137 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
138     int type, int local, elf_lookup_fn lookup)
139 {
140         Elf_Addr *where;
141         Elf_Addr addr;
142         Elf_Addr addend;
143         Elf_Word rtype, symidx;
144         const Elf_Rel *rel;
145         const Elf_Rela *rela;
146
147         switch (type) {
148         case ELF_RELOC_REL:
149                 rel = (const Elf_Rel *)data;
150                 where = (Elf_Addr *) (relocbase + rel->r_offset);
151                 addend = *where;
152                 rtype = ELF_R_TYPE(rel->r_info);
153                 symidx = ELF_R_SYM(rel->r_info);
154                 break;
155         case ELF_RELOC_RELA:
156                 rela = (const Elf_Rela *)data;
157                 where = (Elf_Addr *) (relocbase + rela->r_offset);
158                 addend = rela->r_addend;
159                 rtype = ELF_R_TYPE(rela->r_info);
160                 symidx = ELF_R_SYM(rela->r_info);
161                 break;
162         default:
163                 panic("unknown reloc type %d\n", type);
164         }
165
166         if (local) {
167                 if (rtype == R_386_RELATIVE) {  /* A + B */
168                         addr = elf_relocaddr(lf, relocbase + addend);
169                         if (*where != addr)
170                                 *where = addr;
171                 }
172                 return (0);
173         }
174
175         switch (rtype) {
176
177                 case R_386_NONE:        /* none */
178                         break;
179
180                 case R_386_32:          /* S + A */
181                         addr = lookup(lf, symidx, 1);
182                         if (addr == 0)
183                                 return -1;
184                         addr += addend;
185                         if (*where != addr)
186                                 *where = addr;
187                         break;
188
189                 case R_386_PC32:        /* S + A - P */
190                         addr = lookup(lf, symidx, 1);
191                         if (addr == 0)
192                                 return -1;
193                         addr += addend - (Elf_Addr)where;
194                         if (*where != addr)
195                                 *where = addr;
196                         break;
197
198                 case R_386_COPY:        /* none */
199                         /*
200                          * There shouldn't be copy relocations in kernel
201                          * objects.
202                          */
203                         printf("kldload: unexpected R_COPY relocation\n");
204                         return -1;
205                         break;
206
207                 case R_386_GLOB_DAT:    /* S */
208                         addr = lookup(lf, symidx, 1);
209                         if (addr == 0)
210                                 return -1;
211                         if (*where != addr)
212                                 *where = addr;
213                         break;
214
215                 case R_386_RELATIVE:
216                         break;
217
218                 default:
219                         printf("kldload: unexpected relocation type %d\n",
220                                rtype);
221                         return -1;
222         }
223         return(0);
224 }
225
226 int
227 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
228     elf_lookup_fn lookup)
229 {
230
231         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
232 }
233
234 int
235 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
236     int type, elf_lookup_fn lookup)
237 {
238
239         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
240 }
241
242 int
243 elf_cpu_load_file(linker_file_t lf __unused)
244 {
245
246         return (0);
247 }
248
249 int
250 elf_cpu_unload_file(linker_file_t lf __unused)
251 {
252
253         return (0);
254 }