diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-05-07 14:24:16 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-05-07 14:24:16 (GMT) |
commit | c136e2c4c1ad02ea2e363fbe71ce54c6255793e2 (patch) | |
tree | ba19cc948ac23a3930d9943e94f8e37ec86991c1 /plugins/dex/python | |
parent | b38035259b6e09c77d87950fe409fb72d09887d3 (diff) |
Extended the Python bindings for the Dex format.
Diffstat (limited to 'plugins/dex/python')
-rw-r--r-- | plugins/dex/python/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/dex/python/class.c | 449 | ||||
-rw-r--r-- | plugins/dex/python/constants.c | 104 | ||||
-rw-r--r-- | plugins/dex/python/constants.h | 39 | ||||
-rw-r--r-- | plugins/dex/python/field.c | 186 | ||||
-rw-r--r-- | plugins/dex/python/field.h | 42 | ||||
-rw-r--r-- | plugins/dex/python/format.c | 354 | ||||
-rw-r--r-- | plugins/dex/python/method.c | 223 | ||||
-rw-r--r-- | plugins/dex/python/method.h | 42 | ||||
-rw-r--r-- | plugins/dex/python/module.c | 8 | ||||
-rw-r--r-- | plugins/dex/python/translate.c | 293 | ||||
-rw-r--r-- | plugins/dex/python/translate.h | 53 |
12 files changed, 1798 insertions, 1 deletions
diff --git a/plugins/dex/python/Makefile.am b/plugins/dex/python/Makefile.am index d23ca65..8988eb8 100644 --- a/plugins/dex/python/Makefile.am +++ b/plugins/dex/python/Makefile.am @@ -3,8 +3,12 @@ noinst_LTLIBRARIES = libdexpython.la libdexpython_la_SOURCES = \ class.h class.c \ + constants.h constants.c \ + field.h field.c \ format.h format.c \ - module.h module.c + method.h method.c \ + module.h module.c \ + translate.h translate.c libdexpython_la_LDFLAGS = diff --git a/plugins/dex/python/class.c b/plugins/dex/python/class.c index ab7754e..a68e426 100644 --- a/plugins/dex/python/class.c +++ b/plugins/dex/python/class.c @@ -31,10 +31,419 @@ #include <plugins/pychrysalide/helpers.h> +#include "format.h" +#include "translate.h" #include "../class.h" +/* Fournit la définition brute d'une classe. */ +static PyObject *py_dex_class_get_definition(PyObject *, void *); + +/* Fournit la définition brute des données d'une classe. */ +static PyObject *py_dex_class_get_data(PyObject *, void *); + +/* Indique le type Android d'une classe. */ +static PyObject *py_dex_class_get_class_type(PyObject *, void *); + +/* Indique le type Android parent d'une classe. */ +static PyObject *py_dex_class_get_superclass_type(PyObject *, void *); + +/* Indique le type Android des interfaces d'une classe. */ +static PyObject *py_dex_class_get_interface_types(PyObject *, void *); + +/* Fournit les champs chargés correspondant à une classe donnée. */ +static PyObject *py_dex_class_get_fields(PyObject *, void *); + +/* Fournit les méthodes chargées correspondant à un type donné. */ +static PyObject *py_dex_class_get_methods(PyObject *, void *); + +/* Retrouve si possible le nom du fichier source d'une classe. */ +static PyObject *py_dex_class_get_source_file(PyObject *, void *); + + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la définition brute d'une classe. * +* * +* Retour : Données brutes issues du binaire chargé. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_definition(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + const class_def_item *item; /* Elément à traiter */ + + class = G_DEX_CLASS(pygobject_get(self)); + + item = g_dex_class_get_definition(class); + + result = translate_dex_class_definition_to_python(item); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la définition brute des données d'une classe. * +* * +* Retour : Données brutes issues du binaire chargé ou None si aucune. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_data(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + const class_data_item *item; /* Elément à traiter */ + + class = G_DEX_CLASS(pygobject_get(self)); + + item = g_dex_class_get_data(class); + + if (item == NULL) + { + result = Py_None; + Py_INCREF(result); + } + + else + result = translate_dex_class_data_to_python(item); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Indique le type Android d'une classe. * +* * +* Retour : Type de classe ou None en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_class_type(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + GDataType *type; /* Type de classe */ + + class = G_DEX_CLASS(pygobject_get(self)); + + type = g_dex_class_get_class_type(class); + + if (type == NULL) + { + result = Py_None; + Py_INCREF(result); + } + + else + { + result = pygobject_new(G_OBJECT(type)); + + g_object_unref(G_OBJECT(type)); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Indique le type Android parent d'une classe. * +* * +* Retour : Type de classe ou None en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_superclass_type(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + GDataType *type; /* Type de classe */ + + class = G_DEX_CLASS(pygobject_get(self)); + + type = g_dex_class_get_superclass_type(class); + + if (type == NULL) + { + result = Py_None; + Py_INCREF(result); + } + + else + { + result = pygobject_new(G_OBJECT(type)); + + g_object_unref(G_OBJECT(type)); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Indique le type Android des interfaces d'une classe. * +* * +* Retour : Types de classe ou None en cas d'erreur ou d'absence. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_interface_types(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + size_t count; /* Nombre d'interfaces */ + GDataType **types; /* Types d'interfaces */ + size_t i; /* Boucle de parcours */ + PyObject *type; /* Type à ajouter à la liste */ + + class = G_DEX_CLASS(pygobject_get(self)); + + types = g_dex_class_get_interface_types(class, &count); + + if (count == 0) + { + result = Py_None; + Py_INCREF(result); + } + + else + { + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + if (types[i] == NULL) + { + type = Py_None; + Py_INCREF(type); + } + else + { + type = pygobject_new(G_OBJECT(types[i])); + g_object_unref(G_OBJECT(types[i])); + } + + PyTuple_SetItem(result, i, type); + + } + + } + + if (types != NULL) + free(types); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = méthodes d'instance si non nul, statiques sinon. * +* * +* Description : Fournit les champs chargés correspondant à une classe donnée.* +* * +* Retour : Champs de classe ou None en cas d'erreur ou d'absence. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_fields(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + bool instance; /* Type de champs ciblés */ + size_t count; /* Nombre d'interfaces */ + size_t i; /* Boucle de parcours */ + GDexField *field; /* Champ à convertir */ + PyObject *fld; /* Objet à ajouter à la liste */ + + class = G_DEX_CLASS(pygobject_get(self)); + + instance = (closure != NULL); + + count = g_dex_class_count_fields(class, instance); + + if (count == 0) + { + result = Py_None; + Py_INCREF(result); + } + + else + { + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + field = g_dex_class_get_field(class, instance, i); + + if (field == NULL) + { + fld = Py_None; + Py_INCREF(fld); + } + else + { + fld = pygobject_new(G_OBJECT(field)); + g_object_unref(G_OBJECT(field)); + } + + PyTuple_SetItem(result, i, fld); + + } + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = méthodes directes si non nul, virtuelles sinon. * +* * +* Description : Fournit les méthodes chargées correspondant à un type donné. * +* * +* Retour : Types de classe ou None en cas d'erreur ou d'absence. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_methods(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + bool virtual; /* Type de méthodes ciblées */ + size_t count; /* Nombre d'interfaces */ + size_t i; /* Boucle de parcours */ + GDexMethod *method; /* Méthode à convertir */ + PyObject *meth; /* Objet à ajouter à la liste */ + + class = G_DEX_CLASS(pygobject_get(self)); + + virtual = (closure == NULL); + + count = g_dex_class_count_methods(class, virtual); + + if (count == 0) + { + result = Py_None; + Py_INCREF(result); + } + + else + { + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + method = g_dex_class_get_method(class, virtual, i); + + if (method == NULL) + { + meth = Py_None; + Py_INCREF(meth); + } + else + { + meth = pygobject_new(G_OBJECT(method)); + g_object_unref(G_OBJECT(method)); + } + + PyTuple_SetItem(result, i, meth); + + } + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Retrouve si possible le nom du fichier source d'une classe. * +* * +* Retour : Nom du fichier trouvé ou None si aucun. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_class_get_source_file(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexClass *class; /* Version native */ + const char *file; /* Fichier à l'origine du code */ + + class = G_DEX_CLASS(pygobject_get(self)); + + file = g_dex_class_get_source_file(class); + + if (file == NULL) + { + result = Py_None; + Py_INCREF(result); + } + + else + result = PyUnicode_FromString(file); + + return result; + +} + + /****************************************************************************** * * * Paramètres : - * @@ -54,6 +463,46 @@ PyTypeObject *get_python_dex_class_type(void) }; static PyGetSetDef py_dex_class_getseters[] = { + { + "definition", py_dex_class_get_definition, NULL, + "Native definition of the Dex class.", NULL + }, + { + "data", py_dex_class_get_data, NULL, + "Native data of the Dex class, if any.", NULL + }, + { + "type", py_dex_class_get_class_type, NULL, + "Android type of the Dex class, None on error.", NULL + }, + { + "super", py_dex_class_get_superclass_type, NULL, + "Android type of the parent Dex class, None on error.", NULL + }, + { + "interfaces", py_dex_class_get_interface_types, NULL, + "Interface Android types of the Dex class, None if none and None on error.", NULL + }, + { + "static_fields", py_dex_class_get_fields, NULL, + "List of static fields of the Dex class, None if none and None on error.", NULL + }, + { + "instance_fields", py_dex_class_get_fields, NULL, + "List of static fields of the Dex class, None if none and None on error.", py_dex_class_get_fields + }, + { + "direct_methods", py_dex_class_get_methods, NULL, + "List of direct methods of the Dex class, None if none and None on error.", py_dex_class_get_methods + }, + { + "virtual_methods", py_dex_class_get_methods, NULL, + "List of virtual methods of the Dex class, None if none and None on error.", NULL + }, + { + "source_file", py_dex_class_get_source_file, NULL, + "Source file of the Dex class, None on error.", NULL + }, { NULL } }; diff --git a/plugins/dex/python/constants.c b/plugins/dex/python/constants.c new file mode 100644 index 0000000..ac50eb8 --- /dev/null +++ b/plugins/dex/python/constants.c @@ -0,0 +1,104 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * constants.c - équivalent Python partiel du fichier "plugins/dex/dex_def.h" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#include "constants.h" + + +#include <plugins/pychrysalide/helpers.h> + + +#include "../dex_def.h" + + + +/* Définit les constantes communes pour le format Dex. */ +static bool define_python_dex_format_common_constants(PyTypeObject *); + + +/****************************************************************************** +* * +* Paramètres : obj_type = type dont le dictionnaire est à compléter. * +* * +* Description : Définit les constantes communes pour le format Dex. * +* * +* Retour : true en cas de succès de l'opération, false sinon. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static bool define_python_dex_format_common_constants(PyTypeObject *obj_type) +{ + bool result; /* Bilan à retourner */ + + result = true; + + /* Définition des drapeaux d'accès */ + + if (result) result = PyDict_AddIntMacro(obj_type, ACC_PUBLIC); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_PRIVATE); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_PROTECTED); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_STATIC); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_FINAL); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_SYNCHRONIZED); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_VOLATILE); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_BRIDGE); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_TRANSIENT); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_VARARGS); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_NATIVE); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_INTERFACE); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_ABSTRACT); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_STRICT); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_SYNTHETIC); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_ANNOTATION); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_ENUM); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_CONSTRUCTOR); + if (result) result = PyDict_AddIntMacro(obj_type, ACC_DECLARED_SYNCHRONIZED); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : obj_type = type dont le dictionnaire est à compléter. * +* * +* Description : Définit les constantes pour le format Dex. * +* * +* Retour : true en cas de succès de l'opération, false sinon. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool define_python_dex_format_constants(PyTypeObject *obj_type) +{ + bool result; /* Bilan à retourner */ + + result = define_python_dex_format_common_constants(obj_type); + + return result; + +} diff --git a/plugins/dex/python/constants.h b/plugins/dex/python/constants.h new file mode 100644 index 0000000..802bf2f --- /dev/null +++ b/plugins/dex/python/constants.h @@ -0,0 +1,39 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * constants.h - prototypes pour l'équivalent Python partiel du fichier "plugins/dex/dex_def.h" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#ifndef _PLUGINS_DEX_PYTHON_CONSTANTS_H +#define _PLUGINS_DEX_PYTHON_CONSTANTS_H + + +#include <Python.h> +#include <stdbool.h> + + + +/* Définit les constantes pour le format Dex. */ +bool define_python_dex_format_constants(PyTypeObject *); + + + +#endif /* _PLUGINS_DEX_PYTHON_CONSTANTS_H */ diff --git a/plugins/dex/python/field.c b/plugins/dex/python/field.c new file mode 100644 index 0000000..69faccc --- /dev/null +++ b/plugins/dex/python/field.c @@ -0,0 +1,186 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * field.c - équivalent Python du fichier "plugins/dex/field.c" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#include "field.h" + + +#include <pygobject.h> + + +#include <plugins/pychrysalide/helpers.h> + + +#include "translate.h" +#include "../field.h" + + + +/* Fournit les indications Dex concernant le champ de classe. */ +static PyObject *py_dex_field_get_encoded(PyObject *, void *); + +/* Fournit la variable Chrysalide correspondant au champ. */ +static PyObject *py_dex_field_get_variable(PyObject *, void *); + + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit les indications Dex concernant le champ de classe. * +* * +* Retour : Données brutes du binaire. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_field_get_encoded(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexField *field; /* Version native */ + const encoded_field *info; /* Elément à traiter */ + + field = G_DEX_FIELD(pygobject_get(self)); + + info = g_dex_field_get_dex_info(field); + + result = translate_dex_field_info_to_python(info); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la variable Chrysalide correspondant au champ. * +* * +* Retour : Instance de routine mise en place. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_field_get_variable(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexField *field; /* Version native */ + GBinVariable *variable; /* Variable correspondante */ + + field = G_DEX_FIELD(pygobject_get(self)); + + variable = g_dex_field_get_variable(field); + + result = pygobject_new(G_OBJECT(variable)); + + g_object_unref(G_OBJECT(variable)); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : - * +* * +* Description : Fournit un accès à une définition de type à diffuser. * +* * +* Retour : Définition d'objet pour Python. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyTypeObject *get_python_dex_field_type(void) +{ + static PyMethodDef py_dex_field_methods[] = { + { NULL } + }; + + static PyGetSetDef py_dex_field_getseters[] = { + { + "encoded", py_dex_field_get_encoded, NULL, + "Encoded information about the Dex field.", NULL + }, + { + "variable", py_dex_field_get_variable, NULL, + "Chrysalide variable for the Dex field.", NULL + }, + { NULL } + }; + + static PyTypeObject py_dex_field_type = { + + PyVarObject_HEAD_INIT(NULL, 0) + + .tp_name = "pychrysalide.format.dex.DexField", + .tp_basicsize = sizeof(PyGObject), + + .tp_flags = Py_TPFLAGS_DEFAULT, + + .tp_doc = "PyChrysalide Dex class field.", + + .tp_methods = py_dex_field_methods, + .tp_getset = py_dex_field_getseters + + }; + + return &py_dex_field_type; + +} + + +/****************************************************************************** +* * +* Paramètres : module = module dont la définition est à compléter. * +* * +* Description : Prend en charge l'objet 'pychrysalide.format.dex.DexField'. * +* * +* Retour : Bilan de l'opération. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool register_python_dex_field(PyObject *module) +{ + PyTypeObject *py_dex_field_type; /* Type Python 'DexField' */ + PyObject *dict; /* Dictionnaire du module */ + + py_dex_field_type = get_python_dex_field_type(); + + dict = PyModule_GetDict(module); + + if (!register_class_for_pygobject(dict, G_TYPE_DEX_FIELD, py_dex_field_type, &PyGObject_Type)) + return false; + + return true; + +} diff --git a/plugins/dex/python/field.h b/plugins/dex/python/field.h new file mode 100644 index 0000000..fab0dce --- /dev/null +++ b/plugins/dex/python/field.h @@ -0,0 +1,42 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * field.h - prototypes pour l'équivalent Python du fichier "plugins/dex/field.h" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#ifndef _PLUGINS_DEX_PYTHON_FIELD_H +#define _PLUGINS_DEX_PYTHON_FIELD_H + + +#include <Python.h> +#include <stdbool.h> + + + +/* Fournit un accès à une définition de type à diffuser. */ +PyTypeObject *get_python_dex_field_type(void); + +/* Prend en charge l'objet 'pychrysalide.format.dex.DexField'. */ +bool register_python_dex_field(PyObject *module); + + + +#endif /* _PLUGINS_DEX_PYTHON_FIELD_H */ diff --git a/plugins/dex/python/format.c b/plugins/dex/python/format.c index a421549..81db02f 100644 --- a/plugins/dex/python/format.c +++ b/plugins/dex/python/format.c @@ -36,8 +36,10 @@ #include <plugins/pychrysalide/format/executable.h> +#include "constants.h" #include "../class.h" #include "../format.h" +#include "../pool.h" @@ -50,6 +52,24 @@ static PyObject *py_dex_format_count_classes(PyObject *, PyObject *); /* Fournit une classe du format chargée en mémoire. */ static PyObject *py_dex_format_get_class(PyObject *, PyObject *); +/* Fournit la liste de toutes les chaînes de la table globale. */ +static PyObject *py_dex_format_get_pool_strings(PyObject *, void *); + +/* Fournit la liste de tous les types de la table globale. */ +static PyObject *py_dex_format_get_pool_types(PyObject *, void *); + +/* Fournit la liste de tous les prototypes de la table globale. */ +static PyObject *py_dex_format_get_pool_prototypes(PyObject *, void *); + +/* Fournit la liste de tous les champs de la table globale. */ +static PyObject *py_dex_format_get_pool_fields(PyObject *, void *); + +/* Fournit la liste de toutes les méthodes de la table globale. */ +static PyObject *py_dex_format_get_pool_methods(PyObject *, void *); + +/* Fournit la liste de toutes les classes du format. */ +static PyObject *py_dex_format_get_classes(PyObject *, void *); + /****************************************************************************** @@ -152,6 +172,313 @@ static PyObject *py_dex_format_get_class(PyObject *self, PyObject *args) result = pygobject_new(G_OBJECT(class)); + g_object_unref(G_OBJECT(class)); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de toutes les chaînes de la table globale. * +* * +* Retour : Liste vide ou remplie de chaînes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_pool_strings(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + uint32_t count; /* Nombre d'éléments à traiter */ + uint32_t i; /* Boucle de parcours */ + const char *string; /* Chaîne à intégrer */ + PyObject *str; /* Chaîne au format Python */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = count_strings_in_dex_pool(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + string = get_string_from_dex_pool(format, i, NULL); + + if (string == NULL) + { + str = Py_None; + Py_INCREF(str); + } + + else + str = PyUnicode_FromString(string); + + PyTuple_SetItem(result, i, str); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de tous les types de la table globale. * +* * +* Retour : Liste vide ou remplie de types. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_pool_types(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + uint32_t count; /* Nombre d'éléments à traiter */ + uint32_t i; /* Boucle de parcours */ + GDataType *type; /* Type à intégrer */ + PyObject *tp; /* Type au format Python */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = count_types_in_dex_pool(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + type = get_type_from_dex_pool(format, i); + + if (type == NULL) + { + tp = Py_None; + Py_INCREF(tp); + } + + else + { + tp = pygobject_new(G_OBJECT(type)); + g_object_unref(type); + } + + PyTuple_SetItem(result, i, tp); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de tous les champs de la table globale. * +* * +* Retour : Liste vide ou remplie de méthodes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_pool_fields(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + uint32_t count; /* Nombre d'éléments à traiter */ + uint32_t i; /* Boucle de parcours */ + GBinVariable *variable; /* Champ à intégrer */ + PyObject *var; /* Champ au format Python */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = count_fields_in_dex_pool(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + variable = get_field_from_dex_pool(format, i); + + if (variable == NULL) + { + var = Py_None; + Py_INCREF(var); + } + + else + { + var = pygobject_new(G_OBJECT(variable)); + g_object_unref(variable); + } + + PyTuple_SetItem(result, i, var); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de toutes les méthodes de la table globale. * +* * +* Retour : Liste vide ou remplie de méthodes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_pool_methods(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + uint32_t count; /* Nombre d'éléments à traiter */ + uint32_t i; /* Boucle de parcours */ + GDexMethod *method; /* Méthode à intégrer */ + PyObject *meth; /* Méthode au format Python */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = count_methods_in_dex_pool(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + method = get_method_from_dex_pool(format, i); + + if (method == NULL) + { + meth = Py_None; + Py_INCREF(meth); + } + + else + { + meth = pygobject_new(G_OBJECT(method)); + g_object_unref(method); + } + + PyTuple_SetItem(result, i, meth); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de tous les prototypes de la table globale. * +* * +* Retour : Liste vide ou remplie de méthodes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_pool_prototypes(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + uint32_t count; /* Nombre d'éléments à traiter */ + uint32_t i; /* Boucle de parcours */ + GBinRoutine *routine; /* Routine à intégrer */ + PyObject *rtn; /* Routine au format Python */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = count_prototypes_in_dex_pool(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + routine = get_prototype_from_dex_pool(format, i); + + if (routine == NULL) + { + rtn = Py_None; + Py_INCREF(rtn); + } + + else + { + rtn = pygobject_new(G_OBJECT(routine)); + g_object_unref(routine); + } + + PyTuple_SetItem(result, i, rtn); + + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la liste de toutes les classes du format. * +* * +* Retour : Liste vide ou remplie de classes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_format_get_classes(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexFormat *format; /* Version native */ + size_t count; /* Nombre d'éléments à traiter */ + size_t i; /* Boucle de parcours */ + GDexClass *class; /* Classe du format à intégrer */ + + format = G_DEX_FORMAT(pygobject_get(self)); + + count = g_dex_format_count_classes(format); + + result = PyTuple_New(count); + + for (i = 0; i < count; i++) + { + class = g_dex_format_get_class(format, i); + assert(class != NULL); + + PyTuple_SetItem(result, i, pygobject_new(G_OBJECT(class))); + + g_object_unref(G_OBJECT(class)); + + } + return result; } @@ -186,6 +513,30 @@ PyTypeObject *get_python_dex_format_type(void) }; static PyGetSetDef py_dex_format_getseters[] = { + { + "pool_strings", py_dex_format_get_pool_strings, NULL, + "Strings inside the Dex pool.", NULL + }, + { + "pool_types", py_dex_format_get_pool_types, NULL, + "Types inside the Dex pool.", NULL + }, + { + "pool_prototypes", py_dex_format_get_pool_prototypes, NULL, + "Prototypes inside the Dex pool.", NULL + }, + { + "pool_fields", py_dex_format_get_pool_fields, NULL, + "Fields inside the Dex pool.", NULL + }, + { + "pool_methods", py_dex_format_get_pool_methods, NULL, + "Methods inside the Dex pool.", NULL + }, + { + "classes", py_dex_format_get_classes, NULL, + "Classes inside the Dex format.", NULL + }, { NULL } }; @@ -236,6 +587,9 @@ bool register_python_dex_format(PyObject *module) py_dex_format_type, get_python_executable_format_type())) return false; + if (!define_python_dex_format_constants(py_dex_format_type)) + return false; + return true; } diff --git a/plugins/dex/python/method.c b/plugins/dex/python/method.c new file mode 100644 index 0000000..4f35e1a --- /dev/null +++ b/plugins/dex/python/method.c @@ -0,0 +1,223 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * method.c - équivalent Python du fichier "plugins/dex/method.c" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#include "method.h" + + +#include <pygobject.h> + + +#include <plugins/pychrysalide/helpers.h> + + +#include "translate.h" +#include "../method.h" + + + +/* Fournit les indications Dex concernant la méthode. */ +static PyObject *py_dex_method_get_encoded(PyObject *, void *); + +/* Fournit les indications Dex relatives au corps de la méthode. */ +static PyObject *py_dex_method_get_code_item(PyObject *, void *); + +/* Fournit la routine Chrysalide correspondant à la méthode. */ +static PyObject *py_dex_method_get_routine(PyObject *, void *); + + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit les indications Dex concernant la méthode. * +* * +* Retour : Données brutes issues du binaire chargé. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_method_get_encoded(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexMethod *method; /* Version native */ + const encoded_method *info; /* Elément à traiter */ + + method = G_DEX_METHOD(pygobject_get(self)); + + info = g_dex_method_get_dex_info(method); + + result = translate_dex_method_info_to_python(info); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit les indications Dex relatives au corps de la méthode.* +* * +* Retour : Données brutes du binaire, ou None si aucunes. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_method_get_code_item(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexMethod *method; /* Version native */ + const code_item *body; /* Elément à traiter */ + + method = G_DEX_METHOD(pygobject_get(self)); + + body = g_dex_method_get_dex_body(method); + + result = translate_dex_method_body_to_python(body); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : self = objet Python concerné par l'appel. * +* closure = non utilisé ici. * +* * +* Description : Fournit la routine Chrysalide correspondant à la méthode. * +* * +* Retour : Instance de routine mise en place. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static PyObject *py_dex_method_get_routine(PyObject *self, void *closure) +{ + PyObject *result; /* Valeur à retourner */ + GDexMethod *method; /* Version native */ + GBinRoutine *routine; /* Routine correspondante */ + + method = G_DEX_METHOD(pygobject_get(self)); + + routine = g_dex_method_get_routine(method); + + result = pygobject_new(G_OBJECT(routine)); + + g_object_unref(G_OBJECT(routine)); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : - * +* * +* Description : Fournit un accès à une définition de type à diffuser. * +* * +* Retour : Définition d'objet pour Python. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyTypeObject *get_python_dex_method_type(void) +{ + static PyMethodDef py_dex_method_methods[] = { + { NULL } + }; + + static PyGetSetDef py_dex_method_getseters[] = { + { + "encoded", py_dex_method_get_encoded, NULL, + "Encoded information about the Dex method.", NULL + }, + { + "code_item", py_dex_method_get_code_item, NULL, + "Code information about the Dex method, None if none.", NULL + }, + { + "routine", py_dex_method_get_routine, NULL, + "Chrysalide routine for the Dex method.", NULL + }, + { NULL } + }; + + static PyTypeObject py_dex_method_type = { + + PyVarObject_HEAD_INIT(NULL, 0) + + .tp_name = "pychrysalide.format.dex.DexMethod", + .tp_basicsize = sizeof(PyGObject), + + .tp_flags = Py_TPFLAGS_DEFAULT, + + .tp_doc = "PyChrysalide Dex method.", + + .tp_methods = py_dex_method_methods, + .tp_getset = py_dex_method_getseters + + }; + + return &py_dex_method_type; + +} + + +/****************************************************************************** +* * +* Paramètres : module = module dont la définition est à compléter. * +* * +* Description : Prend en charge l'objet 'pychrysalide.format.dex.DexMethod'. * +* * +* Retour : Bilan de l'opération. * +* * +* Remarques : - * +* * +******************************************************************************/ + +bool register_python_dex_method(PyObject *module) +{ + PyTypeObject *py_dex_method_type; /* Type Python 'DexMethod' */ + PyObject *dict; /* Dictionnaire du module */ + + py_dex_method_type = get_python_dex_method_type(); + + dict = PyModule_GetDict(module); + + if (!register_class_for_pygobject(dict, G_TYPE_DEX_METHOD, py_dex_method_type, &PyGObject_Type)) + return false; + + return true; + +} diff --git a/plugins/dex/python/method.h b/plugins/dex/python/method.h new file mode 100644 index 0000000..9c0c917 --- /dev/null +++ b/plugins/dex/python/method.h @@ -0,0 +1,42 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * method.h - prototypes pour l'équivalent Python du fichier "plugins/dex/method.h" + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#ifndef _PLUGINS_DEX_PYTHON_METHOD_H +#define _PLUGINS_DEX_PYTHON_METHOD_H + + +#include <Python.h> +#include <stdbool.h> + + + +/* Fournit un accès à une définition de type à diffuser. */ +PyTypeObject *get_python_dex_method_type(void); + +/* Prend en charge l'objet 'pychrysalide.format.dex.DexMethod'. */ +bool register_python_dex_method(PyObject *module); + + + +#endif /* _PLUGINS_DEX_PYTHON_METHOD_H */ diff --git a/plugins/dex/python/module.c b/plugins/dex/python/module.c index acb2370..6a84af3 100644 --- a/plugins/dex/python/module.c +++ b/plugins/dex/python/module.c @@ -32,7 +32,9 @@ #include "class.h" +#include "field.h" #include "format.h" +#include "method.h" @@ -86,8 +88,14 @@ bool add_format_dex_module_to_python_module(void) result = register_python_dex_class(module); if (result) + result = register_python_dex_field(module); + + if (result) result = register_python_dex_format(module); + if (result) + result = register_python_dex_method(module); + loading_failed: return result; diff --git a/plugins/dex/python/translate.c b/plugins/dex/python/translate.c new file mode 100644 index 0000000..eb80c43 --- /dev/null +++ b/plugins/dex/python/translate.c @@ -0,0 +1,293 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * translate.c - conversion de structures Dex en objets Python + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#include "translate.h" + + +#include <assert.h> + + +#include <plugins/pychrysalide/struct.h> + + +#include "../dex_def.h" + + + +/****************************************************************************** +* * +* Paramètres : info = ensemble d'informations Dex à décrire en Python. * +* * +* Description : Traduit des informations de champ de classe Dex en Python. * +* * +* Retour : Structure mise en place ou NULL en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyObject *translate_dex_field_info_to_python(const encoded_field *info) +{ + PyObject *result; /* Construction à retourner */ + PyTypeObject *base; /* Modèle d'objet à créer */ + PyObject *attrib; /* Attribut à constituer */ + int ret; /* Bilan d'une mise en place */ + + base = get_python_py_struct_type(); + + result = PyObject_CallFunction((PyObject *)base, NULL); + assert(result != NULL); + + /* Champs réguliers */ + +#define TRANSLATE_ENCODED_FIELD_PROP(_f) \ + do \ + { \ + attrib = PyLong_FromUnsignedLongLong(info->_f); \ + ret = PyDict_SetItemString(result, #_f, attrib); \ + if (ret != 0) goto tdcdtp_failed; \ + } \ + while (0); + + TRANSLATE_ENCODED_FIELD_PROP(field_idx_diff); + TRANSLATE_ENCODED_FIELD_PROP(access_flags); + + return result; + + tdcdtp_failed: + + Py_DECREF(result); + + return NULL; + +} + + +/****************************************************************************** +* * +* Paramètres : info = ensemble d'informations Dex à décrire en Python. * +* * +* Description : Traduit des informations de méthode Dex en Python. * +* * +* Retour : Structure mise en place ou NULL en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyObject *translate_dex_method_info_to_python(const encoded_method *info) +{ + PyObject *result; /* Construction à retourner */ + PyTypeObject *base; /* Modèle d'objet à créer */ + PyObject *attrib; /* Attribut à constituer */ + int ret; /* Bilan d'une mise en place */ + + base = get_python_py_struct_type(); + + result = PyObject_CallFunction((PyObject *)base, NULL); + assert(result != NULL); + + /* Champs réguliers */ + +#define TRANSLATE_ENCODED_METHOD_PROP(_f) \ + do \ + { \ + attrib = PyLong_FromUnsignedLongLong(info->_f); \ + ret = PyDict_SetItemString(result, #_f, attrib); \ + if (ret != 0) goto tdcdtp_failed; \ + } \ + while (0); + + TRANSLATE_ENCODED_METHOD_PROP(method_idx_diff); + TRANSLATE_ENCODED_METHOD_PROP(access_flags); + TRANSLATE_ENCODED_METHOD_PROP(code_off); + + return result; + + tdcdtp_failed: + + Py_DECREF(result); + + return NULL; + +} + + +/****************************************************************************** +* * +* Paramètres : info = ensemble d'informations Dex à décrire en Python. * +* * +* Description : Traduit des informations de corps de méthode Dex en Python. * +* * +* Retour : Structure mise en place ou NULL en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyObject *translate_dex_method_body_to_python(const code_item *body) +{ + PyObject *result; /* Construction à retourner */ + PyTypeObject *base; /* Modèle d'objet à créer */ + PyObject *attrib; /* Attribut à constituer */ + int ret; /* Bilan d'une mise en place */ + + base = get_python_py_struct_type(); + + result = PyObject_CallFunction((PyObject *)base, NULL); + assert(result != NULL); + + /* Champs réguliers */ + +#define TRANSLATE_CODE_ITEM_PROP(_f) \ + do \ + { \ + attrib = PyLong_FromUnsignedLongLong(body->_f); \ + ret = PyDict_SetItemString(result, #_f, attrib); \ + if (ret != 0) goto tdcdtp_failed; \ + } \ + while (0); + + TRANSLATE_CODE_ITEM_PROP(registers_size); + TRANSLATE_CODE_ITEM_PROP(ins_size); + TRANSLATE_CODE_ITEM_PROP(outs_size); + TRANSLATE_CODE_ITEM_PROP(tries_size); + TRANSLATE_CODE_ITEM_PROP(debug_info_off); + TRANSLATE_CODE_ITEM_PROP(insns_size); + + return result; + + tdcdtp_failed: + + Py_DECREF(result); + + return NULL; + +} + + +/****************************************************************************** +* * +* Paramètres : item = ensemble d'informations Dex à décrire en Python. * +* * +* Description : Traduit une définition de classe Dex en Python. * +* * +* Retour : Structure mise en place ou NULL en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyObject *translate_dex_class_definition_to_python(const class_def_item *item) +{ + PyObject *result; /* Construction à retourner */ + PyTypeObject *base; /* Modèle d'objet à créer */ + PyObject *attrib; /* Attribut à constituer */ + int ret; /* Bilan d'une mise en place */ + + base = get_python_py_struct_type(); + + result = PyObject_CallFunction((PyObject *)base, NULL); + assert(result != NULL); + + /* Champs réguliers */ + +#define TRANSLATE_CLASS_DEF_PROP(_f) \ + do \ + { \ + attrib = PyLong_FromUnsignedLongLong(item->_f); \ + ret = PyDict_SetItemString(result, #_f, attrib); \ + if (ret != 0) goto tdcdtp_failed; \ + } \ + while (0); + + TRANSLATE_CLASS_DEF_PROP(class_idx); + TRANSLATE_CLASS_DEF_PROP(access_flags); + TRANSLATE_CLASS_DEF_PROP(superclass_idx); + TRANSLATE_CLASS_DEF_PROP(interfaces_off); + TRANSLATE_CLASS_DEF_PROP(source_file_idx); + TRANSLATE_CLASS_DEF_PROP(annotations_off); + TRANSLATE_CLASS_DEF_PROP(class_data_off); + TRANSLATE_CLASS_DEF_PROP(static_values_off); + + return result; + + tdcdtp_failed: + + Py_DECREF(result); + + return NULL; + +} + + +/****************************************************************************** +* * +* Paramètres : item = ensemble d'informations Dex à décrire en Python. * +* * +* Description : Traduit des données de classe Dex en Python. * +* * +* Retour : Structure mise en place ou NULL en cas d'erreur. * +* * +* Remarques : - * +* * +******************************************************************************/ + +PyObject *translate_dex_class_data_to_python(const class_data_item *item) +{ + PyObject *result; /* Construction à retourner */ + PyTypeObject *base; /* Modèle d'objet à créer */ + PyObject *attrib; /* Attribut à constituer */ + int ret; /* Bilan d'une mise en place */ + + base = get_python_py_struct_type(); + + result = PyObject_CallFunction((PyObject *)base, NULL); + assert(result != NULL); + + /* Champs réguliers */ + +#define TRANSLATE_CLASS_DATA_PROP(_f) \ + do \ + { \ + attrib = PyLong_FromUnsignedLongLong(item->_f); \ + ret = PyDict_SetItemString(result, #_f, attrib); \ + if (ret != 0) goto tdcdtp_failed; \ + } \ + while (0); + + TRANSLATE_CLASS_DATA_PROP(static_fields_size); + TRANSLATE_CLASS_DATA_PROP(instance_fields_size); + TRANSLATE_CLASS_DATA_PROP(direct_methods_size); + TRANSLATE_CLASS_DATA_PROP(virtual_methods_size); + + return result; + + tdcdtp_failed: + + Py_DECREF(result); + + return NULL; + +} diff --git a/plugins/dex/python/translate.h b/plugins/dex/python/translate.h new file mode 100644 index 0000000..29a0155 --- /dev/null +++ b/plugins/dex/python/translate.h @@ -0,0 +1,53 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * translate.h - prototypes pour la conversion de structures Dex en objets Python + * + * Copyright (C) 2018 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +#ifndef _PLUGINS_DEX_PYTHON_TRANSLATE_H +#define _PLUGINS_DEX_PYTHON_TRANSLATE_H + + +#include <Python.h> + + +#include "../format.h" + + + +/* Traduit des informations de champ de classe Dex en Python. */ +PyObject *translate_dex_field_info_to_python(const encoded_field *); + +/* Traduit des informations de méthode Dex en Python. */ +PyObject *translate_dex_method_info_to_python(const encoded_method *); + +/* Traduit des informations de corps de méthode Dex en Python. */ +PyObject *translate_dex_method_body_to_python(const code_item *); + +/* Traduit une définition de classe Dex en Python. */ +PyObject *translate_dex_class_definition_to_python(const class_def_item *); + +/* Traduit des données de classe Dex en Python. */ +PyObject *translate_dex_class_data_to_python(const class_data_item *); + + + +#endif /* _PLUGINS_DEX_PYTHON_TRANSLATE_H */ |