Make the naming scheme for dispatched functions more consistent
[oweals/openssl.git] / providers / implementations / serializers / serializer_common.c
1 /*
2  * Copyright 2019-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 <openssl/opensslconf.h> /* SIXTY_FOUR_BIT_LONG, ... */
11 #include <openssl/err.h>
12 #include <openssl/pem.h>         /* PEM_BUFSIZE */
13 #include <openssl/pkcs12.h>      /* PKCS8_encrypt() */
14 #include <openssl/types.h>
15 #include <openssl/x509.h>        /* i2d_X509_PUBKEY_bio() */
16 #include "crypto/bn.h"           /* bn_get_words() */
17 #include "crypto/ctype.h"
18 #include "crypto/ecx.h"
19 #include "prov/bio.h"            /* ossl_prov_bio_printf() */
20 #include "prov/implementations.h"
21 #include "prov/providercommonerr.h" /* PROV_R_READ_KEY */
22 #include "serializer_local.h"
23
24 static PKCS8_PRIV_KEY_INFO *
25 ossl_prov_p8info_from_obj(const void *obj, int obj_nid,
26                           void *params,
27                           int params_type,
28                           int (*k2d)(const void *obj,
29                                      unsigned char **pder))
30 {
31     /* der, derlen store the key DER output and its length */
32     unsigned char *der = NULL;
33     int derlen;
34     /* The final PKCS#8 info */
35     PKCS8_PRIV_KEY_INFO *p8info = NULL;
36
37
38     if ((p8info = PKCS8_PRIV_KEY_INFO_new()) == NULL
39         || (derlen = k2d(obj, &der)) <= 0
40         || !PKCS8_pkey_set0(p8info, OBJ_nid2obj(obj_nid), 0,
41                             params_type, params, der, derlen)) {
42         ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
43         PKCS8_PRIV_KEY_INFO_free(p8info);
44         OPENSSL_free(der);
45         p8info = NULL;
46     }
47
48     return p8info;
49 }
50
51 static X509_SIG *ossl_prov_encp8_from_p8info(PKCS8_PRIV_KEY_INFO *p8info,
52                                              struct pkcs8_encrypt_ctx_st *ctx)
53 {
54     X509_SIG *p8 = NULL;
55     char buf[PEM_BUFSIZE];
56     const void *kstr = ctx->cipher_pass;
57     size_t klen = ctx->cipher_pass_length;
58
59     if (ctx->cipher == NULL)
60         return NULL;
61
62     if (kstr == NULL) {
63         if (!ctx->cb(buf, sizeof(buf), &klen, NULL, ctx->cbarg)) {
64             ERR_raise(ERR_LIB_PROV, PROV_R_READ_KEY);
65             return NULL;
66         }
67         kstr = buf;
68     }
69     /* NID == -1 means "standard" */
70     p8 = PKCS8_encrypt(-1, ctx->cipher, kstr, klen, NULL, 0, 0, p8info);
71     if (kstr == buf)
72         OPENSSL_cleanse(buf, klen);
73     return p8;
74 }
75
76 static X509_SIG *ossl_prov_encp8_from_obj(const void *obj, int obj_nid,
77                                           void *params,
78                                           int params_type,
79                                           int (*k2d)(const void *obj,
80                                                      unsigned char **pder),
81                                           struct pkcs8_encrypt_ctx_st *ctx)
82 {
83     PKCS8_PRIV_KEY_INFO *p8info =
84         ossl_prov_p8info_from_obj(obj, obj_nid, params, params_type, k2d);
85     X509_SIG *p8 = ossl_prov_encp8_from_p8info(p8info, ctx);
86
87     PKCS8_PRIV_KEY_INFO_free(p8info);
88     return p8;
89 }
90
91 static X509_PUBKEY *ossl_prov_pubkey_from_obj(const void *obj, int obj_nid,
92                                               void *params,
93                                               int params_type,
94                                               int (*k2d)(const void *obj,
95                                                          unsigned char **pder))
96 {
97     /* der, derlen store the key DER output and its length */
98     unsigned char *der = NULL;
99     int derlen;
100     /* The final X509_PUBKEY */
101     X509_PUBKEY *xpk = NULL;
102
103
104     if ((xpk = X509_PUBKEY_new()) == NULL
105         || (derlen = k2d(obj, &der)) <= 0
106         || !X509_PUBKEY_set0_param(xpk, OBJ_nid2obj(obj_nid),
107                                    params_type, params, der, derlen)) {
108         ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
109         X509_PUBKEY_free(xpk);
110         OPENSSL_free(der);
111         xpk = NULL;
112     }
113
114     return xpk;
115 }
116
117 OSSL_FUNC_keymgmt_new_fn *ossl_prov_get_keymgmt_new(const OSSL_DISPATCH *fns)
118 {
119     /* Pilfer the keymgmt dispatch table */
120     for (; fns->function_id != 0; fns++)
121         if (fns->function_id == OSSL_FUNC_KEYMGMT_NEW)
122             return OSSL_FUNC_keymgmt_new(fns);
123
124     return NULL;
125 }
126
127 OSSL_FUNC_keymgmt_free_fn *ossl_prov_get_keymgmt_free(const OSSL_DISPATCH *fns)
128 {
129     /* Pilfer the keymgmt dispatch table */
130     for (; fns->function_id != 0; fns++)
131         if (fns->function_id == OSSL_FUNC_KEYMGMT_FREE)
132             return OSSL_FUNC_keymgmt_free(fns);
133
134     return NULL;
135 }
136
137 OSSL_FUNC_keymgmt_import_fn *ossl_prov_get_keymgmt_import(const OSSL_DISPATCH *fns)
138 {
139     /* Pilfer the keymgmt dispatch table */
140     for (; fns->function_id != 0; fns++)
141         if (fns->function_id == OSSL_FUNC_KEYMGMT_IMPORT)
142             return OSSL_FUNC_keymgmt_import(fns);
143
144     return NULL;
145 }
146
147 # ifdef SIXTY_FOUR_BIT_LONG
148 #  define BN_FMTu "%lu"
149 #  define BN_FMTx "%lx"
150 # endif
151
152 # ifdef SIXTY_FOUR_BIT
153 #  define BN_FMTu "%llu"
154 #  define BN_FMTx "%llx"
155 # endif
156
157 # ifdef THIRTY_TWO_BIT
158 #  define BN_FMTu "%u"
159 #  define BN_FMTx "%x"
160 # endif
161
162 int ossl_prov_print_labeled_bignum(BIO *out, const char *label,
163                                    const BIGNUM *bn)
164 {
165     int ret = 0, use_sep = 0;
166     char *hex_str = NULL, *p;
167     const char spaces[] = "    ";
168     const char *post_label_spc = " ";
169
170     const char *neg = "";
171     int bytes;
172
173     if (bn == NULL)
174         return 0;
175     if (label == NULL) {
176         label = "";
177         post_label_spc = "";
178     }
179
180     if (BN_is_zero(bn))
181         return BIO_printf(out, "%s%s0\n", label, post_label_spc);
182
183     if (BN_num_bytes(bn) <= BN_BYTES) {
184         BN_ULONG *words = bn_get_words(bn);
185
186         if (BN_is_negative(bn))
187             neg = "-";
188
189         return BIO_printf(out, "%s%s%s" BN_FMTu " (%s0x" BN_FMTx ")\n",
190                           label, post_label_spc, neg, words[0], neg, words[0]);
191     }
192
193     hex_str = BN_bn2hex(bn);
194     p = hex_str;
195     if (*p == '-') {
196         ++p;
197         neg = " (Negative)";
198     }
199     if (BIO_printf(out, "%s%s\n", label, neg) <= 0)
200         goto err;
201
202     /* Keep track of how many bytes we have printed out so far */
203     bytes = 0;
204
205     if (BIO_printf(out, "%s", spaces) <= 0)
206         goto err;
207
208     /* Add a leading 00 if the top bit is set */
209     if (*p >= '8') {
210         if (BIO_printf(out, "%02x", 0) <= 0)
211             goto err;
212         ++bytes;
213         use_sep = 1;
214     }
215     while (*p != '\0') {
216         /* Do a newline after every 15 hex bytes + add the space indent */
217         if ((bytes % 15) == 0 && bytes > 0) {
218             if (BIO_printf(out, ":\n%s", spaces) <= 0)
219                 goto err;
220             use_sep = 0; /* The first byte on the next line doesnt have a : */
221         }
222         if (BIO_printf(out, "%s%c%c", use_sep ? ":" : "",
223                        ossl_tolower(p[0]), ossl_tolower(p[1])) <= 0)
224             goto err;
225         ++bytes;
226         p += 2;
227         use_sep = 1;
228     }
229     if (BIO_printf(out, "\n") <= 0)
230         goto err;
231     ret = 1;
232 err:
233     OPENSSL_free(hex_str);
234     return ret;
235 }
236
237 /* Number of octets per line */
238 #define LABELED_BUF_PRINT_WIDTH    15
239
240 int ossl_prov_print_labeled_buf(BIO *out, const char *label,
241                                 const unsigned char *buf, size_t buflen)
242 {
243     size_t i;
244
245     if (BIO_printf(out, "%s\n", label) <= 0)
246         return 0;
247
248     for (i = 0; i < buflen; i++) {
249         if ((i % LABELED_BUF_PRINT_WIDTH) == 0) {
250             if (i > 0 && BIO_printf(out, "\n") <= 0)
251                 return 0;
252             if (BIO_printf(out, "    ") <= 0)
253                 return 0;
254         }
255
256         if (BIO_printf(out, "%02x%s", buf[i],
257                                  (i == buflen - 1) ? "" : ":") <= 0)
258             return 0;
259     }
260     if (BIO_printf(out, "\n") <= 0)
261         return 0;
262
263     return 1;
264 }
265
266 /* p2s = param to asn1, k2d = key to der */
267 int ossl_prov_write_priv_der_from_obj(BIO *out, const void *obj, int obj_nid,
268                                       int (*p2s)(const void *obj, int nid,
269                                                  void **str,
270                                                  int *strtype),
271                                       int (*k2d)(const void *obj,
272                                                  unsigned char **pder),
273                                       struct pkcs8_encrypt_ctx_st *ctx)
274 {
275     int ret = 0;
276     void *str = NULL;
277     int strtype = V_ASN1_UNDEF;
278
279     if (p2s != NULL && !p2s(obj, obj_nid, &str, &strtype))
280         return 0;
281
282     if (ctx->cipher_intent) {
283         X509_SIG *p8 =
284             ossl_prov_encp8_from_obj(obj, obj_nid, str, strtype, k2d, ctx);
285
286         if (p8 != NULL)
287             ret = i2d_PKCS8_bio(out, p8);
288
289         X509_SIG_free(p8);
290     } else {
291         PKCS8_PRIV_KEY_INFO *p8info =
292             ossl_prov_p8info_from_obj(obj, obj_nid, str, strtype, k2d);
293
294         if (p8info != NULL)
295             ret = i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8info);
296
297         PKCS8_PRIV_KEY_INFO_free(p8info);
298     }
299
300     return ret;
301 }
302
303 int ossl_prov_write_priv_pem_from_obj(BIO *out, const void *obj, int obj_nid,
304                                       int (*p2s)(const void *obj, int nid,
305                                                  void **str,
306                                                  int *strtype),
307                                       int (*k2d)(const void *obj,
308                                                  unsigned char **pder),
309                                       struct pkcs8_encrypt_ctx_st *ctx)
310 {
311     int ret = 0;
312     void *str = NULL;
313     int strtype = V_ASN1_UNDEF;
314
315     if (p2s != NULL && !p2s(obj, obj_nid, &str, &strtype))
316         return 0;
317
318     if (ctx->cipher_intent) {
319         X509_SIG *p8 = ossl_prov_encp8_from_obj(obj, obj_nid, str, strtype,
320                                                 k2d, ctx);
321
322         if (p8 != NULL)
323             ret = PEM_write_bio_PKCS8(out, p8);
324
325         X509_SIG_free(p8);
326     } else {
327         PKCS8_PRIV_KEY_INFO *p8info =
328             ossl_prov_p8info_from_obj(obj, obj_nid, str, strtype, k2d);
329
330         if (p8info != NULL)
331             ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8info);
332
333         PKCS8_PRIV_KEY_INFO_free(p8info);
334     }
335
336     return ret;
337 }
338
339 int ossl_prov_write_pub_der_from_obj(BIO *out, const void *obj, int obj_nid,
340                                      int (*p2s)(const void *obj, int nid,
341                                                 void **str,
342                                                 int *strtype),
343                                      int (*k2d)(const void *obj,
344                                                 unsigned char **pder))
345 {
346     int ret = 0;
347     void *str = NULL;
348     int strtype = V_ASN1_UNDEF;
349     X509_PUBKEY *xpk = NULL;
350
351     if (p2s != NULL && !p2s(obj, obj_nid, &str, &strtype))
352         return 0;
353
354     xpk = ossl_prov_pubkey_from_obj(obj, obj_nid, str, strtype, k2d);
355
356     if (xpk != NULL)
357         ret = i2d_X509_PUBKEY_bio(out, xpk);
358
359     /* Also frees |str| */
360     X509_PUBKEY_free(xpk);
361     return ret;
362 }
363
364 int ossl_prov_write_pub_pem_from_obj(BIO *out, const void *obj, int obj_nid,
365                                      int (*p2s)(const void *obj, int nid,
366                                                 void **str,
367                                                 int *strtype),
368                                      int (*k2d)(const void *obj,
369                                                 unsigned char **pder))
370 {
371     int ret = 0;
372     void *str = NULL;
373     int strtype = V_ASN1_UNDEF;
374     X509_PUBKEY *xpk = NULL;
375
376     if (p2s != NULL && !p2s(obj, obj_nid, &str, &strtype))
377         return 0;
378
379     xpk = ossl_prov_pubkey_from_obj(obj, obj_nid, str, strtype, k2d);
380
381     if (xpk != NULL)
382         ret = PEM_write_bio_X509_PUBKEY(out, xpk);
383
384     /* Also frees |str| */
385     X509_PUBKEY_free(xpk);
386     return ret;
387 }