v3_alt.c 14.5 KB
Newer Older
D
Dr. Stephen Henson 已提交
1
/* v3_alt.c */
2
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3
 * project.
4 5
 */
/* ====================================================================
6
 * Copyright (c) 1999-2003 The OpenSSL Project.  All rights reserved.
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
 *
 * 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 above 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 acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    licensing@OpenSSL.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED 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 OpenSSL PROJECT OR
 * ITS 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.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */

#include <stdio.h>
60
#include "cryptlib.h"
61 62
#include <openssl/conf.h>
#include <openssl/x509v3.h>
63

D
 
Dr. Stephen Henson 已提交
64 65
static GENERAL_NAMES *v2i_subject_alt(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
static GENERAL_NAMES *v2i_issuer_alt(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
66
static int copy_email(X509V3_CTX *ctx, GENERAL_NAMES *gens, int move_p);
D
 
Dr. Stephen Henson 已提交
67
static int copy_issuer(X509V3_CTX *ctx, GENERAL_NAMES *gens);
D
 
Dr. Stephen Henson 已提交
68
static int do_othername(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx);
69
static int do_dirname(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx);
D
 
Dr. Stephen Henson 已提交
70

71
X509V3_EXT_METHOD v3_alt[] = {
72
{ NID_subject_alt_name, 0, ASN1_ITEM_ref(GENERAL_NAMES),
D
 
Dr. Stephen Henson 已提交
73 74
0,0,0,0,
0,0,
75
(X509V3_EXT_I2V)i2v_GENERAL_NAMES,
76
(X509V3_EXT_V2I)v2i_subject_alt,
77
NULL, NULL, NULL},
D
 
Dr. Stephen Henson 已提交
78

79
{ NID_issuer_alt_name, 0, ASN1_ITEM_ref(GENERAL_NAMES),
D
 
Dr. Stephen Henson 已提交
80 81
0,0,0,0,
0,0,
82
(X509V3_EXT_I2V)i2v_GENERAL_NAMES,
83
(X509V3_EXT_V2I)v2i_issuer_alt,
84
NULL, NULL, NULL},
85 86
};

87
STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method,
D
 
Dr. Stephen Henson 已提交
88
		GENERAL_NAMES *gens, STACK_OF(CONF_VALUE) *ret)
89 90 91
{
	int i;
	GENERAL_NAME *gen;
92 93
	for(i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
		gen = sk_GENERAL_NAME_value(gens, i);
94 95
		ret = i2v_GENERAL_NAME(method, gen, ret);
	}
96
	if(!ret) return sk_CONF_VALUE_new_null();
97 98 99
	return ret;
}

100 101
STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method,
				GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret)
102 103
{
	unsigned char *p;
104 105
	char oline[256], htmp[5];
	int i;
106 107 108
	switch (gen->type)
	{
		case GEN_OTHERNAME:
109 110 111
		X509V3_add_value("othername","<unsupported>", &ret);
		break;

112
		case GEN_X400:
113 114 115
		X509V3_add_value("X400Name","<unsupported>", &ret);
		break;

116
		case GEN_EDIPARTY:
117
		X509V3_add_value("EdiPartyName","<unsupported>", &ret);
118
		break;
119

120
		case GEN_EMAIL:
B
Ben Laurie 已提交
121
		X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
122 123
		break;

124
		case GEN_DNS:
B
Ben Laurie 已提交
125
		X509V3_add_value_uchar("DNS",gen->d.ia5->data, &ret);
126 127
		break;

128
		case GEN_URI:
B
Ben Laurie 已提交
129
		X509V3_add_value_uchar("URI",gen->d.ia5->data, &ret);
130
		break;
131

132
		case GEN_DIRNAME:
133 134
		X509_NAME_oneline(gen->d.dirn, oline, 256);
		X509V3_add_value("DirName",oline, &ret);
135
		break;
136

137 138
		case GEN_IPADD:
		p = gen->d.ip->data;
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
		if(gen->d.ip->length == 4)
			sprintf(oline, "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
		else if(gen->d.ip->length == 16)
			{
			oline[0] = 0;
			for (i = 0; i < 8; i++)
				{
				sprintf(htmp, "%X", p[0] << 8 | p[1]);
				p += 2;
				strcat(oline, htmp);
				if (i != 7)
					strcat(oline, ":");
				}
			}
		else
			{
155 156
			X509V3_add_value("IP Address","<invalid>", &ret);
			break;
157
			}
158 159 160 161 162 163 164
		X509V3_add_value("IP Address",oline, &ret);
		break;

		case GEN_RID:
		i2t_ASN1_OBJECT(oline, 256, gen->d.rid);
		X509V3_add_value("Registered ID",oline, &ret);
		break;
165 166
	}
	return ret;
167 168 169 170 171
}

int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen)
{
	unsigned char *p;
172
	int i;
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	switch (gen->type)
	{
		case GEN_OTHERNAME:
		BIO_printf(out, "othername:<unsupported>");
		break;

		case GEN_X400:
		BIO_printf(out, "X400Name:<unsupported>");
		break;

		case GEN_EDIPARTY:
		/* Maybe fix this: it is supported now */
		BIO_printf(out, "EdiPartyName:<unsupported>");
		break;

		case GEN_EMAIL:
		BIO_printf(out, "email:%s",gen->d.ia5->data);
		break;

		case GEN_DNS:
		BIO_printf(out, "DNS:%s",gen->d.ia5->data);
		break;

		case GEN_URI:
		BIO_printf(out, "URI:%s",gen->d.ia5->data);
		break;

		case GEN_DIRNAME:
201 202
		BIO_printf(out, "DirName: ");
		X509_NAME_print_ex(out, gen->d.dirn, 0, XN_FLAG_ONELINE);
203 204 205 206
		break;

		case GEN_IPADD:
		p = gen->d.ip->data;
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
		if(gen->d.ip->length == 4)
			BIO_printf(out, "IP Address:%d.%d.%d.%d",
						p[0], p[1], p[2], p[3]);
		else if(gen->d.ip->length == 16)
			{
			BIO_printf(out, "IP Address");
			for (i = 0; i < 8; i++)
				{
				BIO_printf(out, ":%X", p[0] << 8 | p[1]);
				p += 2;
				}
			BIO_puts(out, "\n");
			}
		else
			{
222 223
			BIO_printf(out,"IP Address:<invalid>");
			break;
224
			}
225 226 227 228 229 230 231 232
		break;

		case GEN_RID:
		BIO_printf(out, "Registered ID");
		i2a_ASN1_OBJECT(out, gen->d.rid);
		break;
	}
	return 1;
233 234
}

D
 
Dr. Stephen Henson 已提交
235
static GENERAL_NAMES *v2i_issuer_alt(X509V3_EXT_METHOD *method,
236
				 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
237
{
D
 
Dr. Stephen Henson 已提交
238
	GENERAL_NAMES *gens = NULL;
239 240
	CONF_VALUE *cnf;
	int i;
241
	if(!(gens = sk_GENERAL_NAME_new_null())) {
242 243 244
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
245 246
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
247 248 249 250 251 252 253
		if(!name_cmp(cnf->name, "issuer") && cnf->value &&
						!strcmp(cnf->value, "copy")) {
			if(!copy_issuer(ctx, gens)) goto err;
		} else {
			GENERAL_NAME *gen;
			if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf)))
								 goto err; 
254
			sk_GENERAL_NAME_push(gens, gen);
255 256 257 258
		}
	}
	return gens;
	err:
259
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
260 261 262 263 264
	return NULL;
}

/* Append subject altname of issuer to issuer alt name of subject */

D
 
Dr. Stephen Henson 已提交
265
static int copy_issuer(X509V3_CTX *ctx, GENERAL_NAMES *gens)
266
{
D
 
Dr. Stephen Henson 已提交
267
	GENERAL_NAMES *ialt;
268
	GENERAL_NAME *gen;
269 270 271 272 273 274 275 276 277 278
	X509_EXTENSION *ext;
	int i;
	if(ctx && (ctx->flags == CTX_TEST)) return 1;
	if(!ctx || !ctx->issuer_cert) {
		X509V3err(X509V3_F_COPY_ISSUER,X509V3_R_NO_ISSUER_DETAILS);
		goto err;
	}
        i = X509_get_ext_by_NID(ctx->issuer_cert, NID_subject_alt_name, -1);
	if(i < 0) return 1;
        if(!(ext = X509_get_ext(ctx->issuer_cert, i)) ||
279
                        !(ialt = X509V3_EXT_d2i(ext)) ) {
280 281 282 283
		X509V3err(X509V3_F_COPY_ISSUER,X509V3_R_ISSUER_DECODE_ERROR);
		goto err;
	}

284 285 286
	for(i = 0; i < sk_GENERAL_NAME_num(ialt); i++) {
		gen = sk_GENERAL_NAME_value(ialt, i);
		if(!sk_GENERAL_NAME_push(gens, gen)) {
287 288 289 290
			X509V3err(X509V3_F_COPY_ISSUER,ERR_R_MALLOC_FAILURE);
			goto err;
		}
	}
291
	sk_GENERAL_NAME_free(ialt);
292 293 294 295 296 297 298 299

	return 1;
		
	err:
	return 0;
	
}

D
 
Dr. Stephen Henson 已提交
300
static GENERAL_NAMES *v2i_subject_alt(X509V3_EXT_METHOD *method,
301
				 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
302
{
D
 
Dr. Stephen Henson 已提交
303
	GENERAL_NAMES *gens = NULL;
304 305
	CONF_VALUE *cnf;
	int i;
306
	if(!(gens = sk_GENERAL_NAME_new_null())) {
307 308 309
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
310 311
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
312 313
		if(!name_cmp(cnf->name, "email") && cnf->value &&
						!strcmp(cnf->value, "copy")) {
314 315 316 317
			if(!copy_email(ctx, gens, 0)) goto err;
		} else if(!name_cmp(cnf->name, "email") && cnf->value &&
						!strcmp(cnf->value, "move")) {
			if(!copy_email(ctx, gens, 1)) goto err;
318 319 320 321
		} else {
			GENERAL_NAME *gen;
			if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf)))
								 goto err; 
322
			sk_GENERAL_NAME_push(gens, gen);
323 324 325 326
		}
	}
	return gens;
	err:
327
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
328 329 330 331 332 333 334
	return NULL;
}

/* Copy any email addresses in a certificate or request to 
 * GENERAL_NAMES
 */

335
static int copy_email(X509V3_CTX *ctx, GENERAL_NAMES *gens, int move_p)
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
{
	X509_NAME *nm;
	ASN1_IA5STRING *email = NULL;
	X509_NAME_ENTRY *ne;
	GENERAL_NAME *gen = NULL;
	int i;
	if(ctx->flags == CTX_TEST) return 1;
	if(!ctx || (!ctx->subject_cert && !ctx->subject_req)) {
		X509V3err(X509V3_F_COPY_EMAIL,X509V3_R_NO_SUBJECT_DETAILS);
		goto err;
	}
	/* Find the subject name */
	if(ctx->subject_cert) nm = X509_get_subject_name(ctx->subject_cert);
	else nm = X509_REQ_get_subject_name(ctx->subject_req);

	/* Now add any email address(es) to STACK */
	i = -1;
	while((i = X509_NAME_get_index_by_NID(nm,
D
 
Dr. Stephen Henson 已提交
354
					 NID_pkcs9_emailAddress, i)) >= 0) {
355
		ne = X509_NAME_get_entry(nm, i);
356
		email = M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne));
357 358 359 360 361
                if (move_p)
                        {
                        X509_NAME_delete_entry(nm, i);
                        i--;
                        }
362 363 364 365 366 367 368
		if(!email || !(gen = GENERAL_NAME_new())) {
			X509V3err(X509V3_F_COPY_EMAIL,ERR_R_MALLOC_FAILURE);
			goto err;
		}
		gen->d.ia5 = email;
		email = NULL;
		gen->type = GEN_EMAIL;
369
		if(!sk_GENERAL_NAME_push(gens, gen)) {
370 371 372 373 374 375 376 377 378 379 380
			X509V3err(X509V3_F_COPY_EMAIL,ERR_R_MALLOC_FAILURE);
			goto err;
		}
		gen = NULL;
	}

	
	return 1;
		
	err:
	GENERAL_NAME_free(gen);
381
	M_ASN1_IA5STRING_free(email);
382 383 384 385
	return 0;
	
}

D
 
Dr. Stephen Henson 已提交
386
GENERAL_NAMES *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method,
387
				X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
388 389
{
	GENERAL_NAME *gen;
D
 
Dr. Stephen Henson 已提交
390
	GENERAL_NAMES *gens = NULL;
391 392
	CONF_VALUE *cnf;
	int i;
393
	if(!(gens = sk_GENERAL_NAME_new_null())) {
394 395 396
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
397 398
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
399
		if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) goto err; 
400
		sk_GENERAL_NAME_push(gens, gen);
401 402 403
	}
	return gens;
	err:
404
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
405 406 407
	return NULL;
}

U
Ulf Möller 已提交
408
GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
409
							 CONF_VALUE *cnf)
410 411 412
	{
	return v2i_GENERAL_NAME_ex(NULL, method, ctx, cnf, 0);
	}
413

414 415 416 417 418 419 420
GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out,
				X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
						 CONF_VALUE *cnf, int is_nc)
	{
	char is_string = 0;
	int type;
	GENERAL_NAME *gen = NULL;
421

422
	char *name, *value;
423

424 425
	name = cnf->name;
	value = cnf->value;
426

427 428 429 430 431
	if(!value)
		{
		X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_MISSING_VALUE);
		return NULL;
		}
432

433 434 435
	if (out)
		gen = out;
	else
436
		{
437 438 439 440 441 442
		gen = GENERAL_NAME_new();
		if(gen == NULL)
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE);
			return NULL;
			}
443
		}
444 445

	if(!name_cmp(name, "email"))
446
		{
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
		is_string = 1;
		type = GEN_EMAIL;
		}
	else if(!name_cmp(name, "URI"))
		{
		is_string = 1;
		type = GEN_URI;
		}
	else if(!name_cmp(name, "DNS"))
		{
		is_string = 1;
		type = GEN_DNS;
		}
	else if(!name_cmp(name, "RID"))
		{
		ASN1_OBJECT *obj;
		if(!(obj = OBJ_txt2obj(value,0)))
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_BAD_OBJECT);
			ERR_add_error_data(2, "value=", value);
			goto err;
			}
		gen->d.rid = obj;
		type = GEN_RID;
		}
	else if(!name_cmp(name, "IP"))
		{
		if (is_nc)
			gen->d.ip = a2i_IPADDRESS_NC(value);
		else
			gen->d.ip = a2i_IPADDRESS(value);
		if(gen->d.ip == NULL)
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_BAD_IP_ADDRESS);
			ERR_add_error_data(2, "value=", value);
			goto err;
			}
		type = GEN_IPADD;
		}
	else if(!name_cmp(name, "dirName"))
		{
		type = GEN_DIRNAME;
		if (!do_dirname(gen, value, ctx))
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_DIRNAME_ERROR);
			goto err;
			}
		}
	else if(!name_cmp(name, "otherName"))
		{
		if (!do_othername(gen, value, ctx))
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_OTHERNAME_ERROR);
			goto err;
			}
		type = GEN_OTHERNAME;
503
		}
504
	else
D
 
Dr. Stephen Henson 已提交
505
		{
506 507
		X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_UNSUPPORTED_OPTION);
		ERR_add_error_data(2, "name=", name);
D
 
Dr. Stephen Henson 已提交
508 509
		goto err;
		}
510

511 512 513 514 515 516 517 518 519 520
	if(is_string)
		{
		if(!(gen->d.ia5 = M_ASN1_IA5STRING_new()) ||
			      !ASN1_STRING_set(gen->d.ia5, (unsigned char*)value,
					       strlen(value)))
			{
			X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE);
			goto err;
			}
		}
521

522
	gen->type = type;
523

524
	return gen;
525

526 527 528 529
	err:
	GENERAL_NAME_free(gen);
	return NULL;
	}
D
 
Dr. Stephen Henson 已提交
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

static int do_othername(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx)
	{
	char *objtmp = NULL, *p;
	int objlen;
	if (!(p = strchr(value, ';')))
		return 0;
	if (!(gen->d.otherName = OTHERNAME_new()))
		return 0;
	/* Free this up because we will overwrite it.
	 * no need to free type_id because it is static
	 */
	ASN1_TYPE_free(gen->d.otherName->value);
	if (!(gen->d.otherName->value = ASN1_generate_v3(p + 1, ctx)))
		return 0;
	objlen = p - value;
	objtmp = OPENSSL_malloc(objlen + 1);
	strncpy(objtmp, value, objlen);
	objtmp[objlen] = 0;
	gen->d.otherName->type_id = OBJ_txt2obj(objtmp, 0);
	OPENSSL_free(objtmp);	
	if (!gen->d.otherName->type_id)
		return 0;
	return 1;
	}
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578

static int do_dirname(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx)
	{
	int ret;
	STACK_OF(CONF_VALUE) *sk;
	X509_NAME *nm;
	if (!(nm = X509_NAME_new()))
		return 0;
	sk = X509V3_get_section(ctx, value);
	if (!sk)
		{
		X509V3err(X509V3_F_DO_DIRNAME,X509V3_R_SECTION_NOT_FOUND);
		ERR_add_error_data(2, "section=", value);
		X509_NAME_free(nm);
		return 0;
		}
	/* FIXME: should allow other character types... */
	ret = X509V3_NAME_from_section(nm, sk, MBSTRING_ASC);
	if (!ret)
		X509_NAME_free(nm);
	gen->d.dirn = nm;
		
	return ret;
	}