/* Chrysalide - Outil d'analyse de fichiers binaires * flat.c - support des formats à plat * * Copyright (C) 2018-2024 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 Chrysalide. If not, see . */ #include "flat.h" #include #include #include "flat-int.h" /* ------------------------- DEFINITION D'UN NOUVEAU FORMAT ------------------------- */ /* Initialise la classe des formats d'exécutables à plat. */ static void g_flat_format_class_init(GFlatFormatClass *); /* Initialise une instance de format d'exécutable à plat. */ static void g_flat_format_init(GFlatFormat *); /* Supprime toutes les références externes. */ static void g_flat_format_dispose(GFlatFormat *); /* Procède à la libération totale de la mémoire. */ static void g_flat_format_finalize(GFlatFormat *); /* --------------------- IMPLEMENTATION DES FONCTIONS DE CLASSE --------------------- */ /* Indique la désignation interne du format. */ static char *g_flat_format_get_key(const GFlatFormat *); /* Fournit une description humaine du format. */ static char *g_flat_format_get_description(const GFlatFormat *); #if 0 /* Assure l'interprétation d'un format en différé. */ static bool g_flat_format_analyze(GFlatFormat *, wgroup_id_t, GtkStatusStack *); #endif /* Informe quant au boutisme utilisé. */ static SourceEndian g_flat_format_get_endianness(const GFlatFormat *); /* Indique le type d'architecture visée par le format. */ static char *g_flat_format_get_target_machine(const GFlatFormat *); #if 0 /* Fournit l'adresse principale associée à un format à plat. */ static bool g_flat_format_get_main_address(GFlatFormat *, vmpa2t *); #endif /* ---------------------------------------------------------------------------------- */ /* DEFINITION D'UN NOUVEAU FORMAT */ /* ---------------------------------------------------------------------------------- */ /* Indique le type défini pour un format d'exécutable à plat. */ G_DEFINE_TYPE(GFlatFormat, g_flat_format, G_TYPE_EXECUTABLE_FORMAT); /****************************************************************************** * * * Paramètres : klass = classe à initialiser. * * * * Description : Initialise la classe des formats d'exécutables à plat. * * * * Retour : - * * * * Remarques : - * * * ******************************************************************************/ static void g_flat_format_class_init(GFlatFormatClass *klass) { GObjectClass *object; /* Autre version de la classe */ GKnownFormatClass *known; /* Version de format connu */ GProgramFormatClass *prgm; /* Version en format basique */ GExecutableFormatClass *exe; /* Version en exécutable */ object = G_OBJECT_CLASS(klass); object->dispose = (GObjectFinalizeFunc/* ! */)g_flat_format_dispose; object->finalize = (GObjectFinalizeFunc)g_flat_format_finalize; known = G_KNOWN_FORMAT_CLASS(klass); known->get_key = (known_get_key_fc)g_flat_format_get_key; known->get_desc = (known_get_desc_fc)g_flat_format_get_description; #if 0 known->analyze = (known_analyze_fc)g_flat_format_analyze; #endif prgm = G_PROGRAM_FORMAT_CLASS(klass); prgm->get_endian = (program_get_endian_fc)g_flat_format_get_endianness; exe = G_EXECUTABLE_FORMAT_CLASS(klass); exe->get_machine = (get_target_machine_fc)g_flat_format_get_target_machine; #if 0 exe->get_main_addr = (get_main_addr_fc)g_flat_format_get_main_address; exe->translate_phys = (translate_phys_fc)g_exe_format_translate_offset_into_vmpa_using_portions; exe->translate_virt = (translate_virt_fc)g_exe_format_translate_address_into_vmpa_using_portions; #endif } /****************************************************************************** * * * Paramètres : format = instance à initialiser. * * * * Description : Initialise une instance de format d'exécutable à plat. * * * * Retour : - * * * * Remarques : - * * * ******************************************************************************/ static void g_flat_format_init(GFlatFormat *format) { format->machine = NULL; format->endian = SRE_LITTLE; } /****************************************************************************** * * * Paramètres : format = instance d'objet GLib à traiter. * * * * Description : Supprime toutes les références externes. * * * * Retour : - * * * * Remarques : - * * * ******************************************************************************/ static void g_flat_format_dispose(GFlatFormat *format) { G_OBJECT_CLASS(g_flat_format_parent_class)->dispose(G_OBJECT(format)); } /****************************************************************************** * * * Paramètres : format = instance d'objet GLib à traiter. * * * * Description : Procède à la libération totale de la mémoire. * * * * Retour : - * * * * Remarques : - * * * ******************************************************************************/ static void g_flat_format_finalize(GFlatFormat *format) { if (format->machine != NULL) free(format->machine); G_OBJECT_CLASS(g_flat_format_parent_class)->finalize(G_OBJECT(format)); } /****************************************************************************** * * * Paramètres : content = contenu binaire à parcourir. * * machine = architecture déterminée pour le code. * endian = boutisme à observer pour les données. * * * * Description : Crée une nouvelle instance de format à plat. * * * * Retour : Adresse de la structure mise en place ou NULL en cas d'échec.* * * * Remarques : - * * * ******************************************************************************/ GFlatFormat *g_flat_format_new(GBinContent *content, const char *machine, SourceEndian endian) { GFlatFormat *result; /* Structure à retourner */ result = g_object_new(G_TYPE_FLAT_FORMAT, NULL); if (!g_flat_format_create(result, content, machine, endian)) g_clear_object(&result); return result; } /****************************************************************************** * * * Paramètres : format = description du format connu à consulter. * * content = contenu binaire à parcourir. * * * * Description : Met en place une nouvelle instance de format de à plat. * * * * Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ bool g_flat_format_create(GFlatFormat *format, GBinContent *content, const char *machine, SourceEndian endian) { bool result; /* Bilan à retourner */ result = g_known_format_create(G_KNOWN_FORMAT(format), content); format->machine = strdup(machine); format->endian = endian; return result; } /* ---------------------------------------------------------------------------------- */ /* IMPLEMENTATION DES FONCTIONS DE CLASSE */ /* ---------------------------------------------------------------------------------- */ /****************************************************************************** * * * Paramètres : format = description de l'exécutable à consulter. * * * * Description : Indique la désignation interne du format. * * * * Retour : Désignation du format. * * * * Remarques : - * * * ******************************************************************************/ static char *g_flat_format_get_key(const GFlatFormat *format) { char *result; /* Désignation à retourner */ result = strdup("flat"); return result; } /****************************************************************************** * * * Paramètres : format = description de l'exécutable à consulter. * * * * Description : Fournit une description humaine du format. * * * * Retour : Description du format. * * * * Remarques : - * * * ******************************************************************************/ static char *g_flat_format_get_description(const GFlatFormat *format) { char *result; /* Désignation à retourner */ result = strdup("Flat executable format"); return result; } #if 0 /****************************************************************************** * * * Paramètres : format = format chargé dont l'analyse est lancée. * * gid = groupe de travail dédié. * * status = barre de statut à tenir informée. * * * * Description : Assure l'interprétation d'un format en différé. * * * * Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ static bool g_flat_format_analyze(GFlatFormat *format, wgroup_id_t gid, GtkStatusStack *status) { bool result; /* Bilan à retourner */ result = true; g_executable_format_setup_portions(G_EXECUTABLE_FORMAT(format), status); return result; } #endif /****************************************************************************** * * * Paramètres : format = informations chargées à consulter. * * * * Description : Informe quant au boutisme utilisé. * * * * Retour : Indicateur de boutisme. * * * * Remarques : - * * * ******************************************************************************/ static SourceEndian g_flat_format_get_endianness(const GFlatFormat *format) { SourceEndian result; /* Valeur à retourner */ result = format->endian; return result; } /****************************************************************************** * * * Paramètres : format = description du format exécutable à consulter. * * * * Description : Indique le type d'architecture visée par le format. * * * * Retour : Identifiant de l'architecture ciblée par le format. * * * * Remarques : - * * * ******************************************************************************/ static char *g_flat_format_get_target_machine(const GFlatFormat *format) { char *result; /* Identifiant à retourner */ result = strdup(format->machine); return result; } #if 0 /****************************************************************************** * * * Paramètres : format = description de l'exécutable à consulter. * * addr = adresse principale trouvée si possible. [OUT] * * * * Description : Fournit l'adresse principale associée à un format à plat. * * * * Retour : Bilan des recherches. * * * * Remarques : - * * * ******************************************************************************/ static bool g_flat_format_get_main_address(GFlatFormat *format, vmpa2t *addr) { bool result; /* Bilan à retourner */ GBinFormat *base; /* Format de base du format */ base = G_BIN_FORMAT(format); g_rw_lock_reader_lock(&base->pt_lock); result = (base->pt_count[DPL_ENTRY_POINT] > 0); if (result) init_vmpa(addr, 0, base->start_points[DPL_ENTRY_POINT][0]); g_rw_lock_reader_unlock(&base->pt_lock); return result; } #endif