summaryrefslogtreecommitdiff
path: root/src/format
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-10-11 20:50:03 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-10-11 20:50:03 (GMT)
commitffc49de3b424d3daf08b5fdeefd4a3ede6defd02 (patch)
treecf1a96860e922715bcab55126f8095b7f562d2a1 /src/format
parenta5e162d47a574f334b172dfee3128a40e8d52fb3 (diff)
Improved the disassembling process using memory ranges.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@411 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format')
-rw-r--r--src/format/elf/symbols.c2
-rw-r--r--src/format/executable.c59
-rw-r--r--src/format/executable.h5
3 files changed, 64 insertions, 2 deletions
diff --git a/src/format/elf/symbols.c b/src/format/elf/symbols.c
index 84bf9b7..15c3a6b 100644
--- a/src/format/elf/symbols.c
+++ b/src/format/elf/symbols.c
@@ -1321,7 +1321,7 @@ static bool load_elf_internal_symbols(GElfFormat *format)
init_vmpa(&addr, ELF_SYM(format, sym, st_value), VMPA_NO_VIRTUAL);
- init_mrange(&range, &addr, 4/*ELF_SYM(format, sym, st_size) FIXME !!! */);
+ init_mrange(&range, &addr, ELF_SYM(format, sym, st_size));
/* Première ébauche de nom */
diff --git a/src/format/executable.c b/src/format/executable.c
index 6b39ac8..ea1b398 100644
--- a/src/format/executable.c
+++ b/src/format/executable.c
@@ -28,6 +28,9 @@
#include "format.h"
+#include <malloc.h>
+
+
/* Initialise la classe des formats d'exécutables génériques. */
static void g_executable_format_class_init(GExeFormatClass *);
@@ -162,6 +165,62 @@ GBinPortion *g_exe_format_get_portions(GExeFormat *format)
* Paramètres : format = informations chargées à consulter. *
* count = quantité de zones listées. [OUT] *
* *
+* Description : Fournit les espaces mémoires des portions exécutables. *
+* *
+* Retour : Liste de zones binaires exécutables à libérer après usage. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+mrange_t *g_exe_format_get_x_ranges(GExeFormat *format, size_t *count)
+{
+ mrange_t *result; /* Liste à retourner */
+
+ typedef struct _x_ranges
+ {
+ mrange_t *list;
+ size_t length;
+
+ } x_ranges;
+
+ x_ranges tmp; /* Sauvegarde de la liste */
+
+ bool visit_for_x(GBinPortion *portion, x_ranges *ranges)
+ {
+ const mrange_t *range;
+
+ if (g_binary_portion_get_rights(portion) & PAC_EXEC)
+ {
+ range = g_binary_portion_get_range(portion);
+
+ ranges->list = (mrange_t *)realloc(ranges->list, ++ranges->length * sizeof(mrange_t));
+ copy_mrange(&ranges->list[ranges->length - 1], range);
+
+ }
+
+ return true;
+
+ }
+
+ tmp.list = NULL;
+ tmp.length = 0;
+
+ g_binary_portion_visit(g_exe_format_get_portions(format), (visit_portion_fc)visit_for_x, &tmp);
+
+ result = tmp.list;
+ *count = tmp.length;
+
+ return result;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : format = informations chargées à consulter. *
+* count = quantité de zones listées. [OUT] *
+* *
* Description : Fournit les références aux zones binaires à analyser. *
* *
* Retour : Zones binaires à analyser. *
diff --git a/src/format/executable.h b/src/format/executable.h
index b43a9f5..10bff42 100644
--- a/src/format/executable.h
+++ b/src/format/executable.h
@@ -78,8 +78,11 @@ vmpa_t g_exe_format_get_entry_point(const GExeFormat *);
/* Décrit les différentes portions qui composent le binaire. */
GBinPortion *g_exe_format_get_portions(GExeFormat *);
+/* Fournit les espaces mémoires des portions exécutables. */
+mrange_t *g_exe_format_get_x_ranges(GExeFormat *format, size_t *count);
+
/* Fournit les références aux zones binaires à analyser. */
-GBinPart **g_exe_format_get_parts(const GExeFormat *, size_t *);
+GBinPart **g_exe_format_get_parts(const GExeFormat *, size_t *) __attribute__ ((deprecated));
/* Fournit la position correspondant à une adresse virtuelle. */
bool g_exe_format_translate_address_into_offset(const GExeFormat *, vmpa_t, off_t *);