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

/* OpenIDA - Outil d'analyse de fichiers binaires
 * pool.c - extraction des informations issues des tables globales
 *
 * Copyright (C) 2010 Cyrille Bagard
 *
 *  This file is part of OpenIDA.
 *
 *  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 "dex-int.h"
#include "../mangling/demangler.h"



/******************************************************************************
*                                                                             *
*  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   : -                                                            *
*                                                                             *
******************************************************************************/

GOpenidaType *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("Index :: 0x%04hx\n", index);


    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   : -                                                            *
*                                                                             *
******************************************************************************/

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

    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 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, uleb128_t index)
{
    GBinRoutine *result;                    /* Instance à retourner        */
    off_t pos;                              /* Tête de lecture             */
    method_id_item meth_id;                 /* Description de la méthode   */


    GOpenidaType *type;

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

    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_openida_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("==>>> routine :: '%s'\n", g_binary_routine_to_string(result));

    return result;

}