1 /*
2 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (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/core_dispatch.h>
13 #include <openssl/buffer.h>
14 #include <openssl/objects.h>
15 #include <openssl/evp.h>
16 #include <openssl/x509.h>
17 #include <openssl/pkcs12.h>
18 #include <openssl/pem.h>
19 #include <openssl/encoder.h>
20
21 static int do_pk8pkey(BIO *bp, const EVP_PKEY *x, int isder,
22 int nid, const EVP_CIPHER *enc,
23 const char *kstr, int klen,
24 pem_password_cb *cb, void *u,
25 const char *propq);
26
27 #ifndef OPENSSL_NO_STDIO
28 static int do_pk8pkey_fp(FILE *bp, const EVP_PKEY *x, int isder,
29 int nid, const EVP_CIPHER *enc,
30 const char *kstr, int klen,
31 pem_password_cb *cb, void *u,
32 const char *propq);
33 #endif
34 /*
35 * These functions write a private key in PKCS#8 format: it is a "drop in"
36 * replacement for PEM_write_bio_PrivateKey() and friends. As usual if 'enc'
37 * is NULL then it uses the unencrypted private key form. The 'nid' versions
38 * uses PKCS#5 v1.5 PBE algorithms whereas the others use PKCS#5 v2.0.
39 */
40
PEM_write_bio_PKCS8PrivateKey_nid(BIO * bp,const EVP_PKEY * x,int nid,const char * kstr,int klen,pem_password_cb * cb,void * u)41 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, const EVP_PKEY *x, int nid,
42 const char *kstr, int klen,
43 pem_password_cb *cb, void *u)
44 {
45 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u, NULL);
46 }
47
PEM_write_bio_PKCS8PrivateKey(BIO * bp,const EVP_PKEY * x,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u)48 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc,
49 const char *kstr, int klen,
50 pem_password_cb *cb, void *u)
51 {
52 return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u, NULL);
53 }
54
i2d_PKCS8PrivateKey_bio(BIO * bp,const EVP_PKEY * x,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u)55 int i2d_PKCS8PrivateKey_bio(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc,
56 const char *kstr, int klen,
57 pem_password_cb *cb, void *u)
58 {
59 return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u, NULL);
60 }
61
i2d_PKCS8PrivateKey_nid_bio(BIO * bp,const EVP_PKEY * x,int nid,const char * kstr,int klen,pem_password_cb * cb,void * u)62 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, const EVP_PKEY *x, int nid,
63 const char *kstr, int klen,
64 pem_password_cb *cb, void *u)
65 {
66 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u, NULL);
67 }
68
do_pk8pkey(BIO * bp,const EVP_PKEY * x,int isder,int nid,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u,const char * propq)69 static int do_pk8pkey(BIO *bp, const EVP_PKEY *x, int isder, int nid,
70 const EVP_CIPHER *enc, const char *kstr, int klen,
71 pem_password_cb *cb, void *u, const char *propq)
72 {
73 int ret = 0;
74 const char *outtype = isder ? "DER" : "PEM";
75 OSSL_ENCODER_CTX *ctx = OSSL_ENCODER_CTX_new_for_pkey(x, OSSL_KEYMGMT_SELECT_ALL,
76 outtype, "PrivateKeyInfo", propq);
77
78 if (ctx == NULL)
79 return 0;
80
81 /*
82 * If no keystring or callback is set, OpenSSL traditionally uses the
83 * user's cb argument as a password string, or if that's NULL, it falls
84 * back on PEM_def_callback().
85 */
86 if (kstr == NULL && cb == NULL) {
87 if (u != NULL) {
88 kstr = u;
89 klen = strlen(u);
90 } else {
91 cb = PEM_def_callback;
92 }
93 }
94
95 /*
96 * NOTE: There is no attempt to do a EVP_CIPHER_fetch() using the nid,
97 * since the nid is a PBE algorithm which can't be fetched currently.
98 * (e.g. NID_pbe_WithSHA1And2_Key_TripleDES_CBC). Just use the legacy
99 * path if the NID is passed.
100 */
101 if (nid == -1 && OSSL_ENCODER_CTX_get_num_encoders(ctx) != 0) {
102 ret = 1;
103 if (enc != NULL) {
104 ret = 0;
105 if (OSSL_ENCODER_CTX_set_cipher(ctx, EVP_CIPHER_get0_name(enc),
106 NULL)) {
107 const unsigned char *ukstr = (const unsigned char *)kstr;
108
109 /*
110 * Try to pass the passphrase if one was given, or the
111 * passphrase callback if one was given. If none of them
112 * are given and that's wrong, we rely on the _to_bio()
113 * call to generate errors.
114 */
115 ret = 1;
116 if (kstr != NULL
117 && !OSSL_ENCODER_CTX_set_passphrase(ctx, ukstr, klen))
118 ret = 0;
119 else if (cb != NULL
120 && !OSSL_ENCODER_CTX_set_pem_password_cb(ctx, cb, u))
121 ret = 0;
122 }
123 }
124 ret = ret && OSSL_ENCODER_to_bio(ctx, bp);
125 } else {
126 X509_SIG *p8;
127 PKCS8_PRIV_KEY_INFO *p8inf;
128 char buf[PEM_BUFSIZE];
129
130 ret = 0;
131 if ((p8inf = EVP_PKEY2PKCS8(x)) == NULL) {
132 ERR_raise(ERR_LIB_PEM, PEM_R_ERROR_CONVERTING_PRIVATE_KEY);
133 goto legacy_end;
134 }
135 if (enc || (nid != -1)) {
136 if (kstr == NULL) {
137 klen = cb(buf, PEM_BUFSIZE, 1, u);
138 if (klen < 0) {
139 ERR_raise(ERR_LIB_PEM, PEM_R_READ_KEY);
140 goto legacy_end;
141 }
142
143 kstr = buf;
144 }
145 p8 = PKCS8_encrypt(nid, enc, kstr, klen, NULL, 0, 0, p8inf);
146 if (kstr == buf)
147 OPENSSL_cleanse(buf, klen);
148 if (p8 == NULL)
149 goto legacy_end;
150 if (isder)
151 ret = i2d_PKCS8_bio(bp, p8);
152 else
153 ret = PEM_write_bio_PKCS8(bp, p8);
154 X509_SIG_free(p8);
155 } else {
156 if (isder)
157 ret = i2d_PKCS8_PRIV_KEY_INFO_bio(bp, p8inf);
158 else
159 ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(bp, p8inf);
160 }
161 legacy_end:
162 PKCS8_PRIV_KEY_INFO_free(p8inf);
163 }
164 OSSL_ENCODER_CTX_free(ctx);
165 return ret;
166 }
167
d2i_PKCS8PrivateKey_bio(BIO * bp,EVP_PKEY ** x,pem_password_cb * cb,void * u)168 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
169 void *u)
170 {
171 PKCS8_PRIV_KEY_INFO *p8inf = NULL;
172 X509_SIG *p8 = NULL;
173 int klen;
174 EVP_PKEY *ret;
175 char psbuf[PEM_BUFSIZE + 1]; /* reserve one byte at the end */
176
177 p8 = d2i_PKCS8_bio(bp, NULL);
178 if (p8 == NULL)
179 return NULL;
180 if (cb != NULL)
181 klen = cb(psbuf, PEM_BUFSIZE, 0, u);
182 else
183 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u);
184 if (klen < 0 || klen > PEM_BUFSIZE) {
185 ERR_raise(ERR_LIB_PEM, PEM_R_BAD_PASSWORD_READ);
186 X509_SIG_free(p8);
187 return NULL;
188 }
189 p8inf = PKCS8_decrypt(p8, psbuf, klen);
190 X509_SIG_free(p8);
191 OPENSSL_cleanse(psbuf, klen);
192 if (p8inf == NULL)
193 return NULL;
194 ret = EVP_PKCS82PKEY(p8inf);
195 PKCS8_PRIV_KEY_INFO_free(p8inf);
196 if (!ret)
197 return NULL;
198 if (x != NULL) {
199 EVP_PKEY_free(*x);
200 *x = ret;
201 }
202 return ret;
203 }
204
205 #ifndef OPENSSL_NO_STDIO
206
i2d_PKCS8PrivateKey_fp(FILE * fp,const EVP_PKEY * x,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u)207 int i2d_PKCS8PrivateKey_fp(FILE *fp, const EVP_PKEY *x, const EVP_CIPHER *enc,
208 const char *kstr, int klen,
209 pem_password_cb *cb, void *u)
210 {
211 return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u, NULL);
212 }
213
i2d_PKCS8PrivateKey_nid_fp(FILE * fp,const EVP_PKEY * x,int nid,const char * kstr,int klen,pem_password_cb * cb,void * u)214 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, const EVP_PKEY *x, int nid,
215 const char *kstr, int klen,
216 pem_password_cb *cb, void *u)
217 {
218 return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u, NULL);
219 }
220
PEM_write_PKCS8PrivateKey_nid(FILE * fp,const EVP_PKEY * x,int nid,const char * kstr,int klen,pem_password_cb * cb,void * u)221 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, const EVP_PKEY *x, int nid,
222 const char *kstr, int klen,
223 pem_password_cb *cb, void *u)
224 {
225 return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u, NULL);
226 }
227
PEM_write_PKCS8PrivateKey(FILE * fp,const EVP_PKEY * x,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u)228 int PEM_write_PKCS8PrivateKey(FILE *fp, const EVP_PKEY *x, const EVP_CIPHER *enc,
229 const char *kstr, int klen,
230 pem_password_cb *cb, void *u)
231 {
232 return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u, NULL);
233 }
234
do_pk8pkey_fp(FILE * fp,const EVP_PKEY * x,int isder,int nid,const EVP_CIPHER * enc,const char * kstr,int klen,pem_password_cb * cb,void * u,const char * propq)235 static int do_pk8pkey_fp(FILE *fp, const EVP_PKEY *x, int isder, int nid,
236 const EVP_CIPHER *enc, const char *kstr, int klen,
237 pem_password_cb *cb, void *u, const char *propq)
238 {
239 BIO *bp;
240 int ret;
241
242 if ((bp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
243 ERR_raise(ERR_LIB_PEM, ERR_R_BUF_LIB);
244 return 0;
245 }
246 ret = do_pk8pkey(bp, x, isder, nid, enc, kstr, klen, cb, u, propq);
247 BIO_free(bp);
248 return ret;
249 }
250
d2i_PKCS8PrivateKey_fp(FILE * fp,EVP_PKEY ** x,pem_password_cb * cb,void * u)251 EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
252 void *u)
253 {
254 BIO *bp;
255 EVP_PKEY *ret;
256
257 if ((bp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
258 ERR_raise(ERR_LIB_PEM, ERR_R_BUF_LIB);
259 return NULL;
260 }
261 ret = d2i_PKCS8PrivateKey_bio(bp, x, cb, u);
262 BIO_free(bp);
263 return ret;
264 }
265
266 #endif
267
268 IMPLEMENT_PEM_rw(PKCS8, X509_SIG, PEM_STRING_PKCS8, X509_SIG)
269
270 IMPLEMENT_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO, PEM_STRING_PKCS8INF,
271 PKCS8_PRIV_KEY_INFO)
272