ee71f482001d5134f8dc7a93f84bb2291da94a94
[openssl.git] / crypto / conf / conf_def.c
1 /* crypto/conf/conf.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 /* Part of the code in here was originally in conf.c, which is now removed */
60
61 #include <stdio.h>
62 #include <string.h>
63 #include "cryptlib.h"
64 #include <openssl/stack.h>
65 #include <openssl/lhash.h>
66 #include <openssl/conf.h>
67 #include <openssl/conf_api.h>
68 #include "conf_def.h"
69 #include <openssl/buffer.h>
70 #include <openssl/err.h>
71
72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p);
75 static int str_copy(CONF *conf, char *section, char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, char *p);
78 #define scan_esc(conf,p)        (((IS_EOF((conf),(p)[1]))?((p)+1):((p)+2)))
79
80 static CONF *def_create(CONF_METHOD *meth);
81 static int def_init_default(CONF *conf);
82 static int def_init_WIN32(CONF *conf);
83 static int def_destroy(CONF *conf);
84 static int def_destroy_data(CONF *conf);
85 static int def_load(CONF *conf, const char *name, long *eline);
86 static int def_load_bio(CONF *conf, BIO *bp, long *eline);
87 static int def_dump(const CONF *conf, BIO *bp);
88 static int def_is_number(const CONF *conf, char c);
89 static int def_to_int(const CONF *conf, char c);
90
91 const char CONF_def_version[] = "CONF_def" OPENSSL_VERSION_PTEXT;
92
93 static CONF_METHOD default_method = {
94     "OpenSSL default",
95     def_create,
96     def_init_default,
97     def_destroy,
98     def_destroy_data,
99     def_load_bio,
100     def_dump,
101     def_is_number,
102     def_to_int,
103     def_load
104 };
105
106 static CONF_METHOD WIN32_method = {
107     "WIN32",
108     def_create,
109     def_init_WIN32,
110     def_destroy,
111     def_destroy_data,
112     def_load_bio,
113     def_dump,
114     def_is_number,
115     def_to_int,
116     def_load
117 };
118
119 CONF_METHOD *NCONF_default()
120 {
121     return &default_method;
122 }
123
124 CONF_METHOD *NCONF_WIN32()
125 {
126     return &WIN32_method;
127 }
128
129 static CONF *def_create(CONF_METHOD *meth)
130 {
131     CONF *ret;
132
133     ret = OPENSSL_malloc(sizeof(*ret));
134     if (ret)
135         if (meth->init(ret) == 0) {
136             OPENSSL_free(ret);
137             ret = NULL;
138         }
139     return ret;
140 }
141
142 static int def_init_default(CONF *conf)
143 {
144     if (conf == NULL)
145         return 0;
146
147     conf->meth = &default_method;
148     conf->meth_data = (void *)CONF_type_default;
149     conf->data = NULL;
150
151     return 1;
152 }
153
154 static int def_init_WIN32(CONF *conf)
155 {
156     if (conf == NULL)
157         return 0;
158
159     conf->meth = &WIN32_method;
160     conf->meth_data = (void *)CONF_type_win32;
161     conf->data = NULL;
162
163     return 1;
164 }
165
166 static int def_destroy(CONF *conf)
167 {
168     if (def_destroy_data(conf)) {
169         OPENSSL_free(conf);
170         return 1;
171     }
172     return 0;
173 }
174
175 static int def_destroy_data(CONF *conf)
176 {
177     if (conf == NULL)
178         return 0;
179     _CONF_free_data(conf);
180     return 1;
181 }
182
183 static int def_load(CONF *conf, const char *name, long *line)
184 {
185     int ret;
186     BIO *in = NULL;
187
188 #ifdef OPENSSL_SYS_VMS
189     in = BIO_new_file(name, "r");
190 #else
191     in = BIO_new_file(name, "rb");
192 #endif
193     if (in == NULL) {
194         if (ERR_GET_REASON(ERR_peek_last_error()) == BIO_R_NO_SUCH_FILE)
195             CONFerr(CONF_F_DEF_LOAD, CONF_R_NO_SUCH_FILE);
196         else
197             CONFerr(CONF_F_DEF_LOAD, ERR_R_SYS_LIB);
198         return 0;
199     }
200
201     ret = def_load_bio(conf, in, line);
202     BIO_free(in);
203
204     return ret;
205 }
206
207 static int def_load_bio(CONF *conf, BIO *in, long *line)
208 {
209 /* The macro BUFSIZE conflicts with a system macro in VxWorks */
210 #define CONFBUFSIZE     512
211     int bufnum = 0, i, ii;
212     BUF_MEM *buff = NULL;
213     char *s, *p, *end;
214     int again;
215     long eline = 0;
216     char btmp[DECIMAL_SIZE(eline) + 1];
217     CONF_VALUE *v = NULL, *tv;
218     CONF_VALUE *sv = NULL;
219     char *section = NULL, *buf;
220     char *start, *psection, *pname;
221     void *h = (void *)(conf->data);
222
223     if ((buff = BUF_MEM_new()) == NULL) {
224         CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_BUF_LIB);
225         goto err;
226     }
227
228     section = OPENSSL_malloc(10);
229     if (section == NULL) {
230         CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
231         goto err;
232     }
233     BUF_strlcpy(section, "default", 10);
234
235     if (_CONF_new_data(conf) == 0) {
236         CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
237         goto err;
238     }
239
240     sv = _CONF_new_section(conf, section);
241     if (sv == NULL) {
242         CONFerr(CONF_F_DEF_LOAD_BIO, CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
243         goto err;
244     }
245
246     bufnum = 0;
247     again = 0;
248     for (;;) {
249         if (!BUF_MEM_grow(buff, bufnum + CONFBUFSIZE)) {
250             CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_BUF_LIB);
251             goto err;
252         }
253         p = &(buff->data[bufnum]);
254         *p = '\0';
255         BIO_gets(in, p, CONFBUFSIZE - 1);
256         p[CONFBUFSIZE - 1] = '\0';
257         ii = i = strlen(p);
258         if (i == 0 && !again)
259             break;
260         again = 0;
261         while (i > 0) {
262             if ((p[i - 1] != '\r') && (p[i - 1] != '\n'))
263                 break;
264             else
265                 i--;
266         }
267         /*
268          * we removed some trailing stuff so there is a new line on the end.
269          */
270         if (ii && i == ii)
271             again = 1;          /* long line */
272         else {
273             p[i] = '\0';
274             eline++;            /* another input line */
275         }
276
277         /* we now have a line with trailing \r\n removed */
278
279         /* i is the number of bytes */
280         bufnum += i;
281
282         v = NULL;
283         /* check for line continuation */
284         if (bufnum >= 1) {
285             /*
286              * If we have bytes and the last char '\\' and second last char
287              * is not '\\'
288              */
289             p = &(buff->data[bufnum - 1]);
290             if (IS_ESC(conf, p[0]) && ((bufnum <= 1) || !IS_ESC(conf, p[-1]))) {
291                 bufnum--;
292                 again = 1;
293             }
294         }
295         if (again)
296             continue;
297         bufnum = 0;
298         buf = buff->data;
299
300         clear_comments(conf, buf);
301         s = eat_ws(conf, buf);
302         if (IS_EOF(conf, *s))
303             continue;           /* blank line */
304         if (*s == '[') {
305             char *ss;
306
307             s++;
308             start = eat_ws(conf, s);
309             ss = start;
310  again:
311             end = eat_alpha_numeric(conf, ss);
312             p = eat_ws(conf, end);
313             if (*p != ']') {
314                 if (*p != '\0' && ss != p) {
315                     ss = p;
316                     goto again;
317                 }
318                 CONFerr(CONF_F_DEF_LOAD_BIO,
319                         CONF_R_MISSING_CLOSE_SQUARE_BRACKET);
320                 goto err;
321             }
322             *end = '\0';
323             if (!str_copy(conf, NULL, &section, start))
324                 goto err;
325             if ((sv = _CONF_get_section(conf, section)) == NULL)
326                 sv = _CONF_new_section(conf, section);
327             if (sv == NULL) {
328                 CONFerr(CONF_F_DEF_LOAD_BIO,
329                         CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
330                 goto err;
331             }
332             continue;
333         } else {
334             pname = s;
335             psection = NULL;
336             end = eat_alpha_numeric(conf, s);
337             if ((end[0] == ':') && (end[1] == ':')) {
338                 *end = '\0';
339                 end += 2;
340                 psection = pname;
341                 pname = end;
342                 end = eat_alpha_numeric(conf, end);
343             }
344             p = eat_ws(conf, end);
345             if (*p != '=') {
346                 CONFerr(CONF_F_DEF_LOAD_BIO, CONF_R_MISSING_EQUAL_SIGN);
347                 goto err;
348             }
349             *end = '\0';
350             p++;
351             start = eat_ws(conf, p);
352             while (!IS_EOF(conf, *p))
353                 p++;
354             p--;
355             while ((p != start) && (IS_WS(conf, *p)))
356                 p--;
357             p++;
358             *p = '\0';
359
360             if ((v = OPENSSL_malloc(sizeof(*v))) == NULL) {
361                 CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
362                 goto err;
363             }
364             if (psection == NULL)
365                 psection = section;
366             v->name = OPENSSL_malloc(strlen(pname) + 1);
367             v->value = NULL;
368             if (v->name == NULL) {
369                 CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
370                 goto err;
371             }
372             BUF_strlcpy(v->name, pname, strlen(pname) + 1);
373             if (!str_copy(conf, psection, &(v->value), start))
374                 goto err;
375
376             if (strcmp(psection, section) != 0) {
377                 if ((tv = _CONF_get_section(conf, psection))
378                     == NULL)
379                     tv = _CONF_new_section(conf, psection);
380                 if (tv == NULL) {
381                     CONFerr(CONF_F_DEF_LOAD_BIO,
382                             CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
383                     goto err;
384                 }
385             } else
386                 tv = sv;
387             if (_CONF_add_string(conf, tv, v) == 0) {
388                 CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
389                 goto err;
390             }
391             v = NULL;
392         }
393     }
394     BUF_MEM_free(buff);
395     OPENSSL_free(section);
396     return (1);
397  err:
398     BUF_MEM_free(buff);
399     OPENSSL_free(section);
400     if (line != NULL)
401         *line = eline;
402     BIO_snprintf(btmp, sizeof btmp, "%ld", eline);
403     ERR_add_error_data(2, "line ", btmp);
404     if (h != conf->data) {
405         CONF_free(conf->data);
406         conf->data = NULL;
407     }
408     if (v != NULL) {
409         OPENSSL_free(v->name);
410         OPENSSL_free(v->value);
411         OPENSSL_free(v);
412     }
413     return (0);
414 }
415
416 static void clear_comments(CONF *conf, char *p)
417 {
418     for (;;) {
419         if (IS_FCOMMENT(conf, *p)) {
420             *p = '\0';
421             return;
422         }
423         if (!IS_WS(conf, *p)) {
424             break;
425         }
426         p++;
427     }
428
429     for (;;) {
430         if (IS_COMMENT(conf, *p)) {
431             *p = '\0';
432             return;
433         }
434         if (IS_DQUOTE(conf, *p)) {
435             p = scan_dquote(conf, p);
436             continue;
437         }
438         if (IS_QUOTE(conf, *p)) {
439             p = scan_quote(conf, p);
440             continue;
441         }
442         if (IS_ESC(conf, *p)) {
443             p = scan_esc(conf, p);
444             continue;
445         }
446         if (IS_EOF(conf, *p))
447             return;
448         else
449             p++;
450     }
451 }
452
453 static int str_copy(CONF *conf, char *section, char **pto, char *from)
454 {
455     int q, r, rr = 0, to = 0, len = 0;
456     char *s, *e, *rp, *p, *rrp, *np, *cp, v;
457     BUF_MEM *buf;
458
459     if ((buf = BUF_MEM_new()) == NULL)
460         return (0);
461
462     len = strlen(from) + 1;
463     if (!BUF_MEM_grow(buf, len))
464         goto err;
465
466     for (;;) {
467         if (IS_QUOTE(conf, *from)) {
468             q = *from;
469             from++;
470             while (!IS_EOF(conf, *from) && (*from != q)) {
471                 if (IS_ESC(conf, *from)) {
472                     from++;
473                     if (IS_EOF(conf, *from))
474                         break;
475                 }
476                 buf->data[to++] = *(from++);
477             }
478             if (*from == q)
479                 from++;
480         } else if (IS_DQUOTE(conf, *from)) {
481             q = *from;
482             from++;
483             while (!IS_EOF(conf, *from)) {
484                 if (*from == q) {
485                     if (*(from + 1) == q) {
486                         from++;
487                     } else {
488                         break;
489                     }
490                 }
491                 buf->data[to++] = *(from++);
492             }
493             if (*from == q)
494                 from++;
495         } else if (IS_ESC(conf, *from)) {
496             from++;
497             v = *(from++);
498             if (IS_EOF(conf, v))
499                 break;
500             else if (v == 'r')
501                 v = '\r';
502             else if (v == 'n')
503                 v = '\n';
504             else if (v == 'b')
505                 v = '\b';
506             else if (v == 't')
507                 v = '\t';
508             buf->data[to++] = v;
509         } else if (IS_EOF(conf, *from))
510             break;
511         else if (*from == '$') {
512             /* try to expand it */
513             rrp = NULL;
514             s = &(from[1]);
515             if (*s == '{')
516                 q = '}';
517             else if (*s == '(')
518                 q = ')';
519             else
520                 q = 0;
521
522             if (q)
523                 s++;
524             cp = section;
525             e = np = s;
526             while (IS_ALPHA_NUMERIC(conf, *e))
527                 e++;
528             if ((e[0] == ':') && (e[1] == ':')) {
529                 cp = np;
530                 rrp = e;
531                 rr = *e;
532                 *rrp = '\0';
533                 e += 2;
534                 np = e;
535                 while (IS_ALPHA_NUMERIC(conf, *e))
536                     e++;
537             }
538             r = *e;
539             *e = '\0';
540             rp = e;
541             if (q) {
542                 if (r != q) {
543                     CONFerr(CONF_F_STR_COPY, CONF_R_NO_CLOSE_BRACE);
544                     goto err;
545                 }
546                 e++;
547             }
548             /*-
549              * So at this point we have
550              * np which is the start of the name string which is
551              *   '\0' terminated.
552              * cp which is the start of the section string which is
553              *   '\0' terminated.
554              * e is the 'next point after'.
555              * r and rr are the chars replaced by the '\0'
556              * rp and rrp is where 'r' and 'rr' came from.
557              */
558             p = _CONF_get_string(conf, cp, np);
559             if (rrp != NULL)
560                 *rrp = rr;
561             *rp = r;
562             if (p == NULL) {
563                 CONFerr(CONF_F_STR_COPY, CONF_R_VARIABLE_HAS_NO_VALUE);
564                 goto err;
565             }
566             if (!BUF_MEM_grow_clean(buf,
567                         (strlen(p) + buf->length - (e - from)))) {
568                 CONFerr(CONF_F_STR_COPY, ERR_R_MALLOC_FAILURE);
569                 goto err;
570             }
571             while (*p)
572                 buf->data[to++] = *(p++);
573
574             /*
575              * Since we change the pointer 'from', we also have to change the
576              * perceived length of the string it points at.  /RL
577              */
578             len -= e - from;
579             from = e;
580
581             /*
582              * In case there were no braces or parenthesis around the
583              * variable reference, we have to put back the character that was
584              * replaced with a '\0'.  /RL
585              */
586             *rp = r;
587         } else
588             buf->data[to++] = *(from++);
589     }
590     buf->data[to] = '\0';
591     OPENSSL_free(*pto);
592     *pto = buf->data;
593     OPENSSL_free(buf);
594     return (1);
595  err:
596     BUF_MEM_free(buf);
597     return (0);
598 }
599
600 static char *eat_ws(CONF *conf, char *p)
601 {
602     while (IS_WS(conf, *p) && (!IS_EOF(conf, *p)))
603         p++;
604     return (p);
605 }
606
607 static char *eat_alpha_numeric(CONF *conf, char *p)
608 {
609     for (;;) {
610         if (IS_ESC(conf, *p)) {
611             p = scan_esc(conf, p);
612             continue;
613         }
614         if (!IS_ALPHA_NUMERIC_PUNCT(conf, *p))
615             return (p);
616         p++;
617     }
618 }
619
620 static char *scan_quote(CONF *conf, char *p)
621 {
622     int q = *p;
623
624     p++;
625     while (!(IS_EOF(conf, *p)) && (*p != q)) {
626         if (IS_ESC(conf, *p)) {
627             p++;
628             if (IS_EOF(conf, *p))
629                 return (p);
630         }
631         p++;
632     }
633     if (*p == q)
634         p++;
635     return (p);
636 }
637
638 static char *scan_dquote(CONF *conf, char *p)
639 {
640     int q = *p;
641
642     p++;
643     while (!(IS_EOF(conf, *p))) {
644         if (*p == q) {
645             if (*(p + 1) == q) {
646                 p++;
647             } else {
648                 break;
649             }
650         }
651         p++;
652     }
653     if (*p == q)
654         p++;
655     return (p);
656 }
657
658 static void dump_value_doall_arg(CONF_VALUE *a, BIO *out)
659 {
660     if (a->name)
661         BIO_printf(out, "[%s] %s=%s\n", a->section, a->name, a->value);
662     else
663         BIO_printf(out, "[[%s]]\n", a->section);
664 }
665
666 static IMPLEMENT_LHASH_DOALL_ARG_FN(dump_value, CONF_VALUE, BIO)
667
668 static int def_dump(const CONF *conf, BIO *out)
669 {
670     lh_CONF_VALUE_doall_arg(conf->data, LHASH_DOALL_ARG_FN(dump_value),
671                             BIO, out);
672     return 1;
673 }
674
675 static int def_is_number(const CONF *conf, char c)
676 {
677     return IS_NUMBER(conf, c);
678 }
679
680 static int def_to_int(const CONF *conf, char c)
681 {
682     return c - '0';
683 }