diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2019-11-09 13:18:35 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2019-11-09 13:18:35 (GMT) | 
| commit | c301f7e77eaca632a491b5b4417c8e4b9dce2570 (patch) | |
| tree | 501ccdd583e35ccad4f3a0592f2fb1b0870e0d5f /src/gtkext | |
| parent | 459b345d69532825f21bdcd3e4f92009b0a046dc (diff) | |
Introduced the first features of a hexadecimal viewer.
Diffstat (limited to 'src/gtkext')
| -rw-r--r-- | src/gtkext/Makefile.am | 1 | ||||
| -rw-r--r-- | src/gtkext/gtkbufferdisplay.c | 2 | ||||
| -rw-r--r-- | src/gtkext/gtkstatusstack.c | 40 | ||||
| -rw-r--r-- | src/gtkext/gtkstatusstack.h | 4 | ||||
| -rw-r--r-- | src/gtkext/hexdisplay.c | 332 | ||||
| -rw-r--r-- | src/gtkext/hexdisplay.h | 59 | 
6 files changed, 417 insertions, 21 deletions
| diff --git a/src/gtkext/Makefile.am b/src/gtkext/Makefile.am index 24df0c3..a56cf33 100644 --- a/src/gtkext/Makefile.am +++ b/src/gtkext/Makefile.am @@ -20,6 +20,7 @@ libgtkext_la_SOURCES =						\  	gtkdockstation.h gtkdockstation.c		\  	gtkgraphdisplay.h gtkgraphdisplay.c		\  	gtkstatusstack.h gtkstatusstack.c		\ +	hexdisplay.h hexdisplay.c				\  	rendering.h rendering.c					\  	resources.h resources.c					\  	support.h support.c						\ diff --git a/src/gtkext/gtkbufferdisplay.c b/src/gtkext/gtkbufferdisplay.c index a1833a6..32a6a98 100644 --- a/src/gtkext/gtkbufferdisplay.c +++ b/src/gtkext/gtkbufferdisplay.c @@ -467,6 +467,8 @@ static gboolean gtk_buffer_display_draw(GtkWidget *widget, cairo_t *cr)      gtk_style_context_add_class(context, GTK_STYLE_CLASS_VIEW); +    gtk_style_context_add_class(context, "graph-block-background"); +      gtk_render_background(context, cr, left_margin, area.y, area.width, area.height);      gtk_style_context_restore(context); diff --git a/src/gtkext/gtkstatusstack.c b/src/gtkext/gtkstatusstack.c index 45bd667..843d444 100644 --- a/src/gtkext/gtkstatusstack.c +++ b/src/gtkext/gtkstatusstack.c @@ -125,7 +125,7 @@ static void on_size_allocate_for_asm_status(GtkWidget *, GdkRectangle *, GObject  static void on_zoom_icon_press(GtkEntry *, GtkEntryIconPosition, GdkEventButton *, GtkStatusStack *);  /* S'assure de l'affichage à jour de la partie "assemblage". */ -static gboolean gtk_status_stack_show_current_instruction(GtkStatusStack *); +static gboolean gtk_status_stack_show_current_location(GtkStatusStack *); @@ -229,7 +229,7 @@ static void gtk_status_stack_init(GtkStatusStack *stack)      gtk_widget_show(GTK_WIDGET(stack->main));      gtk_box_pack_start(GTK_BOX(stack), GTK_WIDGET(stack->main), TRUE, TRUE, 8); -    stack->def_source = (GSourceFunc)gtk_status_stack_show_current_instruction; +    stack->def_source = (GSourceFunc)gtk_status_stack_show_current_location;      layer = build_assembly_status_stack(stack);      gtk_stack_add_named(stack->main, layer, "asm_info"); @@ -247,7 +247,7 @@ static void gtk_status_stack_init(GtkStatusStack *stack)      reset_progress_info(stack->prog_info); -    gtk_status_stack_reset_current_instruction(stack); +    gtk_status_stack_reset_current_location(stack);  } @@ -498,9 +498,10 @@ static void on_zoom_icon_press(GtkEntry *entry, GtkEntryIconPosition icon_pos, G  /******************************************************************************  *                                                                             * -*  Paramètres  : stack  = barre de statut à actualiser.                       * -*                binary = binaire chargé rassemblant l'ensemble des infos.    * -*                instr  = instruction désassemblée ciblée graphiquement.      * +*  Paramètres  : stack    = barre de statut à actualiser.                     * +*                binary   = binaire chargé rassemblant l'ensemble des infos.  * +*                range    = emplacement à mettre en valeur.                   * +*                encoding = encodage d'une éventuelle instruction ou NULL.    *  *                                                                             *  *  Description : Actualise les informations liées une position d'assemblage.  *  *                                                                             * @@ -510,12 +511,12 @@ static void on_zoom_icon_press(GtkEntry *entry, GtkEntryIconPosition icon_pos, G  *                                                                             *  ******************************************************************************/ -void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GLoadedBinary *binary, const GArchInstruction *instr) +void gtk_status_stack_update_current_location(GtkStatusStack *stack, const GLoadedBinary *binary, const mrange_t *range, const char *encoding)  {      assembly_info *info;                    /* Informations à constituer   */      GExeFormat *format;                     /* Format de binaire à traiter */ -    const mrange_t *range;                  /* Emplacement d'instruction   */      const vmpa2t *addr;                     /* Localisation de départ      */ +    phys_t size;                            /* Taille de l'emplacement     */      GBinPortion *portions;                  /* Couche première de portions */      GBinPortion *portion;                   /* Zone mémoire d'appartenance */      const char *text;                       /* Texte au contenu à copier   */ @@ -531,10 +532,12 @@ void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GL      /* Bascule vers une zone courante nouvelle ? */ -    range = g_arch_instruction_get_range(instr);      addr = get_mrange_addr(range); +    size = get_mrange_length(range); -    if (cmp_mrange(&info->current, range) == 0) +    if (cmp_mrange(&info->current, range) == 0 +        && info->size == size +        && info->encoding == encoding)          goto gssuci_useless;      /* Réinitialisation */ @@ -566,9 +569,8 @@ void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GL      vmpa2_virt_to_string(addr, MDS_UNDEFINED, info->virt, NULL); -    info->encoding = g_arch_instruction_get_encoding(instr); - -    info->size = get_mrange_length(range); +    info->encoding = encoding; +    info->size = size;      /* Symbole concerné */ @@ -597,7 +599,7 @@ void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GL      info->reset = false; -    gtk_status_stack_show_current_instruction(stack); +    gtk_status_stack_show_current_location(stack);   gssuci_useless: @@ -618,7 +620,7 @@ void gtk_status_stack_update_current_instruction(GtkStatusStack *stack, const GL  *                                                                             *  ******************************************************************************/ -void gtk_status_stack_reset_current_instruction(GtkStatusStack *stack) +void gtk_status_stack_reset_current_location(GtkStatusStack *stack)  {      assembly_info *info;                    /* Informations à constituer   */ @@ -626,7 +628,7 @@ void gtk_status_stack_reset_current_instruction(GtkStatusStack *stack)      reset_assembly_info(info); -    gtk_status_stack_show_current_instruction(stack); +    gtk_status_stack_show_current_location(stack);  } @@ -643,7 +645,7 @@ void gtk_status_stack_reset_current_instruction(GtkStatusStack *stack)  *                                                                             *  ******************************************************************************/ -static gboolean gtk_status_stack_show_current_instruction(GtkStatusStack *stack) +static gboolean gtk_status_stack_show_current_location(GtkStatusStack *stack)  {      GObject *ref;                           /* Espace de référencements    */      assembly_info *info;                    /* Informations à consulter    */ @@ -651,7 +653,7 @@ static gboolean gtk_status_stack_show_current_instruction(GtkStatusStack *stack)      char raw_pos[6 + VMPA_MAX_LEN + 1];     /* Formatage final en direct   */      char *content;                          /* Contenu dynamique           */ -    stack->def_source = (GSourceFunc)gtk_status_stack_show_current_instruction; +    stack->def_source = (GSourceFunc)gtk_status_stack_show_current_location;      gtk_stack_set_visible_child_name(stack->main, "asm_info"); @@ -697,7 +699,7 @@ static gboolean gtk_status_stack_show_current_instruction(GtkStatusStack *stack)      /* Seconde partie : architecture */ -    if (info->reset) +    if (info->reset || info->encoding == NULL || info->size == VMPA_NO_PHYSICAL)      {          label = GTK_LABEL(g_object_get_data(ref, "arch"));          gtk_label_set_text(label, NULL); diff --git a/src/gtkext/gtkstatusstack.h b/src/gtkext/gtkstatusstack.h index bcb9477..21c9b58 100644 --- a/src/gtkext/gtkstatusstack.h +++ b/src/gtkext/gtkstatusstack.h @@ -62,10 +62,10 @@ GtkWidget *gtk_status_stack_new(void);  /* Actualise les informations liées une position d'assemblage. */ -void gtk_status_stack_update_current_instruction(GtkStatusStack *, const GLoadedBinary *, const GArchInstruction *); +void gtk_status_stack_update_current_location(GtkStatusStack *, const GLoadedBinary *, const mrange_t *, const char *);  /* Réinitialise les informations associées une position. */ -void gtk_status_stack_reset_current_instruction(GtkStatusStack *); +void gtk_status_stack_reset_current_location(GtkStatusStack *); diff --git a/src/gtkext/hexdisplay.c b/src/gtkext/hexdisplay.c new file mode 100644 index 0000000..8cb4430 --- /dev/null +++ b/src/gtkext/hexdisplay.c @@ -0,0 +1,332 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * hexdisplay.c - affichage d'un contenu binaire sous forme hexadécimale + * + * Copyright (C) 2016 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 Foobar.  If not, see <http://www.gnu.org/licenses/>. + */ + + +#include "hexdisplay.h" + + +#include "gtkbufferdisplay-int.h" +#include "../format/format.h" +#include "../glibext/generators/hex.h" + + + +/* Composant d'affichage de contenu sous forme hexadécimale (instance) */ +struct _GtkHexDisplay +{ +    GtkBufferDisplay parent;                /* A laisser en premier        */ + +    GBufferCache *cache;                    /* Cache pour l'affichage      */ +    GHexGenerator *generator;               /* Générateur à la volée       */ + +}; + +/* Composant d'affichage de contenu sous forme hexadécimale (classe) */ +struct _GtkHexDisplayClass +{ +    GtkBufferDisplayClass parent;           /* A laisser en premier        */ + +}; + + +/* Procède à l'initialisation des afficheurs sous forme hexa. */ +static void gtk_hex_display_class_init(GtkHexDisplayClass *); + +/* Procède à l'initialisation de l'afficheur sous forme hexa. */ +static void gtk_hex_display_init(GtkHexDisplay *); + +/* Supprime toutes les références externes. */ +static void g_hex_display_dispose(GtkHexDisplay *); + +/* Procède à la libération totale de la mémoire. */ +static void g_hex_display_finalize(GtkHexDisplay *); + +/* S'adapte à la surface concédée par le composant parent. */ +static void gtk_hex_display_size_allocate(GtkWidget *, GtkAllocation *); + +/* Indique les dimensions de travail du composant d'affichage. */ +static void gtk_hex_display_compute_requested_size(GtkHexDisplay *, gint *, gint *); + +/* Adapte le cache de lignes hexadécimales à la taille courante. */ +static void gtk_hex_display_populate_cache(GtkHexDisplay *); + + + +/* Détermine le type du composant d'affichage sous forme hexadécimale. */ +G_DEFINE_TYPE(GtkHexDisplay, gtk_hex_display, GTK_TYPE_BUFFER_DISPLAY) + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : class = classe GTK à initialiser.                            * +*                                                                             * +*  Description : Procède à l'initialisation des afficheurs sous forme hexa.   * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void gtk_hex_display_class_init(GtkHexDisplayClass *class) +{ +    GObjectClass *object;                   /* Autre version de la classe  */ +    GtkWidgetClass *widget_class;           /* Classe de haut niveau       */ +    GtkDisplayPanelClass *panel_class;      /* Classe parente              */ + +    object = G_OBJECT_CLASS(class); + +    object->dispose = (GObjectFinalizeFunc/* ! */)g_hex_display_dispose; +    object->finalize = (GObjectFinalizeFunc)g_hex_display_finalize; + +    widget_class = GTK_WIDGET_CLASS(class); + +    widget_class->size_allocate = gtk_hex_display_size_allocate; + +    panel_class = GTK_DISPLAY_PANEL_CLASS(class); + +    panel_class->compute_size = (compute_requested_size_fc)gtk_hex_display_compute_requested_size; + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : view = composant GTK à initialiser.                          * +*                                                                             * +*  Description : Procède à l'initialisation de l'afficheur sous forme hexa.   * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void gtk_hex_display_init(GtkHexDisplay *view) +{ + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : display = instance d'objet GLib à traiter.                   * +*                                                                             * +*  Description : Supprime toutes les références externes.                     * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void g_hex_display_dispose(GtkHexDisplay *display) +{ +    g_clear_object(&display->cache); + +    g_clear_object(&display->generator); + +    G_OBJECT_CLASS(gtk_hex_display_parent_class)->dispose(G_OBJECT(display)); + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : display = instance d'objet GLib à traiter.                   * +*                                                                             * +*  Description : Procède à la libération totale de la mémoire.                * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void g_hex_display_finalize(GtkHexDisplay *display) +{ +    G_OBJECT_CLASS(gtk_hex_display_parent_class)->finalize(G_OBJECT(display)); + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : content = contenu brut à représenter.                        * +*                                                                             * +*  Description : Crée un nouveau composant pour l'affichage sous forme hexa.  * +*                                                                             * +*  Retour      : Composant GTK créé.                                          * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +GtkWidget *gtk_hex_display_new(GBinContent *content) +{ +    GtkHexDisplay *result;                  /* Composant à retourner       */ +    GBufferView *view;                      /* Vue pointée sur un tampon   */ + +    result = g_object_new(GTK_TYPE_HEX_DISPLAY, NULL); + +    result->cache = g_buffer_cache_new(content); +    g_object_ref_sink(G_OBJECT(result->cache)); + +    result->generator = g_hex_generator_new(content); + +    gtk_hex_display_populate_cache(result); + +    view = g_buffer_view_new(result->cache, NULL); + +    GTK_BUFFER_DISPLAY(result)->view = view; + +    return GTK_WIDGET(result); + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : widget     = composant GTK à mettre à jour.                  * +*                allocation = étendue accordée à la vue.                      * +*                                                                             * +*  Description : S'adapte à la surface concédée par le composant parent.      * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void gtk_hex_display_size_allocate(GtkWidget *widget, GtkAllocation *allocation) +{ +    GtkHexDisplay *display;                 /* Autre version du composant  */ +    GBufferCache *cache;                    /* Contenu représenté          */ +    gint text_pos;                          /* Abscisse minimale du texte  */ +    bool show_pos;                          /* Affichage des positions ?   */ +    bool changed;                           /* Note toute variation        */ + +    display = GTK_HEX_DISPLAY(widget); + +    cache = g_buffer_view_get_cache(GTK_BUFFER_DISPLAY(display)->view); + +    text_pos = g_buffer_cache_get_text_position(cache); + +    g_object_unref(G_OBJECT(cache)); + +    show_pos = g_display_options_get(GTK_DISPLAY_PANEL(widget)->options, 0); + +    changed = g_hex_generator_auto_fit(display->generator, text_pos, show_pos, allocation->width); + +    if (changed) +        gtk_hex_display_populate_cache(display); + +    /** +     * On fait appel au parent en dernier pour bénéficier des besoins +     * en espace actualisés avec les nouvelles dispositions. +     */ + +    GTK_WIDGET_CLASS(gtk_hex_display_parent_class)->size_allocate(widget, allocation); + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : display = composant GTK à consulter.                         * +*                width   = largeur requise à renseigner ou NULL. [OUT]        * +*                height  = hauteur requise à renseigner ou NULL. [OUT]        * +*                                                                             * +*  Description : Indique les dimensions de travail du composant d'affichage.  * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void gtk_hex_display_compute_requested_size(GtkHexDisplay *display, gint *width, gint *height) +{ +    GtkDisplayPanel *pdisplay;              /* Version parente             */ + +    pdisplay = GTK_DISPLAY_PANEL(display); + +    GTK_DISPLAY_PANEL_CLASS(gtk_hex_display_parent_class)->compute_size(pdisplay, width, height); + +    if (width != NULL && *width != 0) +        *width = 1; + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : display = composant GTK à mettre à jour.                     * +*                                                                             * +*  Description : Adapte le cache de lignes hexadécimales à la taille courante.* +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +static void gtk_hex_display_populate_cache(GtkHexDisplay *display) +{ +    GBinContent *content;                   /* Contenu binaire affiché     */ +    phys_t full;                            /* Taille totale à représenter */ +    phys_t line;                            /* Taille représentée par ligne*/ +    size_t needed;                          /* Nombre de lignes nécessaires*/ +    size_t count;                           /* Nombre actuel de lignes     */ + +    /* Détermination du besoin */ + +    content = g_hex_generator_get_content(display->generator); + +    full = g_binary_content_compute_size(content); + +    g_object_unref(G_OBJECT(content)); + +    line = g_hex_generator_get_bytes_per_line(display->generator); + +    needed = full / line; + +    if (full % line > 0) +        needed++; + +    /* Adaptation du tampon interne */ + +    count = g_buffer_cache_count_lines(display->cache); + +    if (needed < count) +        g_buffer_cache_truncate(display->cache, needed); + +    else if (needed > count) +    { +        g_object_ref(G_OBJECT(display->generator)); +        g_buffer_cache_extend_with(display->cache, needed, G_LINE_GENERATOR(display->generator)); +    } + +    if (needed != count) +        gtk_widget_queue_resize(GTK_WIDGET(display)); + +} diff --git a/src/gtkext/hexdisplay.h b/src/gtkext/hexdisplay.h new file mode 100644 index 0000000..c806555 --- /dev/null +++ b/src/gtkext/hexdisplay.h @@ -0,0 +1,59 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * hexdisplay.h - prototypes pour l'affichage d'un contenu binaire sous forme hexadécimale + * + * Copyright (C) 2016 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 Foobar.  If not, see <http://www.gnu.org/licenses/>. + */ + + +#ifndef _GTKEXT_HEXDISPLAY_H +#define _GTKEXT_HEXDISPLAY_H + + +#include <glib-object.h> +#include <gtk/gtk.h> + + +#include "../analysis/content.h" + + + +#define GTK_TYPE_HEX_DISPLAY            (gtk_hex_display_get_type()) +#define GTK_HEX_DISPLAY(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_HEX_DISPLAY, GtkHexDisplay)) +#define GTK_HEX_DISPLAY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), GTK_TYPE_HEX_DISPLAY, GtkHexDisplayClass)) +#define GTK_IS_HEX_DISPLAY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), GTK_TYPE_HEX_DISPLAY)) +#define GTK_IS_HEX_DISPLAY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GTK_TYPE_HEX_DISPLAY)) +#define GTK_HEX_DISPLAY_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_HEX_DISPLAY, GtkHexDisplayClass)) + + +/* Composant d'affichage de contenu sous forme hexadécimale (instance) */ +typedef struct _GtkHexDisplay GtkHexDisplay; + +/* Composant d'affichage de contenu sous forme hexadécimale (classe) */ +typedef struct _GtkHexDisplayClass GtkHexDisplayClass; + + +/* Détermine le type du composant d'affichage sous forme hexadécimale. */ +GType gtk_hex_display_get_type(void); + +/* Crée un nouveau composant pour l'affichage sous forme hexa. */ +GtkWidget *gtk_hex_display_new(GBinContent *); + + + +#endif  /* _GTKEXT_HEXDISPLAY_H */ | 
