9ddc0ae3bbc3ae69bd425ae0dd42e8feb7090ddc
[openssl.git] / providers / implementations / encode_decode / decode_pem2der.c
1 /*
2  * Copyright 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 /*
11  * RSA low level APIs are deprecated for public use, but still ok for
12  * internal use.
13  */
14 #include "internal/deprecated.h"
15
16 #include <string.h>
17
18 #include <openssl/core_dispatch.h>
19 #include <openssl/core_names.h>
20 #include <openssl/crypto.h>
21 #include <openssl/err.h>
22 #include <openssl/params.h>
23 #include <openssl/pem.h>
24 #include "internal/nelem.h"
25 #include "prov/bio.h"
26 #include "prov/implementations.h"
27 #include "prov/providercommonerr.h"
28 #include "endecoder_local.h"
29
30 static int read_pem(PROV_CTX *provctx, OSSL_CORE_BIO *cin,
31                     char **pem_name, char **pem_header,
32                     unsigned char **data, long *len)
33 {
34     BIO *in = bio_new_from_core_bio(provctx, cin);
35     int ok = (PEM_read_bio(in, pem_name, pem_header, data, len) > 0);
36
37     BIO_free(in);
38     return ok;
39 }
40
41 static OSSL_FUNC_decoder_newctx_fn pem2der_newctx;
42 static OSSL_FUNC_decoder_freectx_fn pem2der_freectx;
43 static OSSL_FUNC_decoder_gettable_params_fn pem2der_gettable_params;
44 static OSSL_FUNC_decoder_get_params_fn pem2der_get_params;
45 static OSSL_FUNC_decoder_decode_fn pem2der_decode;
46
47 /*
48  * Context used for PEM to DER decoding.
49  */
50 struct pem2der_ctx_st {
51     PROV_CTX *provctx;
52 };
53
54 static void *pem2der_newctx(void *provctx)
55 {
56     struct pem2der_ctx_st *ctx = OPENSSL_zalloc(sizeof(*ctx));
57
58     if (ctx != NULL)
59         ctx->provctx = provctx;
60     return ctx;
61 }
62
63 static void pem2der_freectx(void *vctx)
64 {
65     struct pem2der_ctx_st *ctx = vctx;
66
67     OPENSSL_free(ctx);
68 }
69
70 static const OSSL_PARAM *pem2der_gettable_params(void *provctx)
71 {
72     static const OSSL_PARAM gettables[] = {
73         { OSSL_DECODER_PARAM_INPUT_TYPE, OSSL_PARAM_UTF8_PTR, NULL, 0, 0 },
74         OSSL_PARAM_END,
75     };
76
77     return gettables;
78 }
79
80 static int pem2der_get_params(OSSL_PARAM params[])
81 {
82     OSSL_PARAM *p;
83
84     p = OSSL_PARAM_locate(params, OSSL_DECODER_PARAM_INPUT_TYPE);
85     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, "PEM"))
86         return 0;
87
88     return 1;
89 }
90
91 /* pem_password_cb compatible function */
92 struct pem2der_pass_data_st {
93     OSSL_PASSPHRASE_CALLBACK *cb;
94     void *cbarg;
95 };
96
97 static int pem2der_pass_helper(char *buf, int num, int w, void *data)
98 {
99     struct pem2der_pass_data_st *pass_data = data;
100     size_t plen;
101
102     if (pass_data == NULL
103         || pass_data->cb == NULL
104         || !pass_data->cb(buf, num, &plen, NULL, pass_data->cbarg))
105         return -1;
106     return (int)plen;
107 }
108
109 static int pem2der_decode(void *vctx, OSSL_CORE_BIO *cin,
110                           OSSL_CALLBACK *data_cb, void *data_cbarg,
111                           OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg)
112 {
113     /* Strings to peal off the pem name */
114     static const char *pealable_pem_name_endings[] = {
115         /*
116          * These entries should be in longest to shortest order to avoid
117          * mixups.
118          */
119         "ENCRYPTED PRIVATE KEY",
120         "PRIVATE KEY",
121         "PUBLIC KEY",
122         "PARAMETERS"
123
124         /*
125          * Libcrypto currently only supports decoding keys with provider side
126          * decoders, so we don't try to peal any other PEM name.  That's an
127          * exercise for when libcrypto starts to treat other types of objects
128          * via providers.
129          */
130     };
131     struct pem2der_ctx_st *ctx = vctx;
132     char *pem_name = NULL, *pem_header = NULL;
133     size_t pem_name_len, i;
134     unsigned char *der = NULL;
135     long der_len = 0;
136     int ok = 0;
137
138     if (read_pem(ctx->provctx, cin, &pem_name, &pem_header,
139                  &der, &der_len) <= 0)
140         return 0;
141
142     /*
143      * 10 is the number of characters in "Proc-Type:", which
144      * PEM_get_EVP_CIPHER_INFO() requires to be present.
145      * If the PEM header has less characters than that, it's
146      * not worth spending cycles on it.
147      */
148     if (strlen(pem_header) > 10) {
149         EVP_CIPHER_INFO cipher;
150         struct pem2der_pass_data_st pass_data;
151
152         pass_data.cb = pw_cb;
153         pass_data.cbarg = pw_cbarg;
154         if (!PEM_get_EVP_CIPHER_INFO(pem_header, &cipher)
155             || !PEM_do_header(&cipher, der, &der_len,
156                               pem2der_pass_helper, &pass_data))
157             goto end;
158     }
159
160     /*
161      * Peal off certain strings from the end of |pem_name|, as they serve
162      * no further purpose.
163      */
164     for (i = 0, pem_name_len = strlen(pem_name);
165          i < OSSL_NELEM(pealable_pem_name_endings);
166          i++) {
167         size_t peal_len = strlen(pealable_pem_name_endings[i]);
168         size_t pem_name_offset;
169
170         if (peal_len <= pem_name_len) {
171             pem_name_offset = pem_name_len - peal_len;
172             if (strcmp(pem_name + pem_name_offset,
173                        pealable_pem_name_endings[i]) == 0) {
174
175                 do {
176                     pem_name[pem_name_offset] = '\0';
177                 } while (pem_name_offset > 0
178                          && pem_name[--pem_name_offset] == ' ');
179
180                 if (pem_name[0] == '\0') {
181                     OPENSSL_free(pem_name);
182                     pem_name = NULL;
183                 }
184                 break;
185             }
186         }
187     }
188
189     {
190         OSSL_PARAM params[3], *p = params;
191
192         if (pem_name != NULL)
193             *p++ =
194                 OSSL_PARAM_construct_utf8_string(OSSL_OBJECT_PARAM_DATA_TYPE,
195                                                  pem_name, 0);
196         *p++ =
197             OSSL_PARAM_construct_octet_string(OSSL_OBJECT_PARAM_DATA,
198                                               der, der_len);
199         *p = OSSL_PARAM_construct_end();
200
201         ok = data_cb(params, data_cbarg);
202     }
203
204  end:
205     OPENSSL_free(pem_name);
206     OPENSSL_free(pem_header);
207     OPENSSL_free(der);
208     return ok;
209 }
210
211 const OSSL_DISPATCH ossl_pem_to_der_decoder_functions[] = {
212     { OSSL_FUNC_DECODER_NEWCTX, (void (*)(void))pem2der_newctx },
213     { OSSL_FUNC_DECODER_FREECTX, (void (*)(void))pem2der_freectx },
214     { OSSL_FUNC_DECODER_GETTABLE_PARAMS,
215       (void (*)(void))pem2der_gettable_params },
216     { OSSL_FUNC_DECODER_GET_PARAMS,
217       (void (*)(void))pem2der_get_params },
218     { OSSL_FUNC_DECODER_DECODE, (void (*)(void))pem2der_decode },
219     { 0, NULL }
220 };