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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. /**
  19. * @file
  20. *
  21. * ELF image format
  22. *
  23. * A "pure" ELF image is not a bootable image. There are various
  24. * bootable formats based upon ELF (e.g. Multiboot), which share
  25. * common ELF-related functionality.
  26. */
  27. #include <errno.h>
  28. #include <elf.h>
  29. #include <gpxe/uaccess.h>
  30. #include <gpxe/segment.h>
  31. #include <gpxe/image.h>
  32. #include <gpxe/elf.h>
  33. typedef Elf32_Ehdr Elf_Ehdr;
  34. typedef Elf32_Phdr Elf_Phdr;
  35. typedef Elf32_Off Elf_Off;
  36. /**
  37. * Load ELF segment into memory
  38. *
  39. * @v image ELF file
  40. * @v phdr ELF program header
  41. * @v ehdr ELF executable header
  42. * @ret rc Return status code
  43. */
  44. static int elf_load_segment ( struct image *image, Elf_Phdr *phdr,
  45. Elf_Ehdr *ehdr ) {
  46. physaddr_t dest;
  47. userptr_t buffer;
  48. unsigned long e_offset;
  49. int rc;
  50. /* Do nothing for non-PT_LOAD segments */
  51. if ( phdr->p_type != PT_LOAD )
  52. return 0;
  53. /* Check segment lies within image */
  54. if ( ( phdr->p_offset + phdr->p_filesz ) > image->len ) {
  55. DBGC ( image, "ELF %p segment outside image\n", image );
  56. return -ENOEXEC;
  57. }
  58. /* Find start address: use physical address for preference,
  59. * fall back to virtual address if no physical address
  60. * supplied.
  61. */
  62. dest = phdr->p_paddr;
  63. if ( ! dest )
  64. dest = phdr->p_vaddr;
  65. if ( ! dest ) {
  66. DBGC ( image, "ELF %p segment loads to physical address 0\n",
  67. image );
  68. return -ENOEXEC;
  69. }
  70. buffer = phys_to_user ( dest );
  71. DBGC ( image, "ELF %p loading segment [%x,%x) to [%x,%x,%x)\n", image,
  72. phdr->p_offset, ( phdr->p_offset + phdr->p_filesz ),
  73. phdr->p_paddr, ( phdr->p_paddr + phdr->p_filesz ),
  74. ( phdr->p_paddr + phdr->p_memsz ) );
  75. /* Verify and prepare segment */
  76. if ( ( rc = prep_segment ( buffer, phdr->p_filesz,
  77. phdr->p_memsz ) ) != 0 ) {
  78. DBGC ( image, "ELF %p could not prepare segment: %s\n",
  79. image, strerror ( rc ) );
  80. return rc;
  81. }
  82. /* Copy image to segment */
  83. memcpy_user ( buffer, 0, image->data, phdr->p_offset, phdr->p_filesz );
  84. /* Set execution address, if it lies within this segment */
  85. if ( ( e_offset = ( ehdr->e_entry - dest ) ) < phdr->p_filesz ) {
  86. image->priv.phys = ehdr->e_entry;
  87. DBGC ( image, "ELF %p found physical entry point at %lx\n",
  88. image, image->priv.phys );
  89. } else if ( ( e_offset = ( ehdr->e_entry - phdr->p_vaddr ) )
  90. < phdr->p_filesz ) {
  91. if ( ! image->priv.phys ) {
  92. image->priv.phys = ( dest + e_offset );
  93. DBGC ( image, "ELF %p found virtual entry point at %lx"
  94. " (virt %lx)\n", image, image->priv.phys,
  95. ( ( unsigned long ) ehdr->e_entry ) );
  96. }
  97. }
  98. return 0;
  99. }
  100. /**
  101. * Load ELF image into memory
  102. *
  103. * @v image ELF file
  104. * @ret rc Return status code
  105. */
  106. int elf_load ( struct image *image ) {
  107. Elf_Ehdr ehdr;
  108. Elf_Phdr phdr;
  109. Elf_Off phoff;
  110. unsigned int phnum;
  111. int rc;
  112. /* Image type must already have been set by caller */
  113. assert ( image->type != NULL );
  114. /* Read ELF header */
  115. copy_from_user ( &ehdr, image->data, 0, sizeof ( ehdr ) );
  116. if ( memcmp ( &ehdr.e_ident[EI_MAG0], ELFMAG, SELFMAG ) != 0 ) {
  117. DBGC ( image, "ELF %p has invalid signature\n", image );
  118. return -ENOEXEC;
  119. }
  120. /* Invalidate execution address */
  121. image->priv.phys = 0;
  122. /* Read ELF program headers */
  123. for ( phoff = ehdr.e_phoff , phnum = ehdr.e_phnum ; phnum ;
  124. phoff += ehdr.e_phentsize, phnum-- ) {
  125. if ( phoff > image->len ) {
  126. DBGC ( image, "ELF %p program header %d outside "
  127. "image\n", image, phnum );
  128. return -ENOEXEC;
  129. }
  130. copy_from_user ( &phdr, image->data, phoff, sizeof ( phdr ) );
  131. if ( ( rc = elf_load_segment ( image, &phdr, &ehdr ) ) != 0 )
  132. return rc;
  133. }
  134. /* Check for a valid execution address */
  135. if ( ! image->priv.phys ) {
  136. DBGC ( image, "ELF %p entry point %lx outside image\n",
  137. image, ( ( unsigned long ) ehdr.e_entry ) );
  138. return -ENOEXEC;
  139. }
  140. return 0;
  141. }