]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/powerpc/elf32_machdep.c
MFV r337020:9443 panic when scrub a v10 pool
[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/fpu.h>
56 #include <machine/elf.h>
57 #include <machine/reg.h>
58 #include <machine/md_var.h>
59
60 #ifdef __powerpc64__
61 #include <compat/freebsd32/freebsd32_proto.h>
62 #include <compat/freebsd32/freebsd32_util.h>
63
64 extern const char *freebsd32_syscallnames[];
65 static void ppc32_fixlimit(struct rlimit *rl, int which);
66
67 static SYSCTL_NODE(_compat, OID_AUTO, ppc32, CTLFLAG_RW, 0, "32-bit mode");
68
69 #define PPC32_MAXDSIZ (1024*1024*1024)
70 static u_long ppc32_maxdsiz = PPC32_MAXDSIZ;
71 SYSCTL_ULONG(_compat_ppc32, OID_AUTO, maxdsiz, CTLFLAG_RWTUN, &ppc32_maxdsiz,
72              0, "");
73 #define PPC32_MAXSSIZ (64*1024*1024)
74 u_long ppc32_maxssiz = PPC32_MAXSSIZ;
75 SYSCTL_ULONG(_compat_ppc32, OID_AUTO, maxssiz, CTLFLAG_RWTUN, &ppc32_maxssiz,
76              0, "");
77 #endif
78
79 struct sysentvec elf32_freebsd_sysvec = {
80         .sv_size        = SYS_MAXSYSCALL,
81 #ifdef __powerpc64__
82         .sv_table       = freebsd32_sysent,
83 #else
84         .sv_table       = sysent,
85 #endif
86         .sv_mask        = 0,
87         .sv_errsize     = 0,
88         .sv_errtbl      = NULL,
89         .sv_transtrap   = NULL,
90         .sv_fixup       = __elfN(freebsd_fixup),
91         .sv_sendsig     = sendsig,
92         .sv_sigcode     = sigcode32,
93         .sv_szsigcode   = &szsigcode32,
94         .sv_name        = "FreeBSD ELF32",
95         .sv_coredump    = __elfN(coredump),
96         .sv_imgact_try  = NULL,
97         .sv_minsigstksz = MINSIGSTKSZ,
98         .sv_pagesize    = PAGE_SIZE,
99         .sv_minuser     = VM_MIN_ADDRESS,
100         .sv_stackprot   = VM_PROT_ALL,
101 #ifdef __powerpc64__
102         .sv_maxuser     = VM_MAXUSER_ADDRESS,
103         .sv_usrstack    = FREEBSD32_USRSTACK,
104         .sv_psstrings   = FREEBSD32_PS_STRINGS,
105         .sv_copyout_strings = freebsd32_copyout_strings,
106         .sv_setregs     = ppc32_setregs,
107         .sv_syscallnames = freebsd32_syscallnames,
108         .sv_fixlimit    = ppc32_fixlimit,
109 #else
110         .sv_maxuser     = VM_MAXUSER_ADDRESS,
111         .sv_usrstack    = USRSTACK,
112         .sv_psstrings   = PS_STRINGS,
113         .sv_copyout_strings = exec_copyout_strings,
114         .sv_setregs     = exec_setregs,
115         .sv_syscallnames = syscallnames,
116         .sv_fixlimit    = NULL,
117 #endif
118         .sv_maxssiz     = NULL,
119         .sv_flags       = SV_ABI_FREEBSD | SV_ILP32 | SV_SHP,
120         .sv_set_syscall_retval = cpu_set_syscall_retval,
121         .sv_fetch_syscall_args = cpu_fetch_syscall_args,
122         .sv_shared_page_base = FREEBSD32_SHAREDPAGE,
123         .sv_shared_page_len = PAGE_SIZE,
124         .sv_schedtail   = NULL,
125         .sv_thread_detach = NULL,
126         .sv_trap        = NULL,
127         .sv_hwcap       = &cpu_features,
128         .sv_hwcap2      = &cpu_features2,
129 };
130 INIT_SYSENTVEC(elf32_sysvec, &elf32_freebsd_sysvec);
131
132 static Elf32_Brandinfo freebsd_brand_info = {
133         .brand          = ELFOSABI_FREEBSD,
134         .machine        = EM_PPC,
135         .compat_3_brand = "FreeBSD",
136         .emul_path      = NULL,
137         .interp_path    = "/libexec/ld-elf.so.1",
138         .sysvec         = &elf32_freebsd_sysvec,
139 #ifdef __powerpc64__
140         .interp_newpath = "/libexec/ld-elf32.so.1",
141 #else
142         .interp_newpath = NULL,
143 #endif
144         .brand_note     = &elf32_freebsd_brandnote,
145         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
146 };
147
148 SYSINIT(elf32, SI_SUB_EXEC, SI_ORDER_FIRST,
149     (sysinit_cfunc_t) elf32_insert_brand_entry,
150     &freebsd_brand_info);
151
152 static Elf32_Brandinfo freebsd_brand_oinfo = {
153         .brand          = ELFOSABI_FREEBSD,
154         .machine        = EM_PPC,
155         .compat_3_brand = "FreeBSD",
156         .emul_path      = NULL,
157         .interp_path    = "/usr/libexec/ld-elf.so.1",
158         .sysvec         = &elf32_freebsd_sysvec,
159         .interp_newpath = NULL,
160         .brand_note     = &elf32_freebsd_brandnote,
161         .flags          = BI_CAN_EXEC_DYN | BI_BRAND_NOTE
162 };
163
164 SYSINIT(oelf32, SI_SUB_EXEC, SI_ORDER_ANY,
165         (sysinit_cfunc_t) elf32_insert_brand_entry,
166         &freebsd_brand_oinfo);
167
168 void elf_reloc_self(Elf_Dyn *dynp, Elf_Addr relocbase);
169
170 void
171 elf32_dump_thread(struct thread *td, void *dst, size_t *off)
172 {
173         size_t len;
174         struct pcb *pcb;
175         uint64_t vshr[32];
176         uint64_t *vsr_dw1;
177         int vsr_idx;
178
179         len = 0;
180         pcb = td->td_pcb;
181
182         if (pcb->pcb_flags & PCB_VEC) {
183                 save_vec_nodrop(td);
184                 if (dst != NULL) {
185                         len += elf32_populate_note(NT_PPC_VMX,
186                             &pcb->pcb_vec, (char *)dst + len,
187                             sizeof(pcb->pcb_vec), NULL);
188                 } else
189                         len += elf32_populate_note(NT_PPC_VMX, NULL, NULL,
190                             sizeof(pcb->pcb_vec), NULL);
191         }
192
193         if (pcb->pcb_flags & PCB_VSX) {
194                 save_fpu_nodrop(td);
195                 if (dst != NULL) {
196                         /*
197                          * Doubleword 0 of VSR0-VSR31 overlap with FPR0-FPR31 and
198                          * VSR32-VSR63 overlap with VR0-VR31, so we only copy
199                          * the non-overlapping data, which is doubleword 1 of VSR0-VSR31.
200                          */
201                         for (vsr_idx = 0; vsr_idx < nitems(vshr); vsr_idx++) {
202                                 vsr_dw1 = (uint64_t *)&pcb->pcb_fpu.fpr[vsr_idx].vsr[2];
203                                 vshr[vsr_idx] = *vsr_dw1;
204                         }
205                         len += elf32_populate_note(NT_PPC_VSX,
206                             vshr, (char *)dst + len,
207                             sizeof(vshr), NULL);
208                 } else
209                         len += elf32_populate_note(NT_PPC_VSX, NULL, NULL,
210                             sizeof(vshr), NULL);
211         }
212
213         *off = len;
214 }
215
216 #ifndef __powerpc64__
217 /* Process one elf relocation with addend. */
218 static int
219 elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
220     int type, int local, elf_lookup_fn lookup)
221 {
222         Elf_Addr *where;
223         Elf_Half *hwhere;
224         Elf_Addr addr;
225         Elf_Addr addend;
226         Elf_Word rtype, symidx;
227         const Elf_Rela *rela;
228         int error;
229
230         switch (type) {
231         case ELF_RELOC_REL:
232                 panic("PPC only supports RELA relocations");
233                 break;
234         case ELF_RELOC_RELA:
235                 rela = (const Elf_Rela *)data;
236                 where = (Elf_Addr *) ((uintptr_t)relocbase + rela->r_offset);
237                 hwhere = (Elf_Half *) ((uintptr_t)relocbase + rela->r_offset);
238                 addend = rela->r_addend;
239                 rtype = ELF_R_TYPE(rela->r_info);
240                 symidx = ELF_R_SYM(rela->r_info);
241                 break;
242         default:
243                 panic("elf_reloc: unknown relocation mode %d\n", type);
244         }
245
246         switch (rtype) {
247
248         case R_PPC_NONE:
249                 break;
250
251         case R_PPC_ADDR32: /* word32 S + A */
252                 error = lookup(lf, symidx, 1, &addr);
253                 if (error != 0)
254                         return -1;
255                 *where = elf_relocaddr(lf, addr + addend);
256                         break;
257
258         case R_PPC_ADDR16_LO: /* #lo(S) */
259                 error = lookup(lf, symidx, 1, &addr);
260                 if (error != 0)
261                         return -1;
262                 /*
263                  * addend values are sometimes relative to sections
264                  * (i.e. .rodata) in rela, where in reality they
265                  * are relative to relocbase. Detect this condition.
266                  */
267                 if (addr > relocbase && addr <= (relocbase + addend))
268                         addr = relocbase;
269                 addr = elf_relocaddr(lf, addr + addend);
270                 *hwhere = addr & 0xffff;
271                 break;
272
273         case R_PPC_ADDR16_HA: /* #ha(S) */
274                 error = lookup(lf, symidx, 1, &addr);
275                 if (error != 0)
276                         return -1;
277                 /*
278                  * addend values are sometimes relative to sections
279                  * (i.e. .rodata) in rela, where in reality they
280                  * are relative to relocbase. Detect this condition.
281                  */
282                 if (addr > relocbase && addr <= (relocbase + addend))
283                         addr = relocbase;
284                 addr = elf_relocaddr(lf, addr + addend);
285                 *hwhere = ((addr >> 16) + ((addr & 0x8000) ? 1 : 0))
286                     & 0xffff;
287                 break;
288
289         case R_PPC_RELATIVE: /* word32 B + A */
290                 *where = elf_relocaddr(lf, relocbase + addend);
291                 break;
292
293         default:
294                 printf("kldload: unexpected relocation type %d\n",
295                     (int) rtype);
296                 return -1;
297         }
298         return(0);
299 }
300
301 void
302 elf_reloc_self(Elf_Dyn *dynp, Elf_Addr relocbase)
303 {
304         Elf_Rela *rela = NULL, *relalim;
305         Elf_Addr relasz = 0;
306         Elf_Addr *where;
307
308         /*
309          * Extract the rela/relasz values from the dynamic section
310          */
311         for (; dynp->d_tag != DT_NULL; dynp++) {
312                 switch (dynp->d_tag) {
313                 case DT_RELA:
314                         rela = (Elf_Rela *)(relocbase+dynp->d_un.d_ptr);
315                         break;
316                 case DT_RELASZ:
317                         relasz = dynp->d_un.d_val;
318                         break;
319                 }
320         }
321
322         /*
323          * Relocate these values
324          */
325         relalim = (Elf_Rela *)((caddr_t)rela + relasz);
326         for (; rela < relalim; rela++) {
327                 if (ELF_R_TYPE(rela->r_info) != R_PPC_RELATIVE)
328                         continue;
329                 where = (Elf_Addr *)(relocbase + rela->r_offset);
330                 *where = (Elf_Addr)(relocbase + rela->r_addend);
331         }
332 }
333
334 int
335 elf_reloc(linker_file_t lf, Elf_Addr relocbase, const void *data, int type,
336     elf_lookup_fn lookup)
337 {
338
339         return (elf_reloc_internal(lf, relocbase, data, type, 0, lookup));
340 }
341
342 int
343 elf_reloc_local(linker_file_t lf, Elf_Addr relocbase, const void *data,
344     int type, elf_lookup_fn lookup)
345 {
346
347         return (elf_reloc_internal(lf, relocbase, data, type, 1, lookup));
348 }
349
350 int
351 elf_cpu_load_file(linker_file_t lf)
352 {
353         /* Only sync the cache for non-kernel modules */
354         if (lf->id != 1)
355                 __syncicache(lf->address, lf->size);
356         return (0);
357 }
358
359 int
360 elf_cpu_unload_file(linker_file_t lf __unused)
361 {
362
363         return (0);
364 }
365 #endif
366
367 #ifdef __powerpc64__
368 static void
369 ppc32_fixlimit(struct rlimit *rl, int which)
370 {
371         switch (which) {
372         case RLIMIT_DATA:
373                 if (ppc32_maxdsiz != 0) {
374                         if (rl->rlim_cur > ppc32_maxdsiz)
375                                 rl->rlim_cur = ppc32_maxdsiz;
376                         if (rl->rlim_max > ppc32_maxdsiz)
377                                 rl->rlim_max = ppc32_maxdsiz;
378                 }
379                 break;
380         case RLIMIT_STACK:
381                 if (ppc32_maxssiz != 0) {
382                         if (rl->rlim_cur > ppc32_maxssiz)
383                                 rl->rlim_cur = ppc32_maxssiz;
384                         if (rl->rlim_max > ppc32_maxssiz)
385                                 rl->rlim_max = ppc32_maxssiz;
386                 }
387                 break;
388         }
389 }
390 #endif