elf_util.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (C) Paul Mackerras 1997.
  3. *
  4. * Updates for PPC64 by Todd Inglett, Dave Engebretsen & Peter Bergner.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <stdarg.h>
  12. #include <stddef.h>
  13. #include "elf.h"
  14. #include "page.h"
  15. #include "string.h"
  16. #include "stdio.h"
  17. int parse_elf64(void *hdr, struct elf_info *info)
  18. {
  19. Elf64_Ehdr *elf64 = hdr;
  20. Elf64_Phdr *elf64ph;
  21. unsigned int i;
  22. if (!(elf64->e_ident[EI_MAG0] == ELFMAG0 &&
  23. elf64->e_ident[EI_MAG1] == ELFMAG1 &&
  24. elf64->e_ident[EI_MAG2] == ELFMAG2 &&
  25. elf64->e_ident[EI_MAG3] == ELFMAG3 &&
  26. elf64->e_ident[EI_CLASS] == ELFCLASS64 &&
  27. elf64->e_ident[EI_DATA] == ELFDATA2MSB &&
  28. elf64->e_type == ET_EXEC &&
  29. elf64->e_machine == EM_PPC64))
  30. return 0;
  31. elf64ph = (Elf64_Phdr *)((unsigned long)elf64 +
  32. (unsigned long)elf64->e_phoff);
  33. for (i = 0; i < (unsigned int)elf64->e_phnum; i++, elf64ph++)
  34. if (elf64ph->p_type == PT_LOAD)
  35. break;
  36. if (i >= (unsigned int)elf64->e_phnum)
  37. return 0;
  38. info->loadsize = (unsigned long)elf64ph->p_filesz;
  39. info->memsize = (unsigned long)elf64ph->p_memsz;
  40. info->elfoffset = (unsigned long)elf64ph->p_offset;
  41. return 1;
  42. }
  43. int parse_elf32(void *hdr, struct elf_info *info)
  44. {
  45. Elf32_Ehdr *elf32 = hdr;
  46. Elf32_Phdr *elf32ph;
  47. unsigned int i;
  48. if (!(elf32->e_ident[EI_MAG0] == ELFMAG0 &&
  49. elf32->e_ident[EI_MAG1] == ELFMAG1 &&
  50. elf32->e_ident[EI_MAG2] == ELFMAG2 &&
  51. elf32->e_ident[EI_MAG3] == ELFMAG3 &&
  52. elf32->e_ident[EI_CLASS] == ELFCLASS32 &&
  53. elf32->e_ident[EI_DATA] == ELFDATA2MSB &&
  54. elf32->e_type == ET_EXEC &&
  55. elf32->e_machine == EM_PPC))
  56. return 0;
  57. elf32ph = (Elf32_Phdr *) ((unsigned long)elf32 + elf32->e_phoff);
  58. for (i = 0; i < elf32->e_phnum; i++, elf32ph++)
  59. if (elf32ph->p_type == PT_LOAD)
  60. break;
  61. if (i >= elf32->e_phnum)
  62. return 0;
  63. info->loadsize = elf32ph->p_filesz;
  64. info->memsize = elf32ph->p_memsz;
  65. info->elfoffset = elf32ph->p_offset;
  66. return 1;
  67. }