/* Chrysalide - Outil d'analyse de fichiers binaires * reader.c - interprétation des informations secondaires contenues dans un fichier ELF * * Copyright (C) 2015 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 . */ #include "reader.h" #include #include "header.h" #include "program.h" #include "section.h" DEFINE_CHRYSALIDE_ACTIVE_PLUGIN("readelf", "Displays information about ELF 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 ELF. * * * * Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ G_MODULE_EXPORT bool handle_binary_format(const GPluginModule *plugin, PluginAction action, GElfFormat *format) { bool result; /* Bilan à retourner */ result = annotate_elf_header(format); result &= annotate_elf_program_header_table(format); result &= annotate_elf_section_header_table(format); return result; }