summaryrefslogtreecommitdiff
path: root/src/analysis/disass/limit.c
blob: 4fd931dfadc1be471407fb8e84c8e092de0a08fd (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * limit.c - détermination des bornes des routines
 *
 * Copyright (C) 2012-2013 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 <http://www.gnu.org/licenses/>.
 */


#include "limit.h"


#include <malloc.h>


#include "../../glibext/delayed-int.h"



/* ------------------------- CALCULS DE LIMITES DE ROUTINES ------------------------- */


#define G_TYPE_LIMIT_COMPUTING               g_limit_computing_get_type()
#define G_LIMIT_COMPUTING(obj)               (G_TYPE_CHECK_INSTANCE_CAST((obj), g_limit_computing_get_type(), GLimitComputing))
#define G_IS_LIMIT_COMPUTING(obj)            (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_limit_computing_get_type()))
#define G_LIMIT_COMPUTING_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_LIMIT_COMPUTING, GLimitComputingClass))
#define G_IS_LIMIT_COMPUTING_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_LIMIT_COMPUTING))
#define G_LIMIT_COMPUTING_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_LIMIT_COMPUTING, GLimitComputingClass))


/* Fraction de routines à limiter (instance) */
typedef struct _GLimitComputing
{
    GDelayedWork parent;                    /* A laisser en premier        */

    const GArchProcessor *proc;             /* Processeurs avec ses instr. */

    mrange_t *exe_ranges;                   /* Liste de zones exécutables  */
    size_t exe_count;                       /* Nombre de ces zones         */

    GBinRoutine **routines;                 /* Liste de routines à traiter */
    size_t count;                           /* Taille de cette liste       */
    size_t begin;                           /* Point de départ du parcours */
    size_t end;                             /* Point d'arrivée exclu       */

    bstatus_id_t id;                        /* Identifiant pour messages   */

} GLimitComputing;

/* Fraction de routines à limiter (classe) */
typedef struct _GLimitComputingClass
{
    GDelayedWorkClass parent;               /* A laisser en premier        */

} GLimitComputingClass;


/* Indique le type défini pour les tâches de calculs de limites. */
GType g_limit_computing_get_type(void);

/* Initialise la classe des tâches de calculs de limites. */
static void g_limit_computing_class_init(GLimitComputingClass *);

/* Initialise une tâche de calculs de limites. */
static void g_limit_computing_init(GLimitComputing *);

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

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

/* Crée une tâche de calculs de limites différée. */
static GLimitComputing *g_limit_computing_new(const GArchProcessor *, mrange_t *, size_t, GBinRoutine **, size_t, size_t, size_t, bstatus_id_t);

/* Recherche la zone correspond à une adresse donnée. */
static const mrange_t *find_x_range_for_addr(const mrange_t *, size_t, const vmpa2t *);

/* Assure le calcul de limites de routines en différé. */
static void g_limit_computing_process(GLimitComputing *, GtkExtStatusBar *);



/* ---------------------------------------------------------------------------------- */
/*                           CALCULS DE LIMITES DE ROUTINES                           */
/* ---------------------------------------------------------------------------------- */


/* Indique le type défini pour les tâches de calculs de limites. */
G_DEFINE_TYPE(GLimitComputing, g_limit_computing, G_TYPE_DELAYED_WORK);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des tâches de calculs de limites.       *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_limit_computing_class_init(GLimitComputingClass *klass)
{
    GObjectClass *object;                   /* Autre version de la classe  */
    GDelayedWorkClass *work;                /* Version en classe parente   */

    object = G_OBJECT_CLASS(klass);

    object->dispose = (GObjectFinalizeFunc/* ! */)g_limit_computing_dispose;
    object->finalize = (GObjectFinalizeFunc)g_limit_computing_finalize;

    work = G_DELAYED_WORK_CLASS(klass);

    work->run = (run_task_fc)g_limit_computing_process;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : computing = instance à initialiser.                          *
*                                                                             *
*  Description : Initialise une tâche de calculs de limites.                  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_limit_computing_init(GLimitComputing *computing)
{

}


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

static void g_limit_computing_dispose(GLimitComputing *computing)
{
    G_OBJECT_CLASS(g_limit_computing_parent_class)->dispose(G_OBJECT(computing));

}


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

static void g_limit_computing_finalize(GLimitComputing *computing)
{
    G_OBJECT_CLASS(g_limit_computing_parent_class)->finalize(G_OBJECT(computing));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : proc     = ensemble d'instructions désassemblées.            *
*                routines = prototypes existants à insérer.                   *
*                count    = quantité de ces prototypes.                       *
*                begin    = point de départ du parcours de liste.             *
*                end      = point d'arrivée exclu du parcours.                *
*                id       = identifiant du message affiché à l'utilisateur.   *
*                                                                             *
*  Description : Crée une tâche de calculs de limites différée.               *
*                                                                             *
*  Retour      : Tâche créée.                                                 *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static GLimitComputing *g_limit_computing_new(const GArchProcessor *proc, mrange_t *exe_ranges, size_t exe_count, GBinRoutine **routines, size_t count, size_t begin, size_t end, bstatus_id_t id)
{
    GLimitComputing *result;                /* Tâche à retourner           */

    result = g_object_new(G_TYPE_LIMIT_COMPUTING, NULL);

    result->proc = proc;

    result->exe_ranges = exe_ranges;
    result->exe_count = exe_count;

    result->routines = routines;
    result->count = count;
    result->begin = begin;
    result->end = end;

    result->id = id;

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : ranges = liste de zones offrant une exécution et disponibles.*
*                count  = taille de cette liste.                              *
*                                                                             *
*  Description : Recherche la zone correspond à une adresse donnée.           *
*                                                                             *
*  Retour      : Zone trouvée ou NULL si aucune ne correspond.                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static const mrange_t *find_x_range_for_addr(const mrange_t *ranges, size_t count, const vmpa2t *addr)
{
    const mrange_t *result;                 /* Zone à retourner            */
    size_t i;                               /* Boucle de parcours          */

    result = NULL;

    for (i = 0; i < count && result == NULL; i++)
        if (mrange_contains_addr(&ranges[i], addr))
            result = &ranges[i];

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : computing  = récupération à mener.                           *
*                statusbar = barre de statut à tenir informée.                *
*                                                                             *
*  Description : Assure le calcul de limites de routines en différé.          *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_limit_computing_process(GLimitComputing *computing, GtkExtStatusBar *statusbar)
{
    size_t i;                               /* Boucle de parcours          */
    GBinRoutine *routine;                   /* Routine en traitement       */
    const mrange_t *range;                  /* Emplacement courant         */
    vmpa2t addr;                            /* Adresse à conserver         */
    GArchInstruction *start;                /* Première instruction        */
    phys_t diff;                            /* Taille définie par déduction*/
    mrange_t new;                           /* Nouvel emplacement taillé   */

    for (i = computing->begin; i < computing->end; i++)
    {
        //gtk_extended_status_bar_update_activity(statusbar, id, (i + 1) * 1.0 / count);

        routine = computing->routines[i];

        range = g_binary_routine_get_range(routine);
        if (get_mrange_length(range) > 0) continue;

        copy_vmpa(&addr, get_mrange_addr(range));

        /* Marquage de la première instruction */

        start = g_arch_processor_find_instr_by_address(computing->proc, &addr);


        if (start == NULL) continue;


        g_arch_instruction_set_flag(start, AIF_ROUTINE_START);

        /* Si on peut se raccrocher à la routine suivante... */
        if ((i + 1) < computing->count)
        {
            range = g_binary_routine_get_range(computing->routines[i + 1]);

            diff = compute_vmpa_diff(&addr, get_mrange_addr(range));

        }

        /* Sinon on va jusqu'à la fin de la zone ! */
        else
        {
            range = find_x_range_for_addr(computing->exe_ranges, computing->exe_count, &addr);
            if (range == NULL) continue;

            diff = compute_vmpa_diff(&addr, get_mrange_addr(range));
            diff = get_mrange_length(range) - diff;

        }

        init_mrange(&new, &addr, diff);

        g_binary_routine_set_range(routine, &new);

    }

}



/* ---------------------------------------------------------------------------------- */
/*                            POINT D'ENTREE ET DECOUPAGES                            */
/* ---------------------------------------------------------------------------------- */


/******************************************************************************
*                                                                             *
*  Paramètres  : format   = format du binaire concerné par la procédure.      *
*                proc     = ensemble d'instructions désassemblées.            *
*                routines = prototypes existants à insérer.                   *
*                count    = quantité de ces prototypes.                       *
*                gid      = identifiant du groupe de travail à utiliser.      *
*                id       = identifiant du message affiché à l'utilisateur.   *
*                                                                             *
*  Description : S'assure que toutes les routines ont une taille définie.     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void limit_all_routines(GExeFormat *format, const GArchProcessor *proc, GBinRoutine **routines, size_t count, wgroup_id_t gid, bstatus_id_t id)
{
    mrange_t *exe_ranges;                   /* Liste de zones exécutables  */
    size_t exe_count;                       /* Nombre de ces zones         */
    guint runs_count;                       /* Qté d'exécutions parallèles */
    size_t run_size;                        /* Volume réparti par exécution*/
    GWorkQueue *queue;                      /* Gestionnaire de différés    */
    guint i;                                /* Boucle de parcours          */
    size_t begin;                           /* Début de bloc de traitement */
    size_t end;                             /* Fin d'un bloc de traitement */
    GLimitComputing *computing;             /* Tâche de calcul à programmer*/

    exe_ranges = g_exe_format_get_x_ranges(format, &exe_count);

    runs_count = g_get_num_processors();

    run_size = count / runs_count;

    queue = get_work_queue();

    for (i = 0; i < runs_count; i++)
    {
        begin = i * run_size;

        if ((i + 1) < runs_count)
            end = count - begin;
        else
            end = begin + run_size;

        computing = g_limit_computing_new(proc, exe_ranges, exe_count, routines, count, begin, end, id);

        g_work_queue_schedule_work(queue, G_DELAYED_WORK(computing), gid);

    }

    g_work_queue_wait_for_completion(queue, gid);

    if (exe_ranges != NULL)
        free(exe_ranges);




    do
    {
        const mrange_t *_range;
        vmpa2t _end;

        printf("LIMIT == %zu routines\n", count);

        for (i = 0; i < count; i++)
        {
            _range = g_binary_routine_get_range(routines[i]);
            compute_mrange_end_addr(_range, &_end);

            printf(" <LIMIT> 0x%08x <-> 0x%08x '%s'\n",
                   (unsigned int)((get_mrange_addr(_range))->virtual),
                   (unsigned int)_end.virtual,
                   g_binary_routine_to_string(routines[i]));

        }

    } while (0);


}