1 /*- 2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org> 3 * Copyright (c) 1998 Peter Wemm <peter@freebsd.org> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <sys/param.h> 29 #include <sys/endian.h> 30 #include <sys/exec.h> 31 #include <sys/linker.h> 32 #include <sys/module.h> 33 #include <machine/elf.h> 34 #include <stand.h> 35 36 #include "bootstrap.h" 37 #include "modinfo.h" 38 39 #define COPYOUT(s,d,l) archsw.arch_copyout((vm_offset_t)(s), d, l) 40 41 #if defined(__i386__) && __ELF_WORD_SIZE == 64 42 #undef ELF_TARG_CLASS 43 #undef ELF_TARG_MACH 44 #define ELF_TARG_CLASS ELFCLASS64 45 #define ELF_TARG_MACH EM_X86_64 46 #endif 47 48 typedef struct elf_file { 49 Elf_Phdr *ph; 50 Elf_Ehdr *ehdr; 51 Elf_Sym *symtab; 52 Elf_Hashelt *hashtab; 53 Elf_Hashelt nbuckets; 54 Elf_Hashelt nchains; 55 Elf_Hashelt *buckets; 56 Elf_Hashelt *chains; 57 Elf_Rel *rel; 58 size_t relsz; 59 Elf_Rela *rela; 60 size_t relasz; 61 char *strtab; 62 size_t strsz; 63 int fd; 64 caddr_t firstpage; 65 size_t firstlen; 66 int kernel; 67 uint64_t off; 68 #ifdef LOADER_VERIEXEC_VECTX 69 struct vectx *vctx; 70 #endif 71 } *elf_file_t; 72 73 #ifdef LOADER_VERIEXEC_VECTX 74 #define VECTX_HANDLE(ef) (ef)->vctx 75 #else 76 #define VECTX_HANDLE(ef) (ef)->fd 77 #endif 78 79 static int __elfN(loadimage)(struct preloaded_file *mp, elf_file_t ef, 80 uint64_t loadaddr); 81 static int __elfN(lookup_symbol)(elf_file_t ef, const char* name, 82 Elf_Sym *sym, unsigned char type); 83 static int __elfN(reloc_ptr)(struct preloaded_file *mp, elf_file_t ef, 84 Elf_Addr p, void *val, size_t len); 85 static int __elfN(parse_modmetadata)(struct preloaded_file *mp, elf_file_t ef, 86 Elf_Addr p_start, Elf_Addr p_end); 87 static symaddr_fn __elfN(symaddr); 88 static char *fake_modname(const char *name); 89 90 uint64_t __elfN(relocation_offset) = 0; 91 92 #ifdef __powerpc__ 93 extern void elf_wrong_field_size(void); 94 #define CONVERT_FIELD(b, f, e) \ 95 switch (sizeof((b)->f)) { \ 96 case 2: \ 97 (b)->f = e ## 16toh((b)->f); \ 98 break; \ 99 case 4: \ 100 (b)->f = e ## 32toh((b)->f); \ 101 break; \ 102 case 8: \ 103 (b)->f = e ## 64toh((b)->f); \ 104 break; \ 105 default: \ 106 /* Force a link time error. */ \ 107 elf_wrong_field_size(); \ 108 break; \ 109 } 110 111 #define CONVERT_SWITCH(h, d, f) \ 112 switch ((h)->e_ident[EI_DATA]) { \ 113 case ELFDATA2MSB: \ 114 f(d, be); \ 115 break; \ 116 case ELFDATA2LSB: \ 117 f(d, le); \ 118 break; \ 119 default: \ 120 return (EINVAL); \ 121 } 122 123 124 static int elf_header_convert(Elf_Ehdr *ehdr) 125 { 126 /* 127 * Fixup ELF header endianness. 128 * 129 * The Xhdr structure was loaded using block read call to optimize file 130 * accesses. It might happen, that the endianness of the system memory 131 * is different that endianness of the ELF header. Swap fields here to 132 * guarantee that Xhdr always contain valid data regardless of 133 * architecture. 134 */ 135 #define HEADER_FIELDS(b, e) \ 136 CONVERT_FIELD(b, e_type, e); \ 137 CONVERT_FIELD(b, e_machine, e); \ 138 CONVERT_FIELD(b, e_version, e); \ 139 CONVERT_FIELD(b, e_entry, e); \ 140 CONVERT_FIELD(b, e_phoff, e); \ 141 CONVERT_FIELD(b, e_shoff, e); \ 142 CONVERT_FIELD(b, e_flags, e); \ 143 CONVERT_FIELD(b, e_ehsize, e); \ 144 CONVERT_FIELD(b, e_phentsize, e); \ 145 CONVERT_FIELD(b, e_phnum, e); \ 146 CONVERT_FIELD(b, e_shentsize, e); \ 147 CONVERT_FIELD(b, e_shnum, e); \ 148 CONVERT_FIELD(b, e_shstrndx, e) 149 150 CONVERT_SWITCH(ehdr, ehdr, HEADER_FIELDS); 151 152 #undef HEADER_FIELDS 153 154 return (0); 155 } 156 157 static int elf_program_header_convert(const Elf_Ehdr *ehdr, Elf_Phdr *phdr) 158 { 159 #define PROGRAM_HEADER_FIELDS(b, e) \ 160 CONVERT_FIELD(b, p_type, e); \ 161 CONVERT_FIELD(b, p_flags, e); \ 162 CONVERT_FIELD(b, p_offset, e); \ 163 CONVERT_FIELD(b, p_vaddr, e); \ 164 CONVERT_FIELD(b, p_paddr, e); \ 165 CONVERT_FIELD(b, p_filesz, e); \ 166 CONVERT_FIELD(b, p_memsz, e); \ 167 CONVERT_FIELD(b, p_align, e) 168 169 CONVERT_SWITCH(ehdr, phdr, PROGRAM_HEADER_FIELDS); 170 171 #undef PROGRAM_HEADER_FIELDS 172 173 return (0); 174 } 175 176 static int elf_section_header_convert(const Elf_Ehdr *ehdr, Elf_Shdr *shdr) 177 { 178 #define SECTION_HEADER_FIELDS(b, e) \ 179 CONVERT_FIELD(b, sh_name, e); \ 180 CONVERT_FIELD(b, sh_type, e); \ 181 CONVERT_FIELD(b, sh_link, e); \ 182 CONVERT_FIELD(b, sh_info, e); \ 183 CONVERT_FIELD(b, sh_flags, e); \ 184 CONVERT_FIELD(b, sh_addr, e); \ 185 CONVERT_FIELD(b, sh_offset, e); \ 186 CONVERT_FIELD(b, sh_size, e); \ 187 CONVERT_FIELD(b, sh_addralign, e); \ 188 CONVERT_FIELD(b, sh_entsize, e) 189 190 CONVERT_SWITCH(ehdr, shdr, SECTION_HEADER_FIELDS); 191 192 #undef SECTION_HEADER_FIELDS 193 194 return (0); 195 } 196 #undef CONVERT_SWITCH 197 #undef CONVERT_FIELD 198 #else 199 static int elf_header_convert(Elf_Ehdr *ehdr) 200 { 201 return (0); 202 } 203 204 static int elf_program_header_convert(const Elf_Ehdr *ehdr, Elf_Phdr *phdr) 205 { 206 return (0); 207 } 208 209 static int elf_section_header_convert(const Elf_Ehdr *ehdr, Elf_Shdr *shdr) 210 { 211 return (0); 212 } 213 #endif 214 215 #if defined(__amd64__) || (defined(__i386__) && defined(EFI)) 216 static bool 217 is_kernphys_relocatable(elf_file_t ef) 218 { 219 Elf_Sym sym; 220 221 return (__elfN(lookup_symbol)(ef, "kernphys", &sym, STT_OBJECT) == 0); 222 } 223 #endif 224 225 #ifdef __i386__ 226 static bool 227 is_tg_kernel_support(struct preloaded_file *fp, elf_file_t ef) 228 { 229 Elf_Sym sym; 230 Elf_Addr p_start, p_end, v, p; 231 char vd_name[16]; 232 int error; 233 234 if (__elfN(lookup_symbol)(ef, "__start_set_vt_drv_set", &sym, STT_NOTYPE) != 0) 235 return (false); 236 p_start = sym.st_value + ef->off; 237 if (__elfN(lookup_symbol)(ef, "__stop_set_vt_drv_set", &sym, STT_NOTYPE) != 0) 238 return (false); 239 p_end = sym.st_value + ef->off; 240 241 /* 242 * Walk through vt_drv_set, each vt driver structure starts with 243 * static 16 chars for driver name. If we have "vbefb", return true. 244 */ 245 for (p = p_start; p < p_end; p += sizeof(Elf_Addr)) { 246 COPYOUT(p, &v, sizeof(v)); 247 248 error = __elfN(reloc_ptr)(fp, ef, p, &v, sizeof(v)); 249 if (error == EOPNOTSUPP) 250 v += ef->off; 251 else if (error != 0) 252 return (false); 253 COPYOUT(v, &vd_name, sizeof(vd_name)); 254 if (strncmp(vd_name, "vbefb", sizeof(vd_name)) == 0) 255 return (true); 256 } 257 258 return (false); 259 } 260 #endif 261 262 static int 263 __elfN(load_elf_header)(char *filename, elf_file_t ef) 264 { 265 ssize_t bytes_read; 266 Elf_Ehdr *ehdr; 267 int err; 268 269 /* 270 * Open the image, read and validate the ELF header 271 */ 272 if (filename == NULL) /* can't handle nameless */ 273 return (EFTYPE); 274 if ((ef->fd = open(filename, O_RDONLY)) == -1) 275 return (errno); 276 ef->firstpage = malloc(PAGE_SIZE); 277 if (ef->firstpage == NULL) { 278 close(ef->fd); 279 return (ENOMEM); 280 } 281 preload(ef->fd); 282 #ifdef LOADER_VERIEXEC_VECTX 283 { 284 int verror; 285 286 ef->vctx = vectx_open(ef->fd, filename, VE_MUST, 287 0L, NULL, &verror, __func__); 288 if (verror) { 289 printf("Unverified %s: %s\n", filename, ve_error_get()); 290 close(ef->fd); 291 free(ef->vctx); 292 return (EAUTH); 293 } 294 } 295 #endif 296 bytes_read = VECTX_READ(VECTX_HANDLE(ef), ef->firstpage, PAGE_SIZE); 297 ef->firstlen = (size_t)bytes_read; 298 if (bytes_read < 0 || ef->firstlen <= sizeof(Elf_Ehdr)) { 299 err = EFTYPE; /* could be EIO, but may be small file */ 300 goto error; 301 } 302 ehdr = ef->ehdr = (Elf_Ehdr *)ef->firstpage; 303 304 /* Is it ELF? */ 305 if (!IS_ELF(*ehdr)) { 306 err = EFTYPE; 307 goto error; 308 } 309 310 if (ehdr->e_ident[EI_CLASS] != ELF_TARG_CLASS || /* Layout ? */ 311 ehdr->e_ident[EI_DATA] != ELF_TARG_DATA || 312 ehdr->e_ident[EI_VERSION] != EV_CURRENT) /* Version ? */ { 313 err = EFTYPE; 314 goto error; 315 } 316 317 err = elf_header_convert(ehdr); 318 if (err) 319 goto error; 320 321 if (ehdr->e_version != EV_CURRENT || ehdr->e_machine != ELF_TARG_MACH) { 322 /* Machine ? */ 323 err = EFTYPE; 324 goto error; 325 } 326 327 #if defined(LOADER_VERIEXEC) && !defined(LOADER_VERIEXEC_VECTX) 328 if (verify_file(ef->fd, filename, bytes_read, VE_MUST, __func__) < 0) { 329 err = EAUTH; 330 goto error; 331 } 332 #endif 333 return (0); 334 335 error: 336 if (ef->firstpage != NULL) { 337 free(ef->firstpage); 338 ef->firstpage = NULL; 339 } 340 if (ef->fd != -1) { 341 #ifdef LOADER_VERIEXEC_VECTX 342 free(ef->vctx); 343 #endif 344 close(ef->fd); 345 ef->fd = -1; 346 } 347 return (err); 348 } 349 350 /* 351 * Attempt to load the file (file) as an ELF module. It will be stored at 352 * (dest), and a pointer to a module structure describing the loaded object 353 * will be saved in (result). 354 */ 355 int 356 __elfN(loadfile)(char *filename, uint64_t dest, struct preloaded_file **result) 357 { 358 return (__elfN(loadfile_raw)(filename, dest, result, 0)); 359 } 360 361 int 362 __elfN(loadfile_raw)(char *filename, uint64_t dest, 363 struct preloaded_file **result, int multiboot) 364 { 365 struct preloaded_file *fp, *kfp; 366 struct elf_file ef; 367 Elf_Ehdr *ehdr; 368 int err; 369 370 fp = NULL; 371 bzero(&ef, sizeof(struct elf_file)); 372 ef.fd = -1; 373 374 err = __elfN(load_elf_header)(filename, &ef); 375 if (err != 0) 376 return (err); 377 378 ehdr = ef.ehdr; 379 380 /* 381 * Check to see what sort of module we are. 382 */ 383 kfp = file_findfile(NULL, md_kerntype); 384 #ifdef __powerpc__ 385 /* 386 * Kernels can be ET_DYN, so just assume the first loaded object is the 387 * kernel. This assumption will be checked later. 388 */ 389 if (kfp == NULL) 390 ef.kernel = 1; 391 #endif 392 if (ef.kernel || ehdr->e_type == ET_EXEC) { 393 /* Looks like a kernel */ 394 if (kfp != NULL) { 395 printf("elf" __XSTRING(__ELF_WORD_SIZE) 396 "_loadfile: kernel already loaded\n"); 397 err = EPERM; 398 goto oerr; 399 } 400 /* 401 * Calculate destination address based on kernel entrypoint. 402 * 403 * For ARM, the destination address is independent of any values 404 * in the elf header (an ARM kernel can be loaded at any 2MB 405 * boundary), so we leave dest set to the value calculated by 406 * archsw.arch_loadaddr() and passed in to this function. 407 * XXX This comment is obsolete, but it still seems to work 408 */ 409 #ifndef __arm__ 410 if (ehdr->e_type == ET_EXEC) 411 dest = (ehdr->e_entry & ~PAGE_MASK); 412 #endif 413 if ((ehdr->e_entry & ~PAGE_MASK) == 0) { 414 printf("elf" __XSTRING(__ELF_WORD_SIZE) 415 "_loadfile: not a kernel (maybe static binary?)\n"); 416 err = EPERM; 417 goto oerr; 418 } 419 ef.kernel = 1; 420 421 } else if (ehdr->e_type == ET_DYN) { 422 /* Looks like a kld module */ 423 if (multiboot != 0) { 424 printf("elf" __XSTRING(__ELF_WORD_SIZE) 425 "_loadfile: can't load module as multiboot\n"); 426 err = EPERM; 427 goto oerr; 428 } 429 if (kfp == NULL) { 430 printf("elf" __XSTRING(__ELF_WORD_SIZE) 431 "_loadfile: can't load module before kernel\n"); 432 err = EPERM; 433 goto oerr; 434 } 435 if (strcmp(md_kerntype, kfp->f_type)) { 436 printf("elf" __XSTRING(__ELF_WORD_SIZE) 437 "_loadfile: can't load module with kernel type '%s'\n", 438 kfp->f_type); 439 err = EPERM; 440 goto oerr; 441 } 442 /* Looks OK, got ahead */ 443 ef.kernel = 0; 444 445 } else { 446 err = EFTYPE; 447 goto oerr; 448 } 449 450 dest = md_align(dest); 451 452 /* 453 * Ok, we think we should handle this. 454 */ 455 fp = file_alloc(); 456 if (fp == NULL) { 457 printf("elf" __XSTRING(__ELF_WORD_SIZE) 458 "_loadfile: cannot allocate module info\n"); 459 err = EPERM; 460 goto out; 461 } 462 if (ef.kernel == 1 && multiboot == 0) 463 setenv("kernelname", filename, 1); 464 fp->f_name = strdup(filename); 465 if (multiboot == 0) 466 fp->f_type = strdup(ef.kernel ? 467 md_kerntype : md_modtype); 468 else 469 fp->f_type = strdup(md_kerntype_mb); 470 471 if (module_verbose >= MODULE_VERBOSE_FULL) { 472 if (ef.kernel) 473 printf("%s entry at 0x%jx\n", filename, 474 (uintmax_t)ehdr->e_entry); 475 } else if (module_verbose > MODULE_VERBOSE_SILENT) 476 printf("%s ", filename); 477 478 fp->f_size = __elfN(loadimage)(fp, &ef, dest); 479 if (fp->f_size == 0 || fp->f_addr == 0) 480 goto ioerr; 481 482 /* save exec header as metadata */ 483 file_addmetadata(fp, MODINFOMD_ELFHDR, sizeof(*ehdr), ehdr); 484 485 /* Load OK, return module pointer */ 486 *result = (struct preloaded_file *)fp; 487 err = 0; 488 #if defined(__amd64__) || (defined(__i386__) && defined(EFI)) 489 fp->f_kernphys_relocatable = multiboot || is_kernphys_relocatable(&ef); 490 #endif 491 #if defined(__i386__) && !defined(EFI) 492 fp->f_tg_kernel_support = is_tg_kernel_support(fp, &ef); 493 #endif 494 goto out; 495 496 ioerr: 497 err = EIO; 498 oerr: 499 file_discard(fp); 500 out: 501 if (ef.firstpage) 502 free(ef.firstpage); 503 if (ef.fd != -1) { 504 #ifdef LOADER_VERIEXEC_VECTX 505 if (!err && ef.vctx) { 506 int verror; 507 508 verror = vectx_close(ef.vctx, __func__); 509 if (verror) { 510 err = EAUTH; 511 file_discard(fp); 512 } 513 } 514 #endif 515 close(ef.fd); 516 } 517 return (err); 518 } 519 520 /* 521 * With the file (fd) open on the image, and (ehdr) containing 522 * the Elf header, load the image at (off) 523 */ 524 static int 525 __elfN(loadimage)(struct preloaded_file *fp, elf_file_t ef, uint64_t off) 526 { 527 int i; 528 u_int j; 529 Elf_Ehdr *ehdr; 530 Elf_Phdr *phdr, *php; 531 Elf_Shdr *shdr; 532 char *shstr; 533 int ret; 534 vm_offset_t firstaddr; 535 vm_offset_t lastaddr; 536 size_t chunk; 537 ssize_t result; 538 Elf_Addr ssym, esym; 539 Elf_Dyn *dp; 540 Elf_Addr adp; 541 Elf_Addr ctors; 542 int ndp; 543 int symstrindex; 544 int symtabindex; 545 Elf_Size size; 546 u_int fpcopy; 547 Elf_Sym sym; 548 Elf_Addr p_start, p_end; 549 550 dp = NULL; 551 shdr = NULL; 552 ret = 0; 553 firstaddr = lastaddr = 0; 554 ehdr = ef->ehdr; 555 #ifdef __powerpc__ 556 if (ef->kernel) { 557 #else 558 if (ehdr->e_type == ET_EXEC) { 559 #endif 560 #if defined(__i386__) || defined(__amd64__) 561 #if __ELF_WORD_SIZE == 64 562 /* x86_64 relocates after locore */ 563 off = - (off & 0xffffffffff000000ull); 564 #else 565 /* i386 relocates after locore */ 566 off = - (off & 0xff000000u); 567 #endif 568 #elif defined(__powerpc__) 569 /* 570 * On the purely virtual memory machines like e500, the kernel 571 * is linked against its final VA range, which is most often 572 * not available at the loader stage, but only after kernel 573 * initializes and completes its VM settings. In such cases we 574 * cannot use p_vaddr field directly to load ELF segments, but 575 * put them at some 'load-time' locations. 576 */ 577 if (off & 0xf0000000u) { 578 off = -(off & 0xf0000000u); 579 /* 580 * XXX the physical load address should not be 581 * hardcoded. Note that the Book-E kernel assumes that 582 * it's loaded at a 16MB boundary for now... 583 */ 584 off += 0x01000000; 585 } 586 ehdr->e_entry += off; 587 if (module_verbose >= MODULE_VERBOSE_FULL) 588 printf("Converted entry 0x%jx\n", 589 (uintmax_t)ehdr->e_entry); 590 591 #elif defined(__arm__) && !defined(EFI) 592 /* 593 * The elf headers in arm kernels specify virtual addresses in 594 * all header fields, even the ones that should be physical 595 * addresses. We assume the entry point is in the first page, 596 * and masking the page offset will leave us with the virtual 597 * address the kernel was linked at. We subtract that from the 598 * load offset, making 'off' into the value which, when added 599 * to a virtual address in an elf header, translates it to a 600 * physical address. We do the va->pa conversion on the entry 601 * point address in the header now, so that later we can launch 602 * the kernel by just jumping to that address. 603 * 604 * When booting from UEFI the copyin and copyout functions 605 * handle adjusting the location relative to the first virtual 606 * address. Because of this there is no need to adjust the 607 * offset or entry point address as these will both be handled 608 * by the efi code. 609 */ 610 off -= ehdr->e_entry & ~PAGE_MASK; 611 ehdr->e_entry += off; 612 if (module_verbose >= MODULE_VERBOSE_FULL) 613 printf("ehdr->e_entry 0x%jx, va<->pa off %llx\n", 614 (uintmax_t)ehdr->e_entry, off); 615 #else 616 off = 0; /* other archs use direct mapped kernels */ 617 #endif 618 } 619 ef->off = off; 620 621 if (ef->kernel) 622 __elfN(relocation_offset) = off; 623 624 if ((ehdr->e_phoff + ehdr->e_phnum * sizeof(*phdr)) > ef->firstlen) { 625 printf("elf" __XSTRING(__ELF_WORD_SIZE) 626 "_loadimage: program header not within first page\n"); 627 goto out; 628 } 629 phdr = (Elf_Phdr *)(ef->firstpage + ehdr->e_phoff); 630 631 for (i = 0; i < ehdr->e_phnum; i++) { 632 if (elf_program_header_convert(ehdr, phdr)) 633 continue; 634 635 /* We want to load PT_LOAD segments only.. */ 636 if (phdr[i].p_type != PT_LOAD) 637 continue; 638 639 if (phdr[i].p_memsz < phdr[i].p_filesz) { 640 printf("elf" __XSTRING(__ELF_WORD_SIZE) 641 "_loadimage: invalid PT_LOAD segment\n"); 642 goto out; 643 } 644 645 if (module_verbose >= MODULE_VERBOSE_FULL) { 646 printf("Segment: 0x%lx@0x%lx -> 0x%lx-0x%lx", 647 (long)phdr[i].p_filesz, (long)phdr[i].p_offset, 648 (long)(phdr[i].p_vaddr + off), 649 (long)(phdr[i].p_vaddr + off + phdr[i].p_memsz - 1)); 650 } else if (module_verbose > MODULE_VERBOSE_SILENT) { 651 if ((phdr[i].p_flags & PF_W) == 0) { 652 printf("text=0x%lx ", (long)phdr[i].p_filesz); 653 } else { 654 printf("data=0x%lx", (long)phdr[i].p_filesz); 655 if (phdr[i].p_filesz < phdr[i].p_memsz) 656 printf("+0x%lx", (long)(phdr[i].p_memsz - 657 phdr[i].p_filesz)); 658 printf(" "); 659 } 660 } 661 fpcopy = 0; 662 if (ef->firstlen > phdr[i].p_offset) { 663 fpcopy = ef->firstlen - phdr[i].p_offset; 664 archsw.arch_copyin(ef->firstpage + phdr[i].p_offset, 665 phdr[i].p_vaddr + off, fpcopy); 666 } 667 if (phdr[i].p_filesz > fpcopy) { 668 if (kern_pread(VECTX_HANDLE(ef), 669 phdr[i].p_vaddr + off + fpcopy, 670 phdr[i].p_filesz - fpcopy, 671 phdr[i].p_offset + fpcopy) != 0) { 672 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 673 "_loadimage: read failed\n"); 674 goto out; 675 } 676 } 677 /* clear space from oversized segments; eg: bss */ 678 if (phdr[i].p_filesz < phdr[i].p_memsz) { 679 if (module_verbose >= MODULE_VERBOSE_FULL) { 680 printf(" (bss: 0x%lx-0x%lx)", 681 (long)(phdr[i].p_vaddr + off + phdr[i].p_filesz), 682 (long)(phdr[i].p_vaddr + off + phdr[i].p_memsz -1)); 683 } 684 kern_bzero(phdr[i].p_vaddr + off + phdr[i].p_filesz, 685 phdr[i].p_memsz - phdr[i].p_filesz); 686 } 687 if (module_verbose >= MODULE_VERBOSE_FULL) 688 printf("\n"); 689 690 if (archsw.arch_loadseg != NULL) 691 archsw.arch_loadseg(ehdr, phdr + i, off); 692 693 if (firstaddr == 0 || firstaddr > (phdr[i].p_vaddr + off)) 694 firstaddr = phdr[i].p_vaddr + off; 695 if (lastaddr == 0 || lastaddr < 696 (phdr[i].p_vaddr + off + phdr[i].p_memsz)) 697 lastaddr = phdr[i].p_vaddr + off + phdr[i].p_memsz; 698 } 699 lastaddr = roundup(lastaddr, sizeof(long)); 700 701 /* 702 * Get the section headers. We need this for finding the .ctors 703 * section as well as for loading any symbols. Both may be hard 704 * to do if reading from a .gz file as it involves seeking. I 705 * think the rule is going to have to be that you must strip a 706 * file to remove symbols before gzipping it. 707 */ 708 chunk = (size_t)ehdr->e_shnum * (size_t)ehdr->e_shentsize; 709 if (chunk == 0 || ehdr->e_shoff == 0) 710 goto nosyms; 711 shdr = alloc_pread(VECTX_HANDLE(ef), ehdr->e_shoff, chunk); 712 if (shdr == NULL) { 713 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 714 "_loadimage: failed to read section headers"); 715 goto nosyms; 716 } 717 718 for (i = 0; i < ehdr->e_shnum; i++) 719 elf_section_header_convert(ehdr, &shdr[i]); 720 721 file_addmetadata(fp, MODINFOMD_SHDR, chunk, shdr); 722 723 /* 724 * Read the section string table and look for the .ctors section. 725 * We need to tell the kernel where it is so that it can call the 726 * ctors. 727 */ 728 chunk = shdr[ehdr->e_shstrndx].sh_size; 729 if (chunk) { 730 shstr = alloc_pread(VECTX_HANDLE(ef), 731 shdr[ehdr->e_shstrndx].sh_offset, chunk); 732 if (shstr) { 733 for (i = 0; i < ehdr->e_shnum; i++) { 734 if (strcmp(shstr + shdr[i].sh_name, 735 ".ctors") != 0 && 736 shdr[i].sh_type != SHT_INIT_ARRAY) 737 continue; 738 ctors = shdr[i].sh_addr; 739 file_addmetadata(fp, MODINFOMD_CTORS_ADDR, 740 sizeof(ctors), &ctors); 741 size = shdr[i].sh_size; 742 file_addmetadata(fp, MODINFOMD_CTORS_SIZE, 743 sizeof(size), &size); 744 break; 745 } 746 free(shstr); 747 } 748 } 749 750 /* 751 * Now load any symbols. 752 */ 753 symtabindex = -1; 754 symstrindex = -1; 755 for (i = 0; i < ehdr->e_shnum; i++) { 756 if (shdr[i].sh_type != SHT_SYMTAB) 757 continue; 758 for (j = 0; j < ehdr->e_phnum; j++) { 759 if (phdr[j].p_type != PT_LOAD) 760 continue; 761 if (shdr[i].sh_offset >= phdr[j].p_offset && 762 (shdr[i].sh_offset + shdr[i].sh_size <= 763 phdr[j].p_offset + phdr[j].p_filesz)) { 764 shdr[i].sh_offset = 0; 765 shdr[i].sh_size = 0; 766 break; 767 } 768 } 769 if (shdr[i].sh_offset == 0 || shdr[i].sh_size == 0) 770 continue; /* alread loaded in a PT_LOAD above */ 771 /* Save it for loading below */ 772 symtabindex = i; 773 symstrindex = shdr[i].sh_link; 774 } 775 if (symtabindex < 0 || symstrindex < 0) 776 goto nosyms; 777 778 /* Ok, committed to a load. */ 779 if (module_verbose >= MODULE_VERBOSE_FULL) 780 printf("syms=["); 781 ssym = lastaddr; 782 for (i = symtabindex; i >= 0; i = symstrindex) { 783 char *secname; 784 785 switch(shdr[i].sh_type) { 786 case SHT_SYMTAB: /* Symbol table */ 787 secname = "symtab"; 788 break; 789 case SHT_STRTAB: /* String table */ 790 secname = "strtab"; 791 break; 792 default: 793 secname = "WHOA!!"; 794 break; 795 } 796 size = shdr[i].sh_size; 797 798 archsw.arch_copyin(&size, lastaddr, sizeof(size)); 799 lastaddr += sizeof(size); 800 801 if (module_verbose >= MODULE_VERBOSE_FULL) { 802 printf("\n%s: 0x%jx@0x%jx -> 0x%jx-0x%jx", secname, 803 (uintmax_t)shdr[i].sh_size, (uintmax_t)shdr[i].sh_offset, 804 (uintmax_t)lastaddr, 805 (uintmax_t)(lastaddr + shdr[i].sh_size)); 806 } else if (module_verbose > MODULE_VERBOSE_SILENT) { 807 if (i == symstrindex) 808 printf("+"); 809 printf("0x%lx+0x%lx", (long)sizeof(size), (long)size); 810 } 811 if (VECTX_LSEEK(VECTX_HANDLE(ef), (off_t)shdr[i].sh_offset, SEEK_SET) == -1) { 812 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 813 "_loadimage: could not seek for symbols - skipped!"); 814 lastaddr = ssym; 815 ssym = 0; 816 goto nosyms; 817 } 818 result = archsw.arch_readin(VECTX_HANDLE(ef), lastaddr, shdr[i].sh_size); 819 if (result < 0 || (size_t)result != shdr[i].sh_size) { 820 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 821 "_loadimage: could not read symbols - skipped! " 822 "(%ju != %ju)", (uintmax_t)result, 823 (uintmax_t)shdr[i].sh_size); 824 lastaddr = ssym; 825 ssym = 0; 826 goto nosyms; 827 } 828 /* Reset offsets relative to ssym */ 829 lastaddr += shdr[i].sh_size; 830 lastaddr = roundup(lastaddr, sizeof(size)); 831 if (i == symtabindex) 832 symtabindex = -1; 833 else if (i == symstrindex) 834 symstrindex = -1; 835 } 836 esym = lastaddr; 837 if (module_verbose >= MODULE_VERBOSE_FULL) 838 printf("]"); 839 840 file_addmetadata(fp, MODINFOMD_SSYM, sizeof(ssym), &ssym); 841 file_addmetadata(fp, MODINFOMD_ESYM, sizeof(esym), &esym); 842 843 nosyms: 844 if (module_verbose > MODULE_VERBOSE_SILENT) 845 printf("\n"); 846 847 fp->f_addr = firstaddr; 848 849 php = NULL; 850 for (i = 0; i < ehdr->e_phnum; i++) { 851 if (phdr[i].p_type == PT_DYNAMIC) { 852 php = phdr + i; 853 adp = php->p_vaddr; 854 file_addmetadata(fp, MODINFOMD_DYNAMIC, sizeof(adp), 855 &adp); 856 break; 857 } 858 } 859 860 if (php == NULL) /* this is bad, we cannot get to symbols or _DYNAMIC */ 861 goto out; 862 863 ndp = php->p_filesz / sizeof(Elf_Dyn); 864 if (ndp == 0) 865 goto out; 866 dp = malloc(php->p_filesz); 867 if (dp == NULL) 868 goto out; 869 archsw.arch_copyout(php->p_vaddr + off, dp, php->p_filesz); 870 871 ef->strsz = 0; 872 for (i = 0; i < ndp; i++) { 873 if (dp[i].d_tag == 0) 874 break; 875 switch (dp[i].d_tag) { 876 case DT_HASH: 877 ef->hashtab = 878 (Elf_Hashelt*)(uintptr_t)(dp[i].d_un.d_ptr + off); 879 break; 880 case DT_STRTAB: 881 ef->strtab = 882 (char *)(uintptr_t)(dp[i].d_un.d_ptr + off); 883 break; 884 case DT_STRSZ: 885 ef->strsz = dp[i].d_un.d_val; 886 break; 887 case DT_SYMTAB: 888 ef->symtab = 889 (Elf_Sym *)(uintptr_t)(dp[i].d_un.d_ptr + off); 890 break; 891 case DT_REL: 892 ef->rel = 893 (Elf_Rel *)(uintptr_t)(dp[i].d_un.d_ptr + off); 894 break; 895 case DT_RELSZ: 896 ef->relsz = dp[i].d_un.d_val; 897 break; 898 case DT_RELA: 899 ef->rela = 900 (Elf_Rela *)(uintptr_t)(dp[i].d_un.d_ptr + off); 901 break; 902 case DT_RELASZ: 903 ef->relasz = dp[i].d_un.d_val; 904 break; 905 default: 906 break; 907 } 908 } 909 if (ef->hashtab != NULL && ef->symtab != NULL && 910 ef->strtab != NULL && ef->strsz != 0) { 911 COPYOUT(ef->hashtab, &ef->nbuckets, sizeof(ef->nbuckets)); 912 COPYOUT(ef->hashtab + 1, &ef->nchains, sizeof(ef->nchains)); 913 ef->buckets = ef->hashtab + 2; 914 ef->chains = ef->buckets + ef->nbuckets; 915 } 916 917 /* Don't emit a warning if there is no symbol table. */ 918 if (ef->buckets != 0 && __elfN(lookup_symbol)(ef, 919 "__start_set_modmetadata_set", &sym, STT_NOTYPE) == 0) { 920 p_start = sym.st_value + ef->off; 921 if (__elfN(lookup_symbol)(ef, "__stop_set_modmetadata_set", 922 &sym, STT_NOTYPE) != 0) 923 goto out; 924 p_end = sym.st_value + ef->off; 925 926 if (__elfN(parse_modmetadata)(fp, ef, p_start, p_end) != 0) 927 goto out; 928 } 929 930 ret = lastaddr - firstaddr; 931 932 out: 933 if (dp) 934 free(dp); 935 if (shdr) 936 free(shdr); 937 return ret; 938 } 939 940 static char invalid_name[] = "bad"; 941 942 char * 943 fake_modname(const char *name) 944 { 945 const char *sp, *ep; 946 char *fp; 947 size_t len; 948 949 sp = strrchr(name, '/'); 950 if (sp) 951 sp++; 952 else 953 sp = name; 954 955 ep = strrchr(sp, '.'); 956 if (ep == NULL) { 957 ep = sp + strlen(sp); 958 } 959 if (ep == sp) { 960 sp = invalid_name; 961 ep = invalid_name + sizeof(invalid_name) - 1; 962 } 963 964 len = ep - sp; 965 fp = malloc(len + 1); 966 if (fp == NULL) 967 return NULL; 968 memcpy(fp, sp, len); 969 fp[len] = '\0'; 970 return fp; 971 } 972 973 #if (defined(__i386__) || defined(__powerpc__)) && __ELF_WORD_SIZE == 64 974 struct mod_metadata64 { 975 int md_version; /* structure version MDTV_* */ 976 int md_type; /* type of entry MDT_* */ 977 uint64_t md_data; /* specific data */ 978 uint64_t md_cval; /* common string label */ 979 }; 980 #endif 981 #if defined(__amd64__) && __ELF_WORD_SIZE == 32 982 struct mod_metadata32 { 983 int md_version; /* structure version MDTV_* */ 984 int md_type; /* type of entry MDT_* */ 985 uint32_t md_data; /* specific data */ 986 uint32_t md_cval; /* common string label */ 987 }; 988 #endif 989 990 int 991 __elfN(load_modmetadata)(struct preloaded_file *fp, uint64_t dest) 992 { 993 struct elf_file ef; 994 int err, i, j; 995 Elf_Shdr *sh_meta, *shdr = NULL; 996 Elf_Shdr *sh_data[2]; 997 char *shstrtab = NULL; 998 size_t size; 999 Elf_Addr p_start, p_end; 1000 1001 bzero(&ef, sizeof(struct elf_file)); 1002 ef.fd = -1; 1003 1004 err = __elfN(load_elf_header)(fp->f_name, &ef); 1005 if (err != 0) 1006 goto out; 1007 1008 if (ef.kernel == 1 || ef.ehdr->e_type == ET_EXEC) { 1009 ef.kernel = 1; 1010 } else if (ef.ehdr->e_type != ET_DYN) { 1011 err = EFTYPE; 1012 goto out; 1013 } 1014 1015 size = (size_t)ef.ehdr->e_shnum * (size_t)ef.ehdr->e_shentsize; 1016 shdr = alloc_pread(VECTX_HANDLE(&ef), ef.ehdr->e_shoff, size); 1017 if (shdr == NULL) { 1018 err = ENOMEM; 1019 goto out; 1020 } 1021 1022 /* Load shstrtab. */ 1023 shstrtab = alloc_pread(VECTX_HANDLE(&ef), shdr[ef.ehdr->e_shstrndx].sh_offset, 1024 shdr[ef.ehdr->e_shstrndx].sh_size); 1025 if (shstrtab == NULL) { 1026 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1027 "load_modmetadata: unable to load shstrtab\n"); 1028 err = EFTYPE; 1029 goto out; 1030 } 1031 1032 /* Find set_modmetadata_set and data sections. */ 1033 sh_data[0] = sh_data[1] = sh_meta = NULL; 1034 for (i = 0, j = 0; i < ef.ehdr->e_shnum; i++) { 1035 if (strcmp(&shstrtab[shdr[i].sh_name], 1036 "set_modmetadata_set") == 0) { 1037 sh_meta = &shdr[i]; 1038 } 1039 if ((strcmp(&shstrtab[shdr[i].sh_name], ".data") == 0) || 1040 (strcmp(&shstrtab[shdr[i].sh_name], ".rodata") == 0)) { 1041 sh_data[j++] = &shdr[i]; 1042 } 1043 } 1044 if (sh_meta == NULL || sh_data[0] == NULL || sh_data[1] == NULL) { 1045 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1046 "load_modmetadata: unable to find set_modmetadata_set or data sections\n"); 1047 err = EFTYPE; 1048 goto out; 1049 } 1050 1051 /* Load set_modmetadata_set into memory */ 1052 err = kern_pread(VECTX_HANDLE(&ef), dest, sh_meta->sh_size, sh_meta->sh_offset); 1053 if (err != 0) { 1054 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1055 "load_modmetadata: unable to load set_modmetadata_set: %d\n", err); 1056 goto out; 1057 } 1058 p_start = dest; 1059 p_end = dest + sh_meta->sh_size; 1060 dest += sh_meta->sh_size; 1061 1062 /* Load data sections into memory. */ 1063 err = kern_pread(VECTX_HANDLE(&ef), dest, sh_data[0]->sh_size, 1064 sh_data[0]->sh_offset); 1065 if (err != 0) { 1066 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1067 "load_modmetadata: unable to load data: %d\n", err); 1068 goto out; 1069 } 1070 1071 /* 1072 * We have to increment the dest, so that the offset is the same into 1073 * both the .rodata and .data sections. 1074 */ 1075 ef.off = -(sh_data[0]->sh_addr - dest); 1076 dest += (sh_data[1]->sh_addr - sh_data[0]->sh_addr); 1077 1078 err = kern_pread(VECTX_HANDLE(&ef), dest, sh_data[1]->sh_size, 1079 sh_data[1]->sh_offset); 1080 if (err != 0) { 1081 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1082 "load_modmetadata: unable to load data: %d\n", err); 1083 goto out; 1084 } 1085 1086 err = __elfN(parse_modmetadata)(fp, &ef, p_start, p_end); 1087 if (err != 0) { 1088 printf("\nelf" __XSTRING(__ELF_WORD_SIZE) 1089 "load_modmetadata: unable to parse metadata: %d\n", err); 1090 goto out; 1091 } 1092 1093 out: 1094 if (shstrtab != NULL) 1095 free(shstrtab); 1096 if (shdr != NULL) 1097 free(shdr); 1098 if (ef.firstpage != NULL) 1099 free(ef.firstpage); 1100 if (ef.fd != -1) { 1101 #ifdef LOADER_VERIEXEC_VECTX 1102 if (!err && ef.vctx) { 1103 int verror; 1104 1105 verror = vectx_close(ef.vctx, __func__); 1106 if (verror) { 1107 err = EAUTH; 1108 file_discard(fp); 1109 } 1110 } 1111 #endif 1112 close(ef.fd); 1113 } 1114 return (err); 1115 } 1116 1117 int 1118 __elfN(parse_modmetadata)(struct preloaded_file *fp, elf_file_t ef, 1119 Elf_Addr p_start, Elf_Addr p_end) 1120 { 1121 struct mod_metadata md; 1122 #if (defined(__i386__) || defined(__powerpc__)) && __ELF_WORD_SIZE == 64 1123 struct mod_metadata64 md64; 1124 #elif defined(__amd64__) && __ELF_WORD_SIZE == 32 1125 struct mod_metadata32 md32; 1126 #endif 1127 struct mod_depend *mdepend; 1128 struct mod_version mver; 1129 char *s; 1130 int error, modcnt, minfolen; 1131 Elf_Addr v, p; 1132 1133 modcnt = 0; 1134 p = p_start; 1135 while (p < p_end) { 1136 COPYOUT(p, &v, sizeof(v)); 1137 error = __elfN(reloc_ptr)(fp, ef, p, &v, sizeof(v)); 1138 if (error == EOPNOTSUPP) 1139 v += ef->off; 1140 else if (error != 0) 1141 return (error); 1142 #if (defined(__i386__) || defined(__powerpc__)) && __ELF_WORD_SIZE == 64 1143 COPYOUT(v, &md64, sizeof(md64)); 1144 error = __elfN(reloc_ptr)(fp, ef, v, &md64, sizeof(md64)); 1145 if (error == EOPNOTSUPP) { 1146 md64.md_cval += ef->off; 1147 md64.md_data += ef->off; 1148 } else if (error != 0) 1149 return (error); 1150 md.md_version = md64.md_version; 1151 md.md_type = md64.md_type; 1152 md.md_cval = (const char *)(uintptr_t)md64.md_cval; 1153 md.md_data = (void *)(uintptr_t)md64.md_data; 1154 #elif defined(__amd64__) && __ELF_WORD_SIZE == 32 1155 COPYOUT(v, &md32, sizeof(md32)); 1156 error = __elfN(reloc_ptr)(fp, ef, v, &md32, sizeof(md32)); 1157 if (error == EOPNOTSUPP) { 1158 md32.md_cval += ef->off; 1159 md32.md_data += ef->off; 1160 } else if (error != 0) 1161 return (error); 1162 md.md_version = md32.md_version; 1163 md.md_type = md32.md_type; 1164 md.md_cval = (const char *)(uintptr_t)md32.md_cval; 1165 md.md_data = (void *)(uintptr_t)md32.md_data; 1166 #else 1167 COPYOUT(v, &md, sizeof(md)); 1168 error = __elfN(reloc_ptr)(fp, ef, v, &md, sizeof(md)); 1169 if (error == EOPNOTSUPP) { 1170 md.md_cval += ef->off; 1171 md.md_data = (void *)((uintptr_t)md.md_data + 1172 (uintptr_t)ef->off); 1173 } else if (error != 0) 1174 return (error); 1175 #endif 1176 p += sizeof(Elf_Addr); 1177 switch(md.md_type) { 1178 case MDT_DEPEND: 1179 if (ef->kernel) /* kernel must not depend on anything */ 1180 break; 1181 s = strdupout((vm_offset_t)md.md_cval); 1182 minfolen = sizeof(*mdepend) + strlen(s) + 1; 1183 mdepend = malloc(minfolen); 1184 if (mdepend == NULL) 1185 return ENOMEM; 1186 COPYOUT((vm_offset_t)md.md_data, mdepend, 1187 sizeof(*mdepend)); 1188 strcpy((char*)(mdepend + 1), s); 1189 free(s); 1190 file_addmetadata(fp, MODINFOMD_DEPLIST, minfolen, 1191 mdepend); 1192 free(mdepend); 1193 break; 1194 case MDT_VERSION: 1195 s = strdupout((vm_offset_t)md.md_cval); 1196 COPYOUT((vm_offset_t)md.md_data, &mver, sizeof(mver)); 1197 file_addmodule(fp, s, mver.mv_version, NULL); 1198 free(s); 1199 modcnt++; 1200 break; 1201 } 1202 } 1203 if (modcnt == 0) { 1204 s = fake_modname(fp->f_name); 1205 file_addmodule(fp, s, 1, NULL); 1206 free(s); 1207 } 1208 return 0; 1209 } 1210 1211 static unsigned long 1212 elf_hash(const char *name) 1213 { 1214 const unsigned char *p = (const unsigned char *) name; 1215 unsigned long h = 0; 1216 unsigned long g; 1217 1218 while (*p != '\0') { 1219 h = (h << 4) + *p++; 1220 if ((g = h & 0xf0000000) != 0) 1221 h ^= g >> 24; 1222 h &= ~g; 1223 } 1224 return h; 1225 } 1226 1227 static const char __elfN(bad_symtable)[] = "elf" __XSTRING(__ELF_WORD_SIZE) 1228 "_lookup_symbol: corrupt symbol table\n"; 1229 int 1230 __elfN(lookup_symbol)(elf_file_t ef, const char* name, Elf_Sym *symp, 1231 unsigned char type) 1232 { 1233 Elf_Hashelt symnum; 1234 Elf_Sym sym; 1235 char *strp; 1236 unsigned long hash; 1237 1238 if (ef->nbuckets == 0) { 1239 printf(__elfN(bad_symtable)); 1240 return ENOENT; 1241 } 1242 1243 hash = elf_hash(name); 1244 COPYOUT(&ef->buckets[hash % ef->nbuckets], &symnum, sizeof(symnum)); 1245 1246 while (symnum != STN_UNDEF) { 1247 if (symnum >= ef->nchains) { 1248 printf(__elfN(bad_symtable)); 1249 return ENOENT; 1250 } 1251 1252 COPYOUT(ef->symtab + symnum, &sym, sizeof(sym)); 1253 if (sym.st_name == 0) { 1254 printf(__elfN(bad_symtable)); 1255 return ENOENT; 1256 } 1257 1258 strp = strdupout((vm_offset_t)(ef->strtab + sym.st_name)); 1259 if (strcmp(name, strp) == 0) { 1260 free(strp); 1261 if (sym.st_shndx != SHN_UNDEF && sym.st_value != 0 && 1262 ELF_ST_TYPE(sym.st_info) == type) { 1263 *symp = sym; 1264 return 0; 1265 } 1266 return ENOENT; 1267 } 1268 free(strp); 1269 COPYOUT(&ef->chains[symnum], &symnum, sizeof(symnum)); 1270 } 1271 return ENOENT; 1272 } 1273 1274 /* 1275 * Apply any intra-module relocations to the value. p is the load address 1276 * of the value and val/len is the value to be modified. This does NOT modify 1277 * the image in-place, because this is done by kern_linker later on. 1278 * 1279 * Returns EOPNOTSUPP if no relocation method is supplied. 1280 */ 1281 static int 1282 __elfN(reloc_ptr)(struct preloaded_file *mp, elf_file_t ef, 1283 Elf_Addr p, void *val, size_t len) 1284 { 1285 size_t n; 1286 Elf_Rela a; 1287 Elf_Rel r; 1288 int error; 1289 1290 /* 1291 * On most platforms, the kernel is already relocated, but we still 1292 * want to apply offset adjustments. For PowerPC, the kernel is 1293 * ET_DYN rather than ET_EXEC and we still need to relocate here. 1294 */ 1295 if (ef->kernel && ef->ehdr->e_type != ET_DYN) 1296 return (EOPNOTSUPP); 1297 1298 for (n = 0; n < ef->relsz / sizeof(r); n++) { 1299 COPYOUT(ef->rel + n, &r, sizeof(r)); 1300 1301 error = __elfN(reloc)(ef, __elfN(symaddr), &r, ELF_RELOC_REL, 1302 ef->off, p, val, len); 1303 if (error != 0) 1304 return (error); 1305 } 1306 for (n = 0; n < ef->relasz / sizeof(a); n++) { 1307 COPYOUT(ef->rela + n, &a, sizeof(a)); 1308 1309 error = __elfN(reloc)(ef, __elfN(symaddr), &a, ELF_RELOC_RELA, 1310 ef->off, p, val, len); 1311 if (error != 0) 1312 return (error); 1313 } 1314 1315 return (0); 1316 } 1317 1318 static Elf_Addr 1319 __elfN(symaddr)(struct elf_file *ef, Elf_Size symidx) 1320 { 1321 1322 /* Symbol lookup by index not required here. */ 1323 return (0); 1324 } 1325