summaryrefslogtreecommitdiff
path: root/plugins/readdex/reader.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/readdex/reader.c')
-rw-r--r--plugins/readdex/reader.c85
1 files changed, 85 insertions, 0 deletions
diff --git a/plugins/readdex/reader.c b/plugins/readdex/reader.c
new file mode 100644
index 0000000..8df489e
--- /dev/null
+++ b/plugins/readdex/reader.c
@@ -0,0 +1,85 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * reader.c - interprétation des informations secondaires contenues dans un fichier DEX
+ *
+ * Copyright (C) 2016 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * OpenIDA 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.
+ *
+ * OpenIDA 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "reader.h"
+
+
+#include <plugins/plugin-def.h>
+
+
+#include "class.h"
+#include "header.h"
+#include "ids.h"
+
+
+
+DEFINE_CHRYSALIDE_ACTIVE_PLUGIN("readdex", "Displays information about DEX files", "0.1.0",
+ PGA_FORMAT_LOADER_LAST);
+
+
+/******************************************************************************
+* *
+* Paramètres : plugin = greffon à manipuler. *
+* action = type d'action attendue. *
+* format = description de l'exécutable à compléter. *
+* *
+* Description : Etablit des symboles complémentaires dans un format DEX. *
+* *
+* Retour : Bilan de l'opération. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *plugin, PluginAction action, GBinFormat *format)
+{
+ bool result; /* Bilan à retourner */
+ GDexFormat *dex_fmt; /* Version DEX */
+
+ if (!G_IS_DEX_FORMAT(format))
+ {
+ result = true;
+ goto hbf_exit;
+ }
+
+ dex_fmt = G_DEX_FORMAT(format);
+
+ result = annotate_dex_header(dex_fmt);
+
+ result &= annotate_dex_string_ids(dex_fmt);
+
+ result &= annotate_dex_type_ids(dex_fmt);
+
+ result &= annotate_dex_proto_ids(dex_fmt);
+
+ result &= annotate_dex_field_ids(dex_fmt);
+
+ result &= annotate_dex_method_ids(dex_fmt);
+
+ result &= annotate_dex_class_defs(dex_fmt);
+
+ hbf_exit:
+
+ return result;
+
+}