v3_alt.c 10.9 KB
Newer Older
D
Dr. Stephen Henson 已提交
1
/* v3_alt.c */
2 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
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
 * project 1999.
 */
/* ====================================================================
 * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
 *
 * 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 66 67
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);
static int copy_email(X509V3_CTX *ctx, GENERAL_NAMES *gens);
static int copy_issuer(X509V3_CTX *ctx, GENERAL_NAMES *gens);
68
X509V3_EXT_METHOD v3_alt[] = {
D
 
Dr. Stephen Henson 已提交
69 70 71
{ NID_subject_alt_name, 0, &GENERAL_NAMES_it,
0,0,0,0,
0,0,
72
(X509V3_EXT_I2V)i2v_GENERAL_NAMES,
73
(X509V3_EXT_V2I)v2i_subject_alt,
74
NULL, NULL, NULL},
D
 
Dr. Stephen Henson 已提交
75 76 77 78

{ NID_issuer_alt_name, 0, &GENERAL_NAMES_it,
0,0,0,0,
0,0,
79
(X509V3_EXT_I2V)i2v_GENERAL_NAMES,
80
(X509V3_EXT_V2I)v2i_issuer_alt,
81
NULL, NULL, NULL},
82 83
};

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

97 98
STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method,
				GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret)
99 100 101 102 103 104
{
	char oline[256];
	unsigned char *p;
	switch (gen->type)
	{
		case GEN_OTHERNAME:
105 106 107
		X509V3_add_value("othername","<unsupported>", &ret);
		break;

108
		case GEN_X400:
109 110 111
		X509V3_add_value("X400Name","<unsupported>", &ret);
		break;

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

116
		case GEN_EMAIL:
B
Ben Laurie 已提交
117
		X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
118 119
		break;

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

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

128
		case GEN_DIRNAME:
129 130
		X509_NAME_oneline(gen->d.dirn, oline, 256);
		X509V3_add_value("DirName",oline, &ret);
131
		break;
132

133 134 135 136 137 138
		case GEN_IPADD:
		p = gen->d.ip->data;
		/* BUG: doesn't support IPV6 */
		if(gen->d.ip->length != 4) {
			X509V3_add_value("IP Address","<invalid>", &ret);
			break;
139
		}
140 141 142 143 144 145 146 147
		sprintf(oline, "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
		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;
148 149 150 151
	}
	return ret;
}

D
 
Dr. Stephen Henson 已提交
152
static GENERAL_NAMES *v2i_issuer_alt(X509V3_EXT_METHOD *method,
153
				 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
154
{
D
 
Dr. Stephen Henson 已提交
155
	GENERAL_NAMES *gens = NULL;
156 157
	CONF_VALUE *cnf;
	int i;
158
	if(!(gens = sk_GENERAL_NAME_new_null())) {
159 160 161
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
162 163
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
164 165 166 167 168 169 170
		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; 
171
			sk_GENERAL_NAME_push(gens, gen);
172 173 174 175
		}
	}
	return gens;
	err:
176
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
177 178 179 180 181
	return NULL;
}

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

D
 
Dr. Stephen Henson 已提交
182
static int copy_issuer(X509V3_CTX *ctx, GENERAL_NAMES *gens)
183
{
D
 
Dr. Stephen Henson 已提交
184
	GENERAL_NAMES *ialt;
185
	GENERAL_NAME *gen;
186 187 188 189 190 191 192 193 194 195
	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)) ||
196
                        !(ialt = X509V3_EXT_d2i(ext)) ) {
197 198 199 200
		X509V3err(X509V3_F_COPY_ISSUER,X509V3_R_ISSUER_DECODE_ERROR);
		goto err;
	}

201 202 203
	for(i = 0; i < sk_GENERAL_NAME_num(ialt); i++) {
		gen = sk_GENERAL_NAME_value(ialt, i);
		if(!sk_GENERAL_NAME_push(gens, gen)) {
204 205 206 207
			X509V3err(X509V3_F_COPY_ISSUER,ERR_R_MALLOC_FAILURE);
			goto err;
		}
	}
208
	sk_GENERAL_NAME_free(ialt);
209 210 211 212 213 214 215 216

	return 1;
		
	err:
	return 0;
	
}

D
 
Dr. Stephen Henson 已提交
217
static GENERAL_NAMES *v2i_subject_alt(X509V3_EXT_METHOD *method,
218
				 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
219
{
D
 
Dr. Stephen Henson 已提交
220
	GENERAL_NAMES *gens = NULL;
221 222
	CONF_VALUE *cnf;
	int i;
223
	if(!(gens = sk_GENERAL_NAME_new_null())) {
224 225 226
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
227 228
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
229 230 231 232 233 234 235
		if(!name_cmp(cnf->name, "email") && cnf->value &&
						!strcmp(cnf->value, "copy")) {
			if(!copy_email(ctx, gens)) goto err;
		} else {
			GENERAL_NAME *gen;
			if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf)))
								 goto err; 
236
			sk_GENERAL_NAME_push(gens, gen);
237 238 239 240
		}
	}
	return gens;
	err:
241
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
242 243 244 245 246 247 248
	return NULL;
}

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

D
 
Dr. Stephen Henson 已提交
249
static int copy_email(X509V3_CTX *ctx, GENERAL_NAMES *gens)
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
{
	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,
					 NID_pkcs9_emailAddress, i)) > 0) {
		ne = X509_NAME_get_entry(nm, i);
270
		email = M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne));
271 272 273 274 275 276 277
		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;
278
		if(!sk_GENERAL_NAME_push(gens, gen)) {
279 280 281 282 283 284 285 286 287 288 289
			X509V3err(X509V3_F_COPY_EMAIL,ERR_R_MALLOC_FAILURE);
			goto err;
		}
		gen = NULL;
	}

	
	return 1;
		
	err:
	GENERAL_NAME_free(gen);
290
	M_ASN1_IA5STRING_free(email);
291 292 293 294
	return 0;
	
}

D
 
Dr. Stephen Henson 已提交
295
GENERAL_NAMES *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method,
296
				X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval)
297 298
{
	GENERAL_NAME *gen;
D
 
Dr. Stephen Henson 已提交
299
	GENERAL_NAMES *gens = NULL;
300 301
	CONF_VALUE *cnf;
	int i;
302
	if(!(gens = sk_GENERAL_NAME_new_null())) {
303 304 305
		X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE);
		return NULL;
	}
306 307
	for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
		cnf = sk_CONF_VALUE_value(nval, i);
308
		if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) goto err; 
309
		sk_GENERAL_NAME_push(gens, gen);
310 311 312
	}
	return gens;
	err:
313
	sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
314 315 316
	return NULL;
}

U
Ulf Möller 已提交
317
GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
318
							 CONF_VALUE *cnf)
319 320 321 322 323 324 325 326 327 328
{
char is_string = 0;
int type;
GENERAL_NAME *gen = NULL;

char *name, *value;

name = cnf->name;
value = cnf->value;

329 330 331 332 333
if(!value) {
	X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_MISSING_VALUE);
	return NULL;
}

334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
if(!(gen = GENERAL_NAME_new())) {
	X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE);
	return NULL;
}

if(!name_cmp(name, "email")) {
	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")) {
	int i1,i2,i3,i4;
	unsigned char ip[4];
	if((sscanf(value, "%d.%d.%d.%d",&i1,&i2,&i3,&i4) != 4) ||
	    (i1 < 0) || (i1 > 255) || (i2 < 0) || (i2 > 255) ||
	    (i3 < 0) || (i3 > 255) || (i4 < 0) || (i4 > 255) ) {
		X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_BAD_IP_ADDRESS);
		ERR_add_error_data(2, "value=", value);
		goto err;
	}
	ip[0] = i1; ip[1] = i2 ; ip[2] = i3 ; ip[3] = i4;
368
	if(!(gen->d.ip = M_ASN1_OCTET_STRING_new()) ||
369 370 371 372 373 374 375 376 377 378 379 380
		!ASN1_STRING_set(gen->d.ip, ip, 4)) {
			X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE);
			goto err;
	}
	type = GEN_IPADD;
} else {
	X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_UNSUPPORTED_OPTION);
	ERR_add_error_data(2, "name=", name);
	goto err;
}

if(is_string) {
381
	if(!(gen->d.ia5 = M_ASN1_IA5STRING_new()) ||
U
Ulf Möller 已提交
382 383
		      !ASN1_STRING_set(gen->d.ia5, (unsigned char*)value,
				       strlen(value))) {
384 385 386 387 388 389 390 391 392 393 394 395 396
		X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE);
		goto err;
	}
}

gen->type = type;

return gen;

err:
GENERAL_NAME_free(gen);
return NULL;
}