Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/asn1/d2i_pr.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/bn.h>
13
#include <openssl/evp.h>
14
#include <openssl/objects.h>
15
#include <openssl/engine.h>
16
#include <openssl/x509.h>
17
#include <openssl/asn1.h>
18
#include "internal/asn1_int.h"
19
#include "internal/evp_int.h"
20
21
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
22
                         long length)
23
187k
{
24
187k
    EVP_PKEY *ret;
25
187k
    const unsigned char *p = *pp;
26
187k
27
187k
    if ((a == NULL) || (*a == NULL)) {
28
187k
        if ((ret = EVP_PKEY_new()) == NULL) {
29
0
            ASN1err(ASN1_F_D2I_PRIVATEKEY, ERR_R_EVP_LIB);
30
0
            return NULL;
31
0
        }
32
0
    } else {
33
0
        ret = *a;
34
0
#ifndef OPENSSL_NO_ENGINE
35
0
        ENGINE_finish(ret->engine);
36
0
        ret->engine = NULL;
37
0
#endif
38
0
    }
39
187k
40
187k
    if (!EVP_PKEY_set_type(ret, type)) {
41
0
        ASN1err(ASN1_F_D2I_PRIVATEKEY, ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE);
42
0
        goto err;
43
0
    }
44
187k
45
187k
    if (!ret->ameth->old_priv_decode ||
46
187k
        !ret->ameth->old_priv_decode(ret, &p, length)) {
47
63.6k
        if (ret->ameth->priv_decode) {
48
63.6k
            EVP_PKEY *tmp;
49
63.6k
            PKCS8_PRIV_KEY_INFO *p8 = NULL;
50
63.6k
            p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
51
63.6k
            if (!p8)
52
50.7k
                goto err;
53
12.8k
            tmp = EVP_PKCS82PKEY(p8);
54
12.8k
            PKCS8_PRIV_KEY_INFO_free(p8);
55
12.8k
            if (tmp == NULL)
56
12.8k
                goto err;
57
0
            EVP_PKEY_free(ret);
58
0
            ret = tmp;
59
0
        } else {
60
0
            ASN1err(ASN1_F_D2I_PRIVATEKEY, ERR_R_ASN1_LIB);
61
0
            goto err;
62
0
        }
63
123k
    }
64
123k
    *pp = p;
65
123k
    if (a != NULL)
66
123k
        (*a) = ret;
67
123k
    return ret;
68
63.6k
 err:
69
63.6k
    if (a == NULL || *a != ret)
70
63.6k
        EVP_PKEY_free(ret);
71
63.6k
    return NULL;
72
123k
}
73
74
/*
75
 * This works like d2i_PrivateKey() except it automatically works out the
76
 * type
77
 */
78
79
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
80
                             long length)
81
0
{
82
0
    STACK_OF(ASN1_TYPE) *inkey;
83
0
    const unsigned char *p;
84
0
    int keytype;
85
0
    p = *pp;
86
0
    /*
87
0
     * Dirty trick: read in the ASN1 data into a STACK_OF(ASN1_TYPE): by
88
0
     * analyzing it we can determine the passed structure: this assumes the
89
0
     * input is surrounded by an ASN1 SEQUENCE.
90
0
     */
91
0
    inkey = d2i_ASN1_SEQUENCE_ANY(NULL, &p, length);
92
0
    p = *pp;
93
0
    /*
94
0
     * Since we only need to discern "traditional format" RSA and DSA keys we
95
0
     * can just count the elements.
96
0
     */
97
0
    if (sk_ASN1_TYPE_num(inkey) == 6)
98
0
        keytype = EVP_PKEY_DSA;
99
0
    else if (sk_ASN1_TYPE_num(inkey) == 4)
100
0
        keytype = EVP_PKEY_EC;
101
0
    else if (sk_ASN1_TYPE_num(inkey) == 3) { /* This seems to be PKCS8, not
102
0
                                              * traditional format */
103
0
        PKCS8_PRIV_KEY_INFO *p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
104
0
        EVP_PKEY *ret;
105
0
106
0
        sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
107
0
        if (!p8) {
108
0
            ASN1err(ASN1_F_D2I_AUTOPRIVATEKEY,
109
0
                    ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE);
110
0
            return NULL;
111
0
        }
112
0
        ret = EVP_PKCS82PKEY(p8);
113
0
        PKCS8_PRIV_KEY_INFO_free(p8);
114
0
        if (ret == NULL)
115
0
            return NULL;
116
0
        *pp = p;
117
0
        if (a) {
118
0
            *a = ret;
119
0
        }
120
0
        return ret;
121
0
    } else
122
0
        keytype = EVP_PKEY_RSA;
123
0
    sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
124
0
    return d2i_PrivateKey(keytype, a, pp, length);
125
0
}