summaryrefslogtreecommitdiff
path: root/src/gui/panels/errors.c
blob: 7d7226fd8709cfbb941a1c69e490ac1b8a052fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956

/* Chrysalide - Outil d'analyse de fichiers binaires
 * errors.c - panneau listant les erreurs au désassemblage
 *
 * Copyright (C) 2017 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 this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#include "errors.h"


#include <assert.h>
#include <malloc.h>
#include <stdio.h>


#include <i18n.h>


#include "panel-int.h"
#include "../../format/format.h"
#include "../../gtkext/support.h"



/* Origine de la dernière ouverture/fermeture reproductible */
typedef enum _UserActionType
{
    UAT_COLLAPSE,                           /* Fermeture totale            */
    UAT_EXPAND,                             /* Ouverture totale            */
    UAT_DEPTH,                              /* Descente contrôlée          */

} UserActionType;


/* Panneau de présentation des erreurs recontrées (instance) */
struct _GErrorPanel
{
    GPanelItem parent;                      /* A laisser en premier        */

    GtkBuilder *builder;                    /* Constructeur utilisé        */

    GLoadedBinary *binary;                  /* Binaire représenté          */

    size_t count;                           /* Nombre de soucis présents   */
    size_t kept;                            /* Nombre d'éléments affichés  */

};

/* Panneau de présentation des erreurs recontrées (classe) */
struct _GErrorPanelClass
{
    GPanelItemClass parent;                 /* A laisser en premier        */

    cairo_surface_t *format_img;            /* Image pour les formats      */
    cairo_surface_t *disass_img;            /* Image pour les architectures*/
    cairo_surface_t *output_img;            /* Image pour les impressions  */

};


/* Colonnes de la liste des messages */
typedef enum _ErrorTreeColumn
{
    ETC_ICON,                               /* Image de représentation     */
    ETC_PHYS,                               /* Position physique           */
    ETC_VIRT,                               /* Position virtuelle          */
    ETC_DESC,                               /* Description humaine         */

    ETC_VISIBLE,                            /* Correspondance établie ?    */
    ETC_ORIGIN,                             /* Source du soucis remonté    */
    ETC_ERRNO,                              /* Code d'erreur associé       */
    ETC_ADDR                                /* Position représentée        */

} BinaryTreeColumn;


/* Manipulation des erreurs de façon générique */
typedef struct _error_desc_t
{
    union
    {
        unsigned int type;                  /* Type de soucis #0           */
        BinaryFormatError ftype;            /* Type de soucis #1           */
        ArchProcessingError ptype;          /* Type de soucis #2           */

    };

    vmpa2t addr;                            /* Localisation d'un problème  */
    char *desc;                             /* Description dudit problème  */

} error_desc_t;


/* Initialise la classe des panneaux d'affichage des erreurs. */
static void g_error_panel_class_init(GErrorPanelClass *);

/* Initialise une instance de panneau d'affichage des erreurs. */
static void g_error_panel_init(GErrorPanel *);

/* Supprime toutes les références externes. */
static void g_error_panel_dispose(GErrorPanel *);

/* Procède à la libération totale de la mémoire. */
static void g_error_panel_finalize(GErrorPanel *);

/* Organise le tri des erreurs présentées. */
static gint sort_errors_in_panel(GtkTreeModel *, GtkTreeIter *, GtkTreeIter *, gpointer);

/* Réagit à un changement d'affichage principal de contenu. */
static void update_panel_with_binary_errors(GErrorPanel *, GLoadedBinary *);

/* Effectue la mise à jour du contenu du panneau d'erreurs. */
static void update_error_panel(GErrorPanel *, GtkStatusStack *, activity_id_t);

/* Actualise l'affichage des erreurs sur la base des filtres. */
static void on_error_filter_toggled(GtkToggleButton *, GErrorPanel *);

/* Filtre l'affichage du contenu du panneau d'erreurs. */
static void filter_error_panel(GErrorPanel *, GtkStatusStack *, activity_id_t);

/* Affiche un petit résumé concis des soucis remontés. */
static void update_error_panel_summary(GPanelUpdate *, GErrorPanel *);

/* Réagit au changement de sélection des portions. */
static void on_error_selection_changed(GtkTreeSelection *, GErrorPanel *);



/* Indique le type défini pour un panneau d'affichage des erreurs. */
G_DEFINE_TYPE(GErrorPanel, g_error_panel, G_TYPE_PANEL_ITEM);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des panneaux d'affichage des erreurs.   *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_error_panel_class_init(GErrorPanelClass *klass)
{
    GObjectClass *object;                   /* Autre version de la classe  */
    GEditorItemClass *editem;               /* Encore une autre vision...  */
    gchar *filename;                        /* Chemin d'accès à utiliser   */
    GPanelItemClass *panel;                 /* Version parente de la classe*/

    object = G_OBJECT_CLASS(klass);

    object->dispose = (GObjectFinalizeFunc/* ! */)g_error_panel_dispose;
    object->finalize = (GObjectFinalizeFunc)g_error_panel_finalize;

    editem = G_EDITOR_ITEM_CLASS(klass);

    editem->update_binary = (update_item_binary_fc)update_panel_with_binary_errors;

    filename = find_pixmap_file("error_file.png");
    assert(filename != NULL);

    klass->format_img = cairo_image_surface_create_from_png(filename);

    filename = find_pixmap_file("error_cpu.png");
    assert(filename != NULL);

    klass->disass_img = cairo_image_surface_create_from_png(filename);

    filename = find_pixmap_file("error_display.png");
    assert(filename != NULL);

    klass->output_img = cairo_image_surface_create_from_png(filename);

    g_free(filename);

    panel = G_PANEL_ITEM_CLASS(klass);

    panel->unique = true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel = instance à initialiser.                              *
*                                                                             *
*  Description : Initialise une instance de panneau d'affichage des erreurs.  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_error_panel_init(GErrorPanel *panel)
{
    GEditorItem *base;                      /* Version basique d'instance  */
    GPanelItem *pitem;                      /* Version parente du panneau  */
    GtkTreeSortable *store;                 /* Gestionnaire des données    */
    GtkTreeModelFilter *filter;             /* Filtre pour l'arborescence  */
    GtkTreeView *treeview;                  /* Affichage de la liste       */
    GtkCellRenderer *renderer;              /* Moteur de rendu de colonne  */
    GtkTreeViewColumn *column;              /* Colonne de la liste         */

    /* Eléments de base */

    base = G_EDITOR_ITEM(panel);

    base->name = PANEL_ERRORS_ID;

    pitem = G_PANEL_ITEM(panel);

    pitem->personality = PIP_SINGLETON;
    pitem->lname = _("Disassembling errors");
    pitem->dock_at_startup = true;
    pitem->path = strdup("S");

    /* Compléments propres */

    panel->binary = NULL;

    /* Représentation graphique */

    panel->builder = gtk_builder_new_from_resource("/org/chrysalide/gui/panels/errors.ui");

    base->widget = GTK_WIDGET(gtk_builder_get_object(panel->builder, "box"));
    g_object_ref(G_OBJECT(base->widget));
    gtk_widget_unparent(base->widget);

    store = GTK_TREE_SORTABLE(gtk_builder_get_object(panel->builder, "store"));
    gtk_tree_sortable_set_sort_func(store, ETC_ADDR, sort_errors_in_panel, NULL, NULL);
    gtk_tree_sortable_set_sort_column_id(store, ETC_ADDR, GTK_SORT_ASCENDING);

    filter = GTK_TREE_MODEL_FILTER(gtk_builder_get_object(panel->builder, "filter"));
    gtk_tree_model_filter_set_visible_column(filter, ETC_VISIBLE);

    /* Liste des erreurs relevées */

    treeview = GTK_TREE_VIEW(gtk_builder_get_object(panel->builder, "treeview"));

    column = gtk_tree_view_column_new();
    gtk_tree_view_append_column(treeview, column);

    renderer = gtk_cell_renderer_text_new();
    g_object_set(G_OBJECT(renderer), "xalign", 1.0, NULL);
    gtk_tree_view_column_pack_start(column, renderer, TRUE);
    gtk_tree_view_column_add_attribute(column, renderer, "markup", ETC_PHYS);

    column = gtk_tree_view_column_new();
    gtk_tree_view_append_column(treeview, column);

    renderer = gtk_cell_renderer_text_new();
    g_object_set(G_OBJECT(renderer), "xalign", 1.0, NULL);
    gtk_tree_view_column_pack_start(column, renderer, TRUE);
    gtk_tree_view_column_add_attribute(column, renderer, "markup", ETC_VIRT);

    column = gtk_tree_view_column_new();
    gtk_tree_view_append_column(treeview, column);

    renderer = gtk_cell_renderer_pixbuf_new();
    gtk_tree_view_column_pack_start(column, renderer, FALSE);
    gtk_tree_view_column_add_attribute(column, renderer, "surface", ETC_ICON);

    renderer = gtk_cell_renderer_text_new();
    gtk_tree_view_column_pack_end(column, renderer, TRUE);
    gtk_tree_view_column_add_attribute(column, renderer, "markup", ETC_DESC);

    /* Connexion des signaux */

    gtk_builder_add_callback_symbols(panel->builder,
                                     "gtk_tree_view_collapse_all", G_CALLBACK(gtk_tree_view_collapse_all),
                                     "gtk_tree_view_expand_all", G_CALLBACK(gtk_tree_view_expand_all),
                                     "on_error_filter_toggled", G_CALLBACK(on_error_filter_toggled),
                                     "on_error_selection_changed", G_CALLBACK(on_error_selection_changed),
                                     NULL);

    gtk_builder_connect_signals(panel->builder, panel);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel = instance d'objet GLib à traiter.                     *
*                                                                             *
*  Description : Supprime toutes les références externes.                     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_error_panel_dispose(GErrorPanel *panel)
{
    g_object_unref(G_OBJECT(panel->builder));

    if (panel->binary != NULL)
        g_object_unref(G_OBJECT(panel->binary));

    G_OBJECT_CLASS(g_error_panel_parent_class)->dispose(G_OBJECT(panel));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel = instance d'objet GLib à traiter.                     *
*                                                                             *
*  Description : Procède à la libération totale de la mémoire.                *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_error_panel_finalize(GErrorPanel *panel)
{
    G_OBJECT_CLASS(g_error_panel_parent_class)->finalize(G_OBJECT(panel));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : -                                                            *
*                                                                             *
*  Description : Crée un panneau présentant la liste des erreurs rencontrées. *
*                                                                             *
*  Retour      : Adresse de la structure mise en place.                       *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GPanelItem *g_error_panel_new(void)
{
    GErrorPanel *result;                    /* Structure à retourner       */

    result = g_object_new(G_TYPE_ERROR_PANEL, NULL);

    return G_PANEL_ITEM(result);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : model = gestionnaire de données.                             *
*                a     = premier élément à traiter.                           *
*                b     = second élément à traiter.                            *
*                data  = donnée non utilisée ici.                             *
*                                                                             *
*  Description : Organise le tri des erreurs présentées.                      *
*                                                                             *
*  Retour      : Bilan de comparaison.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static gint sort_errors_in_panel(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer data)
{
    gint result;                            /* Bilan à faire remonter      */
    vmpa2t *addr_a;                         /* Localisation de A           */
    vmpa2t *addr_b;                         /* Localisation de B           */

    gtk_tree_model_get(model, a, ETC_ADDR, &addr_a, -1);
    gtk_tree_model_get(model, b, ETC_ADDR, &addr_b, -1);

    result = cmp_vmpa(addr_a, addr_b);

    delete_vmpa(addr_a);
    delete_vmpa(addr_b);

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel  = panneau à mettre à jour.                            *
*                binary = nouvelle instance de binaire analysé.               *
*                                                                             *
*  Description : Réagit à un changement d'affichage principal de contenu.     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void update_panel_with_binary_errors(GErrorPanel *panel, GLoadedBinary *binary)
{
    GtkListStore *store;                    /* Modèle de gestion           */
    GBinFormat *format;                     /* Format du binaire           */
    size_t fcount;                          /* Quantité d'erreurs #1       */
    GArchProcessor *proc;                   /* Architecture du binaire     */
    size_t pcount;                          /* Quantité d'erreurs #2       */
    GPanelUpdate *update;                   /* Procédure de mise à jour    */

    /* Réinitialisation */

    if (panel->binary != NULL)
        g_object_unref(G_OBJECT(panel->binary));

    panel->binary = binary;

    if (panel->binary != NULL)
        g_object_ref(G_OBJECT(panel->binary));

    store = GTK_LIST_STORE(gtk_builder_get_object(panel->builder, "store"));

    gtk_list_store_clear(store);

    /* Actualisation de l'affichage */

    if (binary != NULL)
    {
        format = G_BIN_FORMAT(g_loaded_binary_get_format(binary));

        g_binary_format_lock_errors(format);
        fcount = g_binary_format_count_errors(format);
        g_binary_format_unlock_errors(format);

        g_object_unref(G_OBJECT(format));

        proc = g_loaded_binary_get_processor(binary);

        g_arch_processor_lock_errors(proc);
        pcount = g_arch_processor_count_errors(proc);
        g_arch_processor_unlock_errors(proc);

        g_object_unref(G_OBJECT(proc));

    }

    else
    {
        fcount = 0;
        pcount = 0;
    }

    update = g_panel_update_new(G_PANEL_ITEM(panel),
                                _("Loading errors occurred during the disassembling process..."),
                                fcount + pcount,
                                (pu_fallback_cb)update_error_panel);

    g_signal_connect(update, "work-completed", G_CALLBACK(update_error_panel_summary), panel);

    if (get_work_queue() != NULL) /* FIXME */
    g_work_queue_schedule_work(get_work_queue(), G_DELAYED_WORK(update), DEFAULT_WORK_GROUP);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel  = panneau à mettre à jour.                            *
*                status = barre de statut à tenir informée.                   *
*                id     = identifiant pour le suivi de la progression.        *
*                                                                             *
*  Description : Effectue la mise à jour du contenu du panneau d'erreurs.     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void update_error_panel(GErrorPanel *panel, GtkStatusStack *status, activity_id_t id)
{
    GtkTreeView *treeview;                  /* Arborescence graphique      */
    GtkTreeModel *model;                    /* Source de données associée  */
    GtkListStore *store;                    /* Modèle de gestion           */
    GBinFormat *format;                     /* Format du binaire           */
    size_t fcount;                          /* Quantité d'erreurs #1       */
    GArchProcessor *proc;                   /* Architecture du binaire     */
    size_t pcount;                          /* Quantité d'erreurs #2       */
    GtkToggleButton *button;                /* Bouton à manipuler          */
    gboolean show_format;                   /* Affichages liés au format   */
    gboolean show_disass;                   /* Affichages liés à l'arch.   */
    gboolean show_output;                   /* Affichages liés à la sortie */
    size_t count;                           /* Nombre de soucis présents   */
    size_t kept;                            /* Nombre d'éléments affichés  */
    GtkTreeIter iter;                       /* Point d'insertion           */
    size_t i;                               /* Boucle de parcours          */
    error_desc_t error;                     /* Description de soucis       */
#ifndef NDEBUG
    bool ret;                               /* Bilan d'une récupération    */
#endif

    /* Basculement de l'affichage hors ligne */

    treeview = GTK_TREE_VIEW(gtk_builder_get_object(panel->builder, "treeview"));

    model = gtk_tree_view_get_model(treeview);
    g_object_ref(G_OBJECT(model));

    gtk_tree_view_set_model(treeview, NULL);

    store = GTK_LIST_STORE(gtk_builder_get_object(panel->builder, "store"));

    /* Recensement initial */

    if (panel->binary != NULL)
    {
        format = G_BIN_FORMAT(g_loaded_binary_get_format(panel->binary));

        g_binary_format_lock_errors(format);

        fcount = g_binary_format_count_errors(format);

        proc = g_loaded_binary_get_processor(panel->binary);

        g_arch_processor_lock_errors(proc);

        pcount = g_arch_processor_count_errors(proc);

    }

    /* S'il n'y a aucun soucis à remonter... */

    if (panel->binary == NULL || (fcount + pcount) == 0)
    {
        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "format"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), FALSE);
        show_format = gtk_toggle_button_get_active(button);

        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "disass"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), FALSE);
        show_disass = gtk_toggle_button_get_active(button);

        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "output"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), FALSE);
        show_output = gtk_toggle_button_get_active(button);

        gtk_list_store_append(store, &iter);

        gtk_list_store_set(store, &iter,
                           ETC_ICON, NULL,
                           ETC_PHYS, _("<i>There is no error to display here.</i>"),
                           ETC_VIRT, NULL,
                           ETC_DESC, NULL,
                           ETC_VISIBLE, TRUE,
                           -1);

        count = 0;
        kept = 0;

    }

    /* Sinon on dresse la liste des doléances ! */

    else
    {
        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "format"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), TRUE);
        show_format = gtk_toggle_button_get_active(button);

        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "disass"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), TRUE);
        show_disass = gtk_toggle_button_get_active(button);

        button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "output"));
        gtk_widget_set_sensitive(GTK_WIDGET(button), TRUE);
        show_output = gtk_toggle_button_get_active(button);


        gboolean is_error_visible(const error_desc_t *e, bool fmt)
        {
            gboolean visible;               /* Etat à retourner            */

            visible = FALSE;

            if (fmt)
            {
                if (show_format && e->ftype == BFE_STRUCTURE)
                    visible = TRUE;

            }

            else
            {
                if (show_disass && e->ptype == APE_DISASSEMBLY)
                    visible = TRUE;

                else if (show_output && e->ptype == APE_LABEL)
                    visible = TRUE;

            }

            return visible;

        }

        cairo_surface_t *get_error_icon(const error_desc_t *e, bool fmt)
        {
            cairo_surface_t *icon;          /* Image associée à renvoyer   */

            icon = NULL;

            if (fmt)
            {
                if (show_format && e->ftype == BFE_STRUCTURE)
                    icon = G_ERROR_PANEL_GET_CLASS(panel)->format_img;

            }

            else
            {
                if (show_disass && e->ptype == APE_DISASSEMBLY)
                    icon = G_ERROR_PANEL_GET_CLASS(panel)->disass_img;

                else if (show_output && e->ptype == APE_LABEL)
                    icon = G_ERROR_PANEL_GET_CLASS(panel)->output_img;

            }

            return icon;

        }

        void add_error(const error_desc_t *e, bool fmt)
        {
            VMPA_BUFFER(phys);              /* Décalage physique           */
            VMPA_BUFFER(virt);              /* Position virtuelle          */
            gboolean state;                 /* Bilan d'un filtrage         */

            vmpa2_phys_to_string(&e->addr, MDS_UNDEFINED, phys, NULL);
            vmpa2_virt_to_string(&e->addr, MDS_UNDEFINED, virt, NULL);

            state = is_error_visible(e, fmt);

            gtk_list_store_append(store, &iter);

            gtk_list_store_set(store, &iter,
                               ETC_ICON, get_error_icon(e, fmt),
                               ETC_PHYS, phys,
                               ETC_VIRT, virt,
                               ETC_DESC, e->desc,
                               ETC_VISIBLE, state,
                               ETC_ORIGIN, fmt,
                               ETC_ERRNO, e->type,
                               ETC_ADDR, &e->addr,
                               -1);

            count++;

            if (state)
                kept++;

        }


        count = 0;
        kept = 0;

        for (i = 0; i < fcount; i++)
        {
            /* On remet à zéro tous les octets de l'union ! */
            error.type = 0;

#ifndef NDEBUG
            ret = g_binary_format_get_error(format, i, &error.ftype, &error.addr, &error.desc);
            assert(ret);
#else
            g_binary_format_get_error(format, i, &error.ftype, &error.addr, &error.desc);
#endif

            add_error(&error, true);

            free(error.desc);

            gtk_status_stack_update_activity_value(status, id, 1);

        }

        for (i = 0; i < pcount; i++)
        {
            /* On remet à zéro tous les octets de l'union ! */
            error.type = 0;

#ifndef NDEBUG
            ret = g_arch_processor_get_error(proc, i, &error.ptype, &error.addr, &error.desc);
            assert(ret);
#else
            g_arch_processor_get_error(proc, i, &error.ptype, &error.addr, &error.desc);
#endif

            add_error(&error, false);

            free(error.desc);

            gtk_status_stack_update_activity_value(status, id, 1);

        }

    }

    if (panel->binary != NULL)
    {
        g_arch_processor_unlock_errors(proc);

        g_object_unref(G_OBJECT(proc));

        g_binary_format_unlock_errors(format);

        g_object_unref(G_OBJECT(format));

    }

    panel->count = count;
    panel->kept = kept;

    /* Basculement de l'affichage en ligne */

    gtk_tree_view_set_model(treeview, model);

    g_object_unref(G_OBJECT(model));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : button = bouton à l'origine de l'opération.                  *
*                panel  = panneau contenant les informations globales.        *
*                                                                             *
*  Description : Actualise l'affichage des erreurs sur la base des filtres.   *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void on_error_filter_toggled(GtkToggleButton *button, GErrorPanel *panel)
{
    GPanelUpdate *update;                   /* Procédure de mise à jour    */

    update = g_panel_update_new(G_PANEL_ITEM(panel),
                                _("Filtering errors occurred during the disassembling process..."),
                                panel->count,
                                (pu_fallback_cb)filter_error_panel);

    g_signal_connect(update, "work-completed", G_CALLBACK(update_error_panel_summary), panel);

    g_work_queue_schedule_work(get_work_queue(), G_DELAYED_WORK(update), DEFAULT_WORK_GROUP);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : panel  = panneau à mettre à jour.                            *
*                status = barre de statut à tenir informée.                   *
*                id     = identifiant pour le suivi de la progression.        *
*                                                                             *
*  Description : Filtre l'affichage du contenu du panneau d'erreurs.          *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void filter_error_panel(GErrorPanel *panel, GtkStatusStack *status, activity_id_t id)
{
    GtkTreeView *treeview;                  /* Arborescence graphique      */
    GtkTreeModel *model;                    /* Source de données associée  */
    GtkTreeModel *store;                    /* Modèle de gestion           */
    GtkToggleButton *button;                /* Bouton à manipuler          */
    gboolean show_format;                   /* Affichages liés au format   */
    gboolean show_disass;                   /* Affichages liés à l'arch.   */
    gboolean show_output;                   /* Affichages liés à la sortie */
    size_t kept;                            /* Nombre d'éléments affichés  */
    GtkTreeIter iter;                       /* Boucle de parcours          */
    gboolean valid;                         /* Validité du point courant   */
    gboolean format;                        /* Origine du soucis remonté   */
    guint errno;                            /* Code d'erreur associé       */
    gboolean state;                         /* Bilan d'un filtrage         */

    /* Basculement de l'affichage hors ligne */

    treeview = GTK_TREE_VIEW(gtk_builder_get_object(panel->builder, "treeview"));

    model = gtk_tree_view_get_model(treeview);
    g_object_ref(G_OBJECT(model));

    gtk_tree_view_set_model(treeview, NULL);

    store = GTK_TREE_MODEL(gtk_builder_get_object(panel->builder, "store"));

    /* Actualisation des données */

    button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "format"));
    show_format = gtk_toggle_button_get_active(button);

    button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "disass"));
    show_disass = gtk_toggle_button_get_active(button);

    button = GTK_TOGGLE_BUTTON(gtk_builder_get_object(panel->builder, "output"));
    show_output = gtk_toggle_button_get_active(button);


    gboolean is_error_visible(bool fmt, unsigned int type)
    {
        gboolean visible;                   /* Etat à retourner            */

        visible = FALSE;

        if (fmt)
        {
            if (show_format && type == BFE_STRUCTURE)
                visible = TRUE;

        }

        else
        {
            if (show_disass && type == APE_DISASSEMBLY)
                visible = TRUE;

            else if (show_output && type == APE_LABEL)
                visible = TRUE;

        }

        return visible;

    }


    kept = 0;

    for (valid = gtk_tree_model_get_iter_first(store, &iter);
         valid;
         valid = gtk_tree_model_iter_next(store, &iter))
    {
        gtk_tree_model_get(store, &iter, ETC_ORIGIN, &format, ETC_ERRNO, &errno, -1);

        state = is_error_visible(format, errno);

        gtk_list_store_set(GTK_LIST_STORE(store), &iter,
                           ETC_VISIBLE, state,
                           -1);

        if (state)
            kept++;

        gtk_status_stack_update_activity_value(status, id, 1);

    }

    panel->kept = kept;

    /* Basculement de l'affichage en ligne */

    gtk_tree_view_set_model(treeview, model);

    g_object_unref(G_OBJECT(model));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : update = tâche venant de se terminer.                        *
*                panel  = structure contenant les informations maîtresses.    *
*                                                                             *
*  Description : Affiche un petit résumé concis des soucis remontés.          *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void update_error_panel_summary(GPanelUpdate *update, GErrorPanel *panel)
{
    GtkLabel *summary;                      /* Etiquette à mettre à jour   */
    char *msg;                              /* Bilan à faire afficher      */

    summary = GTK_LABEL(gtk_builder_get_object(panel->builder, "summary"));

    if (panel->count == 0)
        gtk_label_set_markup(summary, NULL);

    else
    {
        asprintf(&msg, _("<b>%zu</b> registered error%s, <b>%zu</b> displayed"),
                 panel->count, panel->count > 1 ? "s" : "", panel->kept);

        gtk_label_set_markup(summary, msg);

    }

    free(msg);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : selection = sélection modifiée.                              *
*                panel     = structure contenant les informations maîtresses. *
*                                                                             *
*  Description : Réagit au changement de sélection des portions.              *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void on_error_selection_changed(GtkTreeSelection *selection, GErrorPanel *panel)
{
    GtkTreeIter iter;                       /* Point de sélection          */
    GtkTreeModel *model;                    /* Modèle de gestion           */
    vmpa2t *addr;                           /* Localisation à suivre       */
    GtkDisplayPanel *display;               /* Afficheur effectif de code  */

    if (gtk_tree_selection_get_selected(selection, &model, &iter))
    {
        gtk_tree_model_get(model, &iter, ETC_ADDR, &addr, -1);

        display = g_editor_item_get_current_view(G_EDITOR_ITEM(panel));
        gtk_display_panel_request_move(display, addr);

        delete_vmpa(addr);

    }

}