diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-08-12 23:32:21 (GMT) |
commit | 9cfe738c2e9bb49eb2872e92bc4422c548edb517 (patch) | |
tree | ee8dbe5965b9d46394395b8beee87676e098a9f1 /src/analysis/binaries | |
parent | fc49e98dc2b3e0ae08a5874ecacaef046a0f3ec1 (diff) |
Cleaned the code and handled file binaries properly.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@259 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/binaries')
-rwxr-xr-x | src/analysis/binaries/Makefile.am | 18 | ||||
-rw-r--r-- | src/analysis/binaries/file.c | 328 | ||||
-rw-r--r-- | src/analysis/binaries/file.h | 61 |
3 files changed, 407 insertions, 0 deletions
diff --git a/src/analysis/binaries/Makefile.am b/src/analysis/binaries/Makefile.am new file mode 100755 index 0000000..f065070 --- /dev/null +++ b/src/analysis/binaries/Makefile.am @@ -0,0 +1,18 @@ + +noinst_LTLIBRARIES = libanalysisbinaries.la + +libanalysisbinaries_la_SOURCES = \ + file.h file.c + +libanalysisbinaries_la_LIBADD = + +libanalysisbinaries_la_LDFLAGS = + + +INCLUDES = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) + +AM_CPPFLAGS = + +AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS) + +SUBDIRS = diff --git a/src/analysis/binaries/file.c b/src/analysis/binaries/file.c new file mode 100644 index 0000000..0be1fd7 --- /dev/null +++ b/src/analysis/binaries/file.c @@ -0,0 +1,328 @@ + +/* OpenIDA - Outil d'analyse de fichiers binaires + * file.h - prototypes pour la prise en charge des binaires sous forme de fichier + * + * Copyright (C) 2012 Cyrille Bagard + * + * This file is part of OpenIDA. + * + * 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 "file.h" + + +#include <string.h> + + +#include "../binary-int.h" +#include "../../common/extstr.h" +#include "../../gui/panels/log.h" + + + +/* Description de fichier binaire (instance) */ +struct _GFileBinary +{ + GLoadedBinary parent; /* A laisser en premier */ + + char *filename; /* Fichier chargé en mémoire */ + +}; + +/* Description de fichier binaire (classe) */ +struct _GFileBinaryClass +{ + GLoadedBinaryClass parent; /* A laisser en premier */ + +}; + + +/* Initialise la classe des descriptions de fichier binaire. */ +static void g_file_binary_class_init(GFileBinaryClass *); + +/* Initialise une description de fichier binaire. */ +static void g_file_binary_init(GFileBinary *); + +/* Procède à la libération totale de la mémoire. */ +static void g_file_binary_finalize(GFileBinary *); + +/* Ecrit une sauvegarde du binaire dans un fichier XML. */ +static bool g_file_binary_save(const GFileBinary *, xmlDocPtr, xmlXPathContextPtr, const char *); + +/* Fournit le fichier correspondant à l'élément binaire. */ +static const char *g_file_binary_get_filename(const GFileBinary *, bool); + + + +/* Indique le type défini pour une description de fichier binaire. */ +G_DEFINE_TYPE(GFileBinary, g_file_binary, G_TYPE_LOADED_BINARY); + + + +/****************************************************************************** +* * +* Paramètres : klass = classe à initialiser. * +* * +* Description : Initialise la classe des descriptions de fichier binaire. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +static void g_file_binary_class_init(GFileBinaryClass *klass) +{ + GObjectClass *object; /* Autre version de la classe */ + + object = G_OBJECT_CLASS(klass); + + object->finalize = (GObjectFinalizeFunc)g_file_binary_finalize; + +} + + +/****************************************************************************** +* * +* Paramètres : binary = instance à initialiser. * +* * +* Description : Initialise une description de fichier binaire. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +static void g_file_binary_init(GFileBinary *binary) +{ + GLoadedBinary *loaded; /* Version parente */ + + loaded = G_LOADED_BINARY(binary); + + loaded->save = (save_binary_fc)g_file_binary_save; + loaded->get_filename = (get_binary_filename_fc)g_file_binary_get_filename; + +} + + +/****************************************************************************** +* * +* Paramètres : binary = instance d'objet GLib à traiter. * +* * +* Description : Procède à la libération totale de la mémoire. * +* * +* Retour : - * +* * +* Remarques : - * +* * +******************************************************************************/ + +static void g_file_binary_finalize(GFileBinary *binary) +{ + gpointer obj_class; /* Classe parente */ + + free(binary->filename); + + /* On passe le relai */ + + obj_class = g_type_class_peek_parent(G_FILE_BINARY_GET_CLASS(binary)); + + G_OBJECT_CLASS(obj_class)->finalize(G_OBJECT(binary)); + +} + + +/****************************************************************************** +* * +* Paramètres : filename = nom du fichier à charger. * +* * +* Description : Charge en mémoire le contenu d'un fichier. * +* * +* Retour : Adresse de la représentation ou NULL en cas d'échec. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GLoadedBinary *g_file_binary_new_from_file(const char *filename) +{ + GFileBinary *result; /* Adresse à retourner */ + GLoadedBinary *loaded; /* Version parente */ + char *tmp; /* Nom de fichier modifiable */ + + result = g_object_new(G_TYPE_FILE_BINARY, NULL); + loaded = G_LOADED_BINARY(result); + + log_variadic_message(LMT_PROCESS, _("Opening '%s' file..."), filename); + + result->filename = strdup(filename); + + tmp = strdup(filename); + loaded->format = G_EXE_FORMAT(load_new_format(FMT_EXEC, tmp, + &loaded->bin_data, &loaded->bin_length)); + free(tmp); + + if (loaded->format == NULL) + { + log_simple_message(LMT_INFO, _("Unknown binary format")); + goto lbf_error; + } + + switch (g_exe_format_get_target_machine(loaded->format)) + { + case FTM_ARM: + log_simple_message(LMT_INFO, _("Detected architecture: ARM")); + break; + case FTM_DALVIK: + log_simple_message(LMT_INFO, _("Detected architecture: Dalvik Virtual Machine")); + break; + case FTM_JVM: + log_simple_message(LMT_INFO, _("Detected architecture: Java Virtual Machine")); + break; + case FTM_MIPS: + log_simple_message(LMT_INFO, _("Detected architecture: Microprocessor without Interlocked Pipeline Stages")); + break; + case FTM_386: + log_simple_message(LMT_INFO, _("Detected architecture: i386")); + break; + default: + log_simple_message(LMT_INFO, _("Unknown architecture")); + goto lbf_error; + break; + } + + loaded->proc = get_arch_processor_from_format(loaded->format); + + return G_LOADED_BINARY(result); + + lbf_error: + + g_object_unref(G_OBJECT(result)); + + return NULL; + +} + + +/****************************************************************************** +* * +* Paramètres : context = contexte pour les recherches XPath. * +* path = chemin d'accès au noeud XML à lire. * +* * +* Description : Charge en mémoire le contenu d'un fichier à partir d'XML. * +* * +* Retour : Adresse de la représentation ou NULL en cas d'échec. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GLoadedBinary *g_file_binary_new_from_xml(xmlXPathContextPtr context, const char *path) +{ + GLoadedBinary *result; /* Adresse à retourner */ + char *access; /* Chemin pour une sous-config.*/ + char *filename; /* Chemin du binaire à charger */ + + result = NULL; + + /* Chemin du fichier à retrouver */ + + access = strdup(path); + access = stradd(access, "/Filename"); + + filename = get_node_text_value(context, access); + + free(access); + + /* Chargement */ + + if (filename != NULL) + { + result = g_file_binary_new_from_file(filename); + free(filename); + } + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : binary = élément binaire à traiter. * +* xdoc = structure XML en cours d'édition. * +* context = contexte à utiliser pour les recherches. * +* path = chemin d'accès réservé au binaire. * +* * +* Description : Ecrit une sauvegarde du binaire dans un fichier XML. * +* * +* Retour : true si l'opération a bien tourné, false sinon. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static bool g_file_binary_save(const GFileBinary *binary, xmlDocPtr xdoc, xmlXPathContextPtr context, const char *path) +{ + bool result; /* Bilan à faire remonter */ + char *access; /* Chemin d'accès à un élément */ + + result = true; + + /* Type */ + + result &= add_string_attribute_to_node(xdoc, context, path, "type", "file"); + + /* Nom du fichier associé */ + + access = strdup(path); + access = stradd(access, "/Filename"); + + result &= add_content_to_node(xdoc, context, access, binary->filename); + + free(access); + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : binary = élément binaire à consulter. * +* full = précise s'il s'agit d'une version longue ou non. * +* * +* Description : Fournit le fichier correspondant à l'élément binaire. * +* * +* Retour : Nom de fichier avec chemin absolu. * +* * +* Remarques : - * +* * +******************************************************************************/ + +static const char *g_file_binary_get_filename(const GFileBinary *binary, bool full) +{ + const char *result; /* Description à retourner */ + + if (full) + result = binary->filename; + else + result = strrchr(binary->filename, G_DIR_SEPARATOR) + 1; + + return result; + +} diff --git a/src/analysis/binaries/file.h b/src/analysis/binaries/file.h new file mode 100644 index 0000000..3bff0a2 --- /dev/null +++ b/src/analysis/binaries/file.h @@ -0,0 +1,61 @@ + +/* OpenIDA - Outil d'analyse de fichiers binaires + * file.h - prototypes pour la prise en charge des binaires sous forme de fichier + * + * Copyright (C) 2012 Cyrille Bagard + * + * This file is part of OpenIDA. + * + * 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/>. + */ + + +#ifndef _ANALYSIS_BINARIES_FILE_H +#define _ANALYSIS_BINARIES_FILE_H + + +#include <glib-object.h> + + +#include "../binary.h" +#include "../../common/xml.h" + + + +#define G_TYPE_FILE_BINARY g_file_binary_get_type() +#define G_FILE_BINARY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_file_binary_get_type(), GFileBinary)) +#define G_IS_FILE_BINARY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_file_binary_get_type())) +#define G_FILE_BINARY_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_file_binary_get_type(), GFileBinaryIface)) +#define G_FILE_BINARY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_FILE_BINARY, GFileBinaryClass)) + + +/* Description de fichier binaire (instance) */ +typedef struct _GFileBinary GFileBinary; + +/* Description de fichier binaire (classe) */ +typedef struct _GFileBinaryClass GFileBinaryClass; + + +/* Indique le type défini pour une description de fichier binaire. */ +GType g_file_binary_get_type(void); + +/* Charge en mémoire le contenu d'un fichier. */ +GLoadedBinary *g_file_binary_new_from_file(const char *); + +/* Charge en mémoire le contenu d'un fichier à partir d'XML. */ +GLoadedBinary *g_file_binary_new_from_xml(xmlXPathContextPtr, const char *); + + + +#endif /* _ANALYSIS_BINARIES_FILE_H */ |