Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/pem/pem_all.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/bio.h>
13
#include <openssl/evp.h>
14
#include <openssl/x509.h>
15
#include <openssl/pkcs7.h>
16
#include <openssl/pem.h>
17
#include <openssl/rsa.h>
18
#include <openssl/dsa.h>
19
#include <openssl/dh.h>
20
21
#ifndef OPENSSL_NO_RSA
22
static RSA *pkey_get_rsa(EVP_PKEY *key, RSA **rsa);
23
#endif
24
#ifndef OPENSSL_NO_DSA
25
static DSA *pkey_get_dsa(EVP_PKEY *key, DSA **dsa);
26
#endif
27
28
#ifndef OPENSSL_NO_EC
29
static EC_KEY *pkey_get_eckey(EVP_PKEY *key, EC_KEY **eckey);
30
#endif
31
32
IMPLEMENT_PEM_rw(X509_REQ, X509_REQ, PEM_STRING_X509_REQ, X509_REQ)
33
34
IMPLEMENT_PEM_write(X509_REQ_NEW, X509_REQ, PEM_STRING_X509_REQ_OLD, X509_REQ)
35
IMPLEMENT_PEM_rw(X509_CRL, X509_CRL, PEM_STRING_X509_CRL, X509_CRL)
36
IMPLEMENT_PEM_rw(PKCS7, PKCS7, PEM_STRING_PKCS7, PKCS7)
37
38
IMPLEMENT_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE,
39
                 PEM_STRING_X509, NETSCAPE_CERT_SEQUENCE)
40
#ifndef OPENSSL_NO_RSA
41
/*
42
 * We treat RSA or DSA private keys as a special case. For private keys we
43
 * read in an EVP_PKEY structure with PEM_read_bio_PrivateKey() and extract
44
 * the relevant private key: this means can handle "traditional" and PKCS#8
45
 * formats transparently.
46
 */
47
static RSA *pkey_get_rsa(EVP_PKEY *key, RSA **rsa)
48
202k
{
49
202k
    RSA *rtmp;
50
202k
    if (!key)
51
79.1k
        return NULL;
52
123k
    rtmp = EVP_PKEY_get1_RSA(key);
53
123k
    EVP_PKEY_free(key);
54
123k
    if (!rtmp)
55
0
        return NULL;
56
123k
    if (rsa) {
57
0
        RSA_free(*rsa);
58
0
        *rsa = rtmp;
59
0
    }
60
123k
    return rtmp;
61
123k
}
62
63
RSA *PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
64
                                void *u)
65
202k
{
66
202k
    EVP_PKEY *pktmp;
67
202k
    pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
68
202k
    return pkey_get_rsa(pktmp, rsa);
69
202k
}
70
71
# ifndef OPENSSL_NO_STDIO
72
73
RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, void *u)
74
0
{
75
0
    EVP_PKEY *pktmp;
76
0
    pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
77
0
    return pkey_get_rsa(pktmp, rsa);
78
0
}
79
80
# endif
81
82
IMPLEMENT_PEM_write_cb_const(RSAPrivateKey, RSA, PEM_STRING_RSA,
83
                             RSAPrivateKey)
84
85
86
IMPLEMENT_PEM_rw_const(RSAPublicKey, RSA, PEM_STRING_RSA_PUBLIC,
87
                       RSAPublicKey) IMPLEMENT_PEM_rw(RSA_PUBKEY, RSA,
88
                                                      PEM_STRING_PUBLIC,
89
                                                      RSA_PUBKEY)
90
#endif
91
#ifndef OPENSSL_NO_DSA
92
static DSA *pkey_get_dsa(EVP_PKEY *key, DSA **dsa)
93
0
{
94
0
    DSA *dtmp;
95
0
    if (!key)
96
0
        return NULL;
97
0
    dtmp = EVP_PKEY_get1_DSA(key);
98
0
    EVP_PKEY_free(key);
99
0
    if (!dtmp)
100
0
        return NULL;
101
0
    if (dsa) {
102
0
        DSA_free(*dsa);
103
0
        *dsa = dtmp;
104
0
    }
105
0
    return dtmp;
106
0
}
107
108
DSA *PEM_read_bio_DSAPrivateKey(BIO *bp, DSA **dsa, pem_password_cb *cb,
109
                                void *u)
110
0
{
111
0
    EVP_PKEY *pktmp;
112
0
    pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
113
0
    return pkey_get_dsa(pktmp, dsa); /* will free pktmp */
114
0
}
115
116
IMPLEMENT_PEM_write_cb_const(DSAPrivateKey, DSA, PEM_STRING_DSA,
117
                             DSAPrivateKey)
118
    IMPLEMENT_PEM_rw(DSA_PUBKEY, DSA, PEM_STRING_PUBLIC, DSA_PUBKEY)
119
# ifndef OPENSSL_NO_STDIO
120
DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb, void *u)
121
0
{
122
0
    EVP_PKEY *pktmp;
123
0
    pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
124
0
    return pkey_get_dsa(pktmp, dsa); /* will free pktmp */
125
0
}
126
127
# endif
128
129
IMPLEMENT_PEM_rw_const(DSAparams, DSA, PEM_STRING_DSAPARAMS, DSAparams)
130
#endif
131
#ifndef OPENSSL_NO_EC
132
static EC_KEY *pkey_get_eckey(EVP_PKEY *key, EC_KEY **eckey)
133
0
{
134
0
    EC_KEY *dtmp;
135
0
    if (!key)
136
0
        return NULL;
137
0
    dtmp = EVP_PKEY_get1_EC_KEY(key);
138
0
    EVP_PKEY_free(key);
139
0
    if (!dtmp)
140
0
        return NULL;
141
0
    if (eckey) {
142
0
        EC_KEY_free(*eckey);
143
0
        *eckey = dtmp;
144
0
    }
145
0
    return dtmp;
146
0
}
147
148
EC_KEY *PEM_read_bio_ECPrivateKey(BIO *bp, EC_KEY **key, pem_password_cb *cb,
149
                                  void *u)
150
0
{
151
0
    EVP_PKEY *pktmp;
152
0
    pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
153
0
    return pkey_get_eckey(pktmp, key); /* will free pktmp */
154
0
}
155
156
IMPLEMENT_PEM_rw_const(ECPKParameters, EC_GROUP, PEM_STRING_ECPARAMETERS,
157
                       ECPKParameters)
158
159
160
IMPLEMENT_PEM_write_cb(ECPrivateKey, EC_KEY, PEM_STRING_ECPRIVATEKEY,
161
                       ECPrivateKey)
162
IMPLEMENT_PEM_rw(EC_PUBKEY, EC_KEY, PEM_STRING_PUBLIC, EC_PUBKEY)
163
# ifndef OPENSSL_NO_STDIO
164
EC_KEY *PEM_read_ECPrivateKey(FILE *fp, EC_KEY **eckey, pem_password_cb *cb,
165
                              void *u)
166
0
{
167
0
    EVP_PKEY *pktmp;
168
0
    pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
169
0
    return pkey_get_eckey(pktmp, eckey); /* will free pktmp */
170
0
}
171
172
# endif
173
174
#endif
175
176
#ifndef OPENSSL_NO_DH
177
178
IMPLEMENT_PEM_write_const(DHparams, DH, PEM_STRING_DHPARAMS, DHparams)
179
    IMPLEMENT_PEM_write_const(DHxparams, DH, PEM_STRING_DHXPARAMS, DHxparams)
180
#endif
181
IMPLEMENT_PEM_rw(PUBKEY, EVP_PKEY, PEM_STRING_PUBLIC, PUBKEY)