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