OpenSSL 3.2.0, QUIC, macOS, error 56 on connected UDP socket
[openssl.git] / crypto / pem / pem_pkey.c
1 /*
2  * Copyright 1995-2020 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/buffer.h>
13 #include <openssl/objects.h>
14 #include <openssl/evp.h>
15 #include <openssl/x509.h>
16 #include <openssl/pkcs12.h>
17 #include <openssl/pem.h>
18 #include <openssl/engine.h>
19 #include <openssl/dh.h>
20 #include <openssl/store.h>
21 #include <openssl/ui.h>
22 #include <openssl/serializer.h>
23 #include "crypto/store.h"
24 #include "crypto/asn1.h"
25 #include "crypto/evp.h"
26 #include "pem_local.h"
27
28 int pem_check_suffix(const char *pem_str, const char *suffix);
29
30 EVP_PKEY *PEM_read_bio_PrivateKey_ex(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
31                                      void *u, OPENSSL_CTX *libctx,
32                                      const char *propq)
33 {
34     EVP_PKEY *ret = NULL;
35     OSSL_STORE_CTX *ctx = NULL;
36     OSSL_STORE_INFO *info = NULL;
37     UI_METHOD *ui_method = NULL;
38
39     if ((ui_method = UI_UTIL_wrap_read_pem_callback(cb, 0)) == NULL)
40         return NULL;
41
42     if ((ctx = OSSL_STORE_attach(bp, libctx, "file", propq, ui_method, u,
43                                  NULL, NULL)) == NULL)
44         goto err;
45 #ifndef OPENSSL_NO_SECURE_HEAP
46     {
47         int on = 1;
48         if (!OSSL_STORE_ctrl(ctx, OSSL_STORE_C_USE_SECMEM, &on))
49             goto err;
50     }
51 #endif
52
53     while (!OSSL_STORE_eof(ctx) && (info = OSSL_STORE_load(ctx)) != NULL) {
54         if (OSSL_STORE_INFO_get_type(info) == OSSL_STORE_INFO_PKEY) {
55             ret = OSSL_STORE_INFO_get1_PKEY(info);
56             break;
57         }
58         OSSL_STORE_INFO_free(info);
59         info = NULL;
60     }
61
62     if (ret != NULL && x != NULL)
63         *x = ret;
64
65  err:
66     OSSL_STORE_close(ctx);
67     UI_destroy_method(ui_method);
68     OSSL_STORE_INFO_free(info);
69     return ret;
70 }
71
72 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
73                                   void *u)
74 {
75     return PEM_read_bio_PrivateKey_ex(bp, x, cb, u, NULL, NULL);
76 }
77
78 PEM_write_cb_fnsig(PrivateKey, EVP_PKEY, BIO, write_bio)
79 {
80     IMPLEMENT_PEM_provided_write_body_vars(EVP_PKEY, PrivateKey);
81
82     IMPLEMENT_PEM_provided_write_body_pass();
83     IMPLEMENT_PEM_provided_write_body_main(EVP_PKEY, bio);
84
85  legacy:
86     if (x->ameth == NULL || x->ameth->priv_encode != NULL)
87         return PEM_write_bio_PKCS8PrivateKey(out, x, enc,
88                                              (const char *)kstr, klen, cb, u);
89     return PEM_write_bio_PrivateKey_traditional(out, x, enc, kstr, klen, cb, u);
90 }
91
92 int PEM_write_bio_PrivateKey_traditional(BIO *bp, const EVP_PKEY *x,
93                                          const EVP_CIPHER *enc,
94                                          const unsigned char *kstr, int klen,
95                                          pem_password_cb *cb, void *u)
96 {
97     char pem_str[80];
98     BIO_snprintf(pem_str, 80, "%s PRIVATE KEY", x->ameth->pem_str);
99     return PEM_ASN1_write_bio((i2d_of_void *)i2d_PrivateKey,
100                               pem_str, bp, x, enc, kstr, klen, cb, u);
101 }
102
103 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x)
104 {
105     EVP_PKEY *ret = NULL;
106     OSSL_STORE_CTX *ctx = NULL;
107     OSSL_STORE_INFO *info = NULL;
108
109     if ((ctx = OSSL_STORE_attach(bp, NULL, "file", NULL, UI_null(), NULL,
110                                  NULL, NULL)) == NULL)
111         goto err;
112
113     while (!OSSL_STORE_eof(ctx) && (info = OSSL_STORE_load(ctx)) != NULL) {
114         if (OSSL_STORE_INFO_get_type(info) == OSSL_STORE_INFO_PARAMS) {
115             ret = OSSL_STORE_INFO_get1_PARAMS(info);
116             break;
117         }
118         OSSL_STORE_INFO_free(info);
119         info = NULL;
120     }
121
122     if (ret != NULL && x != NULL)
123         *x = ret;
124
125  err:
126     OSSL_STORE_close(ctx);
127     OSSL_STORE_INFO_free(info);
128     return ret;
129 }
130
131 PEM_write_fnsig(Parameters, EVP_PKEY, BIO, write_bio)
132 {
133     char pem_str[80];
134     IMPLEMENT_PEM_provided_write_body_vars(EVP_PKEY, Parameters);
135
136     IMPLEMENT_PEM_provided_write_body_main(EVP_PKEY, bio);
137
138  legacy:
139     if (!x->ameth || !x->ameth->param_encode)
140         return 0;
141
142     BIO_snprintf(pem_str, 80, "%s PARAMETERS", x->ameth->pem_str);
143     return PEM_ASN1_write_bio((i2d_of_void *)x->ameth->param_encode,
144                               pem_str, out, x, NULL, NULL, 0, 0, NULL);
145 }
146
147 #ifndef OPENSSL_NO_STDIO
148 EVP_PKEY *PEM_read_PrivateKey_ex(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
149                                  void *u, OPENSSL_CTX *libctx,
150                                  const char *propq)
151 {
152     BIO *b;
153     EVP_PKEY *ret;
154
155     if ((b = BIO_new(BIO_s_file())) == NULL) {
156         PEMerr(0, ERR_R_BUF_LIB);
157         return 0;
158     }
159     BIO_set_fp(b, fp, BIO_NOCLOSE);
160     ret = PEM_read_bio_PrivateKey_ex(b, x, cb, u, libctx, propq);
161     BIO_free(b);
162     return ret;
163 }
164
165 EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
166                               void *u)
167 {
168     return PEM_read_PrivateKey_ex(fp, x, cb, u, NULL, NULL);
169 }
170
171 int PEM_write_PrivateKey(FILE *fp, const EVP_PKEY *x, const EVP_CIPHER *enc,
172                          const unsigned char *kstr, int klen,
173                          pem_password_cb *cb, void *u)
174 {
175     BIO *b;
176     int ret;
177
178     if ((b = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
179         PEMerr(PEM_F_PEM_WRITE_PRIVATEKEY, ERR_R_BUF_LIB);
180         return 0;
181     }
182     ret = PEM_write_bio_PrivateKey(b, x, enc, kstr, klen, cb, u);
183     BIO_free(b);
184     return ret;
185 }
186
187 #endif
188
189 #ifndef OPENSSL_NO_DH
190
191 /* Transparently read in PKCS#3 or X9.42 DH parameters */
192
193 DH *PEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u)
194 {
195     DH *ret = NULL;
196     EVP_PKEY *pkey = NULL;
197     OSSL_STORE_CTX *ctx = NULL;
198     OSSL_STORE_INFO *info = NULL;
199     UI_METHOD *ui_method = NULL;
200
201     if ((ui_method = UI_UTIL_wrap_read_pem_callback(cb, 0)) == NULL)
202         return NULL;
203
204     if ((ctx = OSSL_STORE_attach(bp, NULL, "file", NULL, ui_method, u,
205                                  NULL, NULL)) == NULL)
206         goto err;
207
208     while (!OSSL_STORE_eof(ctx) && (info = OSSL_STORE_load(ctx)) != NULL) {
209         if (OSSL_STORE_INFO_get_type(info) == OSSL_STORE_INFO_PARAMS) {
210             pkey = OSSL_STORE_INFO_get0_PARAMS(info);
211             if (EVP_PKEY_id(pkey) == EVP_PKEY_DHX
212                 || EVP_PKEY_id(pkey) == EVP_PKEY_DH) {
213                 ret = EVP_PKEY_get1_DH(pkey);
214                 break;
215             }
216         }
217         OSSL_STORE_INFO_free(info);
218         info = NULL;
219     }
220
221     if (ret != NULL && x != NULL)
222         *x = ret;
223
224  err:
225     OSSL_STORE_close(ctx);
226     UI_destroy_method(ui_method);
227     OSSL_STORE_INFO_free(info);
228     return ret;
229 }
230
231 # ifndef OPENSSL_NO_STDIO
232 DH *PEM_read_DHparams(FILE *fp, DH **x, pem_password_cb *cb, void *u)
233 {
234     BIO *b;
235     DH *ret;
236
237     if ((b = BIO_new(BIO_s_file())) == NULL) {
238         PEMerr(PEM_F_PEM_READ_DHPARAMS, ERR_R_BUF_LIB);
239         return 0;
240     }
241     BIO_set_fp(b, fp, BIO_NOCLOSE);
242     ret = PEM_read_bio_DHparams(b, x, cb, u);
243     BIO_free(b);
244     return ret;
245 }
246 # endif
247
248 #endif