diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/arm/v7/processor.c | 28 | ||||
-rw-r--r-- | plugins/dalvik/v35/processor.c | 29 | ||||
-rw-r--r-- | plugins/pychrysalide/arch/processor.c | 66 |
3 files changed, 121 insertions, 2 deletions
diff --git a/plugins/arm/v7/processor.c b/plugins/arm/v7/processor.c index 61de7b5..078cc2d 100644 --- a/plugins/arm/v7/processor.c +++ b/plugins/arm/v7/processor.c @@ -63,6 +63,9 @@ static void g_armv7_processor_dispose(GArmV7Processor *); /* Procède à la libération totale de la mémoire. */ static void g_armv7_processor_finalize(GArmV7Processor *); +/* Fournit la désignation interne du processeur d'architecture. */ +static char *g_armv7_processor_get_key(const GArmV7Processor *); + /* Fournit un contexte pour l'exécution du processeur ARM. */ static GArmV7Context *g_armv7_processor_get_context(const GArmV7Processor *); @@ -99,7 +102,6 @@ static void g_armv7_processor_class_init(GArmV7ProcessorClass *klass) proc = G_ARCH_PROCESSOR_CLASS(klass); - proc->key = "armv7"; proc->desc = "ARM v7"; proc->endianness = SRE_LITTLE; @@ -107,6 +109,7 @@ static void g_armv7_processor_class_init(GArmV7ProcessorClass *klass) proc->inssize = MDS_32_BITS; proc->virt_space = true; + proc->get_key = (get_processor_key_fc)g_armv7_processor_get_key; proc->get_ctx = (get_processor_context_fc)g_armv7_processor_get_context; proc->disassemble = (disass_instr_fc)g_armv7_processor_disassemble; @@ -195,6 +198,29 @@ GArmV7Processor *g_armv7_processor_new(void) /****************************************************************************** * * +* Paramètres : proc = processeur d'architecture à consulter. * +* * +* Description : Fournit la désignation interne du processeur d'architecture. * +* * +* Retour : Simple chaîne de caractères. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static char *g_armv7_processor_get_key(const GArmV7Processor *proc) +{ + char *result; /* Désignation à renvoyer */ + + result = strdup("armv7"); + + return result; + +} + + +/****************************************************************************** +* * * Paramètres : proc = architecture, spectatrice ici. * * * * Description : Fournit un contexte pour l'exécution du processeur Arm. * diff --git a/plugins/dalvik/v35/processor.c b/plugins/dalvik/v35/processor.c index ad8cb8a..0865ee7 100644 --- a/plugins/dalvik/v35/processor.c +++ b/plugins/dalvik/v35/processor.c @@ -64,6 +64,9 @@ static void g_dalvik35_processor_dispose(GDalvik35Processor *); /* Procède à la libération totale de la mémoire. */ static void g_dalvik35_processor_finalize(GDalvik35Processor *); +/* Fournit la désignation interne du processeur d'architecture. */ +static char *g_dalvik35_processor_get_key(const GDalvik35Processor *); + /* Décode une instruction dans un flux de données. */ static GArchInstruction *g_dalvik35_processor_disassemble(const GArchProcessor *, GDalvikContext *, const GBinContent *, vmpa2t *, GExeFormat *); @@ -97,9 +100,10 @@ static void g_dalvik35_processor_class_init(GDalvik35ProcessorClass *klass) proc = G_ARCH_PROCESSOR_CLASS(klass); - proc->key = "dalvik35"; proc->desc = "Dalvik Virtual Machine v35"; + proc->get_key = (get_processor_key_fc)g_dalvik35_processor_get_key; + proc->disassemble = (disass_instr_fc)g_dalvik35_processor_disassemble; } @@ -186,6 +190,29 @@ GArchProcessor *g_dalvik35_processor_new(void) /****************************************************************************** * * +* Paramètres : proc = processeur d'architecture à consulter. * +* * +* Description : Fournit la désignation interne du processeur d'architecture. * +* * +* Retour : Simple chaîne de caractères. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static char *g_dalvik35_processor_get_key(const GDalvik35Processor *proc) +{ + char *result; /* Désignation à renvoyer */ + + result = strdup("dalvik35"); + + return result; + +} + + +/****************************************************************************** +* * * Paramètres : proc = architecture visée par la procédure. * * ctx = contexte lié à l'exécution du processeur. * * content = flux de données à analyser. * diff --git a/plugins/pychrysalide/arch/processor.c b/plugins/pychrysalide/arch/processor.c index 379df02..f04929e 100644 --- a/plugins/pychrysalide/arch/processor.c +++ b/plugins/pychrysalide/arch/processor.c @@ -60,6 +60,9 @@ static void py_arch_processor_init_ginstance(GArchProcessor *, GArchProcessor *) /* Initialise une instance sur la base du dérivé de GObject. */ static int py_arch_processor_init(PyObject *, PyObject *, PyObject *); +/* Fournit la désignation interne du processeur d'architecture. */ +static char *py_arch_processor_get_key_wrapper(const GArchProcessor *); + /* Fournit un contexte propre au processeur d'une architecture. */ static GProcContext *py_arch_processor_get_context_wrapper(const GArchProcessor *); @@ -225,6 +228,7 @@ static void py_arch_processor_init_gclass(GArchProcessorClass *class, gpointer u */ } + class->get_key = py_arch_processor_get_key_wrapper; class->get_ctx = py_arch_processor_get_context_wrapper; class->disassemble = py_arch_processor_disassemble_wrapper; @@ -313,6 +317,68 @@ static int py_arch_processor_init(PyObject *self, PyObject *args, PyObject *kwds /****************************************************************************** * * +* Paramètres : proc = processeur d'architecture à consulter. * +* * +* Description : Fournit la désignation interne du processeur d'architecture. * +* * +* Retour : Simple chaîne de caractères. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static char *py_arch_processor_get_key_wrapper(const GArchProcessor *proc) +{ + char *result; /* Désignation à renvoyer */ + PyGILState_STATE gstate; /* Sauvegarde d'environnement */ + PyObject *pyobj; /* Objet Python concerné */ + PyObject *pykey; /* Clef en objet Python */ + int ret; /* Bilan d'une conversion */ + GArchProcessorClass *class; /* Classe de l'objet courant */ + GArchProcessorClass *parent; /* Classe parente */ + + result = NULL; + + gstate = PyGILState_Ensure(); + + pyobj = pygobject_new(G_OBJECT(proc)); + + if (has_python_method(pyobj, "_get_key")) + { + pykey = run_python_method(pyobj, "_get_key", NULL); + + if (pykey != NULL) + { + ret = PyUnicode_Check(pykey); + + if (ret) + result = strdup(PyUnicode_AsUTF8(pykey)); + + Py_DECREF(pykey); + + } + + } + + else + { + class = G_ARCH_PROCESSOR_GET_CLASS(proc); + parent = g_type_class_peek_parent(class); + + if (parent->get_key != NULL) + result = parent->get_key(proc); + + } + + PyGILState_Release(gstate); + + return result; + +} + + +/****************************************************************************** +* * * Paramètres : proc = architecture visée par la procédure. * * * * Description : Fournit un contexte propre au processeur d'une architecture. * |