]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/powerpc/elf32_machdep.c
MFV r330973: 9164 assert: newds == os->os_dsl_dataset
[FreeBSD/FreeBSD.git] / sys / powerpc / powerpc / elf32_machdep.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright 1996-1998 John D. Polstra.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29
30 #include <sys/param.h>
31 #include <sys/kernel.h>
32 #include <sys/systm.h>
33
34 #define __ELF_WORD_SIZE 32
35
36 #include <sys/exec.h>
37 #include <sys/imgact.h>
38 #include <sys/malloc.h>
39 #include <sys/proc.h>
40 #include <sys/namei.h>
41 #include <sys/fcntl.h>
42 #include <sys/sysent.h>
43 #include <sys/imgact_elf.h>
44 #include <sys/syscall.h>
45 #include <sys/sysctl.h>
46 #include <sys/signalvar.h>
47 #include <sys/vnode.h>
48 #include <sys/linker.h>
49
50 #include <vm/vm.h>
51 #include <vm/vm_param.h>
52
53 #include <machine/altivec.h>
54 #include <machine/cpu.h>
55 #include <machine/elf.h>
56 #include <machine/reg.h>
57 #include <machine/md_var.h>
58
59 #ifdef __powerpc64__
60 #include <compat/freebsd32/freebsd32_proto.h>
61 #include <compat/freebsd32/freebsd32_util.h>
62
63 extern const char *freebsd32_syscallnames[];
64 static void ppc32_fixlimit(struct rlimit *rl, int which);
65
66 static SYSCTL_NODE(_compat, OID_AUTO, ppc32, CTLFLAG_RW, 0, "32-bit mode");
67
68 #define PPC32_MAXDSIZ (1024*1024*1024)
69 static u_long ppc32_maxdsiz = PPC32_MAXDSIZ;
70 SYSCTL_ULONG(_compat_ppc32, OID_AUTO, maxdsiz, CTLFLAG_RWTUN, &ppc32_maxdsiz,
71              0, "");
72 #define PPC32_MAXSSIZ (64*1024*1024)
73 u_long ppc32_maxssiz = PPC32_MAXSSIZ;
74 SYSCTL_ULONG(_compat_ppc32, OID_AUTO, maxssiz, CTLFLAG_RWTUN, &ppc32_maxssiz,
75              0, "");
76 #endif
77
78 struct sysentvec elf32_freebsd_sysvec = {
79         .sv_size        = SYS_MAXSYSCALL,
80 #ifdef __powerpc64__
81         .sv_table       = freebsd32_sysent,
82 #else
83         .sv_table       = sysent,
84 #endif
85         .sv_mask        = 0,
86         .sv_errsize     = 0,
87         .sv_errtbl      = NULL,
88         .sv_transtrap   = NULL,
89         .sv_fixup       = __elfN(freebsd_fixup),
90         .sv_sendsig     = sendsig,
91         .sv_sigcode     = sigcode32,
92         .sv_szsigcode   = &szsigcode32,
93         .sv_name        = "FreeBSD ELF32",
94         .sv_coredump    = __elfN(coredump),
95         .sv_imgact_try  = NULL,
96         .sv_minsigstksz = MINSIGSTKSZ,
97         .sv_pagesize    = PAGE_SIZE,
98         .sv_minuser     = VM_MIN_ADDRESS,
99         .sv_stackprot   = VM_PROT_ALL,
100 #ifdef __powerpc64__
101         .sv_maxuser     = VM_MAXUSER_ADDRESS,
102         .sv_usrstack    = FREEBSD32_USRSTACK,
103         .sv_psstrings   = FREEBSD32_PS_STRINGS,
104         .sv_copyout_strings = freebsd32_copyout_strings,
105         .sv_setregs     = ppc32_setregs,
106         .sv_syscallnames = freebsd32_syscallnames,
107         .sv_fixlimit    = ppc32_fixlimit,
108 #else
109         .sv_maxuser     = VM_MAXUSER_ADDRESS,
110         .sv_usrstack    = USRSTACK,
111         .sv_psstrings   = PS_STRINGS,
112         .sv_copyout_strings = exec_copyout_strings,
113         .sv_setregs     = exec_setregs,
114         .sv_syscallnames = syscallnames,
115         .sv_fixlimit    = NULL,
116 #endif
117         .sv_maxssiz     = NULL,
118         .sv_flags       = SV_ABI_FREEBSD | SV_ILP32 | SV_SHP,
119         .sv_set_syscall_retval = cpu_set_syscall_retval,
120         .sv_fetch_syscall_args = cpu_fetch_syscall_args,
121         .sv_shared_page_base = FREEBSD32_SHAREDPAGE,
122         .sv_shared_page_len = PAGE_SIZE,
123         .sv_schedtail   = NULL,
124         .sv_thread_detach = NULL,
125         .sv_trap        = NULL,
126 };
127 INIT_SYSENTVEC(elf32_sysvec, &elf32_freebsd_sysvec);
128
129 static Elf32_Brandinfo freebsd_brand_info = {
130         .brand          = ELFOSABI_FREEBSD,
131         .machine        = EM_PPC,
132         .compat_3_brand = "FreeBSD",
133         .emul_path      = NULL,
134         .interp_path    = "/libexec/ld-elf.so.1",
135         .sysvec         = &elf32_freebsd_sysvec,
136 #ifdef __powerpc64__
137         .interp_newpath = "/libexec/ld-elf32.so.1",
138 #else
139         .interp_newpath = NULL,
140 #endif
141         .brand_note     = &elf32_freebsd_brandnote,
142         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
143 };
144
145 SYSINIT(elf32, SI_SUB_EXEC, SI_ORDER_FIRST,
146     (sysinit_cfunc_t) elf32_insert_brand_entry,
147     &freebsd_brand_info);
148
149 static Elf32_Brandinfo freebsd_brand_oinfo = {
150         .brand          = ELFOSABI_FREEBSD,
151         .machine        = EM_PPC,
152         .compat_3_brand = "FreeBSD",
153         .emul_path      = NULL,
154         .interp_path    = "/usr/libexec/ld-elf.so.1",
155         .sysvec         = &elf32_freebsd_sysvec,
156         .interp_newpath = NULL,
157         .brand_note     = &elf32_freebsd_brandnote,
158         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
159 };
160
161 SYSINIT(oelf32, SI_SUB_EXEC, SI_ORDER_ANY,
162         (sysinit_cfunc_t) elf32_insert_brand_entry,
163         &freebsd_brand_oinfo);
164
165 void elf_reloc_self(Elf_Dyn *dynp, Elf_Addr relocbase);
166
167 void
168 elf32_dump_thread(struct thread *td, void *dst, size_t *off)
169 {
170         size_t len;
171         struct pcb *pcb;
172
173         len = 0;
174         pcb = td->td_pcb;
175         if (pcb->pcb_flags & PCB_VEC) {
176                 save_vec_nodrop(td);
177                 if (dst != NULL) {
178                         len += elf32_populate_note(NT_PPC_VMX,
179                             &pcb->pcb_vec, dst,
180                             sizeof(pcb->pcb_vec), NULL);
181                 } else
182                         len += elf32_populate_note(NT_PPC_VMX, NULL, NULL,
183                             sizeof(pcb->pcb_vec), NULL);
184         }
185         *off = len;
186 }
187
188 #ifndef __powerpc64__
189 /* Process one elf relocation with addend. */
190 static int
191 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
192     int type, int local, elf_lookup_fn lookup)
193 {
194         Elf_Addr *where;
195         Elf_Half *hwhere;
196         Elf_Addr addr;
197         Elf_Addr addend;
198         Elf_Word rtype, symidx;
199         const Elf_Rela *rela;
200         int error;
201
202         switch (type) {
203         case ELF_RELOC_REL:
204                 panic("PPC only supports RELA relocations");
205                 break;
206         case ELF_RELOC_RELA:
207                 rela = (const Elf_Rela *)data;
208                 where = (Elf_Addr *) ((uintptr_t)relocbase + rela->r_offset);
209                 hwhere = (Elf_Half *) ((uintptr_t)relocbase + rela->r_offset);
210                 addend = rela->r_addend;
211                 rtype = ELF_R_TYPE(rela->r_info);
212                 symidx = ELF_R_SYM(rela->r_info);
213                 break;
214         default:
215                 panic("elf_reloc: unknown relocation mode %d\n", type);
216         }
217
218         switch (rtype) {
219
220         case R_PPC_NONE:
221                 break;
222
223         case R_PPC_ADDR32: /* word32 S + A */
224                 error = lookup(lf, symidx, 1, &addr);
225                 if (error != 0)
226                         return -1;
227                 *where = elf_relocaddr(lf, addr + addend);
228                         break;
229
230         case R_PPC_ADDR16_LO: /* #lo(S) */
231                 error = lookup(lf, symidx, 1, &addr);
232                 if (error != 0)
233                         return -1;
234                 /*
235                  * addend values are sometimes relative to sections
236                  * (i.e. .rodata) in rela, where in reality they
237                  * are relative to relocbase. Detect this condition.
238                  */
239                 if (addr > relocbase && addr <= (relocbase + addend))
240                         addr = relocbase;
241                 addr = elf_relocaddr(lf, addr + addend);
242                 *hwhere = addr & 0xffff;
243                 break;
244
245         case R_PPC_ADDR16_HA: /* #ha(S) */
246                 error = lookup(lf, symidx, 1, &addr);
247                 if (error != 0)
248                         return -1;
249                 /*
250                  * addend values are sometimes relative to sections
251                  * (i.e. .rodata) in rela, where in reality they
252                  * are relative to relocbase. Detect this condition.
253                  */
254                 if (addr > relocbase && addr <= (relocbase + addend))
255                         addr = relocbase;
256                 addr = elf_relocaddr(lf, addr + addend);
257                 *hwhere = ((addr >> 16) + ((addr & 0x8000) ? 1 : 0))
258                     & 0xffff;
259                 break;
260
261         case R_PPC_RELATIVE: /* word32 B + A */
262                 *where = elf_relocaddr(lf, relocbase + addend);
263                 break;
264
265         default:
266                 printf("kldload: unexpected relocation type %d\n",
267                     (int) rtype);
268                 return -1;
269         }
270         return(0);
271 }
272
273 void
274 elf_reloc_self(Elf_Dyn *dynp, Elf_Addr relocbase)
275 {
276         Elf_Rela *rela = NULL, *relalim;
277         Elf_Addr relasz = 0;
278         Elf_Addr *where;
279
280         /*
281          * Extract the rela/relasz values from the dynamic section
282          */
283         for (; dynp->d_tag != DT_NULL; dynp++) {
284                 switch (dynp->d_tag) {
285                 case DT_RELA:
286                         rela = (Elf_Rela *)(relocbase+dynp->d_un.d_ptr);
287                         break;
288                 case DT_RELASZ:
289                         relasz = dynp->d_un.d_val;
290                         break;
291                 }
292         }
293
294         /*
295          * Relocate these values
296          */
297         relalim = (Elf_Rela *)((caddr_t)rela + relasz);
298         for (; rela < relalim; rela++) {
299                 if (ELF_R_TYPE(rela->r_info) != R_PPC_RELATIVE)
300                         continue;
301                 where = (Elf_Addr *)(relocbase + rela->r_offset);
302                 *where = (Elf_Addr)(relocbase + rela->r_addend);
303         }
304 }
305
306 int
307 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
308     elf_lookup_fn lookup)
309 {
310
311         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
312 }
313
314 int
315 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
316     int type, elf_lookup_fn lookup)
317 {
318
319         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
320 }
321
322 int
323 elf_cpu_load_file(linker_file_t lf)
324 {
325         /* Only sync the cache for non-kernel modules */
326         if (lf->id != 1)
327                 __syncicache(lf->address, lf->size);
328         return (0);
329 }
330
331 int
332 elf_cpu_unload_file(linker_file_t lf __unused)
333 {
334
335         return (0);
336 }
337 #endif
338
339 #ifdef __powerpc64__
340 static void
341 ppc32_fixlimit(struct rlimit *rl, int which)
342 {
343         switch (which) {
344         case RLIMIT_DATA:
345                 if (ppc32_maxdsiz != 0) {
346                         if (rl->rlim_cur > ppc32_maxdsiz)
347                                 rl->rlim_cur = ppc32_maxdsiz;
348                         if (rl->rlim_max > ppc32_maxdsiz)
349                                 rl->rlim_max = ppc32_maxdsiz;
350                 }
351                 break;
352         case RLIMIT_STACK:
353                 if (ppc32_maxssiz != 0) {
354                         if (rl->rlim_cur > ppc32_maxssiz)
355                                 rl->rlim_cur = ppc32_maxssiz;
356                         if (rl->rlim_max > ppc32_maxssiz)
357                                 rl->rlim_max = ppc32_maxssiz;
358                 }
359                 break;
360         }
361 }
362 #endif