ameth_lib.c 12.2 KB
Newer Older
1
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
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 60 61
 * project 2006.
 */
/* ====================================================================
 * Copyright (c) 2006 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>
#include "cryptlib.h"
#include <openssl/asn1t.h>
#include <openssl/x509.h>
62 63 64
#ifndef OPENSSL_NO_ENGINE
#include <openssl/engine.h>
#endif
65 66 67 68
#include "asn1_locl.h"

extern const EVP_PKEY_ASN1_METHOD rsa_asn1_meths[];
extern const EVP_PKEY_ASN1_METHOD dsa_asn1_meths[];
69
extern const EVP_PKEY_ASN1_METHOD dh_asn1_meth;
70
extern const EVP_PKEY_ASN1_METHOD dhx_asn1_meth;
71
extern const EVP_PKEY_ASN1_METHOD eckey_asn1_meth;
72
extern const EVP_PKEY_ASN1_METHOD hmac_asn1_meth;
73
extern const EVP_PKEY_ASN1_METHOD cmac_asn1_meth;
74 75

/* Keep this sorted in type order !! */
76
static const EVP_PKEY_ASN1_METHOD *standard_methods[] = 
77
	{
78
#ifndef OPENSSL_NO_RSA
79 80
	&rsa_asn1_meths[0],
	&rsa_asn1_meths[1],
81 82
#endif
#ifndef OPENSSL_NO_DH
83
	&dh_asn1_meth,
84 85
#endif
#ifndef OPENSSL_NO_DSA
86 87 88 89 90
	&dsa_asn1_meths[0],
	&dsa_asn1_meths[1],
	&dsa_asn1_meths[2],
	&dsa_asn1_meths[3],
	&dsa_asn1_meths[4],
91 92
#endif
#ifndef OPENSSL_NO_EC
93
	&eckey_asn1_meth,
94
#endif
95
	&hmac_asn1_meth,
96 97 98 99
	&cmac_asn1_meth,
#ifndef OPENSSL_NO_DH
	&dhx_asn1_meth
#endif
100 101
	};

102
typedef int sk_cmp_fn_type(const char * const *a, const char * const *b);
103
DECLARE_STACK_OF(EVP_PKEY_ASN1_METHOD)
B
Ben Laurie 已提交
104
static STACK_OF(EVP_PKEY_ASN1_METHOD) *app_methods = NULL;
105 106 107



108 109 110 111 112 113 114
#ifdef TEST
void main()
	{
	int i;
	for (i = 0;
		i < sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
		i++)
115 116 117
		fprintf(stderr, "Number %d id=%d (%s)\n", i,
			standard_methods[i]->pkey_id,
			OBJ_nid2sn(standard_methods[i]->pkey_id));
118 119 120
	}
#endif

D
Dr. Stephen Henson 已提交
121
DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
122
			   const EVP_PKEY_ASN1_METHOD *, ameth);
123

124
static int ameth_cmp(const EVP_PKEY_ASN1_METHOD * const *a,
125
		     const EVP_PKEY_ASN1_METHOD * const *b)
126 127 128 129
	{
        return ((*a)->pkey_id - (*b)->pkey_id);
	}

D
Dr. Stephen Henson 已提交
130
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
131
			     const EVP_PKEY_ASN1_METHOD *, ameth);
132

133 134 135 136
int EVP_PKEY_asn1_get_count(void)
	{
	int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
	if (app_methods)
B
Ben Laurie 已提交
137
		num += sk_EVP_PKEY_ASN1_METHOD_num(app_methods);
138 139 140 141 142 143 144 145 146 147 148
	return num;
	}

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx)
	{
	int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
	if (idx < 0)
		return NULL; 
	if (idx < num)
		return standard_methods[idx];
	idx -= num;
B
Ben Laurie 已提交
149
	return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
150 151
	}

152
static const EVP_PKEY_ASN1_METHOD *pkey_asn1_find(int type)
153
	{
D
Dr. Stephen Henson 已提交
154 155
	EVP_PKEY_ASN1_METHOD tmp;
	const EVP_PKEY_ASN1_METHOD *t = &tmp, **ret;
156
	tmp.pkey_id = type;
157 158 159
	if (app_methods)
		{
		int idx;
B
Ben Laurie 已提交
160
		idx = sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp);
161
		if (idx >= 0)
B
Ben Laurie 已提交
162
			return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
163
		}
164
	ret = OBJ_bsearch_ameth(&t, standard_methods,
165
			  sizeof(standard_methods)
166
			  /sizeof(EVP_PKEY_ASN1_METHOD *));
167 168
	if (!ret || !*ret)
		return NULL;
169 170 171
	return *ret;
	}

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
/* Find an implementation of an ASN1 algorithm. If 'pe' is not NULL
 * also search through engines and set *pe to a functional reference
 * to the engine implementing 'type' or NULL if no engine implements 
 * it.
 */

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type)
	{
	const EVP_PKEY_ASN1_METHOD *t;

	for (;;)
		{
		t = pkey_asn1_find(type);
		if (!t || !(t->pkey_flags & ASN1_PKEY_ALIAS))
			break;
		type = t->pkey_base_id;
		}
	if (pe)
		{
#ifndef OPENSSL_NO_ENGINE
D
Dr. Stephen Henson 已提交
192
		ENGINE *e;
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
		/* type will contain the final unaliased type */
		e = ENGINE_get_pkey_asn1_meth_engine(type);
		if (e)
			{
			*pe = e;
			return ENGINE_get_pkey_asn1_meth(e, type);
			}
#endif
		*pe = NULL;
		}
	return t;
	}

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe,
					const char *str, int len)
208 209 210
	{
	int i;
	const EVP_PKEY_ASN1_METHOD *ameth;
D
Dr. Stephen Henson 已提交
211 212
	if (len == -1)
		len = strlen(str);
213 214 215 216
	if (pe)
		{
#ifndef OPENSSL_NO_ENGINE
		ENGINE *e;
217 218
		ameth = ENGINE_pkey_asn1_find_str(&e, str, len);
		if (ameth)
219
			{
220 221 222 223 224 225 226 227
			/* Convert structural into
			 * functional reference
			 */
			if (!ENGINE_init(e))
				ameth = NULL;
			ENGINE_free(e);
			*pe = e;
			return ameth;
228 229 230 231
			}
#endif
		*pe = NULL;
		}
232 233 234 235 236
	for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
		{
		ameth = EVP_PKEY_asn1_get0(i);
		if (ameth->pkey_flags & ASN1_PKEY_ALIAS)
			continue;
237
		if (((int)strlen(ameth->pem_str) == len) && 
238 239 240 241 242 243
			!strncasecmp(ameth->pem_str, str, len))
			return ameth;
		}
	return NULL;
	}

244
int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth)
245 246 247
	{
	if (app_methods == NULL)
		{
B
Ben Laurie 已提交
248
		app_methods = sk_EVP_PKEY_ASN1_METHOD_new(ameth_cmp);
249 250 251
		if (!app_methods)
			return 0;
		}
B
Ben Laurie 已提交
252
	if (!sk_EVP_PKEY_ASN1_METHOD_push(app_methods, ameth))
253
		return 0;
B
Ben Laurie 已提交
254
	sk_EVP_PKEY_ASN1_METHOD_sort(app_methods);
255 256 257
	return 1;
	}

258 259 260
int EVP_PKEY_asn1_add_alias(int to, int from)
	{
	EVP_PKEY_ASN1_METHOD *ameth;
261
	ameth = EVP_PKEY_asn1_new(from, ASN1_PKEY_ALIAS, NULL, NULL);
262 263 264 265 266 267
	if (!ameth)
		return 0;
	ameth->pkey_base_id = to;
	return EVP_PKEY_asn1_add0(ameth);
	}

268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *ppkey_base_id, int *ppkey_flags,
				const char **pinfo, const char **ppem_str,
					const EVP_PKEY_ASN1_METHOD *ameth)
	{
	if (!ameth)
		return 0;
	if (ppkey_id)
		*ppkey_id = ameth->pkey_id;
	if (ppkey_base_id)
		*ppkey_base_id = ameth->pkey_base_id;
	if (ppkey_flags)
		*ppkey_flags = ameth->pkey_flags;
	if (pinfo)
		*pinfo = ameth->info;
	if (ppem_str)
		*ppem_str = ameth->pem_str;
	return 1;
	}

287 288 289 290 291
const EVP_PKEY_ASN1_METHOD* EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
	{
	return pkey->ameth;
	}

292
EVP_PKEY_ASN1_METHOD* EVP_PKEY_asn1_new(int id, int flags,
293
					const char *pem_str, const char *info)
294 295 296 297 298 299
	{
	EVP_PKEY_ASN1_METHOD *ameth;
	ameth = OPENSSL_malloc(sizeof(EVP_PKEY_ASN1_METHOD));
	if (!ameth)
		return NULL;

300 301
	memset(ameth, 0, sizeof(EVP_PKEY_ASN1_METHOD));

302 303
	ameth->pkey_id = id;
	ameth->pkey_base_id = id;
304
	ameth->pkey_flags = flags | ASN1_PKEY_DYNAMIC;
305 306 307 308 309 310 311

	if (info)
		{
		ameth->info = BUF_strdup(info);
		if (!ameth->info)
			goto err;
		}
D
Dr. Stephen Henson 已提交
312
	else
313
		ameth->info = NULL;
314 315 316 317 318 319 320

	if (pem_str)
		{
		ameth->pem_str = BUF_strdup(pem_str);
		if (!ameth->pem_str)
			goto err;
		}
D
Dr. Stephen Henson 已提交
321
	else
322
		ameth->pem_str = NULL;
323

324 325 326 327 328 329 330 331 332
	ameth->pub_decode = 0;
	ameth->pub_encode = 0;
	ameth->pub_cmp = 0;
	ameth->pub_print = 0;

	ameth->priv_decode = 0;
	ameth->priv_encode = 0;
	ameth->priv_print = 0;

333 334 335
	ameth->old_priv_encode = 0;
	ameth->old_priv_decode = 0;

336 337 338
	ameth->item_verify = 0;
	ameth->item_sign = 0;

339 340 341 342 343 344 345 346 347 348 349 350 351 352
	ameth->pkey_size = 0;
	ameth->pkey_bits = 0;

	ameth->param_decode = 0;
	ameth->param_encode = 0;
	ameth->param_missing = 0;
	ameth->param_copy = 0;
	ameth->param_cmp = 0;
	ameth->param_print = 0;

	ameth->pkey_free = 0;
	ameth->pkey_ctrl = 0;

	return ameth;
353 354 355 356 357 358 359 360

	err:

	EVP_PKEY_asn1_free(ameth);
	return NULL;

	}

361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst, 
			const EVP_PKEY_ASN1_METHOD *src)
	{

	dst->pub_decode = src->pub_decode;
	dst->pub_encode = src->pub_encode;
	dst->pub_cmp = src->pub_cmp;
	dst->pub_print = src->pub_print;

	dst->priv_decode = src->priv_decode;
	dst->priv_encode = src->priv_encode;
	dst->priv_print = src->priv_print;

	dst->old_priv_encode = src->old_priv_encode;
	dst->old_priv_decode = src->old_priv_decode;

	dst->pkey_size = src->pkey_size;
	dst->pkey_bits = src->pkey_bits;

	dst->param_decode = src->param_decode;
	dst->param_encode = src->param_encode;
	dst->param_missing = src->param_missing;
	dst->param_copy = src->param_copy;
	dst->param_cmp = src->param_cmp;
	dst->param_print = src->param_print;

	dst->pkey_free = src->pkey_free;
	dst->pkey_ctrl = src->pkey_ctrl;

390 391 392
	dst->item_sign = src->item_sign;
	dst->item_verify = src->item_verify;

393 394
	}

395 396 397 398 399 400 401 402 403 404
void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth)
	{
	if (ameth && (ameth->pkey_flags & ASN1_PKEY_DYNAMIC))
		{
		if (ameth->pem_str)
			OPENSSL_free(ameth->pem_str);
		if (ameth->info)
			OPENSSL_free(ameth->info);
		OPENSSL_free(ameth);
		}
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
	}

void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth,
		int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub),
		int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk),
		int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
		int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
							ASN1_PCTX *pctx),
		int (*pkey_size)(const EVP_PKEY *pk),
		int (*pkey_bits)(const EVP_PKEY *pk))
	{
	ameth->pub_decode = pub_decode;
	ameth->pub_encode = pub_encode;
	ameth->pub_cmp = pub_cmp;
	ameth->pub_print = pub_print;
	ameth->pkey_size = pkey_size;
	ameth->pkey_bits = pkey_bits;
	}

void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth,
		int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf),
		int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk),
		int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
							ASN1_PCTX *pctx))
	{
	ameth->priv_decode = priv_decode;
	ameth->priv_encode = priv_encode;
	ameth->priv_print = priv_print;
	}

void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth,
436
		int (*param_decode)(EVP_PKEY *pkey,
437
				const unsigned char **pder, int derlen),
438
		int (*param_encode)(const EVP_PKEY *pkey, unsigned char **pder),
439 440 441 442
		int (*param_missing)(const EVP_PKEY *pk),
		int (*param_copy)(EVP_PKEY *to, const EVP_PKEY *from),
		int (*param_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
		int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
443
							ASN1_PCTX *pctx))
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
	{
	ameth->param_decode = param_decode;
	ameth->param_encode = param_encode;
	ameth->param_missing = param_missing;
	ameth->param_copy = param_copy;
	ameth->param_cmp = param_cmp;
	ameth->param_print = param_print;
	}

void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth,
		void (*pkey_free)(EVP_PKEY *pkey))
	{
	ameth->pkey_free = pkey_free;
	}

void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
460
		int (*pkey_ctrl)(EVP_PKEY *pkey, int op,
461 462 463 464
							long arg1, void *arg2))
	{
	ameth->pkey_ctrl = pkey_ctrl;
	}
465 466 467 468 469 470 471

void EVP_PKEY_asn1_set_security_bits(EVP_PKEY_ASN1_METHOD *ameth,
				int (*pkey_security_bits)(const EVP_PKEY *pk))
	{
	ameth->pkey_security_bits = pkey_security_bits;
	}