ameth_lib.c 12.1 KB
Newer Older
1
/*
R
Rich Salz 已提交
2
 * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9 10
 */

#include <stdio.h>
11
#include "internal/cryptlib.h"
12 13
#include <openssl/asn1t.h>
#include <openssl/x509.h>
R
Rich Salz 已提交
14
#include <openssl/engine.h>
15
#include "internal/asn1_int.h"
D
Dr. Stephen Henson 已提交
16
#include "internal/evp_int.h"
17 18

/* Keep this sorted in type order !! */
19
static const EVP_PKEY_ASN1_METHOD *standard_methods[] = {
20
#ifndef OPENSSL_NO_RSA
21 22
    &rsa_asn1_meths[0],
    &rsa_asn1_meths[1],
23 24
#endif
#ifndef OPENSSL_NO_DH
25
    &dh_asn1_meth,
26 27
#endif
#ifndef OPENSSL_NO_DSA
28 29 30 31 32
    &dsa_asn1_meths[0],
    &dsa_asn1_meths[1],
    &dsa_asn1_meths[2],
    &dsa_asn1_meths[3],
    &dsa_asn1_meths[4],
33 34
#endif
#ifndef OPENSSL_NO_EC
35
    &eckey_asn1_meth,
36
#endif
37
    &hmac_asn1_meth,
M
Matt Caswell 已提交
38
#ifndef OPENSSL_NO_CMAC
39
    &cmac_asn1_meth,
M
Matt Caswell 已提交
40
#endif
41
#ifndef OPENSSL_NO_DH
42
    &dhx_asn1_meth
43
#endif
44
};
45

46
typedef int sk_cmp_fn_type(const char *const *a, const char *const *b);
B
Ben Laurie 已提交
47
static STACK_OF(EVP_PKEY_ASN1_METHOD) *app_methods = NULL;
48

49 50
#ifdef TEST
void main()
51 52
{
    int i;
D
Dr. Stephen Henson 已提交
53
    for (i = 0; i < OSSL_NELEM(standard_methods); i++)
54 55 56 57
        fprintf(stderr, "Number %d id=%d (%s)\n", i,
                standard_methods[i]->pkey_id,
                OBJ_nid2sn(standard_methods[i]->pkey_id));
}
58 59
#endif

D
Dr. Stephen Henson 已提交
60
DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
61
                           const EVP_PKEY_ASN1_METHOD *, ameth);
62

63 64 65 66 67
static int ameth_cmp(const EVP_PKEY_ASN1_METHOD *const *a,
                     const EVP_PKEY_ASN1_METHOD *const *b)
{
    return ((*a)->pkey_id - (*b)->pkey_id);
}
68

D
Dr. Stephen Henson 已提交
69
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
70
                             const EVP_PKEY_ASN1_METHOD *, ameth);
71

72
int EVP_PKEY_asn1_get_count(void)
73
{
D
Dr. Stephen Henson 已提交
74
    int num = OSSL_NELEM(standard_methods);
75 76 77 78
    if (app_methods)
        num += sk_EVP_PKEY_ASN1_METHOD_num(app_methods);
    return num;
}
79 80

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx)
81
{
D
Dr. Stephen Henson 已提交
82
    int num = OSSL_NELEM(standard_methods);
83 84 85 86 87 88 89
    if (idx < 0)
        return NULL;
    if (idx < num)
        return standard_methods[idx];
    idx -= num;
    return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
}
90

91
static const EVP_PKEY_ASN1_METHOD *pkey_asn1_find(int type)
92 93 94 95 96 97 98 99 100 101
{
    EVP_PKEY_ASN1_METHOD tmp;
    const EVP_PKEY_ASN1_METHOD *t = &tmp, **ret;
    tmp.pkey_id = type;
    if (app_methods) {
        int idx;
        idx = sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp);
        if (idx >= 0)
            return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
    }
D
Dr. Stephen Henson 已提交
102
    ret = OBJ_bsearch_ameth(&t, standard_methods, OSSL_NELEM(standard_methods));
103 104 105 106 107 108 109 110 111
    if (!ret || !*ret)
        return NULL;
    return *ret;
}

/*
 * 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.
112 113 114
 */

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type)
115 116 117 118 119 120 121 122 123 124
{
    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) {
125
#ifndef OPENSSL_NO_ENGINE
126 127 128 129 130 131 132
        ENGINE *e;
        /* 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);
        }
133
#endif
134 135 136 137
        *pe = NULL;
    }
    return t;
}
138 139

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe,
140 141 142 143 144 145 146
                                                   const char *str, int len)
{
    int i;
    const EVP_PKEY_ASN1_METHOD *ameth;
    if (len == -1)
        len = strlen(str);
    if (pe) {
147
#ifndef OPENSSL_NO_ENGINE
148 149 150 151 152 153 154 155 156 157 158 159
        ENGINE *e;
        ameth = ENGINE_pkey_asn1_find_str(&e, str, len);
        if (ameth) {
            /*
             * Convert structural into functional reference
             */
            if (!ENGINE_init(e))
                ameth = NULL;
            ENGINE_free(e);
            *pe = e;
            return ameth;
        }
160
#endif
161 162 163 164 165 166
        *pe = NULL;
    }
    for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
        ameth = EVP_PKEY_asn1_get0(i);
        if (ameth->pkey_flags & ASN1_PKEY_ALIAS)
            continue;
R
Rich Salz 已提交
167 168
        if (((int)strlen(ameth->pem_str) == len)
            && (strncasecmp(ameth->pem_str, str, len) == 0))
169 170 171 172
            return ameth;
    }
    return NULL;
}
173

174
int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth)
175 176 177
{
    if (app_methods == NULL) {
        app_methods = sk_EVP_PKEY_ASN1_METHOD_new(ameth_cmp);
178
        if (app_methods == NULL)
179 180 181 182 183 184 185
            return 0;
    }
    if (!sk_EVP_PKEY_ASN1_METHOD_push(app_methods, ameth))
        return 0;
    sk_EVP_PKEY_ASN1_METHOD_sort(app_methods);
    return 1;
}
186

187
int EVP_PKEY_asn1_add_alias(int to, int from)
188 189 190
{
    EVP_PKEY_ASN1_METHOD *ameth;
    ameth = EVP_PKEY_asn1_new(from, ASN1_PKEY_ALIAS, NULL, NULL);
191
    if (ameth == NULL)
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
        return 0;
    ameth->pkey_base_id = to;
    if (!EVP_PKEY_asn1_add0(ameth)) {
        EVP_PKEY_asn1_free(ameth);
        return 0;
    }
    return 1;
}

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;
}

const EVP_PKEY_ASN1_METHOD *EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
{
    return pkey->ameth;
}

EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_new(int id, int flags,
                                        const char *pem_str, const char *info)
{
R
Rich Salz 已提交
229 230
    EVP_PKEY_ASN1_METHOD *ameth = OPENSSL_zalloc(sizeof(*ameth));

231
    if (ameth == NULL)
232 233 234 235 236 237 238
        return NULL;

    ameth->pkey_id = id;
    ameth->pkey_base_id = id;
    ameth->pkey_flags = flags | ASN1_PKEY_DYNAMIC;

    if (info) {
R
Rich Salz 已提交
239
        ameth->info = OPENSSL_strdup(info);
240 241
        if (!ameth->info)
            goto err;
R
Rich Salz 已提交
242
    }
243 244

    if (pem_str) {
R
Rich Salz 已提交
245
        ameth->pem_str = OPENSSL_strdup(pem_str);
246 247
        if (!ameth->pem_str)
            goto err;
R
Rich Salz 已提交
248
    }
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282

    return ameth;

 err:
    EVP_PKEY_asn1_free(ameth);
    return NULL;

}

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;
283

284 285
    dst->pkey_free = src->pkey_free;
    dst->pkey_ctrl = src->pkey_ctrl;
286

287 288
    dst->item_sign = src->item_sign;
    dst->item_verify = src->item_verify;
289

290
}
291

292
void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth)
293 294
{
    if (ameth && (ameth->pkey_flags & ASN1_PKEY_DYNAMIC)) {
R
Rich Salz 已提交
295 296
        OPENSSL_free(ameth->pem_str);
        OPENSSL_free(ameth->info);
297 298 299
        OPENSSL_free(ameth);
    }
}
300 301

void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth,
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
                              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;
}
321 322

void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth,
323 324 325 326 327 328 329 330 331 332 333 334 335 336
                               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;
}
337 338

void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth,
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
                             int (*param_decode) (EVP_PKEY *pkey,
                                                  const unsigned char **pder,
                                                  int derlen),
                             int (*param_encode) (const EVP_PKEY *pkey,
                                                  unsigned char **pder),
                             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, ASN1_PCTX *pctx))
{
    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;
}
360 361

void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth,
362 363 364 365
                            void (*pkey_free) (EVP_PKEY *pkey))
{
    ameth->pkey_free = pkey_free;
}
366 367

void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
368 369 370 371 372
                            int (*pkey_ctrl) (EVP_PKEY *pkey, int op,
                                              long arg1, void *arg2))
{
    ameth->pkey_ctrl = pkey_ctrl;
}
373 374

void EVP_PKEY_asn1_set_security_bits(EVP_PKEY_ASN1_METHOD *ameth,
375 376 377 378 379
                                     int (*pkey_security_bits) (const EVP_PKEY
                                                                *pk))
{
    ameth->pkey_security_bits = pkey_security_bits;
}
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397

void EVP_PKEY_asn1_set_item(EVP_PKEY_ASN1_METHOD *ameth,
                            int (*item_verify) (EVP_MD_CTX *ctx,
                                                const ASN1_ITEM *it,
                                                void *asn,
                                                X509_ALGOR *a,
                                                ASN1_BIT_STRING *sig,
                                                EVP_PKEY *pkey),
                            int (*item_sign) (EVP_MD_CTX *ctx,
                                              const ASN1_ITEM *it,
                                              void *asn,
                                              X509_ALGOR *alg1,
                                              X509_ALGOR *alg2,
                                              ASN1_BIT_STRING *sig))
{
    ameth->item_sign = item_sign;
    ameth->item_verify = item_verify;
}