summaryrefslogtreecommitdiff
path: root/include/libelfu
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2013-01-25 15:24:36 +0000
committernorly <ny-git@enpas.org>2013-02-11 01:24:36 +0000
commitd9eb4398773cbda1dc185f4cf7b1b0e4cb9fb135 (patch)
treea2421aa140b17db64df439f894fa892833e3ac96 /include/libelfu
parent43e69328d849391abfed996214eed1dca49b3ac3 (diff)
Print ELF header/segments/sections
Diffstat (limited to 'include/libelfu')
-rw-r--r--include/libelfu/analysis.h11
-rw-r--r--include/libelfu/libelfu.h11
-rw-r--r--include/libelfu/lookup.h14
-rw-r--r--include/libelfu/types.h10
4 files changed, 46 insertions, 0 deletions
diff --git a/include/libelfu/analysis.h b/include/libelfu/analysis.h
new file mode 100644
index 0000000..80ec251
--- /dev/null
+++ b/include/libelfu/analysis.h
@@ -0,0 +1,11 @@
+#ifndef __LIBELFU_ANALYSIS_H_
+#define __LIBELFU_ANALYSIS_H_
+
+#include <libelf.h>
+#include <gelf.h>
+
+#include <libelfu/types.h>
+
+ELFU_BOOL elfu_segmentContainsSection(GElf_Phdr *phdr, Elf_Scn *scn);
+
+#endif
diff --git a/include/libelfu/libelfu.h b/include/libelfu/libelfu.h
new file mode 100644
index 0000000..1c40541
--- /dev/null
+++ b/include/libelfu/libelfu.h
@@ -0,0 +1,11 @@
+#ifndef __LIBELFU_LIBELFU_H__
+#define __LIBELFU_LIBELFU_H__
+
+
+#include <libelfu/types.h>
+
+#include <libelfu/analysis.h>
+#include <libelfu/lookup.h>
+
+
+#endif
diff --git a/include/libelfu/lookup.h b/include/libelfu/lookup.h
new file mode 100644
index 0000000..2cca5df
--- /dev/null
+++ b/include/libelfu/lookup.h
@@ -0,0 +1,14 @@
+#ifndef __LIBELFU_LOOKUP_H_
+#define __LIBELFU_LOOKUP_H_
+
+#include <libelf.h>
+#include <gelf.h>
+
+#include <libelfu/types.h>
+
+char* elfu_sectionName(Elf *e, Elf_Scn *scn);
+Elf_Scn* elfu_sectionByName(Elf *e, char *name);
+Elf_Scn* elfu_firstSectionInSegment(Elf *e, GElf_Phdr *phdr);
+Elf_Scn* elfu_lastSectionInSegment(Elf *e, GElf_Phdr *phdr);
+
+#endif
diff --git a/include/libelfu/types.h b/include/libelfu/types.h
new file mode 100644
index 0000000..6ffdd84
--- /dev/null
+++ b/include/libelfu/types.h
@@ -0,0 +1,10 @@
+#ifndef __LIBELFU_TYPES_H__
+#define __LIBELFU_TYPES_H__
+
+typedef enum {
+ ELFU_ERROR = -1,
+ ELFU_FALSE = 0,
+ ELFU_TRUE = 1
+} ELFU_BOOL;
+
+#endif