conf.c 15.3 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 59 60 61
 * 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.]
 */

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

#include "conf_lcl.h"

static void value_free_hash(CONF_VALUE *a, LHASH *conf);
static void value_free_stack(CONF_VALUE *a,LHASH *conf);
static unsigned long hash(CONF_VALUE *v);
B
Ben Laurie 已提交
73
static int cmp_conf(CONF_VALUE *a,CONF_VALUE *b);
74 75 76 77 78 79 80
static char *eat_ws(char *p);
static char *eat_alpha_numeric(char *p);
static void clear_comments(char *p);
static int str_copy(LHASH *conf,char *section,char **to, char *from);
static char *scan_quote(char *p);
static CONF_VALUE *new_section(LHASH *conf,char *section);
static CONF_VALUE *get_section(LHASH *conf,char *section);
81
#define scan_esc(p)	((((p)[1] == '\0')?(p++):(p+=2)),p)
82

B
Ben Laurie 已提交
83
const char *CONF_version="CONF" OPENSSL_VERSION_PTEXT;
84

85 86

LHASH *CONF_load(LHASH *h, const char *file, long *line)
87
	{
88
	LHASH *ltmp;
89
	BIO *in=NULL;
90

91 92 93
#ifdef VMS
	in=BIO_new_file(file, "r");
#else
94
	in=BIO_new_file(file, "rb");
95
#endif
96 97 98 99 100 101
	if (in == NULL)
		{
		CONFerr(CONF_F_CONF_LOAD,ERR_R_SYS_LIB);
		return NULL;
		}

102 103
	ltmp = CONF_load_bio(h, in, line);
	BIO_free(in);
104 105 106

	return ltmp;
}
107
#ifndef NO_FP_API
108 109 110 111 112 113 114 115 116 117 118 119
LHASH *CONF_load_fp(LHASH *h, FILE *in, long *line)
{
	BIO *btmp;
	LHASH *ltmp;
	if(!(btmp = BIO_new_fp(in, BIO_NOCLOSE))) {
		CONFerr(CONF_F_CONF_LOAD_FP,ERR_R_BUF_LIB);
		return NULL;
	}
	ltmp = CONF_load_bio(h, btmp, line);
	BIO_free(btmp);
	return ltmp;
}
120
#endif
121 122 123 124

LHASH *CONF_load_bio(LHASH *h, BIO *in, long *line)
	{
	LHASH *ret=NULL;
125
#define BUFSIZE	512
126
	char btmp[16];
127 128 129
	int bufnum=0,i,ii;
	BUF_MEM *buff=NULL;
	char *s,*p,*end;
130 131
	int again,n;
	long eline=0;
132 133 134
	CONF_VALUE *v=NULL,*vv,*tv;
	CONF_VALUE *sv=NULL;
	char *section=NULL,*buf;
135
	STACK_OF(CONF_VALUE) *section_sk=NULL,*ts;
136 137 138 139
	char *start,*psection,*pname;

	if ((buff=BUF_MEM_new()) == NULL)
		{
140
		CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_BUF_LIB);
141 142 143 144 145 146
		goto err;
		}

	section=(char *)Malloc(10);
	if (section == NULL)
		{
147
		CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_MALLOC_FAILURE);
148 149 150 151 152 153
		goto err;
		}
	strcpy(section,"default");

	if (h == NULL)
		{
B
Ben Laurie 已提交
154
		if ((ret=lh_new(hash,cmp_conf)) == NULL)
155
			{
156
			CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_MALLOC_FAILURE);
157 158 159 160 161 162 163 164 165
			goto err;
			}
		}
	else
		ret=h;

	sv=new_section(ret,section);
	if (sv == NULL)
		{
166 167
		CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
168 169
		goto err;
		}
170
	section_sk=(STACK_OF(CONF_VALUE) *)sv->value;
171 172 173 174 175 176 177

	bufnum=0;
	for (;;)
		{
		again=0;
		if (!BUF_MEM_grow(buff,bufnum+BUFSIZE))
			{
178
			CONFerr(CONF_F_CONF_LOAD_BIO,ERR_R_BUF_LIB);
179 180 181 182
			goto err;
			}
		p= &(buff->data[bufnum]);
		*p='\0';
183
		BIO_gets(in, p, BUFSIZE-1);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
		p[BUFSIZE-1]='\0';
		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]);
			if (	IS_ESC(p[0]) &&
				((bufnum <= 1) || !IS_ESC(p[-1])))
				{
				bufnum--;
				again=1;
				}
			}
		if (again) continue;
		bufnum=0;
		buf=buff->data;

		clear_comments(buf);
		n=strlen(buf);
		s=eat_ws(buf);
		if (IS_EOF(*s)) continue; /* blank line */
		if (*s == '[')
			{
233 234
			char *ss;

235 236
			s++;
			start=eat_ws(s);
237 238 239
			ss=start;
again:
			end=eat_alpha_numeric(ss);
240 241 242
			p=eat_ws(end);
			if (*p != ']')
				{
243 244 245 246 247
				if (*p != '\0')
					{
					ss=p;
					goto again;
					}
248 249
				CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_MISSING_CLOSE_SQUARE_BRACKET);
250 251 252 253 254 255 256 257
				goto err;
				}
			*end='\0';
			if (!str_copy(ret,NULL,&section,start)) goto err;
			if ((sv=get_section(ret,section)) == NULL)
				sv=new_section(ret,section);
			if (sv == NULL)
				{
258 259
				CONFerr(CONF_F_CONF_LOAD_BIO,
					CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
260 261
				goto err;
				}
262
			section_sk=(STACK_OF(CONF_VALUE) *)sv->value;
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
			continue;
			}
		else
			{
			pname=s;
			psection=NULL;
			end=eat_alpha_numeric(s);
			if ((end[0] == ':') && (end[1] == ':'))
				{
				*end='\0';
				end+=2;
				psection=pname;
				pname=end;
				end=eat_alpha_numeric(end);
				}
			p=eat_ws(end);
			if (*p != '=')
				{
281 282
				CONFerr(CONF_F_CONF_LOAD_BIO,
						CONF_R_MISSING_EQUAL_SIGN);
283 284 285 286 287 288 289 290 291 292 293 294 295
				goto err;
				}
			*end='\0';
			p++;
			start=eat_ws(p);
			while (!IS_EOF(*p))
				p++;
			p--;
			while ((p != start) && (IS_WS(*p)))
				p--;
			p++;
			*p='\0';

296
			if (!(v=(CONF_VALUE *)Malloc(sizeof(CONF_VALUE))))
297
				{
298 299
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
300 301 302 303 304 305 306
				goto err;
				}
			if (psection == NULL) psection=section;
			v->name=(char *)Malloc(strlen(pname)+1);
			v->value=NULL;
			if (v->name == NULL)
				{
307 308
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
309 310 311 312 313 314 315 316 317 318 319 320
				goto err;
				}
			strcpy(v->name,pname);
			if (!str_copy(ret,psection,&(v->value),start)) goto err;

			if (strcmp(psection,section) != 0)
				{
				if ((tv=get_section(ret,psection))
					== NULL)
					tv=new_section(ret,psection);
				if (tv == NULL)
					{
321
					CONFerr(CONF_F_CONF_LOAD_BIO,
322
					   CONF_R_UNABLE_TO_CREATE_NEW_SECTION);
323 324
					goto err;
					}
325
				ts=(STACK_OF(CONF_VALUE) *)tv->value;
326 327 328 329 330 331 332
				}
			else
				{
				tv=sv;
				ts=section_sk;
				}
			v->section=tv->section;	
333
			if (!sk_CONF_VALUE_push(ts,v))
334
				{
335 336
				CONFerr(CONF_F_CONF_LOAD_BIO,
							ERR_R_MALLOC_FAILURE);
337 338
				goto err;
				}
339
			vv=(CONF_VALUE *)lh_insert(ret,v);
340 341
			if (vv != NULL)
				{
342
				sk_CONF_VALUE_delete_ptr(ts,vv);
343 344 345 346 347 348 349 350 351 352 353 354 355 356
				Free(vv->name);
				Free(vv->value);
				Free(vv);
				}
			v=NULL;
			}
		}
	if (buff != NULL) BUF_MEM_free(buff);
	if (section != NULL) Free(section);
	return(ret);
err:
	if (buff != NULL) BUF_MEM_free(buff);
	if (section != NULL) Free(section);
	if (line != NULL) *line=eline;
357 358
	sprintf(btmp,"%ld",eline);
	ERR_add_error_data(2,"line ",btmp);
359 360 361 362 363 364 365 366 367
	if ((h != ret) && (ret != NULL)) CONF_free(ret);
	if (v != NULL)
		{
		if (v->name != NULL) Free(v->name);
		if (v->value != NULL) Free(v->value);
		if (v != NULL) Free(v);
		}
	return(NULL);
	}
368

U
Ulf Möller 已提交
369
char *CONF_get_string(LHASH *conf, char *section, char *name)
370 371 372 373 374 375 376 377 378 379 380
	{
	CONF_VALUE *v,vv;
	char *p;

	if (name == NULL) return(NULL);
	if (conf != NULL)
		{
		if (section != NULL)
			{
			vv.name=name;
			vv.section=section;
381
			v=(CONF_VALUE *)lh_retrieve(conf,&vv);
382 383 384 385 386 387 388
			if (v != NULL) return(v->value);
			if (strcmp(section,"ENV") == 0)
				{
				p=Getenv(name);
				if (p != NULL) return(p);
				}
			}
D
Dr. Stephen Henson 已提交
389
		vv.section="default";
390
		vv.name=name;
391
		v=(CONF_VALUE *)lh_retrieve(conf,&vv);
392 393 394 395 396 397 398 399 400
		if (v != NULL)
			return(v->value);
		else
			return(NULL);
		}
	else
		return(Getenv(name));
	}

U
Ulf Möller 已提交
401
static CONF_VALUE *get_section(LHASH *conf, char *section)
402 403 404 405 406 407
	{
	CONF_VALUE *v,vv;

	if ((conf == NULL) || (section == NULL)) return(NULL);
	vv.name=NULL;
	vv.section=section;
408
	v=(CONF_VALUE *)lh_retrieve(conf,&vv);
409 410 411
	return(v);
	}

412
STACK_OF(CONF_VALUE) *CONF_get_section(LHASH *conf, char *section)
413 414 415 416 417
	{
	CONF_VALUE *v;

	v=get_section(conf,section);
	if (v != NULL)
418
		return((STACK_OF(CONF_VALUE) *)v->value);
419 420 421 422
	else
		return(NULL);
	}

U
Ulf Möller 已提交
423
long CONF_get_number(LHASH *conf, char *section, char *name)
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
	{
	char *str;
	long ret=0;

	str=CONF_get_string(conf,section,name);
	if (str == NULL) return(0);
	for (;;)
		{
		if (IS_NUMER(*str))
			ret=ret*10+(*str -'0');
		else
			return(ret);
		str++;
		}
	}

U
Ulf Möller 已提交
440
void CONF_free(LHASH *conf)
441 442 443 444 445
	{
	if (conf == NULL) return;

	conf->down_load=0; 	/* evil thing to make sure the 'Free()'
				 * works as expected */
446
	lh_doall_arg(conf,(void (*)())value_free_hash,conf);
447 448 449 450

	/* We now have only 'section' entries in the hash table.
	 * Due to problems with */

451
	lh_doall_arg(conf,(void (*)())value_free_stack,conf);
452 453 454
	lh_free(conf);
	}

U
Ulf Möller 已提交
455
static void value_free_hash(CONF_VALUE *a, LHASH *conf)
456 457 458
	{
	if (a->name != NULL)
		{
459
		a=(CONF_VALUE *)lh_delete(conf,a);
460 461 462
		}
	}

U
Ulf Möller 已提交
463
static void value_free_stack(CONF_VALUE *a, LHASH *conf)
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
	{
	CONF_VALUE *vv;
	STACK *sk;
	int i;

	if (a->name != NULL) return;

	sk=(STACK *)a->value;
	for (i=sk_num(sk)-1; i>=0; i--)
		{
		vv=(CONF_VALUE *)sk_value(sk,i);
		Free(vv->value);
		Free(vv->name);
		Free(vv);
		}
	if (sk != NULL) sk_free(sk);
	Free(a->section);
	Free(a);
	}

U
Ulf Möller 已提交
484
static void clear_comments(char *p)
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
	{
	char *to;

	to=p;
	for (;;)
		{
		if (IS_COMMENT(*p))
			{
			*p='\0';
			return;
			}
		if (IS_QUOTE(*p))
			{
			p=scan_quote(p);
			continue;
			}
		if (IS_ESC(*p))
			{
			p=scan_esc(p);
			continue;
			}
		if (IS_EOF(*p))
			return;
		else
			p++;
		}
	}

U
Ulf Möller 已提交
513
static int str_copy(LHASH *conf, char *section, char **pto, char *from)
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
	{
	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 (;;)
		{
		if (IS_QUOTE(*from))
			{
			q= *from;
			from++;
			while ((*from != '\0') && (*from != q))
				{
				if (*from == '\\')
					{
					from++;
					if (*from == '\0') break;
					}
				buf->data[to++]= *(from++);
				}
			}
		else if (*from == '\\')
			{
			from++;
			v= *(from++);
			if (v == '\0') break;
			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;
			}
		else if (*from == '\0')
			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;
			while (IS_ALPHA_NUMERIC(*e))
				e++;
			if ((e[0] == ':') && (e[1] == ':'))
				{
				cp=np;
				rrp=e;
				rr= *e;
				*rrp='\0';
				e+=2;
				np=e;
				while (IS_ALPHA_NUMERIC(*e))
					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.
			 */
			p=CONF_get_string(conf,cp,np);
			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';
	if (*pto != NULL) Free(*pto);
	*pto=buf->data;
	Free(buf);
	return(1);
err:
	if (buf != NULL) BUF_MEM_free(buf);
	return(0);
	}

U
Ulf Möller 已提交
627
static char *eat_ws(char *p)
628 629 630 631 632 633
	{
	while (IS_WS(*p) && (!IS_EOF(*p)))
		p++;
	return(p);
	}

U
Ulf Möller 已提交
634
static char *eat_alpha_numeric(char *p)
635 636 637 638 639 640 641 642 643 644 645 646 647 648
	{
	for (;;)
		{
		if (IS_ESC(*p))
			{
			p=scan_esc(p);
			continue;
			}
		if (!IS_ALPHA_NUMERIC_PUNCT(*p))
			return(p);
		p++;
		}
	}

U
Ulf Möller 已提交
649
static unsigned long hash(CONF_VALUE *v)
650 651 652 653
	{
	return((lh_strhash(v->section)<<2)^lh_strhash(v->name));
	}

B
Ben Laurie 已提交
654
static int cmp_conf(CONF_VALUE *a, CONF_VALUE *b)
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
	{
	int i;

	if (a->section != b->section)
		{
		i=strcmp(a->section,b->section);
		if (i) return(i);
		}

	if ((a->name != NULL) && (b->name != NULL))
		{
		i=strcmp(a->name,b->name);
		return(i);
		}
	else if (a->name == b->name)
		return(0);
	else
		return((a->name == NULL)?-1:1);
	}

U
Ulf Möller 已提交
675
static char *scan_quote(char *p)
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
	{
	int q= *p;

	p++;
	while (!(IS_EOF(*p)) && (*p != q))
		{
		if (IS_ESC(*p))
			{
			p++;
			if (IS_EOF(*p)) return(p);
			}
		p++;
		}
	if (*p == q) p++;
	return(p);
	}

U
Ulf Möller 已提交
693
static CONF_VALUE *new_section(LHASH *conf, char *section)
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
	{
	STACK *sk=NULL;
	int ok=0,i;
	CONF_VALUE *v=NULL,*vv;

	if ((sk=sk_new_null()) == NULL)
		goto err;
	if ((v=(CONF_VALUE *)Malloc(sizeof(CONF_VALUE))) == NULL)
		goto err;
	i=strlen(section)+1;
	if ((v->section=(char *)Malloc(i)) == NULL)
		goto err;

	memcpy(v->section,section,i);
	v->name=NULL;
	v->value=(char *)sk;
	
711
	vv=(CONF_VALUE *)lh_insert(conf,v);
712 713
	if (vv != NULL)
		{
714
#if !defined(NO_STDIO) && !defined(WIN16)
715
		fprintf(stderr,"internal fault\n");
716
#endif
717 718 719 720 721 722 723 724 725 726 727 728
		abort();
		}
	ok=1;
err:
	if (!ok)
		{
		if (sk != NULL) sk_free(sk);
		if (v != NULL) Free(v);
		v=NULL;
		}
	return(v);
	}
729 730

IMPLEMENT_STACK_OF(CONF_VALUE)