You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

elf.c 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. /**
  20. * @file
  21. *
  22. * ELF image format
  23. *
  24. * A "pure" ELF image is not a bootable image. There are various
  25. * bootable formats based upon ELF (e.g. Multiboot), which share
  26. * common ELF-related functionality.
  27. */
  28. #include <errno.h>
  29. #include <elf.h>
  30. #include <ipxe/uaccess.h>
  31. #include <ipxe/segment.h>
  32. #include <ipxe/image.h>
  33. #include <ipxe/elf.h>
  34. typedef Elf32_Ehdr Elf_Ehdr;
  35. typedef Elf32_Phdr Elf_Phdr;
  36. typedef Elf32_Off Elf_Off;
  37. #define ELFCLASS ELFCLASS32
  38. /**
  39. * Load ELF segment into memory
  40. *
  41. * @v image ELF file
  42. * @v phdr ELF program header
  43. * @v ehdr ELF executable header
  44. * @ret entry Entry point, if found
  45. * @ret rc Return status code
  46. */
  47. static int elf_load_segment ( struct image *image, Elf_Phdr *phdr,
  48. Elf_Ehdr *ehdr, physaddr_t *entry ) {
  49. physaddr_t dest;
  50. userptr_t buffer;
  51. unsigned long e_offset;
  52. int rc;
  53. /* Do nothing for non-PT_LOAD segments */
  54. if ( phdr->p_type != PT_LOAD )
  55. return 0;
  56. /* Check segment lies within image */
  57. if ( ( phdr->p_offset + phdr->p_filesz ) > image->len ) {
  58. DBGC ( image, "ELF %p segment outside image\n", image );
  59. return -ENOEXEC;
  60. }
  61. /* Find start address: use physical address for preference,
  62. * fall back to virtual address if no physical address
  63. * supplied.
  64. */
  65. dest = phdr->p_paddr;
  66. if ( ! dest )
  67. dest = phdr->p_vaddr;
  68. if ( ! dest ) {
  69. DBGC ( image, "ELF %p segment loads to physical address 0\n",
  70. image );
  71. return -ENOEXEC;
  72. }
  73. buffer = phys_to_user ( dest );
  74. DBGC ( image, "ELF %p loading segment [%x,%x) to [%x,%x,%x)\n", image,
  75. phdr->p_offset, ( phdr->p_offset + phdr->p_filesz ),
  76. phdr->p_paddr, ( phdr->p_paddr + phdr->p_filesz ),
  77. ( phdr->p_paddr + phdr->p_memsz ) );
  78. /* Verify and prepare segment */
  79. if ( ( rc = prep_segment ( buffer, phdr->p_filesz,
  80. phdr->p_memsz ) ) != 0 ) {
  81. DBGC ( image, "ELF %p could not prepare segment: %s\n",
  82. image, strerror ( rc ) );
  83. return rc;
  84. }
  85. /* Copy image to segment */
  86. memcpy_user ( buffer, 0, image->data, phdr->p_offset, phdr->p_filesz );
  87. /* Set execution address, if it lies within this segment */
  88. if ( ( e_offset = ( ehdr->e_entry - dest ) ) < phdr->p_filesz ) {
  89. *entry = ehdr->e_entry;
  90. DBGC ( image, "ELF %p found physical entry point at %lx\n",
  91. image, *entry );
  92. } else if ( ( e_offset = ( ehdr->e_entry - phdr->p_vaddr ) )
  93. < phdr->p_filesz ) {
  94. if ( ! *entry ) {
  95. *entry = ( dest + e_offset );
  96. DBGC ( image, "ELF %p found virtual entry point at %lx"
  97. " (virt %lx)\n", image, *entry,
  98. ( ( unsigned long ) ehdr->e_entry ) );
  99. }
  100. }
  101. return 0;
  102. }
  103. /**
  104. * Load ELF image into memory
  105. *
  106. * @v image ELF file
  107. * @ret entry Entry point
  108. * @ret rc Return status code
  109. */
  110. int elf_load ( struct image *image, physaddr_t *entry ) {
  111. static const uint8_t e_ident[] = {
  112. [EI_MAG0] = ELFMAG0,
  113. [EI_MAG1] = ELFMAG1,
  114. [EI_MAG2] = ELFMAG2,
  115. [EI_MAG3] = ELFMAG3,
  116. [EI_CLASS] = ELFCLASS,
  117. };
  118. Elf_Ehdr ehdr;
  119. Elf_Phdr phdr;
  120. Elf_Off phoff;
  121. unsigned int phnum;
  122. int rc;
  123. /* Read ELF header */
  124. copy_from_user ( &ehdr, image->data, 0, sizeof ( ehdr ) );
  125. if ( memcmp ( &ehdr.e_ident[EI_MAG0], e_ident,
  126. sizeof ( e_ident ) ) != 0 ) {
  127. DBGC ( image, "ELF %p has invalid signature\n", image );
  128. return -ENOEXEC;
  129. }
  130. /* Invalidate entry point */
  131. *entry = 0;
  132. /* Read ELF program headers */
  133. for ( phoff = ehdr.e_phoff , phnum = ehdr.e_phnum ; phnum ;
  134. phoff += ehdr.e_phentsize, phnum-- ) {
  135. if ( phoff > image->len ) {
  136. DBGC ( image, "ELF %p program header %d outside "
  137. "image\n", image, phnum );
  138. return -ENOEXEC;
  139. }
  140. copy_from_user ( &phdr, image->data, phoff, sizeof ( phdr ) );
  141. if ( ( rc = elf_load_segment ( image, &phdr, &ehdr,
  142. entry ) ) != 0 ) {
  143. return rc;
  144. }
  145. }
  146. /* Check for a valid execution address */
  147. if ( ! *entry ) {
  148. DBGC ( image, "ELF %p entry point %lx outside image\n",
  149. image, ( ( unsigned long ) ehdr.e_entry ) );
  150. return -ENOEXEC;
  151. }
  152. return 0;
  153. }