readelf.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * A small little readelf implementation for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Several functions in this file (specifically, elf_find_section_type(),
  8. * elf_find_phdr_type(), and elf_find_dynamic(), were stolen from elflib.c from
  9. * elfvector (http://www.BitWagon.com/elfvector.html) by John F. Reiser
  10. * <jreiser@BitWagon.com>, which is copyright 2000 BitWagon Software LLC
  11. * (GPL2).
  12. *
  13. * Licensed under GPLv2 or later
  14. */
  15. #include "porting.h"
  16. static int byteswap;
  17. static __inline__ uint32_t byteswap32_to_host(uint32_t value)
  18. {
  19. if (byteswap==1) {
  20. return(bswap_32(value));
  21. } else {
  22. return(value);
  23. }
  24. }
  25. static __inline__ uint64_t byteswap64_to_host(uint64_t value)
  26. {
  27. if (byteswap==1) {
  28. return(bswap_64(value));
  29. } else {
  30. return(value);
  31. }
  32. }
  33. #if __WORDSIZE == 64
  34. # define byteswap_to_host(x) byteswap64_to_host(x)
  35. #else
  36. # define byteswap_to_host(x) byteswap32_to_host(x)
  37. #endif
  38. static ElfW(Shdr) * elf_find_section_type( uint32_t key, ElfW(Ehdr) *ehdr)
  39. {
  40. int j;
  41. ElfW(Shdr) *shdr = (ElfW(Shdr) *)(ehdr->e_shoff + (char *)ehdr);
  42. for (j = ehdr->e_shnum; --j>=0; ++shdr) {
  43. if (key==byteswap32_to_host(shdr->sh_type)) {
  44. return shdr;
  45. }
  46. }
  47. return NULL;
  48. }
  49. static ElfW(Phdr) * elf_find_phdr_type( uint32_t type, ElfW(Ehdr) *ehdr)
  50. {
  51. int j;
  52. ElfW(Phdr) *phdr = (ElfW(Phdr) *)(ehdr->e_phoff + (char *)ehdr);
  53. for (j = ehdr->e_phnum; --j>=0; ++phdr) {
  54. if (type==byteswap32_to_host(phdr->p_type)) {
  55. return phdr;
  56. }
  57. }
  58. return NULL;
  59. }
  60. /* Returns value if return_val==1, ptr otherwise */
  61. static void * elf_find_dynamic( int64_t const key, ElfW(Dyn) *dynp,
  62. ElfW(Ehdr) *ehdr, int return_val)
  63. {
  64. ElfW(Phdr) *pt_text = elf_find_phdr_type(PT_LOAD, ehdr);
  65. ElfW(Addr) tx_reloc = byteswap_to_host(pt_text->p_vaddr) - byteswap_to_host(pt_text->p_offset);
  66. for (; DT_NULL!=byteswap_to_host(dynp->d_tag); ++dynp) {
  67. if (key == byteswap_to_host(dynp->d_tag)) {
  68. if (return_val == 1)
  69. return (void *)byteswap_to_host(dynp->d_un.d_val);
  70. else
  71. return (void *)(byteswap_to_host(dynp->d_un.d_val) - tx_reloc + (char *)ehdr );
  72. }
  73. }
  74. return NULL;
  75. }
  76. static int check_elf_header(ElfW(Ehdr) *const ehdr)
  77. {
  78. if (!ehdr || *(uint32_t*)ehdr != ELFMAG_U32
  79. || (ehdr->e_ident[EI_CLASS] != ELFCLASS32
  80. && ehdr->e_ident[EI_CLASS] != ELFCLASS64)
  81. || ehdr->e_ident[EI_VERSION] != EV_CURRENT
  82. ) {
  83. return 1;
  84. }
  85. /* Check if the target endianness matches the host's endianness */
  86. byteswap = 0;
  87. if (UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_LITTLE) {
  88. if (ehdr->e_ident[5] == ELFDATA2MSB)
  89. byteswap = 1;
  90. } else if (UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_BIG) {
  91. if (ehdr->e_ident[5] == ELFDATA2LSB)
  92. byteswap = 1;
  93. }
  94. /* Be very lazy, and only byteswap the stuff we use */
  95. if (byteswap) {
  96. ehdr->e_type = bswap_16(ehdr->e_type);
  97. ehdr->e_machine = bswap_16(ehdr->e_machine);
  98. ehdr->e_phoff = byteswap_to_host(ehdr->e_phoff);
  99. ehdr->e_shoff = byteswap_to_host(ehdr->e_shoff);
  100. ehdr->e_phnum = bswap_16(ehdr->e_phnum);
  101. ehdr->e_shnum = bswap_16(ehdr->e_shnum);
  102. }
  103. return 0;
  104. }
  105. static void describe_elf_hdr(ElfW(Ehdr)* ehdr)
  106. {
  107. char *tmp, *tmp1;
  108. switch (ehdr->e_type) {
  109. case ET_NONE: tmp = "None"; tmp1 = "NONE"; break;
  110. case ET_REL: tmp = "Relocatable File"; tmp1 = "REL"; break;
  111. case ET_EXEC: tmp = "Executable file"; tmp1 = "EXEC"; break;
  112. case ET_DYN: tmp = "Shared object file"; tmp1 = "DYN"; break;
  113. case ET_CORE: tmp = "Core file"; tmp1 = "CORE"; break;
  114. default:
  115. tmp = tmp1 = "Unknown";
  116. }
  117. printf( "Type:\t\t%s (%s)\n", tmp1, tmp);
  118. switch (ehdr->e_machine) {
  119. case EM_NONE: tmp="No machine"; break;
  120. case EM_M32: tmp="AT&T WE 32100"; break;
  121. case EM_SPARC: tmp="SUN SPARC"; break;
  122. case EM_386: tmp="Intel 80386"; break;
  123. case EM_68K: tmp="Motorola m68k family"; break;
  124. case EM_88K: tmp="Motorola m88k family"; break;
  125. case EM_486: tmp="Intel 80486"; break;
  126. case EM_860: tmp="Intel 80860"; break;
  127. case EM_MIPS: tmp="MIPS R3000 big-endian"; break;
  128. case EM_S370: tmp="IBM System/370"; break;
  129. case EM_MIPS_RS3_LE: tmp="MIPS R3000 little-endian"; break;
  130. case EM_OLD_SPARCV9: tmp="Sparc v9 (old)"; break;
  131. case EM_PARISC: tmp="HPPA"; break;
  132. /*case EM_PPC_OLD: tmp="Power PC (old)"; break; conflicts with EM_VPP500 */
  133. case EM_SPARC32PLUS: tmp="Sun's v8plus"; break;
  134. case EM_960: tmp="Intel 80960"; break;
  135. case EM_PPC: tmp="PowerPC"; break;
  136. case EM_PPC64: tmp="PowerPC 64-bit"; break;
  137. case EM_V800: tmp="NEC V800 series"; break;
  138. case EM_FR20: tmp="Fujitsu FR20"; break;
  139. case EM_RH32: tmp="TRW RH-32"; break;
  140. case EM_MCORE: tmp="MCORE"; break;
  141. case EM_ARM: tmp="ARM"; break;
  142. case EM_FAKE_ALPHA: tmp="Digital Alpha"; break;
  143. case EM_SH: tmp="Renesas SH"; break;
  144. case EM_SPARCV9: tmp="SPARC v9 64-bit"; break;
  145. case EM_TRICORE: tmp="Siemens Tricore"; break;
  146. case EM_ARC: tmp="Argonaut RISC Core"; break;
  147. case EM_H8_300: tmp="Renesas H8/300"; break;
  148. case EM_H8_300H: tmp="Renesas H8/300H"; break;
  149. case EM_H8S: tmp="Renesas H8S"; break;
  150. case EM_H8_500: tmp="Renesas H8/500"; break;
  151. case EM_IA_64: tmp="Intel Merced"; break;
  152. case EM_MIPS_X: tmp="Stanford MIPS-X"; break;
  153. case EM_COLDFIRE: tmp="Motorola Coldfire"; break;
  154. case EM_68HC12: tmp="Motorola M68HC12"; break;
  155. case EM_ALPHA: tmp="Alpha"; break;
  156. case EM_CYGNUS_D10V:
  157. case EM_D10V: tmp="Mitsubishi D10V"; break;
  158. case EM_CYGNUS_D30V:
  159. case EM_D30V: tmp="Mitsubishi D30V"; break;
  160. case EM_CYGNUS_M32R:
  161. case EM_M32R: tmp="Renesas M32R (formerly Mitsubishi M32r)"; break;
  162. case EM_CYGNUS_V850:
  163. case EM_V850: tmp="NEC v850"; break;
  164. case EM_CYGNUS_MN10300:
  165. case EM_MN10300: tmp="Matsushita MN10300"; break;
  166. case EM_CYGNUS_MN10200:
  167. case EM_MN10200: tmp="Matsushita MN10200"; break;
  168. case EM_CYGNUS_FR30:
  169. case EM_FR30: tmp="Fujitsu FR30"; break;
  170. case EM_CYGNUS_FRV:
  171. case EM_PJ_OLD:
  172. case EM_PJ: tmp="picoJava"; break;
  173. case EM_MMA: tmp="Fujitsu MMA Multimedia Accelerator"; break;
  174. case EM_PCP: tmp="Siemens PCP"; break;
  175. case EM_NCPU: tmp="Sony nCPU embeeded RISC"; break;
  176. case EM_NDR1: tmp="Denso NDR1 microprocessor"; break;
  177. case EM_STARCORE: tmp="Motorola Start*Core processor"; break;
  178. case EM_ME16: tmp="Toyota ME16 processor"; break;
  179. case EM_ST100: tmp="STMicroelectronic ST100 processor"; break;
  180. case EM_TINYJ: tmp="Advanced Logic Corp. Tinyj emb.fam"; break;
  181. case EM_FX66: tmp="Siemens FX66 microcontroller"; break;
  182. case EM_ST9PLUS: tmp="STMicroelectronics ST9+ 8/16 mc"; break;
  183. case EM_ST7: tmp="STmicroelectronics ST7 8 bit mc"; break;
  184. case EM_68HC16: tmp="Motorola MC68HC16 microcontroller"; break;
  185. case EM_68HC11: tmp="Motorola MC68HC11 microcontroller"; break;
  186. case EM_68HC08: tmp="Motorola MC68HC08 microcontroller"; break;
  187. case EM_68HC05: tmp="Motorola MC68HC05 microcontroller"; break;
  188. case EM_SVX: tmp="Silicon Graphics SVx"; break;
  189. case EM_ST19: tmp="STMicroelectronics ST19 8 bit mc"; break;
  190. case EM_VAX: tmp="Digital VAX"; break;
  191. case EM_AVR_OLD:
  192. case EM_AVR: tmp="Atmel AVR 8-bit microcontroller"; break;
  193. case EM_CRIS: tmp="Axis Communications 32-bit embedded processor"; break;
  194. case EM_JAVELIN: tmp="Infineon Technologies 32-bit embedded processor"; break;
  195. case EM_FIREPATH: tmp="Element 14 64-bit DSP Processor"; break;
  196. case EM_ZSP: tmp="LSI Logic 16-bit DSP Processor"; break;
  197. case EM_MMIX: tmp="Donald Knuth's educational 64-bit processor"; break;
  198. case EM_HUANY: tmp="Harvard University machine-independent object files"; break;
  199. case EM_PRISM: tmp="SiTera Prism"; break;
  200. case EM_X86_64: tmp="AMD x86-64 architecture"; break;
  201. case EM_S390_OLD:
  202. case EM_S390: tmp="IBM S390"; break;
  203. case EM_XSTORMY16: tmp="Sanyo Xstormy16 CPU core"; break;
  204. case EM_OPENRISC:
  205. case EM_OR32: tmp="OpenRISC"; break;
  206. case EM_CRX: tmp="National Semiconductor CRX microprocessor"; break;
  207. case EM_DLX: tmp="OpenDLX"; break;
  208. case EM_IP2K_OLD:
  209. case EM_IP2K: tmp="Ubicom IP2xxx 8-bit microcontrollers"; break;
  210. case EM_IQ2000: tmp="Vitesse IQ2000"; break;
  211. case EM_XTENSA_OLD:
  212. case EM_XTENSA: tmp="Tensilica Xtensa Processor"; break;
  213. case EM_M32C: tmp="Renesas M32c"; break;
  214. case EM_MT: tmp="Morpho Techologies MT processor"; break;
  215. case EM_BLACKFIN: tmp="Analog Devices Blackfin"; break;
  216. case EM_NIOS32: tmp="Altera Nios 32"; break;
  217. case EM_ALTERA_NIOS2: tmp="Altera Nios II"; break;
  218. case EM_VPP500: tmp="Fujitsu VPP500"; break;
  219. case EM_PDSP: tmp="Sony DSP Processor"; break;
  220. default: tmp="unknown";
  221. }
  222. printf( "Machine:\t%s\n", tmp);
  223. switch (ehdr->e_ident[EI_CLASS]) {
  224. case ELFCLASSNONE: tmp = "Invalid class"; break;
  225. case ELFCLASS32: tmp = "ELF32"; break;
  226. case ELFCLASS64: tmp = "ELF64"; break;
  227. default: tmp = "Unknown";
  228. }
  229. printf( "Class:\t\t%s\n", tmp);
  230. switch (ehdr->e_ident[EI_DATA]) {
  231. case ELFDATANONE: tmp = "Invalid data encoding"; break;
  232. case ELFDATA2LSB: tmp = "2's complement, little endian"; break;
  233. case ELFDATA2MSB: tmp = "2's complement, big endian"; break;
  234. default: tmp = "Unknown";
  235. }
  236. printf( "Data:\t\t%s\n", tmp);
  237. printf( "Version:\t%d %s\n", ehdr->e_ident[EI_VERSION],
  238. (ehdr->e_ident[EI_VERSION]==EV_CURRENT)?
  239. "(current)" : "(unknown: %lx)");
  240. switch (ehdr->e_ident[EI_OSABI]) {
  241. case ELFOSABI_SYSV: tmp ="UNIX - System V"; break;
  242. case ELFOSABI_HPUX: tmp ="UNIX - HP-UX"; break;
  243. case ELFOSABI_NETBSD: tmp ="UNIX - NetBSD"; break;
  244. case ELFOSABI_LINUX: tmp ="UNIX - Linux"; break;
  245. case ELFOSABI_HURD: tmp ="GNU/Hurd"; break;
  246. case ELFOSABI_SOLARIS: tmp ="UNIX - Solaris"; break;
  247. case ELFOSABI_AIX: tmp ="UNIX - AIX"; break;
  248. case ELFOSABI_IRIX: tmp ="UNIX - IRIX"; break;
  249. case ELFOSABI_FREEBSD: tmp ="UNIX - FreeBSD"; break;
  250. case ELFOSABI_TRU64: tmp ="UNIX - TRU64"; break;
  251. case ELFOSABI_MODESTO: tmp ="Novell - Modesto"; break;
  252. case ELFOSABI_OPENBSD: tmp ="UNIX - OpenBSD"; break;
  253. case ELFOSABI_STANDALONE: tmp ="Standalone App"; break;
  254. case ELFOSABI_ARM: tmp ="ARM"; break;
  255. default: tmp = "Unknown";
  256. }
  257. printf( "OS/ABI:\t\t%s\n", tmp);
  258. printf( "ABI Version:\t%d\n", ehdr->e_ident[EI_ABIVERSION]);
  259. }
  260. static void list_needed_libraries(ElfW(Dyn)* dynamic, char *strtab)
  261. {
  262. ElfW(Dyn) *dyns;
  263. printf("Dependancies:\n");
  264. for (dyns=dynamic; byteswap_to_host(dyns->d_tag)!=DT_NULL; ++dyns) {
  265. if (dyns->d_tag == DT_NEEDED) {
  266. printf("\t%s\n", (char*)strtab + byteswap_to_host(dyns->d_un.d_val));
  267. }
  268. }
  269. }
  270. static void describe_elf_interpreter(ElfW(Ehdr)* ehdr)
  271. {
  272. ElfW(Phdr) *phdr;
  273. phdr = elf_find_phdr_type(PT_INTERP, ehdr);
  274. if (phdr) {
  275. printf("Interpreter:\t%s\n", (char*)ehdr + byteswap_to_host(phdr->p_offset));
  276. }
  277. }
  278. int main( int argc, char** argv)
  279. {
  280. /* map the .so, and locate interesting pieces */
  281. char *dynstr;
  282. char *thefilename = argv[1];
  283. FILE *thefile;
  284. struct stat statbuf;
  285. ElfW(Ehdr) *ehdr = 0;
  286. ElfW(Shdr) *dynsec;
  287. ElfW(Dyn) *dynamic;
  288. if (argc < 2 || !thefilename) {
  289. fprintf(stderr, "No filename specified.\n");
  290. exit(EXIT_FAILURE);
  291. }
  292. if (!(thefile = fopen(thefilename, "r"))) {
  293. perror(thefilename);
  294. exit(EXIT_FAILURE);
  295. }
  296. if (fstat(fileno(thefile), &statbuf) < 0) {
  297. perror(thefilename);
  298. exit(EXIT_FAILURE);
  299. }
  300. if ((size_t)statbuf.st_size < sizeof(ElfW(Ehdr)))
  301. goto foo;
  302. /* mmap the file to make reading stuff from it effortless */
  303. ehdr = (ElfW(Ehdr) *)mmap(0, statbuf.st_size,
  304. PROT_READ|PROT_WRITE, MAP_PRIVATE, fileno(thefile), 0);
  305. foo:
  306. /* Check if this looks legit */
  307. if (check_elf_header(ehdr)) {
  308. fprintf(stderr, "This does not appear to be an ELF file.\n");
  309. exit(EXIT_FAILURE);
  310. }
  311. describe_elf_hdr(ehdr);
  312. describe_elf_interpreter(ehdr);
  313. dynsec = elf_find_section_type(SHT_DYNAMIC, ehdr);
  314. if (dynsec) {
  315. dynamic = (ElfW(Dyn)*)(byteswap_to_host(dynsec->sh_offset) + (char *)ehdr);
  316. dynstr = (char *)elf_find_dynamic(DT_STRTAB, dynamic, ehdr, 0);
  317. list_needed_libraries(dynamic, dynstr);
  318. }
  319. return 0;
  320. }