summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-06-24 03:34:19 +0100
committernorly <ny-git@enpas.org>2013-06-24 03:59:02 +0100
commit9064e6222331bce3b8a3978e79fc287c85070cb2 (patch)
treeb5644a18878c4dcf52cfcdd2acdd09e9b74a03ee /src
parent1bf04137af5a611dd3ff281f5f6461b8cea3ee6d (diff)
Reorder PHDRs according to ELF spec
Diffstat (limited to 'src')
-rw-r--r--src/libelfu/elfops/reorderphdrs.c104
-rw-r--r--src/libelfu/modelops/toFile.c2
2 files changed, 106 insertions, 0 deletions
diff --git a/src/libelfu/elfops/reorderphdrs.c b/src/libelfu/elfops/reorderphdrs.c
new file mode 100644
index 0000000..c2c92fd
--- /dev/null
+++ b/src/libelfu/elfops/reorderphdrs.c
@@ -0,0 +1,104 @@
+#include <assert.h>
+#include <stdlib.h>
+#include <libelfu/libelfu.h>
+
+
+static int cmpPhdrType(const void *v1, const void *v2)
+{
+ const GElf_Phdr *p1 = (const GElf_Phdr*)v1;
+ const GElf_Phdr *p2 = (const GElf_Phdr*)v2;
+
+ /* These entries go first */
+ if (p1->p_type == PT_PHDR) {
+ return -1;
+ } else if (p2->p_type == PT_PHDR) {
+ return 1;
+ } else if (p1->p_type == PT_INTERP) {
+ return -1;
+ } else if (p2->p_type == PT_INTERP) {
+ return 1;
+ }
+
+ /* These entries go last */
+ if (p1->p_type == PT_GNU_RELRO) {
+ return 1;
+ } else if (p2->p_type == PT_GNU_RELRO) {
+ return -1;
+ } else if (p1->p_type == PT_GNU_STACK) {
+ return 1;
+ } else if (p2->p_type == PT_GNU_STACK) {
+ return -1;
+ } else if (p1->p_type == PT_GNU_EH_FRAME) {
+ return 1;
+ } else if (p2->p_type == PT_GNU_EH_FRAME) {
+ return -1;
+ } else if (p1->p_type == PT_NOTE) {
+ return 1;
+ } else if (p2->p_type == PT_NOTE) {
+ return -1;
+ } else if (p1->p_type == PT_DYNAMIC) {
+ return 1;
+ } else if (p2->p_type == PT_DYNAMIC) {
+ return -1;
+ }
+
+ /* Sort the rest by vaddr. */
+ if (p1->p_vaddr < p2->p_vaddr) {
+ return -1;
+ } else if (p1->p_vaddr > p2->p_vaddr) {
+ return 1;
+ }
+
+ /* Everything else is equal */
+ return 0;
+}
+
+
+
+/* The ELF specification wants PHDR and INTERP headers to come first.
+ * Typical GNU programs also contain DYNAMIC, NOTE, and GNU_* after
+ * the LOAD segments.
+ * Reorder them to comply with the spec. Otherwise the dynamic linker
+ * will calculate the base address incorrectly and crash.
+ *
+ * Both Linux and glibc's ld.so are unhelpful here:
+ * Linux calculates the PH table address as
+ * phdrs = (base + e_phoff)
+ * and passes that to ld.so.
+ * ld.so 'recovers' the base address as
+ * base = (phdrs - PT_PHDR.p_vaddr)
+ *
+ * Behold those who try to move the PHDR table away from the first
+ * page of memory, where it is stored at the address calculated by
+ * Linux. Things will crash. Badly.
+ *
+ * Unfortunately the ELF spec itself states that the PHT is in the
+ * first page of memory. Not much we can do here.
+ */
+void elfu_eReorderPhdrs(Elf *e)
+{
+ size_t i, numPhdr;
+
+ assert(e);
+
+ assert(!elf_getphdrnum(e, &numPhdr));
+
+ GElf_Phdr phdrs[numPhdr];
+
+ for (i = 0; i < numPhdr; i++) {
+ GElf_Phdr phdr;
+
+ if (gelf_getphdr(e, i, &phdr) != &phdr) {
+ ELFU_WARN("gelf_getphdr() failed for #%d: %s\n", i, elf_errmsg(-1));
+ return;
+ }
+
+ phdrs[i] = phdr;
+ }
+
+ qsort(phdrs, numPhdr, sizeof(*phdrs), cmpPhdrType);
+
+ for (i = 0; i < numPhdr; i++) {
+ assert(gelf_update_phdr(e, i, &phdrs[i]));
+ }
+}
diff --git a/src/libelfu/modelops/toFile.c b/src/libelfu/modelops/toFile.c
index b42bc08..7b9e1f4 100644
--- a/src/libelfu/modelops/toFile.c
+++ b/src/libelfu/modelops/toFile.c
@@ -110,6 +110,8 @@ void elfu_mToElf(ElfuElf *me, Elf *e)
elfu_mPhdrForall(me, modelToPhdr, &i, e);
+ elfu_eReorderPhdrs(e);
+
/* Done */
elf_flagelf(e, ELF_C_SET, ELF_F_DIRTY);