diff options
Diffstat (limited to 'src/format/elf')
-rw-r--r-- | src/format/elf/Makefile.am | 2 | ||||
-rw-r--r-- | src/format/elf/elf.c | 33 | ||||
-rw-r--r-- | src/format/elf/section.c | 40 | ||||
-rw-r--r-- | src/format/elf/section.h | 3 |
4 files changed, 77 insertions, 1 deletions
diff --git a/src/format/elf/Makefile.am b/src/format/elf/Makefile.am index 1e18356..f524bdf 100644 --- a/src/format/elf/Makefile.am +++ b/src/format/elf/Makefile.am @@ -15,7 +15,7 @@ libformatelf_la_SOURCES = \ libformatelf_la_LDFLAGS = -INCLUDES = $(LIBGTK_CFLAGS) +INCLUDES = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) AM_CPPFLAGS = diff --git a/src/format/elf/elf.c b/src/format/elf/elf.c index f32bce7..878bf51 100644 --- a/src/format/elf/elf.c +++ b/src/format/elf/elf.c @@ -62,6 +62,9 @@ static vmpa_t g_elf_format_get_entry_point(const GElfFormat *); /* Fournit les références aux zones binaires à analyser. */ static GBinPart **g_elf_format_get_parts(const GElfFormat *, size_t *); +/* Fournit l'adresse virtuelle correspondant à une position. */ +static bool g_elf_format_translate_offset_into_address(const GElfFormat *, off_t, vmpa_t *); + /****************************************************************************** @@ -136,6 +139,8 @@ static void g_elf_format_init(GElfFormat *format) exe_format->get_entry_point = (get_entry_point_fc)g_elf_format_get_entry_point; exe_format->get_parts = (get_parts_fc)g_elf_format_get_parts; + exe_format->translate = (translate_off_fc)g_elf_format_translate_offset_into_address; + } @@ -486,3 +491,31 @@ static GBinPart **g_elf_format_get_parts(const GElfFormat *format, size_t *count return result; } + + +/****************************************************************************** +* * +* Paramètres : format = description de l'exécutable à consulter. * +* pos = position dans le flux binaire à retrouver. * +* addr = adresse virtuelle correspondante. [OUT] * +* * +* Description : Fournit l'adresse virtuelle correspondant à une position. * +* * +* Retour : Bilan de l'opération. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static bool g_elf_format_translate_offset_into_address(const GElfFormat *format, off_t pos, vmpa_t *addr) +{ + bool result; /* Bilan à retourner */ + + result = translate_offset_into_address_using_elf_sections(format, pos, addr); + + if (!result) + /* TODO : prgm... */; + + return result; + +} diff --git a/src/format/elf/section.c b/src/format/elf/section.c index f837dbf..b8d6a50 100644 --- a/src/format/elf/section.c +++ b/src/format/elf/section.c @@ -275,3 +275,43 @@ const char *extract_name_from_elf_string_section(const GElfFormat *format, const return result; } + + +/****************************************************************************** +* * +* Paramètres : format = description de l'exécutable à consulter. * +* pos = position dans le flux binaire à retrouver. * +* addr = adresse virtuelle correspondante. [OUT] * +* * +* Description : Fournit l'adresse virtuelle correspondant à une position. * +* * +* Retour : Bilan de l'opération. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool translate_offset_into_address_using_elf_sections(const GElfFormat *format, off_t pos, vmpa_t *addr) +{ + bool result; /* Bilan à retourner */ + uint16_t i; /* Boucle de parcours */ + elf_shdr section; /* Section à analyser */ + + result = false; + + for (i = 0; i < format->header.e_shnum && !result; i++) + { + find_elf_section_by_index(format, i, §ion); + + if (ELF_SHDR(format, section, sh_offset) <= pos + && pos < (ELF_SHDR(format, section, sh_offset) + ELF_SHDR(format, section, sh_size))) + { + *addr = ELF_SHDR(format, section, sh_addr) + pos - ELF_SHDR(format, section, sh_offset); + result = true; + } + + } + + return result; + +} diff --git a/src/format/elf/section.h b/src/format/elf/section.h index bc952a4..ca91097 100644 --- a/src/format/elf/section.h +++ b/src/format/elf/section.h @@ -51,6 +51,9 @@ bool find_elf_section_content_by_name(const GElfFormat *, const char *, off_t *, /* Identifie une chaîne de caractères dans une section adéquate. */ const char *extract_name_from_elf_string_section(const GElfFormat *, const elf_shdr *, off_t); +/* Fournit l'adresse virtuelle correspondant à une position. */ +bool translate_offset_into_address_using_elf_sections(const GElfFormat *, off_t, vmpa_t *); + #endif /* _FORMAT_ELF_SECTION_H */ |