summaryrefslogtreecommitdiffstats
path: root/strpool.c
blob: 27595d3dc3b5a21ad99d3f31b80c6fc6c4786f38 (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
634
635
636
/*-*- Mode: C; c-basic-offset: 8 -*-*/

/***
    This file is part of libatasmart.

    Copyright 2008 Lennart Poettering

    libatasmart is free software; you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as
    published by the Free Software Foundation, either version 2.1 of the
    License, or (at your option) any later version.

    libatasmart 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with libatasmart. If not, If not, see
    <http://www.gnu.org/licenses/>.
***/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <assert.h>
#include <errno.h>

typedef struct item {
        char *cnt;
        size_t cntl;
        char *text;
        size_t size;
        unsigned idx;
        struct item *suffix_of;
        struct item *next;
} item;

static void free_items(struct item *first) {

        while (first) {
                struct item *n = first->next;

                free(first->cnt);
                free(first->text);
                free(first);

                first = n;
        }
}

static void find_suffixes(struct item *first) {
        struct item *i, *j;

        for (i = first; i; i = i->next) {
                int right = 0;

                for (j = first; j; j = j->next) {

                        if (i == j) {
                                right = 1;
                                continue;
                        }

                        if (i->size > j->size)
                                continue;

                        if (i->size == j->size && !right)
                                continue;

                        if (memcmp(i->text, j->text+j->size-i->size, i->size) != 0)
                                continue;

                        i->suffix_of = j;
                        break;
                }
        }
}

static void fill_idx(struct item *first) {
        struct item *i;
        unsigned k = 0;

        for (i = first; i; i = i->next) {
                if (i->suffix_of)
                        continue;

                i->idx = k;
                k += i->size+1;
        }

        for (i = first; i; i = i->next) {
                struct item *p;

                if (!i->suffix_of)
                        continue;

                for (p = i->suffix_of; p->suffix_of; p = p->suffix_of)
                        ;

                assert(i->size <= p->size);
                assert(memcmp(i->text, p->text + p->size - i->size, i->size) == 0);

                i->idx = p->idx + p->size - i->size;
        }
}

static void dump_string(FILE *out, struct item *i) {
        const char *t;

        fputs("\n\t\"", out);

        for (t = i->text; t < i->text+i->size; t++) {
                switch (*t) {
                        case '\\':
                                fputs("\\\\", out);
                                break;
                        case '\"':
                                fputs("\\\"", out);
                                break;
                        case '\'':
                                fputs("\\'", out);
                                break;
                        case '\n':
                                fputs("\\n\"\n\t\"", out);
                                break;
                        case '\r':
                                fputs("\\r", out);
                                break;
                        case '\b':
                                fputs("\\b", out);
                                break;
                        case '\t':
                                fputs("\\t", out);
                                break;
                        case '\f':
                                fputs("\\f", out);
                                break;
                        case '\a':
                                fputs("\\f", out);
                                break;
                        case '\v':
                                fputs("\\v", out);
                                break;
                        default:
                                if (*t >= 32 && *t < 127)
                                        putc(*t, out);
                                else
                                        fprintf(out, "\\x%02x", *t);
                                break;
                }
        }

        fputs("\\0\"", out);
}

static void dump_text(FILE *out, struct item *first) {
        struct item *i;

        for (i = first; i; i = i->next) {

                if (i->cnt)
                        fwrite(i->cnt, 1, i->cntl, out);

                /* We offset all indexes by one, to avoid clashes
                 * between index 0 and NULL */
                fprintf(out, "((const char*) %u)", i->idx+1);
        }
}

static void dump_pool(FILE *out, struct item *first) {
        struct item *i;
        int saved_rel=-1, saved_bytes=0, saved_strings=0;

        for (i = first; i; i = i->next) {
                saved_rel++;

                if (i->suffix_of) {
                        saved_strings ++;
                        saved_bytes += i->size;
                }
        }

        fprintf(out, "/* Saved %i relocations, saved %i strings (%i b) due to suffix compression. */\n", saved_rel, saved_strings, saved_bytes);

        fputs("static const char _strpool_[] =", out);

        for (i = first; i; i = i->next) {

                if (i->suffix_of)
                        fputs("\n\t/*** Suppressed due to suffix: ", out);

                dump_string(out, i);

                if (i->suffix_of)
                        fputs(" ***/", out);

        }

        fputs(";\n", out);
}

static char *append(char *r, size_t *rl, char **c, size_t n) {

        r = realloc(r, *rl + n);

        if (!r)
                abort();

        memcpy(r + *rl, *c, n);

        *rl += n;
        *c += n;

        return r;
}

static int parse_hex_digit(char c) {

        if (c >= '0' && c <= '9')
                return c - '0' + 0x0;

        if (c >= 'a' && c <= 'f')
                return c - 'a' + 0xA;

        if (c >= 'A' && c <= 'F')
                return c - 'A' + 0xA;

        return -1;
}

static int parse_hex(const char *t, char *r) {
        int a, b = 0;
        int k = 1;

        if ((a = parse_hex_digit(t[0])) < 0)
                return -1;

        if (t[1]) {
                if ((b = parse_hex_digit(t[1])) < 0)
                        b = 0;
                else
                        k = 2;
        }

        *r = (a << 4) | b;
        return k;
}

static int parse_oct_digit(char c) {

        if (c >= '0' && c <= '7')
                return c - '0';

        return -1;
}

static int parse_oct(const char *t, char *r) {
        int a, b = 0, c = 0, m;
        int k = 1;

        if ((a = parse_oct_digit(t[0])) < 0)
                return -1;

        if (t[1]) {

                if ((b = parse_oct_digit(t[1])) < 0)
                        b = 0;
                else {
                        k = 2;

                        if (t[2]) {

                                if ((c = parse_oct_digit(t[2])) < 0)
                                        c = 0;
                                else
                                        k = 3;
                        }
                }
        }

        m = (a << 6) | (b << 3) | c;

        if (m > 0xFF)
                return -1;

        *r = (char) m;

        return k;
}

static int parse(FILE *in, const char *fname, struct item **rfirst, char **remain, size_t *remain_size) {

        int enabled = 0;
        enum {
                STATE_TEXT,
                STATE_COMMENT_C,
                STATE_COMMENT_CPP,
                STATE_STRING,
                STATE_CHAR,
        } state = STATE_TEXT;

        char *r = NULL;
        size_t rl = 0;
        char *cnt = NULL;
        size_t cntl = 0;
        struct item *first = NULL, *last = NULL;
        unsigned nline = 0;
        unsigned pool_started_line = 0;
        *rfirst = NULL;

        if (!fname)
                fname = "<stdin>";

        for (;;) {
                char t[1024], *c;
                int done = 0;

                if (!(fgets(t, sizeof(t), in))) {

                        if (feof(in))
                                break;

                        fprintf(stderr, "Failed to read: %s\n", strerror(errno));
                        goto fail;
                }

                nline++;

                c = t;

                do {

/*             fprintf(stderr, "enabled %i, state %i, cnt %i, remaining string is: %s", enabled, state, !!cnt, c); */

                        switch (state) {

                                case STATE_TEXT:

                                        if (!strncmp(c, "/*", 2)) {
                                                state = STATE_COMMENT_C;
                                                r = append(r, &rl, &c, 2);
                                        } else if (!strncmp(c, "//", 2)) {
                                                state = STATE_COMMENT_CPP;
                                                r = append(r, &rl, &c, 2);
                                        } else if (*c == '"') {
                                                state = STATE_STRING;

                                                if (enabled) {
                                                        cnt = r;
                                                        cntl = rl;

                                                        r = NULL;
                                                        rl = 0;

                                                        c ++;
                                                } else
                                                        r = append(r, &rl, &c, 1);
                                        } else if (*c == '\'') {
                                                state = STATE_CHAR;
                                                r = append(r, &rl, &c, 1);
                                        } else if (*c == 0)
                                                done = 1;
                                        else
                                                r = append(r, &rl, &c, 1);

                                        break;

                                case STATE_COMMENT_C:

                                        if (!strncmp(c, "*/", 2)) {
                                                state = STATE_TEXT;
                                                r = append(r, &rl, &c, 2);
                                        } else if (!strncmp(c, "%STRINGPOOLSTART%", 17)) {
                                                enabled = 1;
                                                pool_started_line = nline;
                                                r = append(r, &rl, &c, 17);
                                        } else if (!strncmp(c, "%STRINGPOOLSTOP%", 16)) {
                                                enabled = 0;
                                                r = append(r, &rl, &c, 16);
                                        } else if (*c == 0)
                                                done = 1;
                                        else
                                                r = append(r, &rl, &c, 1);

                                        break;

                                case STATE_COMMENT_CPP:

                                        if (*c == '\n' || *c == '\r') {
                                                state = STATE_TEXT;
                                                r = append(r, &rl, &c, 1);
                                        } else if (!strncmp(c, "%STRINGPOOLSTART%", 17)) {
                                                enabled = 1;
                                                pool_started_line = nline;
                                                r = append(r, &rl, &c, 17);
                                        } else if (!strncmp(c, "%STRINGPOOLSTOP%", 16)) {
                                                enabled = 0;
                                                r = append(r, &rl, &c, 16);
                                        } else if (*c == 0) {
                                                state = STATE_TEXT;
                                                done = 1;
                                        } else
                                                r = append(r, &rl, &c, 1);

                                        break;

                                case STATE_STRING:
                                case STATE_CHAR:

                                        if ((*c == '\'' && state == STATE_CHAR) || (*c == '"' && state == STATE_STRING)) {

                                                if (state == STATE_STRING && enabled) {
                                                        struct item *i;
                                                        i = malloc(sizeof(struct item));

                                                        if (!i)
                                                                abort();

                                                        i->cnt = cnt;
                                                        i->cntl = cntl;

                                                        cnt = NULL;
                                                        cntl = 0;

                                                        i->text = r;
                                                        i->size = rl;

                                                        r = NULL;
                                                        rl = 0;

                                                        i->next = NULL;

                                                        if (last)
                                                                last->next = i;
                                                        else
                                                                first = i;

                                                        last = i;

                                                        c++;

                                                } else
                                                        r = append(r, &rl, &c, 1);

                                                state = STATE_TEXT;

                                        } else if (*c == '\\') {

                                                char d;
                                                char l = 2;

                                                switch (c[1]) {

                                                        case '\\':
                                                        case '"':
                                                        case '\'':
                                                        case '?':
                                                                d = c[1];
                                                                break;
                                                        case 'n':
                                                                d = '\n';
                                                                break;
                                                        case 'r':
                                                                d = '\r';
                                                                break;
                                                        case 'b':
                                                                d = '\b';
                                                                break;
                                                        case 't':
                                                                d = '\t';
                                                                break;
                                                        case 'f':
                                                                d = '\f';
                                                                break;
                                                        case 'a':
                                                                d = '\a';
                                                                break;
                                                        case 'v':
                                                                d = '\v';
                                                                break;
                                                        case 'x': {
                                                                int k;
                                                                if ((k = parse_hex(c+2, &d)) < 0) {
                                                                        fprintf(stderr, "%s:%u: Parse failure: invalid hexadecimal escape sequence.\n", fname, nline);
                                                                        goto fail;
                                                                }
                                                                l = 2 + k;
                                                                break;
                                                        }
                                                        case '0':
                                                        case '1':
                                                        case '2':
                                                        case '3':
                                                        case '4':
                                                        case '5':
                                                        case '6':
                                                        case '7': {
                                                                int k;
                                                                if ((k = parse_oct(c+1, &d)) < 0) {
                                                                        fprintf(stderr, "%s:%u: Parse failure: invalid octal escape sequence.\n", fname, nline);
                                                                        goto fail;
                                                                }
                                                                l = 1 + k;
                                                                break;
                                                        }
                                                        default:
                                                                fprintf(stderr, "%s:%u: Parse failure: invalid escape sequence.\n", fname, nline);
                                                                goto fail;
                                                }

                                                if (state == STATE_STRING && enabled) {
                                                        char *x = &d;
                                                        r = append(r, &rl, &x, 1);
                                                        c += l;
                                                } else
                                                        r = append(r, &rl, &c, l);
                                        } else if (*c == 0) {
                                                fprintf(stderr, "%s:%u: Parse failure: multiline strings suck.\n", fname, nline);
                                                goto fail;
                                        } else
                                                r = append(r, &rl, &c, 1);

                                        break;
                        }
                } while (!done);
        }

        if (enabled) {
                fprintf(stderr, "%s:%u: Parse failure: missing %%STRINGPOOLSTOP%%\n", fname, pool_started_line);
                goto fail;
        }

        if (state != STATE_TEXT) {
                fprintf(stderr, "%s:%u: Parse failure: unexpected EOF.\n", fname, nline);
                goto fail;
        }

        assert(!cnt);

        *rfirst = first;

        *remain = r;
        *remain_size = rl;

        return 0;

fail:

        free(cnt);
        free(r);
        free_items(first);

        return -1;
}

static int process(FILE *in, FILE *out, const char*ifname) {

        struct item *first = NULL;
        char *remain = NULL;
        size_t remain_size = 0;

        if (parse(in, ifname, &first, &remain, &remain_size) < 0)
                return -1;

        if (!first)
                fwrite(remain, 1, remain_size, out);
        else {
                find_suffixes(first);
                fill_idx(first);

                dump_pool(out, first);

                fprintf(out,
                        "#ifndef STRPOOL\n"
                        "#define STRPOOL\n"
                        "#endif\n"
                        "#ifndef _P\n"
                        "#define _P(x) (_strpool_ + ((x) - (const char*) 1))\n"
                        "#endif\n\n");


                if (ifname)
                        fprintf(out, "#line 1 \"%s\"\n", ifname);

                dump_text(out, first);
                fwrite(remain, 1, remain_size, out);

                free_items(first);
        }

        free(remain);

        return 0;
}

int main(int argc, char *argv[]) {
        int ret;
        FILE *in = NULL, *out = NULL;

        if (argc > 1) {
                if (!(in = fopen(argv[1], "r"))) {
                        fprintf(stderr, "Failed to open '%s': %s\n", argv[1], strerror(errno));
                        return 1;
                }
        } else
                in = stdin;

        if (argc > 2) {
                if (!(out = fopen(argv[2], "w"))) {
                        fprintf(stderr, "Failed to open '%s': %s\n", argv[2], strerror(errno));
                        return 1;
                }
        } else
                out = stdout;

        if (process(in, out, argc > 1 ? argv[1] : NULL) < 0)
                goto finish;

        ret = 0;

finish:

        if (in != stdin)
                fclose(in);

        if (out != stdout)
                fclose(out);

        return ret;
}