1 /* $NetBSD: loadfile_elf32.c,v 1.26 2010/09/02 17:10:14 christos Exp $ */ 2 3 /*- 4 * Copyright (c) 1997, 2008 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 9 * NASA Ames Research Center and by Christos Zoulas. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30 * POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 /* If not included by exec_elf64.c, ELFSIZE won't be defined. */ 34 #ifndef ELFSIZE 35 #define ELFSIZE 32 36 #endif 37 38 #ifdef _STANDALONE 39 #include <lib/libsa/stand.h> 40 #include <lib/libkern/libkern.h> 41 #else 42 #include <stdio.h> 43 #include <string.h> 44 #include <errno.h> 45 #include <stdlib.h> 46 #include <unistd.h> 47 #include <fcntl.h> 48 #include <err.h> 49 #endif 50 51 #include <sys/param.h> 52 #include <sys/exec.h> 53 54 #include "loadfile.h" 55 56 #if ((ELFSIZE == 32) && defined(BOOT_ELF32)) || \ 57 ((ELFSIZE == 64) && defined(BOOT_ELF64)) 58 59 #define ELFROUND (ELFSIZE / 8) 60 61 #ifndef _STANDALONE 62 #include "byteorder.h" 63 64 /* 65 * Byte swapping may be necessary in the non-_STANDLONE case because 66 * we may be built with a host compiler. 67 */ 68 #define E16(f) \ 69 f = (bo == ELFDATA2LSB) ? sa_htole16(f) : sa_htobe16(f) 70 #define E32(f) \ 71 f = (bo == ELFDATA2LSB) ? sa_htole32(f) : sa_htobe32(f) 72 #define E64(f) \ 73 f = (bo == ELFDATA2LSB) ? sa_htole64(f) : sa_htobe64(f) 74 75 #define I16(f) \ 76 f = (bo == ELFDATA2LSB) ? sa_le16toh(f) : sa_be16toh(f) 77 #define I32(f) \ 78 f = (bo == ELFDATA2LSB) ? sa_le32toh(f) : sa_be32toh(f) 79 #define I64(f) \ 80 f = (bo == ELFDATA2LSB) ? sa_le64toh(f) : sa_be64toh(f) 81 82 static void 83 internalize_ehdr(Elf_Byte bo, Elf_Ehdr *ehdr) 84 { 85 86 #if ELFSIZE == 32 87 I16(ehdr->e_type); 88 I16(ehdr->e_machine); 89 I32(ehdr->e_version); 90 I32(ehdr->e_entry); 91 I32(ehdr->e_phoff); 92 I32(ehdr->e_shoff); 93 I32(ehdr->e_flags); 94 I16(ehdr->e_ehsize); 95 I16(ehdr->e_phentsize); 96 I16(ehdr->e_phnum); 97 I16(ehdr->e_shentsize); 98 I16(ehdr->e_shnum); 99 I16(ehdr->e_shstrndx); 100 #elif ELFSIZE == 64 101 I16(ehdr->e_type); 102 I16(ehdr->e_machine); 103 I32(ehdr->e_version); 104 I64(ehdr->e_entry); 105 I64(ehdr->e_phoff); 106 I64(ehdr->e_shoff); 107 I32(ehdr->e_flags); 108 I16(ehdr->e_ehsize); 109 I16(ehdr->e_phentsize); 110 I16(ehdr->e_phnum); 111 I16(ehdr->e_shentsize); 112 I16(ehdr->e_shnum); 113 I16(ehdr->e_shstrndx); 114 #else 115 #error ELFSIZE is not 32 or 64 116 #endif 117 } 118 119 static void 120 externalize_ehdr(Elf_Byte bo, Elf_Ehdr *ehdr) 121 { 122 123 #if ELFSIZE == 32 124 E16(ehdr->e_type); 125 E16(ehdr->e_machine); 126 E32(ehdr->e_version); 127 E32(ehdr->e_entry); 128 E32(ehdr->e_phoff); 129 E32(ehdr->e_shoff); 130 E32(ehdr->e_flags); 131 E16(ehdr->e_ehsize); 132 E16(ehdr->e_phentsize); 133 E16(ehdr->e_phnum); 134 E16(ehdr->e_shentsize); 135 E16(ehdr->e_shnum); 136 E16(ehdr->e_shstrndx); 137 #elif ELFSIZE == 64 138 E16(ehdr->e_type); 139 E16(ehdr->e_machine); 140 E32(ehdr->e_version); 141 E64(ehdr->e_entry); 142 E64(ehdr->e_phoff); 143 E64(ehdr->e_shoff); 144 E32(ehdr->e_flags); 145 E16(ehdr->e_ehsize); 146 E16(ehdr->e_phentsize); 147 E16(ehdr->e_phnum); 148 E16(ehdr->e_shentsize); 149 E16(ehdr->e_shnum); 150 E16(ehdr->e_shstrndx); 151 #else 152 #error ELFSIZE is not 32 or 64 153 #endif 154 } 155 156 static void 157 internalize_phdr(Elf_Byte bo, Elf_Phdr *phdr) 158 { 159 160 #if ELFSIZE == 32 161 I32(phdr->p_type); 162 I32(phdr->p_offset); 163 I32(phdr->p_vaddr); 164 I32(phdr->p_paddr); 165 I32(phdr->p_filesz); 166 I32(phdr->p_memsz); 167 I32(phdr->p_flags); 168 I32(phdr->p_align); 169 #elif ELFSIZE == 64 170 I32(phdr->p_type); 171 I32(phdr->p_offset); 172 I64(phdr->p_vaddr); 173 I64(phdr->p_paddr); 174 I64(phdr->p_filesz); 175 I64(phdr->p_memsz); 176 I64(phdr->p_flags); 177 I64(phdr->p_align); 178 #else 179 #error ELFSIZE is not 32 or 64 180 #endif 181 } 182 183 static void 184 internalize_shdr(Elf_Byte bo, Elf_Shdr *shdr) 185 { 186 187 #if ELFSIZE == 32 188 I32(shdr->sh_name); 189 I32(shdr->sh_type); 190 I32(shdr->sh_flags); 191 I32(shdr->sh_addr); 192 I32(shdr->sh_offset); 193 I32(shdr->sh_size); 194 I32(shdr->sh_link); 195 I32(shdr->sh_info); 196 I32(shdr->sh_addralign); 197 I32(shdr->sh_entsize); 198 #elif ELFSIZE == 64 199 I32(shdr->sh_name); 200 I32(shdr->sh_type); 201 I64(shdr->sh_flags); 202 I64(shdr->sh_addr); 203 I64(shdr->sh_offset); 204 I64(shdr->sh_size); 205 I32(shdr->sh_link); 206 I32(shdr->sh_info); 207 I64(shdr->sh_addralign); 208 I64(shdr->sh_entsize); 209 #else 210 #error ELFSIZE is not 32 or 64 211 #endif 212 } 213 214 static void 215 externalize_shdr(Elf_Byte bo, Elf_Shdr *shdr) 216 { 217 218 #if ELFSIZE == 32 219 E32(shdr->sh_name); 220 E32(shdr->sh_type); 221 E32(shdr->sh_flags); 222 E32(shdr->sh_addr); 223 E32(shdr->sh_offset); 224 E32(shdr->sh_size); 225 E32(shdr->sh_link); 226 E32(shdr->sh_info); 227 E32(shdr->sh_addralign); 228 E32(shdr->sh_entsize); 229 #elif ELFSIZE == 64 230 E32(shdr->sh_name); 231 E32(shdr->sh_type); 232 E64(shdr->sh_flags); 233 E64(shdr->sh_addr); 234 E64(shdr->sh_offset); 235 E64(shdr->sh_size); 236 E32(shdr->sh_link); 237 E32(shdr->sh_info); 238 E64(shdr->sh_addralign); 239 E64(shdr->sh_entsize); 240 #else 241 #error ELFSIZE is not 32 or 64 242 #endif 243 } 244 #else /* _STANDALONE */ 245 /* 246 * Byte swapping is never necessary in the _STANDALONE case because 247 * we are being built with the target compiler. 248 */ 249 #define internalize_ehdr(bo, ehdr) /* nothing */ 250 #define externalize_ehdr(bo, ehdr) /* nothing */ 251 252 #define internalize_phdr(bo, phdr) /* nothing */ 253 254 #define internalize_shdr(bo, shdr) /* nothing */ 255 #define externalize_shdr(bo, shdr) /* nothing */ 256 #endif /* _STANDALONE */ 257 258 int 259 ELFNAMEEND(loadfile)(int fd, Elf_Ehdr *elf, u_long *marks, int flags) 260 { 261 Elf_Shdr *shp; 262 Elf_Phdr *phdr; 263 int i, j; 264 ssize_t sz; 265 int first; 266 paddr_t minp = ~0, maxp = 0, pos = 0; 267 paddr_t offset = marks[MARK_START], shpp, elfp = 0; 268 ssize_t nr; 269 struct __packed { 270 Elf_Nhdr nh; 271 uint8_t name[ELF_NOTE_NETBSD_NAMESZ + 1]; 272 uint8_t desc[ELF_NOTE_NETBSD_DESCSZ]; 273 } note; 274 char *shstr = NULL; 275 int boot_load_ctf=1; 276 277 /* some ports dont use the offset */ 278 offset = offset; 279 280 internalize_ehdr(elf->e_ident[EI_DATA], elf); 281 282 sz = elf->e_phnum * sizeof(Elf_Phdr); 283 phdr = ALLOC(sz); 284 285 if (lseek(fd, elf->e_phoff, SEEK_SET) == -1) { 286 WARN(("lseek phdr")); 287 goto freephdr; 288 } 289 nr = read(fd, phdr, sz); 290 if (nr == -1) { 291 WARN(("read program headers")); 292 goto freephdr; 293 } 294 if (nr != sz) { 295 errno = EIO; 296 WARN(("read program headers")); 297 goto freephdr; 298 } 299 300 for (first = 1, i = 0; i < elf->e_phnum; i++) { 301 internalize_phdr(elf->e_ident[EI_DATA], &phdr[i]); 302 303 #ifndef MD_LOADSEG /* Allow processor ABI specific segment loads */ 304 #define MD_LOADSEG(a) /*CONSTCOND*/0 305 #endif 306 if (MD_LOADSEG(&phdr[i])) 307 goto loadseg; 308 309 if (phdr[i].p_type != PT_LOAD || 310 (phdr[i].p_flags & (PF_W|PF_X)) == 0) 311 continue; 312 313 #define IS_TEXT(p) (p.p_flags & PF_X) 314 #define IS_DATA(p) (p.p_flags & PF_W) 315 #define IS_BSS(p) (p.p_filesz < p.p_memsz) 316 /* 317 * XXX: Assume first address is lowest 318 */ 319 if ((IS_TEXT(phdr[i]) && (flags & LOAD_TEXT)) || 320 (IS_DATA(phdr[i]) && (flags & LOAD_DATA))) { 321 322 loadseg: 323 if (marks[MARK_DATA] == 0 && IS_DATA(phdr[i])) 324 marks[MARK_DATA] = LOADADDR(phdr[i].p_vaddr); 325 326 /* Read in segment. */ 327 PROGRESS(("%s%lu", first ? "" : "+", 328 (u_long)phdr[i].p_filesz)); 329 330 if (lseek(fd, phdr[i].p_offset, SEEK_SET) == -1) { 331 WARN(("lseek text")); 332 goto freephdr; 333 } 334 nr = READ(fd, phdr[i].p_vaddr, phdr[i].p_filesz); 335 if (nr == -1) { 336 WARN(("read text error")); 337 goto freephdr; 338 } 339 if (nr != (ssize_t)phdr[i].p_filesz) { 340 errno = EIO; 341 WARN(("read text")); 342 goto freephdr; 343 } 344 first = 0; 345 346 } 347 if ((IS_TEXT(phdr[i]) && (flags & (LOAD_TEXT|COUNT_TEXT))) || 348 (IS_DATA(phdr[i]) && (flags & (LOAD_DATA|COUNT_TEXT)))) { 349 pos = phdr[i].p_vaddr; 350 if (minp > pos) 351 minp = pos; 352 pos += phdr[i].p_filesz; 353 if (maxp < pos) 354 maxp = pos; 355 } 356 357 /* Zero out bss. */ 358 if (IS_BSS(phdr[i]) && (flags & LOAD_BSS)) { 359 PROGRESS(("+%lu", 360 (u_long)(phdr[i].p_memsz - phdr[i].p_filesz))); 361 BZERO((phdr[i].p_vaddr + phdr[i].p_filesz), 362 phdr[i].p_memsz - phdr[i].p_filesz); 363 } 364 if (IS_BSS(phdr[i]) && (flags & (LOAD_BSS|COUNT_BSS))) { 365 pos += phdr[i].p_memsz - phdr[i].p_filesz; 366 if (maxp < pos) 367 maxp = pos; 368 } 369 } 370 DEALLOC(phdr, sz); 371 372 /* 373 * Copy the ELF and section headers. 374 */ 375 maxp = roundup(maxp, ELFROUND); 376 if (flags & (LOAD_HDR|COUNT_HDR)) { 377 elfp = maxp; 378 maxp += sizeof(Elf_Ehdr); 379 } 380 381 if (flags & (LOAD_SYM|COUNT_SYM)) { 382 if (lseek(fd, elf->e_shoff, SEEK_SET) == -1) { 383 WARN(("lseek section headers")); 384 return 1; 385 } 386 sz = elf->e_shnum * sizeof(Elf_Shdr); 387 388 shp = ALLOC(sz); 389 390 nr = read(fd, shp, sz); 391 if (nr == -1) { 392 WARN(("read section headers")); 393 goto freeshp; 394 } 395 if (nr != sz) { 396 errno = EIO; 397 WARN(("read section headers")); 398 goto freeshp; 399 } 400 401 shpp = maxp; 402 maxp += roundup(sz, ELFROUND); 403 404 #ifndef _STANDALONE 405 /* Internalize the section headers. */ 406 for (i = 0; i < elf->e_shnum; i++) 407 internalize_shdr(elf->e_ident[EI_DATA], &shp[i]); 408 #endif /* ! _STANDALONE */ 409 410 /* 411 * First load the section names section. 412 */ 413 if (boot_load_ctf && (elf->e_shstrndx != 0)) { 414 if (flags & LOAD_SYM) { 415 if (lseek(fd, shp[elf->e_shstrndx].sh_offset, 416 SEEK_SET) == -1) { 417 WARN(("lseek symbols")); 418 goto freeshp; 419 } 420 nr = READ(fd, maxp, 421 shp[elf->e_shstrndx].sh_size); 422 if (nr == -1) { 423 WARN(("read symbols")); 424 goto freeshp; 425 } 426 if (nr != 427 (ssize_t)shp[elf->e_shstrndx].sh_size) { 428 errno = EIO; 429 WARN(("read symbols")); 430 goto freeshp; 431 } 432 433 shstr = ALLOC(shp[elf->e_shstrndx].sh_size); 434 if (lseek(fd, shp[elf->e_shstrndx].sh_offset, 435 SEEK_SET) == -1) { 436 WARN(("lseek symbols")); 437 goto freeshp; 438 } 439 nr = read(fd, shstr, 440 shp[elf->e_shstrndx].sh_size); 441 if (nr == -1) { 442 WARN(("read symbols")); 443 goto freeshp; 444 } 445 } 446 shp[elf->e_shstrndx].sh_offset = maxp - elfp; 447 maxp += roundup(shp[elf->e_shstrndx].sh_size, ELFROUND); 448 } 449 450 /* 451 * Now load the symbol sections themselves. Make sure 452 * the sections are aligned. Don't bother with any 453 * string table that isn't referenced by a symbol 454 * table. 455 */ 456 for (first = 1, i = 0; i < elf->e_shnum; i++) { 457 if (i == elf->e_shstrndx) { 458 /* already loaded this section */ 459 continue; 460 } 461 switch (shp[i].sh_type) { 462 case SHT_PROGBITS: 463 if (boot_load_ctf && shstr) { 464 /* got a CTF section? */ 465 if (strncmp(".SUNW_ctf", 466 &shstr[shp[i].sh_name], 467 10) == 0) { 468 goto havesym; 469 } 470 } 471 472 /* Not loading this, so zero out the offset. */ 473 shp[i].sh_offset = 0; 474 break; 475 case SHT_STRTAB: 476 for (j = 0; j < elf->e_shnum; j++) 477 if (shp[j].sh_type == SHT_SYMTAB && 478 shp[j].sh_link == (unsigned int)i) 479 goto havesym; 480 /* FALLTHROUGH */ 481 default: 482 /* Not loading this, so zero out the offset. */ 483 shp[i].sh_offset = 0; 484 break; 485 havesym: 486 case SHT_SYMTAB: 487 if (flags & LOAD_SYM) { 488 PROGRESS(("%s%ld", first ? " [" : "+", 489 (u_long)shp[i].sh_size)); 490 if (lseek(fd, shp[i].sh_offset, 491 SEEK_SET) == -1) { 492 WARN(("lseek symbols")); 493 goto freeshp; 494 } 495 nr = READ(fd, maxp, shp[i].sh_size); 496 if (nr == -1) { 497 WARN(("read symbols")); 498 goto freeshp; 499 } 500 if (nr != (ssize_t)shp[i].sh_size) { 501 errno = EIO; 502 WARN(("read symbols")); 503 goto freeshp; 504 } 505 } 506 shp[i].sh_offset = maxp - elfp; 507 maxp += roundup(shp[i].sh_size, ELFROUND); 508 first = 0; 509 break; 510 case SHT_NOTE: 511 if ((flags & LOAD_NOTE) == 0) 512 break; 513 if (shp[i].sh_size < sizeof(note)) { 514 shp[i].sh_offset = 0; 515 break; 516 } 517 if (lseek(fd, shp[i].sh_offset, SEEK_SET) 518 == -1) { 519 WARN(("lseek note")); 520 goto freeshp; 521 } 522 nr = read(fd, ¬e, sizeof(note)); 523 if (nr == -1) { 524 WARN(("read note")); 525 goto freeshp; 526 } 527 if (note.nh.n_namesz == 528 ELF_NOTE_NETBSD_NAMESZ && 529 note.nh.n_descsz == 530 ELF_NOTE_NETBSD_DESCSZ && 531 note.nh.n_type == 532 ELF_NOTE_TYPE_NETBSD_TAG && 533 memcmp(note.name, ELF_NOTE_NETBSD_NAME, 534 sizeof(note.name)) == 0) { 535 memcpy(&netbsd_version, ¬e.desc, 536 sizeof(netbsd_version)); 537 } 538 shp[i].sh_offset = 0; 539 break; 540 } 541 } 542 if (flags & LOAD_SYM) { 543 #ifndef _STANDALONE 544 /* Externalize the section headers. */ 545 for (i = 0; i < elf->e_shnum; i++) 546 externalize_shdr(elf->e_ident[EI_DATA], 547 &shp[i]); 548 #endif /* ! _STANDALONE */ 549 BCOPY(shp, shpp, sz); 550 551 if (first == 0) 552 PROGRESS(("]")); 553 } 554 DEALLOC(shp, sz); 555 } 556 557 if (shstr) { 558 DEALLOC(shstr, shp[elf->e_shstrndx].sh_size); 559 } 560 561 /* 562 * Frob the copied ELF header to give information relative 563 * to elfp. 564 */ 565 if (flags & LOAD_HDR) { 566 elf->e_phoff = 0; 567 elf->e_shoff = sizeof(Elf_Ehdr); 568 elf->e_phentsize = 0; 569 elf->e_phnum = 0; 570 externalize_ehdr(elf->e_ident[EI_DATA], elf); 571 BCOPY(elf, elfp, sizeof(*elf)); 572 internalize_ehdr(elf->e_ident[EI_DATA], elf); 573 } 574 575 marks[MARK_START] = LOADADDR(minp); 576 marks[MARK_ENTRY] = LOADADDR(elf->e_entry); 577 /* 578 * Since there can be more than one symbol section in the code 579 * and we need to find strtab too in order to do anything 580 * useful with the symbols, we just pass the whole elf 581 * header back and we let the kernel debugger find the 582 * location and number of symbols by itself. 583 */ 584 marks[MARK_NSYM] = 1; /* XXX: Kernel needs >= 0 */ 585 marks[MARK_SYM] = LOADADDR(elfp); 586 marks[MARK_END] = LOADADDR(maxp); 587 return 0; 588 freephdr: 589 DEALLOC(phdr, sz); 590 return 1; 591 freeshp: 592 DEALLOC(shp, sz); 593 return 1; 594 } 595 596 #ifdef TEST 597 #include <stdlib.h> 598 #include <fcntl.h> 599 #include <err.h> 600 #include <stdio.h> 601 u_int32_t netbsd_version; 602 int 603 main(int argc, char *argv[]) 604 { 605 int fd; 606 u_long marks[MARK_MAX]; 607 Elf_Ehdr elf; 608 if (argc != 2) { 609 (void)fprintf(stderr, "Usage: %s <file>\n", getprogname()); 610 return 1; 611 } 612 if ((fd = open(argv[1], O_RDONLY)) == -1) 613 err(1, "Can't open `%s'", argv[1]); 614 if (read(fd, &elf, sizeof(elf)) != sizeof(elf)) 615 err(1, "Can't read `%s'", argv[1]); 616 memset(marks, 0, sizeof(marks)); 617 marks[MARK_START] = (u_long)malloc(2LL * 1024 * 2024 * 1024); 618 ELFNAMEEND(loadfile)(fd, &elf, marks, LOAD_ALL); 619 printf("%d\n", netbsd_version); 620 return 0; 621 } 622 #endif 623 624 #endif /* (ELFSIZE == 32 && BOOT_ELF32) || (ELFSIZE == 64 && BOOT_ELF64) */ 625