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

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