summaryrefslogtreecommitdiff
path: root/src/arch/mips/operand.c
blob: 13ca1306c36b137eb4e1cc31377607c0b26286ad (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * operand.h - prototypes pour la gestion des operandes de l'architecture MIPS
 *
 * Copyright (C) 2009-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 "operand.h"


#include <stdarg.h>


#include "../immediate.h"
#include "../operand-int.h"
#include "../../common/endianness.h"
#include "../../common/extstr.h"



/* ------------------------ COQUILLE VIDE POUR OPERANDE MIPS ------------------------ */


/* Définition d'un opérande de la MIPS (instance) */
struct _GMipsOperand
{
    GArchOperand parent;                    /* Instance parente            */

};


/* Définition d'un opérande de la MIPS (classe) */
struct _GMipsOperandClass
{
    GArchOperandClass parent;               /* Classe parente              */

};


/* Initialise la classe des opérandes MIPS de base. */
static void g_mips_operand_class_init(GMipsOperandClass *);

/* Initialise une instance d'opérande de base pour MIPS. */
static void g_mips_operand_init(GMipsOperand *);



/* ----------------------- OPERANDES OFFRANT UN REGISTRE MIPS ----------------------- */


/* Définition d'un opérande visant un registre MIPS (instance) */
struct _GMipsRegisterOperand
{
    GMipsOperand parent;                    /* Instance parente            */

    mips_register *reg;                     /* Registre représenté         */

};


/* Définition d'un opérande visant un registre MIPS (classe) */
struct _GMipsRegisterOperandClass
{
    GMipsOperandClass parent;               /* Classe parente              */

};


/* Initialise la classe des opérandes de registre MIPS. */
static void g_mips_register_operand_class_init(GMipsRegisterOperandClass *);

/* Initialise une instance d'opérande de registre MIPS. */
static void g_mips_register_operand_init(GMipsRegisterOperand *);



/* -------------------------- OPERANDES DE CONTENU MEMOIRE -------------------------- */


/* Définition d'un opérande MIPS pointeur un contenu mémoire (instance) */
struct _GMipsMemContentOperand
{
    GMipsOperand parent;                    /* Instance parente            */

    mips_register *base;                    /* Base de la lecture          */
    GArchOperand *offset;                   /* Décallage à appliquer       */

};


/* Définition d'un opérande MIPS pointeur un contenu mémoire (classe) */
struct _GMipsMemContentOperandClass
{
    GMipsOperandClass parent;               /* Classe parente              */

};


/* Initialise la classe des opérandes MIPS de contenu mémoire. */
static void g_mips_mem_content_operand_class_init(GMipsMemContentOperandClass *);

/* Initialise une instance d'opérande MIPS de contenu mémoire. */
static void g_mips_mem_content_operand_init(GMipsMemContentOperand *);



/* ----------------------------- OPERANDES DE DECALLAGE ----------------------------- */


/* Définition d'un opérande MIPS de décallage (instance) */
struct _GMipsOffsetOperand
{
    GMipsOperand parent;                    /* Instance parente            */

    GArchOperand *offset;                   /* Décallage à appliquer       */

};


/* Définition d'un opérande MIPS de décallage (classe) */
struct _GMipsOffsetOperandClass
{
    GMipsOperandClass parent;               /* Classe parente              */

};


/* Initialise la classe des opérandes MIPS de décallage. */
static void g_mips_offset_operand_class_init(GMipsOffsetOperandClass *);

/* Initialise une instance d'opérande MIPS de décallage. */
static void g_mips_offset_operand_init(GMipsOffsetOperand *);



/* ---------------------------------------------------------------------------------- */
/*                          COQUILLE VIDE POUR OPERANDE MIPS                          */
/* ---------------------------------------------------------------------------------- */


/* Indique le type défini par la GLib pour un opérande de MIPS. */
G_DEFINE_TYPE(GMipsOperand, g_mips_operand, G_TYPE_ARCH_OPERAND);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des opérandes MIPS de base.             *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_operand_class_init(GMipsOperandClass *klass)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : operand = instance à initialiser.                            *
*                                                                             *
*  Description : Initialise une instance d'opérande de base pour MIPS.        *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_operand_init(GMipsOperand *operand)
{

}



/* ---------------------------------------------------------------------------------- */
/*                         OPERANDES OFFRANT UN REGISTRE MIPS                         */
/* ---------------------------------------------------------------------------------- */


/* Indique le type défini par la GLib pour un opérande de registre MIPS. */
G_DEFINE_TYPE(GMipsRegisterOperand, g_mips_register_operand, G_TYPE_MIPS_OPERAND);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des opérandes de registre MIPS.         *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_register_operand_class_init(GMipsRegisterOperandClass *klass)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : operand = instance à initialiser.                            *
*                                                                             *
*  Description : Initialise une instance d'opérande de registre MIPS.         *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_register_operand_init(GMipsRegisterOperand *operand)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : index = identifiant du registre à représenter.               *
*                                                                             *
*  Description : Crée un opérande visant un registre MIPS.                    *
*                                                                             *
*  Retour      : Opérande mis en place.                                       *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GArchOperand *g_mips_register_operand_new(bin_t index)
{
    GMipsRegisterOperand *result;           /* Structure à retourner       */
    mips_register *reg;                     /* Registre lu                 */

    reg = get_mips_register(index);

    if (reg != NULL)
    {
        result = g_object_new(G_TYPE_MIPS_REGISTER_OPERAND, NULL);

        result->reg = reg;

    }
    else result = NULL;

    return G_ARCH_OPERAND(result);

}


#if 0
/******************************************************************************
*                                                                             *
*  Paramètres  : operand = opérande à traiter.                                *
*                format  = format du binaire manipulé.                        *
*                syntax  = type de représentation demandée.                   *
*                                                                             *
*  Description : Traduit un opérande en version humainement lisible.          *
*                                                                             *
*  Retour      : Chaîne de caractères à libérer de la mémoire.                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static char *g_mips_register_operand_get_text(const GMipsRegisterOperand *operand, const GExeFormat *format, AsmSyntax syntax)
{
    char *result;                           /* Chaîne à retourner          */

    result = mips_register_as_text(operand->reg, syntax);

    return result;

}
#endif


/******************************************************************************
*                                                                             *
*  Paramètres  : operand = opérande à consulter.                              *
*                                                                             *
*  Description : Fournit le registre MIPS représenté.                         *
*                                                                             *
*  Retour      : Régistre MIPS représenté.                                    *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

const mips_register *g_mips_register_operand_get_register(const GMipsRegisterOperand *operand)
{
    return operand->reg;

}



/* ---------------------------------------------------------------------------------- */
/*                            OPERANDES DE CONTENU MEMOIRE                            */
/* ---------------------------------------------------------------------------------- */


/* Indique le type défini par la GLib pour un opérande MIPS de contenu mémoire. */
G_DEFINE_TYPE(GMipsMemContentOperand, g_mips_mem_content_operand, G_TYPE_MIPS_OPERAND);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des opérandes MIPS de contenu mémoire.  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_mem_content_operand_class_init(GMipsMemContentOperandClass *klass)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : operand = instance à initialiser.                            *
*                                                                             *
*  Description : Initialise une instance d'opérande MIPS de contenu mémoire.  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_mem_content_operand_init(GMipsMemContentOperand *operand)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : index  = indice du registre de base.                         *
*                offset = décallage supplémentaire à appliquer.               *
*                                                                             *
*  Description : Crée un opérande MIPS de contenu mémoire.                    *
*                                                                             *
*  Retour      : Opérande mis en place.                                       *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GArchOperand *g_mips_mem_content_operand_new(bin_t index, int16_t offset)
{
    GMipsMemContentOperand *result;         /* Structure à retourner       */
    mips_register *base;                    /* Registre lu                 */

    base = get_mips_register(index);

    if (base != NULL)
    {
        result = g_object_new(G_TYPE_MIPS_MEM_CONTENT_OPERAND, NULL);

        result->base = base;
        result->offset = g_imm_operand_new_from_value(MDS_16_BITS_SIGNED, offset);

    }
    else result = NULL;

    return G_ARCH_OPERAND(result);

}


#if 0
/******************************************************************************
*                                                                             *
*  Paramètres  : operand = opérande à traiter.                                *
*                format  = format du binaire manipulé.                        *
*                syntax  = type de représentation demandée.                   *
*                                                                             *
*  Description : Traduit un opérande en version humainement lisible.          *
*                                                                             *
*  Retour      : Chaîne de caractères à libérer de la mémoire.                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static char *g_mips_mem_content_operand_get_text(const GMipsMemContentOperand *operand, const GExeFormat *format, AsmSyntax syntax)
{
    char *result;                           /* Chaîne à retourner          */
    char *tmp;                              /* Déplacement                 */

    result = mips_register_as_text(operand->base, syntax);

    result = strprep(result, "[");

    if (g_imm_operand_is_negative(operand->offset)) result = stradd(result, "-");
    else result = stradd(result, "+");

    /* FIXME !
    tmp = g_arch_operand_get_text(G_ARCH_OPERAND(operand->offset), format, syntax);
    result = stradd(result, tmp);
    free(tmp);
    */

    result = stradd(result, "]");

    return result;

}
#endif



/* ---------------------------------------------------------------------------------- */
/*                               OPERANDES DE DECALLAGE                               */
/* ---------------------------------------------------------------------------------- */


/* Indique le type défini par la GLib pour un opérande MIPS de décallage. */
G_DEFINE_TYPE(GMipsOffsetOperand, g_mips_offset_operand, G_TYPE_MIPS_OPERAND);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des opérandes MIPS de décallage.        *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_offset_operand_class_init(GMipsOffsetOperandClass *klass)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : operand = instance à initialiser.                            *
*                                                                             *
*  Description : Initialise une instance d'opérande MIPS de décallage.        *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_mips_offset_operand_init(GMipsOffsetOperand *operand)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : offset = valeur de décallage à représenter.                  *
*                                                                             *
*  Description : Crée un opérande MIPS de décallage.                          *
*                                                                             *
*  Retour      : Opérande mis en place.                                       *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GArchOperand *g_mips_offset_operand_new(int16_t offset)
{
    GMipsOffsetOperand *result;             /* Structure à retourner       */

    result = g_object_new(G_TYPE_MIPS_OFFSET_OPERAND, NULL);

    result->offset = g_imm_operand_new_from_value(MDS_16_BITS_SIGNED, offset);

    return G_ARCH_OPERAND(result);

}


#if 0
/******************************************************************************
*                                                                             *
*  Paramètres  : operand = opérande à traiter.                                *
*                format  = format du binaire manipulé.                        *
*                syntax  = type de représentation demandée.                   *
*                                                                             *
*  Description : Traduit un opérande en version humainement lisible.          *
*                                                                             *
*  Retour      : Chaîne de caractères à libérer de la mémoire.                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static char *g_mips_offset_operand_get_text(const GMipsOffsetOperand *operand, const GExeFormat *format, AsmSyntax syntax)
{
    return strdup("");/* FIXME g_arch_operand_get_text(G_ARCH_OPERAND(operand->offset), format, syntax); */

}
#endif



/* ---------------------------------------------------------------------------------- */
/*                           AIDE A LA CREATION D'OPERANDES                           */
/* ---------------------------------------------------------------------------------- */


/******************************************************************************
*                                                                             *
*  Paramètres  : instr = instruction dont la définition est à compléter. [OUT]*
*                data  = flux de données à analyser.                          *
*                pos   = position courante dans ce flux. [OUT]                *
*                len   = taille totale des données à analyser.                *
*                count = type du premier opérande.                            *
*                ...   = type des opérandes à interpréter.                    *
*                                                                             *
*  Description : Procède à la lecture de deux opérandes donnés.               *
*                                                                             *
*  Retour      : Bilan de l'opération : true en cas de succès, false sinon.   *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool mips_read_n_operands(GArchInstruction *instr, const bin_t *data, off_t *pos, off_t len, unsigned int count, ...)
{
    bool result;                            /* Statut à retourner          */
    uint32_t code;                          /* Code binaire à décoder      */
    MipsOperandType type;                   /* Type d'opérand interprétée  */
    va_list ap;                             /* Arguments potentiels        */
    unsigned int i;                         /* Boucle de parcours          */
    bin_t reg;                              /* Identifiant de registre     */
    GArchOperand *op;                       /* Opérande décodé             */

    if (!read_u32(&code, data, pos, len, SRE_LITTLE/* FIXME */))
        return false;

    result = true;

    va_start(ap, count);

    for (i = 0; i < count; i++)
    {
        type = va_arg(ap, MipsOperandType);

        switch (type)
        {
            case MIPS_OTP_RS:
                reg = (code & 0x3e00000) >> 21;
                op = g_mips_register_operand_new(reg);
                break;

            case MIPS_OTP_RT:
                reg = (code & 0x1f0000) >> 16;
                op = g_mips_register_operand_new(reg);
                break;

            case MIPS_OTP_RD:
                reg = (code & 0xf800) >> 11;
                op = g_mips_register_operand_new(reg);
                break;

            case MIPS_OTP_IMMEDIATE:
                op = g_imm_operand_new_from_value(MDS_16_BITS, code & 0xffff);
                break;




            case MIPS_OTP_MEM_CONTENT:
                op = g_mips_mem_content_operand_new((code & 0x3e00000) >> 21, code & 0xffff);
                break;

            case MIPS_OTP_OFFSET:
                op = g_mips_offset_operand_new(code & 0xffff);
                break;

            case MIPS_OTP_SA:
                op = g_imm_operand_new_from_value(MDS_8_BITS, (code & 0x7c0) >> 6);
                break;

            default:
                op = NULL;
                break;

        }

        if (op == NULL) result = false;
        else g_arch_instruction_attach_extra_operand(instr, op);

    }

    va_end(ap);

    return result;

}