1 /* 2 * Copyright (c) 1997 Christopher G. Demetriou. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 3. All advertising materials mentioning features or use of this software 13 * must display the following acknowledgement: 14 * This product includes software developed by Christopher G. Demetriou 15 * for the NetBSD Project. 16 * 4. The name of the author may not be used to endorse or promote products 17 * derived from this software without specific prior written permission 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #include <sys/cdefs.h> 32 #ifndef lint 33 #if 0 34 __RCSID("$NetBSD: exec_elf32.c,v 1.6 1999/09/20 04:12:16 christos Exp $"); 35 #endif 36 #endif 37 __FBSDID("$FreeBSD$"); 38 39 #ifndef ELFSIZE 40 #define ELFSIZE 32 41 #endif 42 43 #include <sys/types.h> 44 #include <sys/endian.h> 45 #include <sys/stat.h> 46 47 #include <errno.h> 48 #include <limits.h> 49 #include <stddef.h> 50 #include <stdio.h> 51 #include <stdlib.h> 52 #include <string.h> 53 #include <unistd.h> 54 55 #include "extern.h" 56 57 #if (defined(NLIST_ELF32) && (ELFSIZE == 32)) || \ 58 (defined(NLIST_ELF64) && (ELFSIZE == 64)) 59 60 #define __ELF_WORD_SIZE ELFSIZE 61 #if (ELFSIZE == 32) 62 #include <sys/elf32.h> 63 #define xewtoh(x) ((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x)) 64 #define htoxew(x) ((data == ELFDATA2MSB) ? htobe32(x) : htole32(x)) 65 #define wewtoh(x) ((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x)) 66 #define htowew(x) ((data == ELFDATA2MSB) ? htobe32(x) : htole32(x)) 67 #elif (ELFSIZE == 64) 68 #include <sys/elf64.h> 69 #define xewtoh(x) ((data == ELFDATA2MSB) ? be64toh(x) : le64toh(x)) 70 #define htoxew(x) ((data == ELFDATA2MSB) ? htobe64(x) : htole64(x)) 71 /* elf64 Elf64_Word are 32 bits */ 72 #define wewtoh(x) ((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x)) 73 #define htowew(x) ((data == ELFDATA2MSB) ? htobe32(x) : htole32(x)) 74 #endif 75 #include <sys/elf_generic.h> 76 77 #define CONCAT(x,y) __CONCAT(x,y) 78 #define ELFNAME(x) CONCAT(elf,CONCAT(ELFSIZE,CONCAT(_,x))) 79 #define ELFNAME2(x,y) CONCAT(x,CONCAT(_elf,CONCAT(ELFSIZE,CONCAT(_,y)))) 80 #define ELFNAMEEND(x) CONCAT(x,CONCAT(_elf,ELFSIZE)) 81 #define ELFDEFNNAME(x) CONCAT(ELF,CONCAT(ELFSIZE,CONCAT(_,x))) 82 #ifndef ELFCLASS 83 #define ELFCLASS CONCAT(ELFCLASS,ELFSIZE) 84 #endif 85 86 #define xe16toh(x) ((data == ELFDATA2MSB) ? be16toh(x) : le16toh(x)) 87 #define xe32toh(x) ((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x)) 88 #define htoxe32(x) ((data == ELFDATA2MSB) ? htobe32(x) : htole32(x)) 89 90 struct shlayout { 91 Elf_Shdr *shdr; 92 void *bufp; 93 }; 94 95 static ssize_t 96 xreadatoff(int fd, void *buf, off_t off, size_t size, const char *fn) 97 { 98 ssize_t rv; 99 100 if (lseek(fd, off, SEEK_SET) != off) { 101 perror(fn); 102 return -1; 103 } 104 if ((size_t)(rv = read(fd, buf, size)) != size) { 105 fprintf(stderr, "%s: read error: %s\n", fn, 106 rv == -1 ? strerror(errno) : "short read"); 107 return -1; 108 } 109 return size; 110 } 111 112 static ssize_t 113 xwriteatoff(int fd, void *buf, off_t off, size_t size, const char *fn) 114 { 115 ssize_t rv; 116 117 if (lseek(fd, off, SEEK_SET) != off) { 118 perror(fn); 119 return -1; 120 } 121 if ((size_t)(rv = write(fd, buf, size)) != size) { 122 fprintf(stderr, "%s: write error: %s\n", fn, 123 rv == -1 ? strerror(errno) : "short write"); 124 return -1; 125 } 126 return size; 127 } 128 129 static void * 130 xmalloc(size_t size, const char *fn, const char *use) 131 { 132 void *rv; 133 134 rv = malloc(size); 135 if (rv == NULL) 136 fprintf(stderr, "%s: out of memory (allocating for %s)\n", 137 fn, use); 138 return (rv); 139 } 140 141 static void * 142 xrealloc(void *ptr, size_t size, const char *fn, const char *use) 143 { 144 void *rv; 145 146 rv = realloc(ptr, size); 147 if (rv == NULL) { 148 free(ptr); 149 fprintf(stderr, "%s: out of memory (reallocating for %s)\n", 150 fn, use); 151 } 152 return (rv); 153 } 154 155 int 156 ELFNAMEEND(check)(int fd, const char *fn) 157 { 158 Elf_Ehdr eh; 159 struct stat sb; 160 unsigned char data; 161 162 /* 163 * Check the header to maek sure it's an ELF file (of the 164 * appropriate size). 165 */ 166 if (fstat(fd, &sb) == -1) 167 return 0; 168 if (sb.st_size < (off_t)(sizeof eh)) 169 return 0; 170 if (read(fd, &eh, sizeof eh) != sizeof eh) 171 return 0; 172 173 if (IS_ELF(eh) == 0 || eh.e_ident[EI_CLASS] != ELFCLASS) 174 return 0; 175 176 data = eh.e_ident[EI_DATA]; 177 178 switch (xe16toh(eh.e_machine)) { 179 case EM_386: break; 180 case EM_ALPHA: break; 181 case EM_AARCH64: break; 182 case EM_ARM: break; 183 case EM_MIPS: break; 184 case /* EM_MIPS_RS3_LE */ EM_MIPS_RS4_BE: break; 185 case EM_PPC: break; 186 case EM_PPC64: break; 187 case EM_SPARCV9: break; 188 case EM_X86_64: break; 189 /* ELFDEFNNAME(MACHDEP_ID_CASES) */ 190 191 default: 192 return 0; 193 } 194 195 return 1; 196 } 197 198 /* 199 * This function 'hides' (some of) ELF executable file's symbols. 200 * It hides them by renaming them to "_$$hide$$ <filename> <symbolname>". 201 * Symbols in the global keep list, or which are marked as being undefined, 202 * are left alone. 203 * 204 * An old version of this code shuffled various tables around, turning 205 * global symbols to be hidden into local symbols. That lost on the 206 * mips, because CALL16 relocs must reference global symbols, and, if 207 * those symbols were being hidden, they were no longer global. 208 * 209 * The new renaming behaviour doesn't take global symbols out of the 210 * namespace. However, it's ... unlikely that there will ever be 211 * any collisions in practice because of the new method. 212 */ 213 int 214 ELFNAMEEND(hide)(int fd, const char *fn) 215 { 216 Elf_Ehdr ehdr; 217 struct shlayout *layoutp = NULL; 218 Elf_Shdr *shdrp = NULL, *symtabshdr, *strtabshdr, *shstrtabshdr; 219 Elf_Shdr shdrshdr; 220 Elf_Sym *symtabp = NULL; 221 char *shstrtabp = NULL, *strtabp = NULL; 222 Elf_Size nsyms, ewi; 223 Elf_Off off; 224 ssize_t shdrsize; 225 int rv, i, weird, l, m, r, strtabidx; 226 size_t nstrtab_size, nstrtab_nextoff, fn_size, size; 227 char *nstrtabp = NULL; 228 unsigned char data; 229 const char *weirdreason = NULL; 230 void *buf; 231 Elf_Half shnum; 232 233 rv = 0; 234 if (xreadatoff(fd, &ehdr, 0, sizeof ehdr, fn) != sizeof ehdr) 235 goto bad; 236 237 data = ehdr.e_ident[EI_DATA]; 238 shnum = xe16toh(ehdr.e_shnum); 239 240 shdrsize = shnum * xe16toh(ehdr.e_shentsize); 241 if ((shdrp = xmalloc(shdrsize, fn, "section header table")) == NULL) 242 goto bad; 243 if (xreadatoff(fd, shdrp, xewtoh(ehdr.e_shoff), shdrsize, fn) != 244 shdrsize) 245 goto bad; 246 247 symtabshdr = strtabshdr = shstrtabshdr = NULL; 248 weird = 0; 249 for (i = 0; i < shnum; i++) { 250 switch (xe32toh(shdrp[i].sh_type)) { 251 case SHT_SYMTAB: 252 if (symtabshdr != NULL) { 253 weird = 1; 254 weirdreason = "multiple symbol tables"; 255 } 256 symtabshdr = &shdrp[i]; 257 strtabshdr = &shdrp[xe32toh(shdrp[i].sh_link)]; 258 break; 259 case SHT_STRTAB: 260 if (i == xe16toh(ehdr.e_shstrndx)) 261 shstrtabshdr = &shdrp[i]; 262 break; 263 } 264 } 265 if (symtabshdr == NULL) 266 goto out; 267 if (strtabshdr == NULL) { 268 weird = 1; 269 weirdreason = "string table does not exist"; 270 } 271 if (shstrtabshdr == NULL) { 272 weird = 1; 273 weirdreason = "section header string table does not exist"; 274 } 275 if (weirdreason == NULL) 276 weirdreason = "unsupported"; 277 if (weird) { 278 fprintf(stderr, "%s: weird executable (%s)\n", fn, weirdreason); 279 goto bad; 280 } 281 282 /* 283 * sort section layout table by offset 284 */ 285 layoutp = xmalloc((shnum + 1) * sizeof(struct shlayout), 286 fn, "layout table"); 287 if (layoutp == NULL) 288 goto bad; 289 290 /* add a pseudo entry to represent the section header table */ 291 shdrshdr.sh_offset = ehdr.e_shoff; 292 shdrshdr.sh_size = htoxew(shdrsize); 293 shdrshdr.sh_addralign = htoxew(ELFSIZE / 8); 294 layoutp[shnum].shdr = &shdrshdr; 295 296 /* insert and sort normal section headers */ 297 for (i = shnum; i-- != 0;) { 298 l = i + 1; 299 r = shnum; 300 while (l <= r) { 301 m = ( l + r) / 2; 302 if (xewtoh(shdrp[i].sh_offset) > 303 xewtoh(layoutp[m].shdr->sh_offset)) 304 l = m + 1; 305 else 306 r = m - 1; 307 } 308 309 if (r != i) { 310 memmove(&layoutp[i], &layoutp[i + 1], 311 sizeof(struct shlayout) * (r - i)); 312 } 313 314 layoutp[r].shdr = &shdrp[i]; 315 layoutp[r].bufp = NULL; 316 } 317 ++shnum; 318 319 /* 320 * load up everything we need 321 */ 322 323 /* load section string table for debug use */ 324 if ((shstrtabp = xmalloc(xewtoh(shstrtabshdr->sh_size), fn, 325 "section string table")) == NULL) 326 goto bad; 327 if ((size_t)xreadatoff(fd, shstrtabp, xewtoh(shstrtabshdr->sh_offset), 328 xewtoh(shstrtabshdr->sh_size), fn) != xewtoh(shstrtabshdr->sh_size)) 329 goto bad; 330 331 /* we need symtab, strtab, and everything behind strtab */ 332 strtabidx = INT_MAX; 333 for (i = 0; i < shnum; i++) { 334 if (layoutp[i].shdr == &shdrshdr) { 335 /* not load section header again */ 336 layoutp[i].bufp = shdrp; 337 continue; 338 } 339 if (layoutp[i].shdr == shstrtabshdr) { 340 /* not load section string table again */ 341 layoutp[i].bufp = shstrtabp; 342 continue; 343 } 344 345 if (layoutp[i].shdr == strtabshdr) 346 strtabidx = i; 347 if (layoutp[i].shdr == symtabshdr || i >= strtabidx) { 348 off = xewtoh(layoutp[i].shdr->sh_offset); 349 size = xewtoh(layoutp[i].shdr->sh_size); 350 layoutp[i].bufp = xmalloc(size, fn, 351 shstrtabp + xewtoh(layoutp[i].shdr->sh_name)); 352 if (layoutp[i].bufp == NULL) 353 goto bad; 354 if ((size_t)xreadatoff(fd, layoutp[i].bufp, off, size, fn) != 355 size) 356 goto bad; 357 358 /* set symbol table and string table */ 359 if (layoutp[i].shdr == symtabshdr) 360 symtabp = layoutp[i].bufp; 361 else if (layoutp[i].shdr == strtabshdr) 362 strtabp = layoutp[i].bufp; 363 } 364 } 365 366 nstrtab_size = 256; 367 nstrtabp = xmalloc(nstrtab_size, fn, "new string table"); 368 if (nstrtabp == NULL) 369 goto bad; 370 nstrtab_nextoff = 0; 371 372 fn_size = strlen(fn); 373 374 /* Prepare data structures for symbol movement. */ 375 nsyms = xewtoh(symtabshdr->sh_size) / xewtoh(symtabshdr->sh_entsize); 376 377 /* move symbols, making them local */ 378 for (ewi = 0; ewi < nsyms; ewi++) { 379 Elf_Sym *sp = &symtabp[ewi]; 380 const char *symname = strtabp + xe32toh(sp->st_name); 381 size_t newent_len; 382 /* 383 * make sure there's size for the next entry, even if it's 384 * as large as it can be. 385 * 386 * "_$$hide$$ <filename> <symname><NUL>" -> 387 * 9 + 3 + sizes of fn and sym name 388 */ 389 while ((nstrtab_size - nstrtab_nextoff) < 390 strlen(symname) + fn_size + 12) { 391 nstrtab_size *= 2; 392 nstrtabp = xrealloc(nstrtabp, nstrtab_size, fn, 393 "new string table"); 394 if (nstrtabp == NULL) 395 goto bad; 396 } 397 398 sp->st_name = htowew(nstrtab_nextoff); 399 400 /* if it's a keeper or is undefined, don't rename it. */ 401 if (in_keep_list(symname) || 402 (xe16toh(sp->st_shndx) == SHN_UNDEF)) { 403 newent_len = sprintf(nstrtabp + nstrtab_nextoff, 404 "%s", symname) + 1; 405 } else { 406 newent_len = sprintf(nstrtabp + nstrtab_nextoff, 407 "_$$hide$$ %s %s", fn, symname) + 1; 408 } 409 nstrtab_nextoff += newent_len; 410 } 411 strtabshdr->sh_size = htoxew(nstrtab_nextoff); 412 413 /* 414 * update section header table in ascending order of offset 415 */ 416 for (i = strtabidx + 1; i < shnum; i++) { 417 Elf_Off off, align; 418 off = xewtoh(layoutp[i - 1].shdr->sh_offset) + 419 xewtoh(layoutp[i - 1].shdr->sh_size); 420 align = xewtoh(layoutp[i].shdr->sh_addralign); 421 off = (off + (align - 1)) & ~(align - 1); 422 layoutp[i].shdr->sh_offset = htoxew(off); 423 } 424 425 /* 426 * write data to the file in descending order of offset 427 */ 428 for (i = shnum; i-- != 0;) { 429 if (layoutp[i].shdr == strtabshdr) { 430 /* new string table */ 431 buf = nstrtabp; 432 } else 433 buf = layoutp[i].bufp; 434 435 if (layoutp[i].shdr == &shdrshdr || 436 layoutp[i].shdr == symtabshdr || i >= strtabidx) { 437 if (buf == NULL) 438 goto bad; 439 440 /* 441 * update the offset of section header table in elf 442 * header if needed. 443 */ 444 if (layoutp[i].shdr == &shdrshdr && 445 ehdr.e_shoff != shdrshdr.sh_offset) { 446 ehdr.e_shoff = shdrshdr.sh_offset; 447 off = offsetof(Elf_Ehdr, e_shoff); 448 size = sizeof(Elf_Off); 449 if ((size_t)xwriteatoff(fd, &ehdr.e_shoff, off, size, 450 fn) != size) 451 goto bad; 452 } 453 454 off = xewtoh(layoutp[i].shdr->sh_offset); 455 size = xewtoh(layoutp[i].shdr->sh_size); 456 if ((size_t)xwriteatoff(fd, buf, off, size, fn) != size) 457 goto bad; 458 } 459 } 460 461 out: 462 if (layoutp != NULL) { 463 for (i = 0; i < shnum; i++) { 464 if (layoutp[i].bufp != NULL) 465 free(layoutp[i].bufp); 466 } 467 free(layoutp); 468 } 469 free(nstrtabp); 470 return (rv); 471 472 bad: 473 rv = 1; 474 goto out; 475 } 476 477 #endif /* include this size of ELF */ 478