summaryrefslogtreecommitdiff
path: root/tools/d2c/d2c.c
blob: fddee6a0523f9a0ed8056c28ef178522b0442a71 (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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * d2c.c - compilation d'asbtractions d'instructions
 *
 * Copyright (C) 2018 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 Chrysalide.  If not, see <http://www.gnu.org/licenses/>.
 */


#include <assert.h>
#include <getopt.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


#include "coder.h"
#include "decl.h"



/* Affiche des indications sur l'utilisation du programme. */
static void show_usage(const char *);


/* Commandes générales supportées */
typedef enum _AvailableD2cCommand
{
    ADC_NONE,                               /* Aucune action renseignée    */
    ADC_COMPILE,                            /* Créations principales       */
    ADC_FINI                                /* Finition de fichier global  */

} AvailableD2cCommand;



/******************************************************************************
*                                                                             *
*  Paramètres  : argv0 = nombre du programme exécuté.                         *
*                                                                             *
*  Description : Affiche des indications sur l'utilisation du programme.      *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void show_usage(const char *argv0)
{
    printf("\n");

    printf("Usage: %s [options] <input file>\n", argv0);

    printf("\n");

    printf("General options:\n");

    printf("\n");

    printf("\t-h | --help\t\t\tDisplay this messsage.\n");
    printf("\t-x | --exec <cc|fini>\t\tRun as compiler mode or complete the generation.\n");
    printf("\t-o | --outdir <string>\t\tSpecify the main output directory.\n");
    printf("\t-t | --type <raw|format>\tSet the type of the input file.\n");
    printf("\t-a | --arch <string>\t\tDefine the archicture to handle (CamelCase allowed).\n");
    printf("\t-n | --name <string>\t\tSet the name of the archicture for source code (CamelCase allowed).\n");
    printf("\t-G | --guard <string>\t\tSet the base of the header macros guards.\n");
    printf("\t-e | --encoding <none|string>\tDefine one encoding prefix for files.\n");

    printf("\n");

    printf("\t--id-prefix <string>\t\tDefine a common prefix for all uniq identifiers.\n");
    printf("\t--id-expected <number>\t\tProvide the expected number of instructions.\n");

    printf("\n");

    printf("Raw specific options:\n");

    printf("\n");

    printf("\t--filename-reuse <length>\t\tSet the length of filename to include in identifiers (default = 0).\n");

    printf("\n");

    printf("Format specific options:\n");

    printf("\n");

    printf("\t--op-prefix <string>\t\tDefine a prefix to format operand type constants.\n");

    printf("\n");

}


/******************************************************************************
*                                                                             *
*  Paramètres  : argc = nombre d'arguments dans la ligne de commande.         *
*                argv = arguments de la ligne de commande.                    *
*                                                                             *
*  Description : Point d'entrée du programme.                                 *
*                                                                             *
*  Retour      : EXIT_SUCCESS si le prgm s'est déroulé sans encombres.        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

int main(int argc, char **argv)
{
    int result;                             /* Bilan à retourner           */
    bool need_help;                         /* Affichage de l'aide ?       */
    AvailableD2cCommand execute;            /* Exécution globale attendue  */
    output_info info;                       /* Regroupement d'infos utiles */
    pre_processor *pp;                      /* Pré-processeur avec macros  */
    bool has_error;                         /* Erreur dans la ligne de cmd.*/
    int index;                              /* Indice d'argument à traiter */
    int ret;                                /* Bilan d'une lecture d'arg.  */
    char *sep;                              /* Caratère '=' en coupure     */
    unsigned long int expected;             /* Nombre total de définitions */
    rented_coder *coder;                    /* Codeur à briffer & employer */
    bool status;                            /* Bilan d'une génération      */
    char *temp;                             /* Zone de travail temporaire  */
    char *base;                             /* Identification de fichier   */
    char *underscore;                       /* Dernier caractère '_'       */

    static struct option long_options[] = {

        { "help",           no_argument,        NULL,   'h' },
        { "exec",           required_argument,  NULL,   'x' },
        { "outdir",         required_argument,  NULL,   'o' },
        { "type",           required_argument,  NULL,   't' },
        { "arch",           required_argument,  NULL,   'a' },
        { "name",           required_argument,  NULL,   'n' },
        { "guard",          required_argument,  NULL,   'G' },
        { "encoding",       required_argument,  NULL,   'e' },

        { "id-prefix",      required_argument,  NULL,   0x100 },
        { "id-expected",    required_argument,  NULL,   0x101 },

        { "filename-reuse", required_argument,  NULL,   0x200 },

        { "op-prefix",      required_argument,  NULL,   0x300 },

        { NULL,             0,                  NULL,   0   }

    };

    /* Récupération des commandes */

    need_help = false;
    execute = ADC_NONE;
    memset(&info, 0, sizeof(info));

    pp = create_pre_processor();

    has_error = false;

    while (!has_error)
    {
        ret = getopt_long(argc, argv, "hx:o:t:a:n:G:e:", long_options, &index);
        if (ret == -1) break;

        switch (ret)
        {
            case 'h':
                need_help = true;
                break;

            case 'x':

                if (strcmp(optarg, "cc") == 0)
                    execute = ADC_COMPILE;

                else if (strcmp(optarg, "fini") == 0)
                    execute = ADC_FINI;

                else
                    has_error = true;

                break;

            case 'o':
                asprintf(&info.opcodes_dir, "%sopcodes%c", optarg, optarg[strlen(optarg) - 1]);
                break;

            case 't':

                if (strcmp(optarg, "raw") == 0)
                    info.type = IOT_RAW;

                else if (strcmp(optarg, "format") == 0)
                    info.type = IOT_FORMAT;

                else
                    has_error = true;

                break;

            case 'a':
                info.arch = optarg;
                break;

            case 'n':
                info.arch_cn = optarg;
                break;

            case 'G':
                info.guard = optarg;
                break;

            case 'e':

                if (strcmp(optarg, "none") == 0)
                    register_empty_encoding(pp);
 
                else
                {
                    sep = strchr(optarg, '=');
                    has_error = (sep == NULL);

                    if (!has_error)
                    {
                        *sep = '\0';
                        register_encoding(pp, optarg, sep + 1);
                    }

                }

                break;

            case 0x100:
                info.id_prefix = optarg;
                break;

            case 0x101:
                expected = strtoul(optarg, NULL, 10);
                info.id_len = (int)ceil(log(expected) / log(16));;
                break;

            case 0x200:
                info.filename_reuse = strtoul(optarg, NULL, 10);
                break;

            case 0x300:
                info.fmt_prefix = optarg;
                break;

            default:
                has_error = true;
                break;

        }

    }

    /* Vérifications supplémentaires */

    if (execute == ADC_NONE)
        has_error = true;

    if (info.opcodes_dir == NULL || info.arch == NULL || info.arch_cn == NULL || info.guard == NULL)
        has_error = true;

    if (need_help || has_error || (optind + 1) != argc)
    {
        show_usage(argv[0]);
        result = (need_help ? EXIT_SUCCESS : EXIT_FAILURE);
        goto exit;
    }

    /* Execution attendue */

    result = EXIT_FAILURE;

    switch (execute)
    {
        case ADC_COMPILE:

            coder = process_definition_file(argv[optind], pp);
            if (coder == NULL) goto exit;

            status = output_coder_body(coder, &info);
            if (!status) goto clean_exit;

            status = output_coder_identifier(coder, &info);
            if (!status) goto clean_exit;

            if (info.type == IOT_RAW)
            {
                status = output_coder_sub_identifier(coder, &info);
                if (!status) goto clean_exit;
            }

            status = output_coder_keyword(coder, &info);
            if (!status) goto clean_exit;

            status = output_coder_hooks(coder, &info);
            if (!status) goto clean_exit;

            status = output_coder_description(coder, &info);
            if (!status) goto clean_exit;

            break;

        case ADC_FINI:

            coder = NULL;

            temp = strdup(argv[optind]);
            base = basename(temp);

            underscore = rindex(base, '_');

            if (underscore == NULL && strcmp(base, "opcodes.h") == 0)
                status = fini_coder_opcodes_file(argv[optind], &info);

            else if (underscore != NULL && strcmp(underscore, "_opcodes.h") == 0)
                status = fini_coder_opcodes_file(argv[optind], &info);

            else if (strcmp(base, "identifiers.h") == 0)
                status = fini_coder_identifiers_file(argv[optind], &info);

            else if (strcmp(base, "subidentifiers.h") == 0 && info.type == IOT_RAW)
                status = fini_coder_sub_identifiers_file(argv[optind], &info);

            else if (strcmp(base, "keywords.h") == 0)
                status = fini_coder_keywords_file(argv[optind], &info);

            else if (strcmp(base, "hooks.h") == 0)
                status = fini_coder_hooks_file(argv[optind], &info);

            else if (strcmp(base, "descriptions.h") == 0)
                status = fini_coder_descriptions_file(argv[optind], &info);

            else
                status = false;

            free(temp);

            if (!status) goto exit;

            break;

        default:
            assert(false);
            break;

    }

    result = EXIT_SUCCESS;

 clean_exit:

    if (coder != NULL)
        delete_coder(coder);

 exit:

    if (info.opcodes_dir != NULL)
        free(info.opcodes_dir);

    return result;

}