summaryrefslogtreecommitdiff
path: root/src/format/dex/pool.c
blob: a86987363f194a058f026df9ac5d4d7d37581316 (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * pool.c - extraction des informations issues des tables globales
 *
 * Copyright (C) 2010-2012 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 "pool.h"


#include <string.h>


#include "dex-int.h"
#include "../mangling/demangler.h"



/******************************************************************************
*                                                                             *
*  Paramètres  : format = description de l'exécutable à analyser.             *
*                                                                             *
*  Description : Charge en mémoire toutes les chaînes trouvées.               *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool find_all_dex_strings(GDexFormat *format)
{
    uint32_t i;                             /* Boucle de parcours          */
    const char *text;                       /* Texte issu du binaire       */
    GBinSymbol *symbol;                     /* Nouveau symbole construit   */

    for (i = 0; i < format->header.string_ids_size; i++)
    {
        text = get_string_from_dex_pool(format, i);
        if (text == NULL) continue;

        symbol = g_binary_symbol_new(STP_STRING);
        g_binary_symbol_set_alt_label(symbol, text);

        g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol);

    }

    return true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format = représentation interne du format DEX à consulter.   *
*                index  = index du type recherchée.                           *
*                                                                             *
*  Description : Extrait une chaîne de caractères d'une table DEX.            *
*                                                                             *
*  Retour      : Chaîne de caractères trouvées ou NULL en cas d'erreur.       *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

const char *get_string_from_dex_pool(const GDexFormat *format, uint32_t index)
{
    off_t pos;                              /* Tête de lecture             */
    string_id_item str_id;                  /* Identifiant de chaîne       */
    string_data_item str_data;              /* Description de chaîne       */

    if (index >= format->header.string_ids_size)
        return NULL;

    pos = format->header.string_ids_off + index * sizeof(string_id_item);

    if (!read_dex_string_id_item(format, &pos, &str_id))
        return NULL;

    pos = str_id.string_data_off;

    if (!read_dex_string_data_item(format, &pos, &str_data))
        return NULL;

    return (const char *)str_data.data;

}







/******************************************************************************
*                                                                             *
*  Paramètres  : format = représentation interne du format DEX à consulter.   *
*                index  = index du type recherchée.                           *
*                                                                             *
*  Description : Extrait une représentation de type d'une table DEX.          *
*                                                                             *
*  Retour      : Composant GLib créé.                                         *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GDataType *get_type_from_dex_pool(const GDexFormat *format, uint16_t index)
{
    off_t pos;                              /* Tête de lecture             */
    type_id_item type_id;                   /* Définition de la classe     */
    string_id_item str_id;                  /* Identifiant de chaîne       */
    string_data_item str_data;              /* Description de chaîne       */


    //printf("Tp Index :: %hd / %d\n", index, format->header.type_ids_size);


    if (index >= format->header.type_ids_size)
        return NULL;

    pos = format->header.type_ids_off + index * sizeof(type_id_item);

    if (!read_dex_type_id_item(format, &pos, &type_id))
        return NULL;




    pos = format->header.string_ids_off + type_id.descriptor_idx * sizeof(string_id_item);

    if (!read_dex_string_id_item(format, &pos, &str_id))
        return NULL;

    pos = str_id.string_data_off;

    if (!read_dex_string_data_item(format, &pos, &str_data))
        return NULL;


    //printf(">> String :: '%s'\n", str_data.data);


    return demangle_type(DGT_JAVA, (char *)str_data.data);

}





/******************************************************************************
*                                                                             *
*  Paramètres  : format = représentation interne du format DEX à consulter.   *
*                index  = index de la classe recherchée.                      *
*                                                                             *
*  Description : Extrait une représentation de classe d'une table DEX.        *
*                                                                             *
*  Retour      : Composant GLib créé.                                         *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GDataType *get_class_from_dex_pool(const GDexFormat *format, uint32_t index)
{
    GDataType *result;                      /* Instance à retourner        */
    off_t pos;                              /* Tête de lecture             */
    class_def_item class_def;               /* Définition de la classe     */

    if (index >= format->header.class_defs_size)
        return NULL;

    pos = format->header.class_defs_off + index * sizeof(class_def_item);

    if (!read_dex_class_def_item(format, &pos, &class_def))
        return NULL;



    result = NULL;


    return result;

}




/******************************************************************************
*                                                                             *
*  Paramètres  : format = représentation interne du format DEX à consulter.   *
*                index  = index du champ recherché.                           *
*                                                                             *
*  Description : Extrait une représentation de champ d'une table DEX.         *
*                                                                             *
*  Retour      : Composant GLib créé.                                         *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GBinVariable *get_field_from_dex_pool(const GDexFormat *format, uint32_t index)
{
    GBinVariable *result;                   /* Instance à retourner        */
    off_t pos;                              /* Tête de lecture             */
    field_id_item field_id;                 /* Description du champ        */
    GDataType *type;                        /* Type du champ               */
    const char *name;                       /* Désignation humaine         */
    GDataType *owner;                       /* Propriétaire du champ       */

    if (index >= format->header.field_ids_size)
        return NULL;

    pos = format->header.field_ids_off + index * sizeof(field_id_item);

    if (!read_dex_field_id_item(format, &pos, &field_id))
        return NULL;

    type = get_type_from_dex_pool(format, field_id.type_idx);

    name = get_string_from_dex_pool(format, field_id.name_idx);
    if (name == NULL) goto bad_name;
  
    result = g_binary_variable_new(type);
    g_binary_variable_set_name(result, name);

    if (field_id.class_idx != NO_INDEX)
    {
        owner = get_type_from_dex_pool(format, field_id.class_idx);
        if (owner == NULL) goto bad_owner;

        g_binary_variable_set_owner(result, owner);

    }

    return result;

 bad_owner:

    g_object_ref(G_OBJECT(type));
    g_object_unref(G_OBJECT(result));

 bad_name:

    g_object_unref(G_OBJECT(type));

    return NULL;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format = représentation interne du format DEX à consulter.   *
*                index  = index de la routine recherchée.                     *
*                                                                             *
*  Description : Extrait une représentation de routine d'une table DEX.       *
*                                                                             *
*  Retour      : Composant GLib créé.                                         *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GBinRoutine *get_routine_from_dex_pool(const GDexFormat *format, uint32_t index)
{
    GBinRoutine *result;                    /* Instance à retourner        */
    off_t pos;                              /* Tête de lecture             */
    method_id_item meth_id;                 /* Description de la méthode   */


    GDataType *type;

    string_id_item str_id;                  /* Identifiant de chaîne       */
    string_data_item str_data;              /* Description de chaîne       */


    proto_id_item proto_id;                 /* Information de prototypage  */
    type_list args;                         /* Liste des arguments         */
    uint32_t i;                             /* Boucle de parcours          */
    GBinVariable *arg;                      /* Argument reconstitué        */

    if (index >= format->header.method_ids_size)
        return NULL;

    pos = format->header.method_ids_off + index * sizeof(method_id_item);

    if (!read_dex_method_id_item(format, &pos, &meth_id))
        return NULL;






    type = get_type_from_dex_pool(format, meth_id.class_idx);

    /*
    if (type == NULL)
        printf("class is nil\n");

    else
        printf("class = '%s'\n", g_data_type_to_string(type));
    */

    /* Nom de la méthode */

    pos = format->header.string_ids_off + meth_id.name_idx * sizeof(string_id_item);

    if (!read_dex_string_id_item(format, &pos, &str_id))
        return NULL;

    pos = str_id.string_data_off;

    if (!read_dex_string_data_item(format, &pos, &str_data))
        return NULL;


    //printf("String :: '%s'\n", str_data.data);


    result = g_binary_routine_new();

    g_binary_routine_set_name(result, (char *)str_data.data);

    if (type != NULL)
        g_binary_routine_set_namespace(result, type);



    /*
    printf("  ####\n");
    printf("  ####  ROUTINE '%s'\n", g_binary_routine_to_string(result));
    printf("  ####\n");
    printf("  ####\n");
    */

    //printf("==>>> routine :: '%s'\n", g_binary_routine_to_string(result));







    /* Retour de la routine */

    pos = format->header.proto_ids_off + meth_id.proto_idx * sizeof(proto_id_item);

    if (!read_dex_proto_id_item(format, &pos, &proto_id))
        goto no_more_info;

    type = get_type_from_dex_pool(format, proto_id.return_type_idx);

    g_binary_routine_set_return_type(result, type);

    /* Arguments de la routine */

    pos = proto_id.parameters_off;

    if (read_dex_type_list(format, &pos, &args))
        for (i = 0; i < args.size; i++)
        {
            type = get_type_from_dex_pool(format, args.list[i].type_idx);
            if (type == NULL) continue;

            arg = g_binary_variable_new(type);
            g_binary_routine_add_arg(result, arg);

        }

 no_more_info:

    return result;

}