conf_def.c 15.6 KB
Newer Older
1
/* crypto/conf/conf.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

59 60
/* Part of the code in here was originally in conf.c, which is now removed */

61
#include <stdio.h>
62
#include <string.h>
63 64 65
#include <openssl/stack.h>
#include <openssl/lhash.h>
#include <openssl/conf.h>
66 67
#include <openssl/conf_api.h>
#include "conf_def.h"
68 69
#include <openssl/buffer.h>
#include <openssl/err.h>
70
#include "cryptlib.h"
71

72 73 74 75 76 77
static char *eat_ws(CONF *conf, char *p);
static char *eat_alpha_numeric(CONF *conf, char *p);
static void clear_comments(CONF *conf, char *p);
static int str_copy(CONF *conf,char *section,char **to, char *from);
static char *scan_quote(CONF *conf, char *p);
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 81 82 83 84

static CONF *def_create(CONF_METHOD *meth);
static int def_init_default(CONF *conf);
static int def_init_WIN32(CONF *conf);
static int def_destroy(CONF *conf);
static int def_destroy_data(CONF *conf);
85 86
static int def_load(CONF *conf, const char *name, long *eline);
static int def_load_bio(CONF *conf, BIO *bp, long *eline);
87 88 89
static int def_dump(const CONF *conf, BIO *bp);
static int def_is_number(const CONF *conf, char c);
static int def_to_int(const CONF *conf, char c);
90 91 92 93 94 95 96 97 98

const char *CONF_def_version="CONF_def" OPENSSL_VERSION_PTEXT;

static CONF_METHOD default_method = {
	"OpenSSL default",
	def_create,
	def_init_default,
	def_destroy,
	def_destroy_data,
99
	def_load_bio,
100 101
	def_dump,
	def_is_number,
102 103
	def_to_int,
	def_load
104 105 106 107 108 109 110 111
	};

static CONF_METHOD WIN32_method = {
	"WIN32",
	def_create,
	def_init_WIN32,
	def_destroy,
	def_destroy_data,
112
	def_load_bio,
113 114
	def_dump,
	def_is_number,
115 116
	def_to_int,
	def_load
117 118 119 120 121 122 123 124 125 126
	};

CONF_METHOD *NCONF_default()
	{
	return &default_method;
	}
CONF_METHOD *NCONF_WIN32()
	{
	return &WIN32_method;
	}
127

128 129 130
static CONF *def_create(CONF_METHOD *meth)
	{
	CONF *ret;
131

132
	ret = (CONF *)OPENSSL_malloc(sizeof(CONF) + sizeof(unsigned short *));
133 134 135
	if (ret)
		if (meth->init(ret) == 0)
			{
136
			OPENSSL_free(ret);
137 138 139 140 141 142 143 144 145 146 147 148 149
			ret = NULL;
			}
	return ret;
	}
	
static int def_init_default(CONF *conf)
	{
	if (conf == NULL)
		return 0;

	conf->meth = &default_method;
	conf->meth_data = (void *)CONF_type_default;
	conf->data = NULL;
150

151 152
	return 1;
	}
153

154
static int def_init_WIN32(CONF *conf)
155
	{
156 157
	if (conf == NULL)
		return 0;
158

159 160 161 162 163 164 165 166 167 168
	conf->meth = &WIN32_method;
	conf->meth_data = (void *)CONF_type_win32;
	conf->data = NULL;

	return 1;
	}

static int def_destroy(CONF *conf)
	{
	if (def_destroy_data(conf))
169
		{
170
		OPENSSL_free(conf);
171
		return 1;
172
		}
173 174
	return 0;
	}
175

176 177 178 179 180 181
static int def_destroy_data(CONF *conf)
	{
	if (conf == NULL)
		return 0;
	_CONF_free_data(conf);
	return 1;
182 183
	}

184 185 186 187 188
static int def_load(CONF *conf, const char *name, long *line)
	{
	int ret;
	BIO *in=NULL;

189
#ifdef OPENSSL_SYS_VMS
190 191 192 193 194 195
	in=BIO_new_file(name, "r");
#else
	in=BIO_new_file(name, "rb");
#endif
	if (in == NULL)
		{
B
Bodo Möller 已提交
196
		if (ERR_GET_REASON(ERR_peek_last_error()) == BIO_R_NO_SUCH_FILE)
197 198 199
			CONFerr(CONF_F_CONF_LOAD,CONF_R_NO_SUCH_FILE);
		else
			CONFerr(CONF_F_CONF_LOAD,ERR_R_SYS_LIB);
200 201 202 203 204 205 206 207 208 209
		return 0;
		}

	ret = def_load_bio(conf, in, line);
	BIO_free(in);

	return ret;
	}

static int def_load_bio(CONF *conf, BIO *in, long *line)
210
	{
R
Richard Levitte 已提交
211 212
/* The macro BUFSIZE conflicts with a system macro in VxWorks */
#define CONFBUFSIZE	512
213 214 215
	int bufnum=0,i,ii;
	BUF_MEM *buff=NULL;
	char *s,*p,*end;
216 217
	int again,n;
	long eline=0;
218
	char btmp[DECIMAL_SIZE(eline)+1];
219
	CONF_VALUE *v=NULL,*tv;
220 221
	CONF_VALUE *sv=NULL;
	char *section=NULL,*buf;
222
	STACK_OF(CONF_VALUE) *section_sk=NULL,*ts;
223
	char *start,*psection,*pname;
224
	void *h = (void *)(conf->data);
225 226 227

	if ((buff=BUF_MEM_new()) == NULL)
		{
228
		CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_BUF_LIB);
229 230 231
		goto err;
		}

232
	section=(char *)OPENSSL_malloc(10);
233 234
	if (section == NULL)
		{
235
		CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_MALLOC_FAILURE);
236 237 238 239
		goto err;
		}
	strcpy(section,"default");

240
	if (_CONF_new_data(conf) == 0)
241
		{
242 243
		CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_MALLOC_FAILURE);
		goto err;
244 245
		}

246
	sv=_CONF_new_section(conf,section);
247 248
	if (sv == NULL)
		{
249 250
		CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
251 252
		goto err;
		}
253
	section_sk=(STACK_OF(CONF_VALUE) *)sv->value;
254 255 256 257 258

	bufnum=0;
	for (;;)
		{
		again=0;
R
Richard Levitte 已提交
259
		if (!BUF_MEM_grow(buff,bufnum+CONFBUFSIZE))
260
			{
261
			CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_BUF_LIB);
262 263 264 265
			goto err;
			}
		p= &(buff->data[bufnum]);
		*p='\0';
R
Richard Levitte 已提交
266 267
		BIO_gets(in, p, CONFBUFSIZE-1);
		p[CONFBUFSIZE-1]='\0';
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
		ii=i=strlen(p);
		if (i == 0) break;
		while (i > 0)
			{
			if ((p[i-1] != '\r') && (p[i-1] != '\n'))
				break;
			else
				i--;
			}
		/* we removed some trailing stuff so there is a new
		 * line on the end. */
		if (i == ii)
			again=1; /* long line */
		else
			{
			p[i]='\0';
			eline++; /* another input line */
			}

		/* we now have a line with trailing \r\n removed */

		/* i is the number of bytes */
		bufnum+=i;

		v=NULL;
		/* check for line continuation */
		if (bufnum >= 1)
			{
			/* If we have bytes and the last char '\\' and
			 * second last char is not '\\' */
			p= &(buff->data[bufnum-1]);
299 300
			if (IS_ESC(conf,p[0]) &&
				((bufnum <= 1) || !IS_ESC(conf,p[-1])))
301 302 303 304 305 306 307 308 309
				{
				bufnum--;
				again=1;
				}
			}
		if (again) continue;
		bufnum=0;
		buf=buff->data;

310
		clear_comments(conf, buf);
311
		n=strlen(buf);
312 313
		s=eat_ws(conf, buf);
		if (IS_EOF(conf,*s)) continue; /* blank line */
314 315
		if (*s == '[')
			{
316 317
			char *ss;

318
			s++;
319
			start=eat_ws(conf, s);
320 321
			ss=start;
again:
322 323
			end=eat_alpha_numeric(conf, ss);
			p=eat_ws(conf, end);
324 325
			if (*p != ']')
				{
326 327 328 329 330
				if (*p != '\0')
					{
					ss=p;
					goto again;
					}
331 332
				CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_MISSING_CLOSE_SQUARE_BRACKET);
333 334 335
				goto err;
				}
			*end='\0';
336 337 338
			if (!str_copy(conf,NULL,&section,start)) goto err;
			if ((sv=_CONF_get_section(conf,section)) == NULL)
				sv=_CONF_new_section(conf,section);
339 340
			if (sv == NULL)
				{
341 342
				CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
343 344
				goto err;
				}
345
			section_sk=(STACK_OF(CONF_VALUE) *)sv->value;
346 347 348 349 350 351
			continue;
			}
		else
			{
			pname=s;
			psection=NULL;
352
			end=eat_alpha_numeric(conf, s);
353 354 355 356 357 358
			if ((end[0] == ':') && (end[1] == ':'))
				{
				*end='\0';
				end+=2;
				psection=pname;
				pname=end;
359
				end=eat_alpha_numeric(conf, end);
360
				}
361
			p=eat_ws(conf, end);
362 363
			if (*p != '=')
				{
364 365
				CONFerr(CONF_F_CONF_LOAD_BIO,
						CONF_R_MISSING_EQUAL_SIGN);
366 367 368 369
				goto err;
				}
			*end='\0';
			p++;
370 371
			start=eat_ws(conf, p);
			while (!IS_EOF(conf,*p))
372 373
				p++;
			p--;
374
			while ((p != start) && (IS_WS(conf,*p)))
375 376 377 378
				p--;
			p++;
			*p='\0';

379
			if (!(v=(CONF_VALUE *)OPENSSL_malloc(sizeof(CONF_VALUE))))
380
				{
381 382
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
383 384 385
				goto err;
				}
			if (psection == NULL) psection=section;
386
			v->name=(char *)OPENSSL_malloc(strlen(pname)+1);
387 388 389
			v->value=NULL;
			if (v->name == NULL)
				{
390 391
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
392 393 394
				goto err;
				}
			strcpy(v->name,pname);
395
			if (!str_copy(conf,psection,&(v->value),start)) goto err;
396 397 398

			if (strcmp(psection,section) != 0)
				{
399
				if ((tv=_CONF_get_section(conf,psection))
400
					== NULL)
401
					tv=_CONF_new_section(conf,psection);
402 403
				if (tv == NULL)
					{
404
					CONFerr(CONF_F_CONF_LOAD_BIO,
405
					   CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
406 407
					goto err;
					}
408
				ts=(STACK_OF(CONF_VALUE) *)tv->value;
409 410 411 412 413 414
				}
			else
				{
				tv=sv;
				ts=section_sk;
				}
415 416 417 418 419 420 421 422
#if 1
			if (_CONF_add_string(conf, tv, v) == 0)
				{
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
				goto err;
				}
#else
423
			v->section=tv->section;	
424
			if (!sk_CONF_VALUE_push(ts,v))
425
				{
426 427
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
428 429
				goto err;
				}
430
			vv=(CONF_VALUE *)lh_insert(conf->data,v);
431 432
			if (vv != NULL)
				{
433
				sk_CONF_VALUE_delete_ptr(ts,vv);
434 435 436
				OPENSSL_free(vv->name);
				OPENSSL_free(vv->value);
				OPENSSL_free(vv);
437
				}
438
#endif
439 440 441 442
			v=NULL;
			}
		}
	if (buff != NULL) BUF_MEM_free(buff);
443
	if (section != NULL) OPENSSL_free(section);
444
	return(1);
445 446
err:
	if (buff != NULL) BUF_MEM_free(buff);
447
	if (section != NULL) OPENSSL_free(section);
448
	if (line != NULL) *line=eline;
449 450
	sprintf(btmp,"%ld",eline);
	ERR_add_error_data(2,"line ",btmp);
B
Ben Laurie 已提交
451 452 453 454 455
	if ((h != conf->data) && (conf->data != NULL))
		{
		CONF_free(conf->data);
		conf->data=NULL;
		}
456 457
	if (v != NULL)
		{
458 459 460
		if (v->name != NULL) OPENSSL_free(v->name);
		if (v->value != NULL) OPENSSL_free(v->value);
		if (v != NULL) OPENSSL_free(v);
461
		}
462
	return(0);
463
	}
464

465
static void clear_comments(CONF *conf, char *p)
466
	{
467
	char *to;
468

469 470
	to=p;
	for (;;)
471
		{
472
		if (IS_FCOMMENT(conf,*p))
473
			{
474 475
			*p='\0';
			return;
476
			}
477 478 479 480 481
		if (!IS_WS(conf,*p))
			{
			break;
			}
		p++;
482 483 484 485
		}

	for (;;)
		{
486
		if (IS_COMMENT(conf,*p))
487 488 489 490
			{
			*p='\0';
			return;
			}
491
		if (IS_DQUOTE(conf,*p))
492
			{
493
			p=scan_dquote(conf, p);
494 495
			continue;
			}
496 497 498 499 500 501
		if (IS_QUOTE(conf,*p))
			{
			p=scan_quote(conf, p);
			continue;
			}
		if (IS_ESC(conf,*p))
502
			{
503
			p=scan_esc(conf,p);
504 505
			continue;
			}
506
		if (IS_EOF(conf,*p))
507 508 509 510 511 512
			return;
		else
			p++;
		}
	}

513
static int str_copy(CONF *conf, char *section, char **pto, char *from)
514 515 516 517 518 519 520 521 522 523 524 525
	{
	int q,r,rr=0,to=0,len=0;
	char *s,*e,*rp,*p,*rrp,*np,*cp,v;
	BUF_MEM *buf;

	if ((buf=BUF_MEM_new()) == NULL) return(0);

	len=strlen(from)+1;
	if (!BUF_MEM_grow(buf,len)) goto err;

	for (;;)
		{
526
		if (IS_QUOTE(conf,*from))
527 528 529
			{
			q= *from;
			from++;
530
			while (!IS_EOF(conf,*from) && (*from != q))
531
				{
532
				if (IS_ESC(conf,*from))
533 534
					{
					from++;
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
					if (IS_EOF(conf,*from)) break;
					}
				buf->data[to++]= *(from++);
				}
			if (*from == q) from++;
			}
		else if (IS_DQUOTE(conf,*from))
			{
			q= *from;
			from++;
			while (!IS_EOF(conf,*from))
				{
				if (*from == q)
					{
					if (*(from+1) == q)
						{
						from++;
						}
					else
						{
						break;
						}
557 558 559
					}
				buf->data[to++]= *(from++);
				}
560
			if (*from == q) from++;
561
			}
562
		else if (IS_ESC(conf,*from))
563 564 565
			{
			from++;
			v= *(from++);
566
			if (IS_EOF(conf,v)) break;
567 568 569 570 571 572
			else if (v == 'r') v='\r';
			else if (v == 'n') v='\n';
			else if (v == 'b') v='\b';
			else if (v == 't') v='\t';
			buf->data[to++]= v;
			}
573
		else if (IS_EOF(conf,*from))
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
			break;
		else if (*from == '$')
			{
			/* try to expand it */
			rrp=NULL;
			s= &(from[1]);
			if (*s == '{')
				q='}';
			else if (*s == '(')
				q=')';
			else q=0;

			if (q) s++;
			cp=section;
			e=np=s;
589
			while (IS_ALPHA_NUMERIC(conf,*e))
590 591 592 593 594 595 596 597 598
				e++;
			if ((e[0] == ':') && (e[1] == ':'))
				{
				cp=np;
				rrp=e;
				rr= *e;
				*rrp='\0';
				e+=2;
				np=e;
599
				while (IS_ALPHA_NUMERIC(conf,*e))
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
					e++;
				}
			r= *e;
			*e='\0';
			rp=e;
			if (q)
				{
				if (r != q)
					{
					CONFerr(CONF_F_STR_COPY,CONF_R_NO_CLOSE_BRACE);
					goto err;
					}
				e++;
				}
			/* So at this point we have
			 * ns which is the start of the name string which is
			 *   '\0' terminated. 
			 * cs which is the start of the section string which is
			 *   '\0' terminated.
			 * e is the 'next point after'.
			 * r and s are the chars replaced by the '\0'
			 * rp and sp is where 'r' and 's' came from.
			 */
623
			p=_CONF_get_string(conf,cp,np);
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
			if (rrp != NULL) *rrp=rr;
			*rp=r;
			if (p == NULL)
				{
				CONFerr(CONF_F_STR_COPY,CONF_R_VARIABLE_HAS_NO_VALUE);
				goto err;
				}
			BUF_MEM_grow(buf,(strlen(p)+len-(e-from)));
			while (*p)
				buf->data[to++]= *(p++);
			from=e;
			}
		else
			buf->data[to++]= *(from++);
		}
	buf->data[to]='\0';
640
	if (*pto != NULL) OPENSSL_free(*pto);
641
	*pto=buf->data;
642
	OPENSSL_free(buf);
643 644 645 646 647 648
	return(1);
err:
	if (buf != NULL) BUF_MEM_free(buf);
	return(0);
	}

649
static char *eat_ws(CONF *conf, char *p)
650
	{
651
	while (IS_WS(conf,*p) && (!IS_EOF(conf,*p)))
652 653 654 655
		p++;
	return(p);
	}

656
static char *eat_alpha_numeric(CONF *conf, char *p)
657 658 659
	{
	for (;;)
		{
660
		if (IS_ESC(conf,*p))
661
			{
662
			p=scan_esc(conf,p);
663 664
			continue;
			}
665
		if (!IS_ALPHA_NUMERIC_PUNCT(conf,*p))
666 667 668 669 670
			return(p);
		p++;
		}
	}

671
static char *scan_quote(CONF *conf, char *p)
672
	{
673
	int q= *p;
674

675 676
	p++;
	while (!(IS_EOF(conf,*p)) && (*p != q))
677
		{
678 679 680 681 682 683
		if (IS_ESC(conf,*p))
			{
			p++;
			if (IS_EOF(conf,*p)) return(p);
			}
		p++;
684
		}
685 686
	if (*p == q) p++;
	return(p);
687 688
	}

689 690

static char *scan_dquote(CONF *conf, char *p)
691 692 693 694
	{
	int q= *p;

	p++;
695
	while (!(IS_EOF(conf,*p)))
696
		{
697
		if (*p == q)
698
			{
699 700 701 702 703 704 705 706
			if (*(p+1) == q)
				{
				p++;
				}
			else
				{
				break;
				}
707 708 709 710 711 712 713
			}
		p++;
		}
	if (*p == q) p++;
	return(p);
	}

714 715 716 717 718 719 720 721
static void dump_value(CONF_VALUE *a, BIO *out)
	{
	if (a->name)
		BIO_printf(out, "[%s] %s=%s\n", a->section, a->name, a->value);
	else
		BIO_printf(out, "[[%s]]\n", a->section);
	}

722 723
static IMPLEMENT_LHASH_DOALL_ARG_FN(dump_value, CONF_VALUE *, BIO *)

724
static int def_dump(const CONF *conf, BIO *out)
725
	{
726
	lh_doall_arg(conf->data, LHASH_DOALL_ARG_FN(dump_value), out);
727 728
	return 1;
	}
729

730
static int def_is_number(const CONF *conf, char c)
731 732 733
	{
	return IS_NUMBER(conf,c);
	}
734

735
static int def_to_int(const CONF *conf, char c)
736 737
	{
	return c - '0';
738
	}
739