summaryrefslogtreecommitdiff
path: root/src/debug/jdwp/debugger.c
blob: efe00d0c8eb6960b3b551597480ad5258d10c823 (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * debugger.c - débogage d'une cible en Java.
 *
 * Copyright (C) 2010-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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
 */


#include "debugger.h"


#include <malloc.h>
#include <string.h>


#include <i18n.h>


#include "packet.h"
#include "tcp.h"
#include "../debugger-int.h"
#include "../stream.h"
#include "../../gui/panels/log.h"





/* Débogueur utilisant un serveur JAVA (instance) */
struct _GJavaDebugger
{
    GBinaryDebugger parent;                 /* A laisser en premier        */

    GDebugStream *stream;

};

/* Débogueur utilisant un serveur JAVA (classe) */
struct _GJavaDebuggerClass
{
    GBinaryDebuggerClass parent;            /* A laisser en premier        */

};





/* Initialise la classe du débogueur utilisant Java. */
static void g_java_debugger_class_init(GJavaDebuggerClass *);

/* Procède à l'initialisation du débogueur utilisant Java. */
static void g_java_debugger_init(GJavaDebugger *);

/* Procède au démarrage effectif de la session de débogage. */
static bool g_java_debugger_attach(GJavaDebugger *);

/* Fournit les identifiants de tous les threads actifs. */
static pid_t *g_java_debugger_list_all_threads(GJavaDebugger *, char ***, size_t *);

/* Fournit la liste des frames courantes d'un thread donné. */
static dbg_frame_t *g_java_debugger_get_frames_stack(GJavaDebugger *, pid_t, size_t *);



/* Indique le type défini par la GLib pour le débogueur java. */
G_DEFINE_TYPE(GJavaDebugger, g_java_debugger, G_TYPE_BINARY_DEBUGGER);



/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe de débogueur à initialiser.                   *
*                                                                             *
*  Description : Initialise la classe du débogueur utilisant Java.            *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_java_debugger_class_init(GJavaDebuggerClass *klass)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : debugger = instance de débogueur à préparer.                 *
*                                                                             *
*  Description : Procède à l'initialisation du débogueur utilisant Java.      *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_java_debugger_init(GJavaDebugger *debugger)
{
    GBinaryDebugger *parent;                /* Instance parente            */

    parent = G_BINARY_DEBUGGER(debugger);

    parent->attach = (attach_debugger_fc)g_java_debugger_attach;

    parent->all_threads = (dbg_list_all_threads_fc)g_java_debugger_list_all_threads;
    parent->frames_stack = (dbg_get_frames_stack_fc)g_java_debugger_get_frames_stack;

#if 0
    parent->run = (basic_debugger_fc)g_java_debugger_run;
    parent->resume = (resume_debugger_fc)g_java_debugger_resume;
    parent->kill = (basic_debugger_fc)g_java_debugger_kill;
#endif


}


/******************************************************************************
*                                                                             *
*  Paramètres  : binary  = binaire représenter à déboguer.                    *
*                options = paramètres destinés au débogage.                   *
*                                                                             *
*  Description : Crée un débogueur utilisant un serveur Java distant.         *
*                                                                             *
*  Retour      : Instance de débogueur mise en place ou NULL.                 *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GBinaryDebugger *g_java_debugger_new(GLoadedBinary *binary, void *options)
{
    GBinaryDebugger *result;                /* Débogueur à retourner       */

    result = g_object_new(G_TYPE_JAVA_DEBUGGER, NULL);


    G_JAVA_DEBUGGER(result)->stream = g_jdwp_tcp_client_new("localhost", "9000");

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : debugger = instance du module de débogage chargé.            *
*                                                                             *
*  Description : Procède au démarrage effectif de la session de débogage.     *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool g_java_debugger_attach(GJavaDebugger *debugger)
{
    bool result;                            /* Bilan à retourner           */
    GDebugPacket *req;                      /* Requête à formuler          */
    GDebugPacket *ret;                      /* Obtention de la réponse     */
    jdwp_payload *payload;                  /* Charge utile d'une réponse  */

    req = NULL;
    ret = NULL;

    /* Connexion physique */

    result = g_debug_stream_connect(debugger->stream);
    if (!result) goto gjda_error;

    result = false;

    /* Demande de version */

    req = g_debug_stream_get_free_packet(debugger->stream);

    g_jdwp_packet_set_request_header(G_JDWP_PACKET(req),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_VERSION);

    if (!g_debug_stream_send_packet(debugger->stream, req))
        goto gjda_req_error;

    ret = g_debug_stream_recv_packet(debugger->stream,
                                     (filter_packet_fc)g_jdwp_packet_is_reply, req);
    if (!ret) goto gjda_req_error;

    if (!g_jdwp_packet_parse_payload(G_JDWP_PACKET(ret),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_VERSION))
        goto gjda_ret_error;

    payload = g_jdwp_packet_get_payload(G_JDWP_PACKET(ret));

    log_variadic_message(LMT_INFO, _("The debugger is '%s' (JRE %d.%d; VM %s)."),
                         payload->vs_reply.description.value,
                         payload->vs_reply.jdwp_major, payload->vs_reply.jdwp_minor,
                         payload->vs_reply.vm_version.value);

    g_debug_stream_mark_packet_as_free(debugger->stream, req);
    g_debug_stream_mark_packet_as_free(debugger->stream, ret);

    /* Récupération des tailles d'identifiants */

    req = g_debug_stream_get_free_packet(debugger->stream);

    g_jdwp_packet_set_request_header(G_JDWP_PACKET(req),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_ID_SIZES);

    if (!g_debug_stream_send_packet(debugger->stream, req))
        goto gjda_req_error;

    ret = g_debug_stream_recv_packet(debugger->stream,
                                     (filter_packet_fc)g_jdwp_packet_is_reply, req);
    if (!ret) goto gjda_req_error;

    if (!g_jdwp_packet_parse_payload(G_JDWP_PACKET(ret),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_ID_SIZES))
        goto gjda_ret_error;

    payload = g_jdwp_packet_get_payload(G_JDWP_PACKET(ret));

    g_jdwp_packet_set_sizes(G_JDWP_PACKET(ret), &payload->sz_reply);

    result = true;

 gjda_ret_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, ret);

 gjda_req_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, req);

 gjda_error:

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : debugger = instance du module de débogage chargé.            *
*                names    = désignations de tous les threads ou NULL. [OUT]   *
*                count    = nombre de threads actifs. [OUT]                   *
*                                                                             *
*  Description : Fournit les identifiants de tous les threads actifs.         *
*                                                                             *
*  Retour      : Liste des threads décomptés.                                 *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static pid_t *g_java_debugger_list_all_threads(GJavaDebugger *debugger, char ***names, size_t *count)
{
    pid_t *result;                          /* Bilan à retourner           */
    GDebugPacket *req;                      /* Requête à formuler          */
    GDebugPacket *ret;                      /* Obtention de la réponse     */
    jdwp_payload *payload;                  /* Charge utile d'une réponse  */
    size_t i;                               /* Boucle de parcours          */
    GDebugPacket *sub_req;                  /* Requête à formuler          */
    jdwp_cmd_thread_name_request ident;     /* Indentification d'un thread */
    GDebugPacket *sub_ret;                  /* Obtention de la réponse     */
    jdwp_payload *sub_payload;              /* Charge utile d'une réponse  */

    result = NULL;
    *count = 0;

    req = g_debug_stream_get_free_packet(debugger->stream);

    g_jdwp_packet_set_request_header(G_JDWP_PACKET(req),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_ALL_THREADS);

    if (!g_debug_stream_send_packet(debugger->stream, req))
        goto gjdlat_req_error;

    ret = g_debug_stream_recv_packet(debugger->stream,
                                     (filter_packet_fc)g_jdwp_packet_is_reply, req);
    if (!ret) goto gjdlat_req_error;

    if (!g_jdwp_packet_parse_payload(G_JDWP_PACKET(ret),
                                     JDWP_CST_VIRTUAL_MACHINE, JDWP_CMD_VM_ALL_THREADS))
        goto gjdlat_ret_error;

    payload = g_jdwp_packet_get_payload(G_JDWP_PACKET(ret));

    *count = payload->th_reply.count;
    result = (pid_t *)calloc(*count, sizeof(pid_t));

    if (names != NULL)
        *names = (char **)calloc(*count, sizeof(char *));

    for (i = 0; i < *count; i++)
    {
        result[i] = (pid_t)payload->th_reply.threads[i];

        if (names != NULL)
        {
            sub_req = g_debug_stream_get_free_packet(debugger->stream);

            g_jdwp_packet_set_request_header(G_JDWP_PACKET(sub_req),
                                             JDWP_CST_THREAD_REFERENCE, JDWP_CMD_THREAD_NAME);

            ident.id = result[i];
            g_jdwp_packet_set_payload(G_JDWP_PACKET(sub_req), (jdwp_payload *)&ident);

            if (!g_debug_stream_send_packet(debugger->stream, sub_req))
            {
                g_debug_stream_mark_packet_as_free(debugger->stream, sub_req);
                (*names)[i] = strdup("???");
                continue;
            }

            sub_ret = g_debug_stream_recv_packet(debugger->stream,
                                                 (filter_packet_fc)g_jdwp_packet_is_reply, sub_req);
            if (!sub_ret)
            {
                g_debug_stream_mark_packet_as_free(debugger->stream, sub_req);
                (*names)[i] = strdup("???");
                continue;
            }

            if (!g_jdwp_packet_parse_payload(G_JDWP_PACKET(sub_ret),
                                             JDWP_CST_THREAD_REFERENCE, JDWP_CMD_THREAD_NAME))
            {
                g_debug_stream_mark_packet_as_free(debugger->stream, sub_req);
                g_debug_stream_mark_packet_as_free(debugger->stream, sub_ret);
                (*names)[i] = strdup("???");
                continue;
            }

            sub_payload = g_jdwp_packet_get_payload(G_JDWP_PACKET(sub_ret));

            (*names)[i] = strdup(sub_payload->th_name.name.value);

            g_debug_stream_mark_packet_as_free(debugger->stream, sub_req);
            g_debug_stream_mark_packet_as_free(debugger->stream, sub_ret);

        }

    }

 gjdlat_ret_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, ret);

 gjdlat_req_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, req);

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : debugger = instance du module de débogage chargé.            *
*                thread   = thread concerné par l'analyse.                    *
*                count    = nombre de frames en place. [OUT]                  *
*                                                                             *
*  Description : Fournit la liste des frames courantes d'un thread donné.     *
*                                                                             *
*  Retour      : Liste des frames trouvées.                                   *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static dbg_frame_t *g_java_debugger_get_frames_stack(GJavaDebugger *debugger, pid_t thread, size_t *count)
{
    dbg_frame_t *result;                    /* Bilan à retourner           */
    GDebugPacket *req;                      /* Requête à formuler          */
    jdwp_cmd_thread_frames_request frames;  /* Ciblage du thread désiré    */
    GDebugPacket *ret;                      /* Obtention de la réponse     */
    jdwp_payload *payload;                  /* Charge utile d'une réponse  */
    size_t i;                               /* Boucle de parcours          */

    result = NULL;
    *count = 0;

    req = g_debug_stream_get_free_packet(debugger->stream);

    g_jdwp_packet_set_request_header(G_JDWP_PACKET(req),
                                     JDWP_CST_THREAD_REFERENCE, JDWP_CMD_THREAD_FRAMES);

    frames.id = thread;
    frames.start = 0;
    frames.length = ALL_FRAMES;
    g_jdwp_packet_set_payload(G_JDWP_PACKET(req), (jdwp_payload *)&frames);

    if (!g_debug_stream_send_packet(debugger->stream, req))
        goto gjdgsf_req_error;

    ret = g_debug_stream_recv_packet(debugger->stream,
                                     (filter_packet_fc)g_jdwp_packet_is_reply, req);
    if (!ret) goto gjdgsf_req_error;

    if (!g_jdwp_packet_parse_payload(G_JDWP_PACKET(ret),
                                     JDWP_CST_THREAD_REFERENCE, JDWP_CMD_THREAD_FRAMES))
        goto gjdgsf_ret_error;

    payload = g_jdwp_packet_get_payload(G_JDWP_PACKET(ret));

    *count = payload->th_frames.count;
    result = (dbg_frame_t *)calloc(*count, sizeof(dbg_frame_t));

    for (i = 0; i < *count; i++)
    {
        /* TODO */
        result[i].addr = payload->th_frames.frames[i].location.index;

    }

 gjdgsf_ret_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, ret);

 gjdgsf_req_error:

    g_debug_stream_mark_packet_as_free(debugger->stream, req);

    return result;

}