Coverage Report

Created: 2025-12-10 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/conf/conf_def.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/* Part of the code in here was originally in conf.c, which is now removed */
11
12
#include <stdio.h>
13
#include <string.h>
14
#include "internal/e_os.h" /* struct stat */
15
#ifdef __TANDEM
16
#include <sys/types.h> /* needed for stat.h */
17
#include <sys/stat.h> /* struct stat */
18
#endif
19
#include "internal/cryptlib.h"
20
#include "internal/o_dir.h"
21
#include <openssl/lhash.h>
22
#include <openssl/conf.h>
23
#include <openssl/conf_api.h>
24
#include "conf_local.h"
25
#include "conf_def.h"
26
#include <openssl/buffer.h>
27
#include <openssl/err.h>
28
#ifndef OPENSSL_NO_POSIX_IO
29
#include <sys/stat.h>
30
#ifdef _WIN32
31
#define stat _stat
32
#endif
33
#endif
34
35
#ifndef S_ISDIR
36
#define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
37
#endif
38
39
/*
40
 * The maximum length we can grow a value to after variable expansion. 64k
41
 * should be more than enough for all reasonable uses.
42
 */
43
0
#define MAX_CONF_VALUE_LENGTH 65536
44
45
static int is_keytype(const CONF *conf, char c, unsigned short type);
46
static char *eat_ws(CONF *conf, char *p);
47
static void trim_ws(CONF *conf, char *start);
48
static char *eat_alpha_numeric(CONF *conf, char *p);
49
static void clear_comments(CONF *conf, char *p);
50
static int str_copy(CONF *conf, char *section, char **to, char *from);
51
static char *scan_quote(CONF *conf, char *p);
52
static char *scan_dquote(CONF *conf, char *p);
53
0
#define scan_esc(conf, p) (((IS_EOF((conf), (p)[1])) ? ((p) + 1) : ((p) + 2)))
54
#ifndef OPENSSL_NO_POSIX_IO
55
static BIO *process_include(char *include, OPENSSL_DIR_CTX **dirctx,
56
    char **dirpath);
57
static BIO *get_next_file(const char *path, OPENSSL_DIR_CTX **dirctx);
58
#endif
59
60
static CONF *def_create(CONF_METHOD *meth);
61
static int def_init_default(CONF *conf);
62
#ifndef OPENSSL_NO_DEPRECATED_3_0
63
static int def_init_WIN32(CONF *conf);
64
#endif
65
static int def_destroy(CONF *conf);
66
static int def_destroy_data(CONF *conf);
67
static int def_load(CONF *conf, const char *name, long *eline);
68
static int def_load_bio(CONF *conf, BIO *bp, long *eline);
69
static int def_dump(const CONF *conf, BIO *bp);
70
static int def_is_number(const CONF *conf, char c);
71
static int def_to_int(const CONF *conf, char c);
72
73
static CONF_METHOD default_method = {
74
    "OpenSSL default",
75
    def_create,
76
    def_init_default,
77
    def_destroy,
78
    def_destroy_data,
79
    def_load_bio,
80
    def_dump,
81
    def_is_number,
82
    def_to_int,
83
    def_load
84
};
85
86
CONF_METHOD *NCONF_default(void)
87
1
{
88
1
    return &default_method;
89
1
}
90
91
#ifndef OPENSSL_NO_DEPRECATED_3_0
92
static CONF_METHOD WIN32_method = {
93
    "WIN32",
94
    def_create,
95
    def_init_WIN32,
96
    def_destroy,
97
    def_destroy_data,
98
    def_load_bio,
99
    def_dump,
100
    def_is_number,
101
    def_to_int,
102
    def_load
103
};
104
105
CONF_METHOD *NCONF_WIN32(void)
106
0
{
107
0
    return &WIN32_method;
108
0
}
109
#endif
110
111
static CONF *def_create(CONF_METHOD *meth)
112
1
{
113
1
    CONF *ret;
114
115
1
    ret = OPENSSL_malloc(sizeof(*ret));
116
1
    if (ret != NULL)
117
1
        if (meth->init(ret) == 0) {
118
0
            OPENSSL_free(ret);
119
0
            ret = NULL;
120
0
        }
121
1
    return ret;
122
1
}
123
124
static int def_init_default(CONF *conf)
125
1
{
126
1
    if (conf == NULL)
127
0
        return 0;
128
129
1
    memset(conf, 0, sizeof(*conf));
130
1
    conf->meth = &default_method;
131
1
    conf->meth_data = (void *)CONF_type_default;
132
133
1
    return 1;
134
1
}
135
136
#ifndef OPENSSL_NO_DEPRECATED_3_0
137
static int def_init_WIN32(CONF *conf)
138
0
{
139
0
    if (conf == NULL)
140
0
        return 0;
141
142
0
    memset(conf, 0, sizeof(*conf));
143
0
    conf->meth = &WIN32_method;
144
0
    conf->meth_data = (void *)CONF_type_win32;
145
146
0
    return 1;
147
0
}
148
#endif
149
150
static int def_destroy(CONF *conf)
151
1
{
152
1
    if (def_destroy_data(conf)) {
153
1
        OPENSSL_free(conf);
154
1
        return 1;
155
1
    }
156
0
    return 0;
157
1
}
158
159
static int def_destroy_data(CONF *conf)
160
1
{
161
1
    if (conf == NULL)
162
0
        return 0;
163
1
    _CONF_free_data(conf);
164
1
    return 1;
165
1
}
166
167
static int def_load(CONF *conf, const char *name, long *line)
168
1
{
169
1
    int ret;
170
1
    BIO *in = NULL;
171
172
#ifdef OPENSSL_SYS_VMS
173
    in = BIO_new_file(name, "r");
174
#else
175
1
    in = BIO_new_file(name, "rb");
176
1
#endif
177
1
    if (in == NULL) {
178
1
        if (ERR_GET_REASON(ERR_peek_last_error()) == BIO_R_NO_SUCH_FILE)
179
1
            ERR_raise(ERR_LIB_CONF, CONF_R_NO_SUCH_FILE);
180
0
        else
181
1
            ERR_raise(ERR_LIB_CONF, ERR_R_SYS_LIB);
182
1
        return 0;
183
1
    }
184
185
0
    ret = def_load_bio(conf, in, line);
186
0
    BIO_free(in);
187
188
0
    return ret;
189
1
}
190
191
/* Parse a boolean value and fill in *flag. Return 0 on error. */
192
static int parsebool(const char *pval, int *flag)
193
0
{
194
0
    if (OPENSSL_strcasecmp(pval, "on") == 0
195
0
        || OPENSSL_strcasecmp(pval, "true") == 0) {
196
0
        *flag = 1;
197
0
    } else if (OPENSSL_strcasecmp(pval, "off") == 0
198
0
        || OPENSSL_strcasecmp(pval, "false") == 0) {
199
0
        *flag = 0;
200
0
    } else {
201
0
        ERR_raise(ERR_LIB_CONF, CONF_R_INVALID_PRAGMA);
202
0
        return 0;
203
0
    }
204
0
    return 1;
205
0
}
206
207
static int def_load_bio(CONF *conf, BIO *in, long *line)
208
0
{
209
/* The macro BUFSIZE conflicts with a system macro in VxWorks */
210
0
#define CONFBUFSIZE 512
211
0
    int bufnum = 0, i, ii;
212
0
    BUF_MEM *buff = NULL;
213
0
    char *s, *p, *end;
214
0
    int again;
215
0
    int first_call = 1;
216
0
    long eline = 0;
217
0
    char btmp[DECIMAL_SIZE(eline) + 1];
218
0
    CONF_VALUE *v = NULL, *tv;
219
0
    CONF_VALUE *sv = NULL;
220
0
    char *section = NULL, *buf;
221
0
    char *start, *psection, *pname;
222
0
    void *h = (void *)(conf->data);
223
0
    STACK_OF(BIO) *biosk = NULL;
224
0
#ifndef OPENSSL_NO_POSIX_IO
225
0
    char *dirpath = NULL;
226
0
    OPENSSL_DIR_CTX *dirctx = NULL;
227
0
#endif
228
0
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
229
0
    int numincludes = 0;
230
0
#endif
231
232
0
    if ((buff = BUF_MEM_new()) == NULL) {
233
0
        ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
234
0
        goto err;
235
0
    }
236
237
0
    section = OPENSSL_strdup("default");
238
0
    if (section == NULL)
239
0
        goto err;
240
241
0
    if (_CONF_new_data(conf) == 0) {
242
0
        ERR_raise(ERR_LIB_CONF, ERR_R_CONF_LIB);
243
0
        goto err;
244
0
    }
245
246
0
    sv = _CONF_new_section(conf, section);
247
0
    if (sv == NULL) {
248
0
        ERR_raise(ERR_LIB_CONF, CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
249
0
        goto err;
250
0
    }
251
252
0
    bufnum = 0;
253
0
    again = 0;
254
0
    for (;;) {
255
0
        if (!BUF_MEM_grow(buff, bufnum + CONFBUFSIZE)) {
256
0
            ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
257
0
            goto err;
258
0
        }
259
0
        p = &(buff->data[bufnum]);
260
0
        *p = '\0';
261
0
    read_retry:
262
0
        if (in != NULL && BIO_gets(in, p, CONFBUFSIZE - 1) < 0)
263
0
            goto err;
264
0
        p[CONFBUFSIZE - 1] = '\0';
265
0
        ii = i = (int)strlen(p);
266
0
        if (first_call) {
267
            /* Other BOMs imply unsupported multibyte encoding,
268
             * so don't strip them and let the error raise */
269
0
            const unsigned char utf8_bom[3] = { 0xEF, 0xBB, 0xBF };
270
271
0
            if (i >= 3 && memcmp(p, utf8_bom, 3) == 0) {
272
0
                memmove(p, p + 3, i - 3);
273
0
                p[i - 3] = 0;
274
0
                i -= 3;
275
0
                ii -= 3;
276
0
            }
277
0
            first_call = 0;
278
0
        }
279
0
        if (i == 0 && !again) {
280
            /* the currently processed BIO is NULL or at EOF */
281
0
            BIO *parent;
282
283
0
#ifndef OPENSSL_NO_POSIX_IO
284
            /* continue processing with the next file from directory */
285
0
            if (dirctx != NULL) {
286
0
                BIO *next;
287
288
0
                if ((next = get_next_file(dirpath, &dirctx)) != NULL) {
289
0
                    BIO_vfree(in);
290
0
                    in = next;
291
0
                    goto read_retry;
292
0
                } else {
293
0
                    OPENSSL_free(dirpath);
294
0
                    dirpath = NULL;
295
0
                }
296
0
            }
297
0
#endif
298
            /* no more files in directory, continue with processing parent */
299
0
            if ((parent = sk_BIO_pop(biosk)) == NULL) {
300
                /* everything processed get out of the loop */
301
0
                break;
302
0
            } else {
303
0
                BIO_vfree(in);
304
0
                in = parent;
305
0
                goto read_retry;
306
0
            }
307
0
        }
308
0
        again = 0;
309
0
        while (i > 0) {
310
0
            if ((p[i - 1] != '\r') && (p[i - 1] != '\n'))
311
0
                break;
312
0
            else
313
0
                i--;
314
0
        }
315
        /*
316
         * we removed some trailing stuff so there is a new line on the end.
317
         */
318
0
        if (ii && i == ii)
319
0
            again = 1; /* long line */
320
0
        else {
321
0
            p[i] = '\0';
322
0
            eline++; /* another input line */
323
0
        }
324
325
        /* we now have a line with trailing \r\n removed */
326
327
        /* i is the number of bytes */
328
0
        bufnum += i;
329
330
0
        v = NULL;
331
        /* check for line continuation */
332
0
        if (!again && bufnum >= 1) {
333
            /*
334
             * If we have bytes and the last char '\\' and second last char
335
             * is not '\\'
336
             */
337
0
            p = &(buff->data[bufnum - 1]);
338
0
            if (IS_ESC(conf, p[0]) && ((bufnum <= 1) || !IS_ESC(conf, p[-1]))) {
339
0
                bufnum--;
340
0
                again = 1;
341
0
            }
342
0
        }
343
0
        if (again)
344
0
            continue;
345
0
        bufnum = 0;
346
0
        buf = buff->data;
347
348
0
        clear_comments(conf, buf);
349
0
        s = eat_ws(conf, buf);
350
0
        if (IS_EOF(conf, *s))
351
0
            continue; /* blank line */
352
0
        if (*s == '[') {
353
0
            char *ss;
354
355
0
            s++;
356
0
            start = eat_ws(conf, s);
357
0
            ss = start;
358
0
        again:
359
0
            end = eat_alpha_numeric(conf, ss);
360
0
            p = eat_ws(conf, end);
361
0
            if (*p != ']') {
362
0
                if (*p != '\0' && ss != p) {
363
0
                    ss = p;
364
0
                    goto again;
365
0
                }
366
0
                ERR_raise(ERR_LIB_CONF, CONF_R_MISSING_CLOSE_SQUARE_BRACKET);
367
0
                goto err;
368
0
            }
369
0
            *end = '\0';
370
0
            if (!str_copy(conf, NULL, &section, start))
371
0
                goto err;
372
0
            if ((sv = _CONF_get_section(conf, section)) == NULL)
373
0
                sv = _CONF_new_section(conf, section);
374
0
            if (sv == NULL) {
375
0
                ERR_raise(ERR_LIB_CONF, CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
376
0
                goto err;
377
0
            }
378
0
            continue;
379
0
        } else {
380
0
            pname = s;
381
0
            end = eat_alpha_numeric(conf, s);
382
0
            if ((end[0] == ':') && (end[1] == ':')) {
383
0
                *end = '\0';
384
0
                end += 2;
385
0
                psection = pname;
386
0
                pname = end;
387
0
                end = eat_alpha_numeric(conf, end);
388
0
            } else {
389
0
                psection = section;
390
0
            }
391
0
            p = eat_ws(conf, end);
392
0
            if (CHECK_AND_SKIP_PREFIX(pname, ".pragma")
393
0
                && (p != pname || *p == '=')) {
394
0
                char *pval;
395
396
0
                if (*p == '=') {
397
0
                    p++;
398
0
                    p = eat_ws(conf, p);
399
0
                }
400
0
                trim_ws(conf, p);
401
402
                /* Pragma values take the form keyword:value */
403
0
                pval = strchr(p, ':');
404
0
                if (pval == NULL || pval == p || pval[1] == '\0') {
405
0
                    ERR_raise(ERR_LIB_CONF, CONF_R_INVALID_PRAGMA);
406
0
                    goto err;
407
0
                }
408
409
0
                *pval++ = '\0';
410
0
                trim_ws(conf, p);
411
0
                pval = eat_ws(conf, pval);
412
413
                /*
414
                 * Known pragmas:
415
                 *
416
                 * dollarid     takes "on", "true or "off", "false"
417
                 * abspath      takes "on", "true or "off", "false"
418
                 * includedir   directory prefix
419
                 */
420
0
                if (strcmp(p, "dollarid") == 0) {
421
0
                    if (!parsebool(pval, &conf->flag_dollarid))
422
0
                        goto err;
423
0
                } else if (strcmp(p, "abspath") == 0) {
424
0
                    if (!parsebool(pval, &conf->flag_abspath))
425
0
                        goto err;
426
0
                } else if (strcmp(p, "includedir") == 0) {
427
0
                    OPENSSL_free(conf->includedir);
428
0
                    if ((conf->includedir = OPENSSL_strdup(pval)) == NULL)
429
0
                        goto err;
430
0
                }
431
432
                /*
433
                 * We *ignore* any unknown pragma.
434
                 */
435
0
                continue;
436
0
            } else if (CHECK_AND_SKIP_PREFIX(pname, ".include")
437
0
                && (p != pname || *p == '=')) {
438
0
                char *include = NULL;
439
0
                BIO *next;
440
0
                const char *include_dir = ossl_safe_getenv("OPENSSL_CONF_INCLUDE");
441
0
                char *include_path = NULL;
442
443
0
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
444
                /*
445
                 * The include processing below can cause the "conf" fuzzer to
446
                 * timeout due to the fuzzer inserting large and complicated
447
                 * includes - with a large amount of time spent in
448
                 * OPENSSL_strlcat/OPENSSL_strcpy. This is not a security
449
                 * concern because config files should never come from untrusted
450
                 * sources. We just set an arbitrary limit on the allowed
451
                 * number of includes when fuzzing to prevent this timeout.
452
                 */
453
0
                if (numincludes++ > 10)
454
0
                    goto err;
455
0
#endif
456
457
0
                if (include_dir == NULL)
458
0
                    include_dir = conf->includedir;
459
460
0
                if (*p == '=') {
461
0
                    p++;
462
0
                    p = eat_ws(conf, p);
463
0
                }
464
0
                trim_ws(conf, p);
465
0
                if (!str_copy(conf, psection, &include, p))
466
0
                    goto err;
467
468
0
                if (include_dir != NULL && !ossl_is_absolute_path(include)) {
469
0
                    size_t newlen = strlen(include_dir) + strlen(include) + 2;
470
471
0
                    include_path = OPENSSL_malloc(newlen);
472
0
                    if (include_path == NULL) {
473
0
                        OPENSSL_free(include);
474
0
                        goto err;
475
0
                    }
476
477
0
                    OPENSSL_strlcpy(include_path, include_dir, newlen);
478
0
                    if (!ossl_ends_with_dirsep(include_path))
479
0
                        OPENSSL_strlcat(include_path, "/", newlen);
480
0
                    OPENSSL_strlcat(include_path, include, newlen);
481
0
                    OPENSSL_free(include);
482
0
                } else {
483
0
                    include_path = include;
484
0
                }
485
486
0
                if (conf->flag_abspath
487
0
                    && !ossl_is_absolute_path(include_path)) {
488
0
                    ERR_raise(ERR_LIB_CONF, CONF_R_RELATIVE_PATH);
489
0
                    OPENSSL_free(include_path);
490
0
                    goto err;
491
0
                }
492
493
                /* get the BIO of the included file */
494
0
#ifndef OPENSSL_NO_POSIX_IO
495
0
                next = process_include(include_path, &dirctx, &dirpath);
496
0
                if (include_path != dirpath) {
497
                    /* dirpath will contain include in case of a directory */
498
0
                    OPENSSL_free(include_path);
499
0
                }
500
#else
501
                next = BIO_new_file(include_path, "r");
502
                OPENSSL_free(include_path);
503
#endif
504
505
0
                if (next != NULL) {
506
                    /* push the currently processing BIO onto stack */
507
0
                    if (biosk == NULL) {
508
0
                        if ((biosk = sk_BIO_new_null()) == NULL) {
509
0
                            ERR_raise(ERR_LIB_CONF, ERR_R_CRYPTO_LIB);
510
0
                            BIO_free(next);
511
0
                            goto err;
512
0
                        }
513
0
                    }
514
0
                    if (!sk_BIO_push(biosk, in)) {
515
0
                        ERR_raise(ERR_LIB_CONF, ERR_R_CRYPTO_LIB);
516
0
                        BIO_free(next);
517
0
                        goto err;
518
0
                    }
519
                    /* continue with reading from the included BIO */
520
0
                    in = next;
521
0
                }
522
0
                continue;
523
0
            } else if (*p != '=') {
524
0
                ERR_raise_data(ERR_LIB_CONF, CONF_R_MISSING_EQUAL_SIGN,
525
0
                    "HERE-->%s", p);
526
0
                goto err;
527
0
            }
528
0
            *end = '\0';
529
0
            p++;
530
0
            start = eat_ws(conf, p);
531
0
            trim_ws(conf, start);
532
533
0
            if ((v = OPENSSL_malloc(sizeof(*v))) == NULL)
534
0
                goto err;
535
0
            v->name = OPENSSL_strdup(pname);
536
0
            v->value = NULL;
537
0
            if (v->name == NULL)
538
0
                goto err;
539
0
            if (!str_copy(conf, psection, &(v->value), start))
540
0
                goto err;
541
542
0
            if (strcmp(psection, section) != 0) {
543
0
                if ((tv = _CONF_get_section(conf, psection))
544
0
                    == NULL)
545
0
                    tv = _CONF_new_section(conf, psection);
546
0
                if (tv == NULL) {
547
0
                    ERR_raise(ERR_LIB_CONF,
548
0
                        CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
549
0
                    goto err;
550
0
                }
551
0
            } else
552
0
                tv = sv;
553
0
            if (_CONF_add_string(conf, tv, v) == 0) {
554
0
                ERR_raise(ERR_LIB_CONF, ERR_R_CONF_LIB);
555
0
                goto err;
556
0
            }
557
0
            v = NULL;
558
0
        }
559
0
    }
560
0
    BUF_MEM_free(buff);
561
0
    OPENSSL_free(section);
562
    /*
563
     * No need to pop, since we only get here if the stack is empty.
564
     * If this causes a BIO leak, THE ISSUE IS SOMEWHERE ELSE!
565
     */
566
0
    sk_BIO_free(biosk);
567
0
    return 1;
568
569
0
err:
570
0
    BUF_MEM_free(buff);
571
0
    OPENSSL_free(section);
572
    /*
573
     * Since |in| is the first element of the stack and should NOT be freed
574
     * here, we cannot use sk_BIO_pop_free().  Instead, we pop and free one
575
     * BIO at a time, making sure that the last one popped isn't.
576
     */
577
0
    while (sk_BIO_num(biosk) > 0) {
578
0
        BIO *popped = sk_BIO_pop(biosk);
579
0
        BIO_vfree(in);
580
0
        in = popped;
581
0
    }
582
0
    sk_BIO_free(biosk);
583
0
#ifndef OPENSSL_NO_POSIX_IO
584
0
    OPENSSL_free(dirpath);
585
0
    if (dirctx != NULL)
586
0
        OPENSSL_DIR_end(&dirctx);
587
0
#endif
588
0
    if (line != NULL)
589
0
        *line = eline;
590
0
    BIO_snprintf(btmp, sizeof(btmp), "%ld", eline);
591
0
    ERR_add_error_data(2, "line ", btmp);
592
0
    if (h != conf->data) {
593
0
        CONF_free(conf->data);
594
0
        conf->data = NULL;
595
0
    }
596
0
    if (v != NULL) {
597
0
        OPENSSL_free(v->name);
598
0
        OPENSSL_free(v->value);
599
0
        OPENSSL_free(v);
600
0
    }
601
0
    return 0;
602
0
}
603
604
static void clear_comments(CONF *conf, char *p)
605
0
{
606
0
    for (;;) {
607
0
        if (IS_FCOMMENT(conf, *p)) {
608
0
            *p = '\0';
609
0
            return;
610
0
        }
611
0
        if (!IS_WS(conf, *p)) {
612
0
            break;
613
0
        }
614
0
        p++;
615
0
    }
616
617
0
    for (;;) {
618
0
        if (IS_COMMENT(conf, *p)) {
619
0
            *p = '\0';
620
0
            return;
621
0
        }
622
0
        if (IS_DQUOTE(conf, *p)) {
623
0
            p = scan_dquote(conf, p);
624
0
            continue;
625
0
        }
626
0
        if (IS_QUOTE(conf, *p)) {
627
0
            p = scan_quote(conf, p);
628
0
            continue;
629
0
        }
630
0
        if (IS_ESC(conf, *p)) {
631
0
            p = scan_esc(conf, p);
632
0
            continue;
633
0
        }
634
0
        if (IS_EOF(conf, *p))
635
0
            return;
636
0
        else
637
0
            p++;
638
0
    }
639
0
}
640
641
static int str_copy(CONF *conf, char *section, char **pto, char *from)
642
0
{
643
0
    int q, r, rr = 0, to = 0;
644
0
    char *s, *e, *rp, *p, *rrp, *np, *cp, v;
645
0
    BUF_MEM *buf;
646
647
0
    if ((buf = BUF_MEM_new()) == NULL)
648
0
        return 0;
649
650
0
    if (!BUF_MEM_grow(buf, strlen(from) + 1))
651
0
        goto err;
652
653
0
    for (;;) {
654
0
        if (IS_QUOTE(conf, *from)) {
655
0
            q = *from;
656
0
            from++;
657
0
            while (!IS_EOF(conf, *from) && (*from != q)) {
658
0
                if (IS_ESC(conf, *from)) {
659
0
                    from++;
660
0
                    if (IS_EOF(conf, *from))
661
0
                        break;
662
0
                }
663
0
                buf->data[to++] = *(from++);
664
0
            }
665
0
            if (*from == q)
666
0
                from++;
667
0
        } else if (IS_DQUOTE(conf, *from)) {
668
0
            q = *from;
669
0
            from++;
670
0
            while (!IS_EOF(conf, *from)) {
671
0
                if (*from == q) {
672
0
                    if (*(from + 1) == q) {
673
0
                        from++;
674
0
                    } else {
675
0
                        break;
676
0
                    }
677
0
                }
678
0
                buf->data[to++] = *(from++);
679
0
            }
680
0
            if (*from == q)
681
0
                from++;
682
0
        } else if (IS_ESC(conf, *from)) {
683
0
            from++;
684
0
            v = *(from++);
685
0
            if (IS_EOF(conf, v))
686
0
                break;
687
0
            else if (v == 'r')
688
0
                v = '\r';
689
0
            else if (v == 'n')
690
0
                v = '\n';
691
0
            else if (v == 'b')
692
0
                v = '\b';
693
0
            else if (v == 't')
694
0
                v = '\t';
695
0
            buf->data[to++] = v;
696
0
        } else if (IS_EOF(conf, *from))
697
0
            break;
698
0
        else if (*from == '$'
699
0
            && (!conf->flag_dollarid
700
0
                || from[1] == '{'
701
0
                || from[1] == '(')) {
702
0
            size_t newsize;
703
704
            /* try to expand it */
705
0
            rrp = NULL;
706
0
            s = &(from[1]);
707
0
            if (*s == '{')
708
0
                q = '}';
709
0
            else if (*s == '(')
710
0
                q = ')';
711
0
            else
712
0
                q = 0;
713
714
0
            if (q)
715
0
                s++;
716
0
            cp = section;
717
0
            e = np = s;
718
0
            while (IS_ALNUM(conf, *e)
719
0
                || (conf->flag_dollarid && IS_DOLLAR(conf, *e)))
720
0
                e++;
721
0
            if ((e[0] == ':') && (e[1] == ':')) {
722
0
                cp = np;
723
0
                rrp = e;
724
0
                rr = *e;
725
0
                *rrp = '\0';
726
0
                e += 2;
727
0
                np = e;
728
0
                while (IS_ALNUM(conf, *e)
729
0
                    || (conf->flag_dollarid && IS_DOLLAR(conf, *e)))
730
0
                    e++;
731
0
            }
732
0
            r = *e;
733
0
            *e = '\0';
734
0
            rp = e;
735
0
            if (q) {
736
0
                if (r != q) {
737
0
                    ERR_raise(ERR_LIB_CONF, CONF_R_NO_CLOSE_BRACE);
738
0
                    goto err;
739
0
                }
740
0
                e++;
741
0
            }
742
            /*-
743
             * So at this point we have
744
             * np which is the start of the name string which is
745
             *   '\0' terminated.
746
             * cp which is the start of the section string which is
747
             *   '\0' terminated.
748
             * e is the 'next point after'.
749
             * r and rr are the chars replaced by the '\0'
750
             * rp and rrp is where 'r' and 'rr' came from.
751
             */
752
0
            p = _CONF_get_string(conf, cp, np);
753
0
            if (rrp != NULL)
754
0
                *rrp = rr;
755
0
            *rp = r;
756
0
            if (p == NULL) {
757
0
                ERR_raise(ERR_LIB_CONF, CONF_R_VARIABLE_HAS_NO_VALUE);
758
0
                goto err;
759
0
            }
760
0
            newsize = strlen(p) + buf->length - (e - from);
761
0
            if (newsize > MAX_CONF_VALUE_LENGTH) {
762
0
                ERR_raise(ERR_LIB_CONF, CONF_R_VARIABLE_EXPANSION_TOO_LONG);
763
0
                goto err;
764
0
            }
765
0
            if (!BUF_MEM_grow_clean(buf, newsize)) {
766
0
                ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
767
0
                goto err;
768
0
            }
769
0
            while (*p)
770
0
                buf->data[to++] = *(p++);
771
772
0
            from = e;
773
774
            /*
775
             * In case there were no braces or parenthesis around the
776
             * variable reference, we have to put back the character that was
777
             * replaced with a '\0'.  /RL
778
             */
779
0
            *rp = r;
780
0
        } else
781
0
            buf->data[to++] = *(from++);
782
0
    }
783
0
    buf->data[to] = '\0';
784
0
    OPENSSL_free(*pto);
785
0
    *pto = buf->data;
786
0
    OPENSSL_free(buf);
787
0
    return 1;
788
0
err:
789
0
    BUF_MEM_free(buf);
790
0
    return 0;
791
0
}
792
793
#ifndef OPENSSL_NO_POSIX_IO
794
/*
795
 * Check whether included path is a directory.
796
 * Returns next BIO to process and in case of a directory
797
 * also an opened directory context and the include path.
798
 */
799
static BIO *process_include(char *include, OPENSSL_DIR_CTX **dirctx,
800
    char **dirpath)
801
0
{
802
0
    struct stat st;
803
0
    BIO *next;
804
805
0
    if (stat(include, &st) < 0) {
806
0
        ERR_raise_data(ERR_LIB_SYS, errno, "calling stat(%s)", include);
807
        /* missing include file is not fatal error */
808
0
        return NULL;
809
0
    }
810
811
0
    if (S_ISDIR(st.st_mode)) {
812
0
        if (*dirctx != NULL) {
813
0
            ERR_raise_data(ERR_LIB_CONF, CONF_R_RECURSIVE_DIRECTORY_INCLUDE,
814
0
                "%s", include);
815
0
            return NULL;
816
0
        }
817
        /* a directory, load its contents */
818
0
        if ((next = get_next_file(include, dirctx)) != NULL)
819
0
            *dirpath = include;
820
0
        return next;
821
0
    }
822
823
0
    next = BIO_new_file(include, "r");
824
0
    return next;
825
0
}
826
827
/*
828
 * Get next file from the directory path.
829
 * Returns BIO of the next file to read and updates dirctx.
830
 */
831
static BIO *get_next_file(const char *path, OPENSSL_DIR_CTX **dirctx)
832
0
{
833
0
    const char *filename;
834
0
    size_t pathlen;
835
836
0
    pathlen = strlen(path);
837
0
    while ((filename = OPENSSL_DIR_read(dirctx, path)) != NULL) {
838
0
        size_t namelen;
839
840
0
        namelen = strlen(filename);
841
842
0
        if ((namelen > 5
843
0
                && OPENSSL_strcasecmp(filename + namelen - 5, ".conf") == 0)
844
0
            || (namelen > 4
845
0
                && OPENSSL_strcasecmp(filename + namelen - 4, ".cnf") == 0)) {
846
0
            size_t newlen;
847
0
            char *newpath;
848
0
            BIO *bio;
849
850
0
            newlen = pathlen + namelen + 2;
851
0
            newpath = OPENSSL_zalloc(newlen);
852
0
            if (newpath == NULL)
853
0
                break;
854
#ifdef OPENSSL_SYS_VMS
855
            /*
856
             * If the given path isn't clear VMS syntax,
857
             * we treat it as on Unix.
858
             */
859
            if (path[pathlen - 1] == ']'
860
                || path[pathlen - 1] == '>'
861
                || path[pathlen - 1] == ':') {
862
                /* Clear VMS directory syntax, just copy as is */
863
                OPENSSL_strlcpy(newpath, path, newlen);
864
            }
865
#endif
866
0
            if (newpath[0] == '\0') {
867
0
                OPENSSL_strlcpy(newpath, path, newlen);
868
0
                OPENSSL_strlcat(newpath, "/", newlen);
869
0
            }
870
0
            OPENSSL_strlcat(newpath, filename, newlen);
871
872
0
            bio = BIO_new_file(newpath, "r");
873
0
            OPENSSL_free(newpath);
874
            /* Errors when opening files are non-fatal. */
875
0
            if (bio != NULL)
876
0
                return bio;
877
0
        }
878
0
    }
879
0
    OPENSSL_DIR_end(dirctx);
880
0
    *dirctx = NULL;
881
0
    return NULL;
882
0
}
883
#endif
884
885
static int is_keytype(const CONF *conf, char c, unsigned short type)
886
0
{
887
0
    const unsigned short *keytypes = (const unsigned short *)conf->meth_data;
888
0
    unsigned char key = (unsigned char)c;
889
890
#ifdef CHARSET_EBCDIC
891
#if CHAR_BIT > 8
892
    if (key > 255) {
893
        /* key is out of range for os_toascii table */
894
        return 0;
895
    }
896
#endif
897
    /* convert key from ebcdic to ascii */
898
    key = os_toascii[key];
899
#endif
900
901
0
    if (key > 127) {
902
        /* key is not a seven bit ascii character */
903
0
        return 0;
904
0
    }
905
906
0
    return (keytypes[key] & type) ? 1 : 0;
907
0
}
908
909
static char *eat_ws(CONF *conf, char *p)
910
0
{
911
0
    while (IS_WS(conf, *p) && (!IS_EOF(conf, *p)))
912
0
        p++;
913
0
    return p;
914
0
}
915
916
static void trim_ws(CONF *conf, char *start)
917
0
{
918
0
    char *p = start;
919
920
0
    while (!IS_EOF(conf, *p))
921
0
        p++;
922
0
    p--;
923
0
    while ((p >= start) && IS_WS(conf, *p))
924
0
        p--;
925
0
    p++;
926
0
    *p = '\0';
927
0
}
928
929
static char *eat_alpha_numeric(CONF *conf, char *p)
930
0
{
931
0
    for (;;) {
932
0
        if (IS_ESC(conf, *p)) {
933
0
            p = scan_esc(conf, p);
934
0
            continue;
935
0
        }
936
0
        if (!(IS_ALNUM_PUNCT(conf, *p)
937
0
                || (conf->flag_dollarid && IS_DOLLAR(conf, *p))))
938
0
            return p;
939
0
        p++;
940
0
    }
941
0
}
942
943
static char *scan_quote(CONF *conf, char *p)
944
0
{
945
0
    int q = *p;
946
947
0
    p++;
948
0
    while (!(IS_EOF(conf, *p)) && (*p != q)) {
949
0
        if (IS_ESC(conf, *p)) {
950
0
            p++;
951
0
            if (IS_EOF(conf, *p))
952
0
                return p;
953
0
        }
954
0
        p++;
955
0
    }
956
0
    if (*p == q)
957
0
        p++;
958
0
    return p;
959
0
}
960
961
static char *scan_dquote(CONF *conf, char *p)
962
0
{
963
0
    int q = *p;
964
965
0
    p++;
966
0
    while (!(IS_EOF(conf, *p))) {
967
0
        if (*p == q) {
968
0
            if (*(p + 1) == q) {
969
0
                p++;
970
0
            } else {
971
0
                break;
972
0
            }
973
0
        }
974
0
        p++;
975
0
    }
976
0
    if (*p == q)
977
0
        p++;
978
0
    return p;
979
0
}
980
981
static void dump_value_doall_arg(const CONF_VALUE *a, BIO *out)
982
0
{
983
0
    if (a->name)
984
0
        BIO_printf(out, "[%s] %s=%s\n", a->section, a->name, a->value);
985
0
    else
986
0
        BIO_printf(out, "[[%s]]\n", a->section);
987
0
}
988
989
IMPLEMENT_LHASH_DOALL_ARG_CONST(CONF_VALUE, BIO);
990
991
static int def_dump(const CONF *conf, BIO *out)
992
0
{
993
0
    lh_CONF_VALUE_doall_BIO(conf->data, dump_value_doall_arg, out);
994
0
    return 1;
995
0
}
996
997
static int def_is_number(const CONF *conf, char c)
998
0
{
999
0
    return IS_NUMBER(conf, c);
1000
0
}
1001
1002
static int def_to_int(const CONF *conf, char c)
1003
0
{
1004
0
    return c - '0';
1005
0
}