coverity 1462546 Dereference after null check
[openssl.git] / crypto / evp / m_sigver.c
1 /*
2  * Copyright 2006-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/evp.h>
13 #include <openssl/objects.h>
14 #include <openssl/x509.h>
15 #include "crypto/evp.h"
16 #include "internal/provider.h"
17 #include "evp_local.h"
18
19 #ifndef FIPS_MODULE
20
21 static int update(EVP_MD_CTX *ctx, const void *data, size_t datalen)
22 {
23     EVPerr(EVP_F_UPDATE, EVP_R_ONLY_ONESHOT_SUPPORTED);
24     return 0;
25 }
26
27 /*
28  * If we get the "NULL" md then the name comes back as "UNDEF". We want to use
29  * NULL for this.
30  */
31 static const char *canon_mdname(const char *mdname)
32 {
33     if (mdname != NULL && strcmp(mdname, "UNDEF") == 0)
34         return NULL;
35
36     return mdname;
37 }
38
39 static int do_sigver_init(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
40                           const EVP_MD *type, const char *mdname,
41                           const char *props, ENGINE *e, EVP_PKEY *pkey,
42                           OPENSSL_CTX *libctx, int ver)
43 {
44     EVP_PKEY_CTX *locpctx = NULL;
45     EVP_SIGNATURE *signature = NULL;
46     EVP_KEYMGMT *tmp_keymgmt = NULL;
47     const char *supported_sig = NULL;
48     char locmdname[80] = "";     /* 80 chars should be enough */
49     void *provkey = NULL;
50     int ret;
51
52     if (ctx->provctx != NULL) {
53         if (!ossl_assert(ctx->digest != NULL)) {
54             ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
55             return 0;
56         }
57         if (ctx->digest->freectx != NULL)
58             ctx->digest->freectx(ctx->provctx);
59         ctx->provctx = NULL;
60     }
61
62     if (ctx->pctx == NULL) {
63         if (libctx != NULL)
64             ctx->pctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, props);
65         else
66             ctx->pctx = EVP_PKEY_CTX_new(pkey, e);
67     }
68     if (ctx->pctx == NULL)
69         return 0;
70
71     locpctx = ctx->pctx;
72     evp_pkey_ctx_free_old_ops(locpctx);
73
74     /*
75      * TODO when we stop falling back to legacy, this and the ERR_pop_to_mark()
76      * calls can be removed.
77      */
78     ERR_set_mark();
79
80     if (locpctx->engine != NULL || locpctx->keytype == NULL)
81         goto legacy;
82
83     /*
84      * Ensure that the key is provided, either natively, or as a cached export.
85      *  If not, go legacy
86      */
87     tmp_keymgmt = locpctx->keymgmt;
88     provkey = evp_pkey_export_to_provider(locpctx->pkey, locpctx->libctx,
89                                           &tmp_keymgmt, locpctx->propquery);
90     if (provkey == NULL)
91         goto legacy;
92     if (!EVP_KEYMGMT_up_ref(tmp_keymgmt)) {
93         ERR_clear_last_mark();
94         ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
95         goto err;
96     }
97     EVP_KEYMGMT_free(locpctx->keymgmt);
98     locpctx->keymgmt = tmp_keymgmt;
99
100     if (locpctx->keymgmt->query_operation_name != NULL)
101         supported_sig =
102             locpctx->keymgmt->query_operation_name(OSSL_OP_SIGNATURE);
103
104     /*
105      * If we didn't get a supported sig, assume there is one with the
106      * same name as the key type.
107      */
108     if (supported_sig == NULL)
109         supported_sig = locpctx->keytype;
110
111     /*
112      * Because we cleared out old ops, we shouldn't need to worry about
113      * checking if signature is already there.
114      */
115     signature = EVP_SIGNATURE_fetch(locpctx->libctx, supported_sig,
116                                     locpctx->propquery);
117
118     if (signature == NULL
119         || (EVP_KEYMGMT_provider(locpctx->keymgmt)
120             != EVP_SIGNATURE_provider(signature))) {
121         /*
122          * We don't need to free ctx->keymgmt here, as it's not necessarily
123          * tied to this operation.  It will be freed by EVP_PKEY_CTX_free().
124          */
125         EVP_SIGNATURE_free(signature);
126         goto legacy;
127     }
128
129     /*
130      * TODO remove this when legacy is gone
131      * If we don't have the full support we need with provided methods,
132      * let's go see if legacy does.
133      */
134     ERR_pop_to_mark();
135
136     /* No more legacy from here down to legacy: */
137
138     if (pctx != NULL)
139         *pctx = locpctx;
140
141     locpctx->op.sig.signature = signature;
142     locpctx->operation = ver ? EVP_PKEY_OP_VERIFYCTX
143                              : EVP_PKEY_OP_SIGNCTX;
144     locpctx->op.sig.sigprovctx
145         = signature->newctx(ossl_provider_ctx(signature->prov));
146     if (locpctx->op.sig.sigprovctx == NULL) {
147         ERR_raise(ERR_LIB_EVP,  EVP_R_INITIALIZATION_ERROR);
148         goto err;
149     }
150     if (type != NULL) {
151         ctx->reqdigest = type;
152         if (mdname == NULL)
153             mdname = canon_mdname(EVP_MD_name(type));
154     } else {
155         if (mdname == NULL) {
156             if (evp_keymgmt_util_get_deflt_digest_name(tmp_keymgmt, provkey,
157                                                        locmdname,
158                                                        sizeof(locmdname)) > 0) {
159                 mdname = canon_mdname(locmdname);
160             } else {
161                 EVPerr(EVP_F_DO_SIGVER_INIT, EVP_R_NO_DEFAULT_DIGEST);
162                 return 0;
163             }
164         }
165
166         if (mdname != NULL) {
167             /*
168              * This might be requested by a later call to EVP_MD_CTX_md().
169              * In that case the "explicit fetch" rules apply for that
170              * function (as per man pages), i.e. the ref count is not updated
171              * so the EVP_MD should not be used beyound the lifetime of the
172              * EVP_MD_CTX.
173              */
174             ctx->reqdigest = ctx->fetched_digest =
175                 EVP_MD_fetch(locpctx->libctx, mdname, props);
176         }
177     }
178
179     if (ver) {
180         if (signature->digest_verify_init == NULL) {
181             ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
182             goto err;
183         }
184         ret = signature->digest_verify_init(locpctx->op.sig.sigprovctx,
185                                             mdname, props, provkey);
186     } else {
187         if (signature->digest_sign_init == NULL) {
188             ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
189             goto err;
190         }
191         ret = signature->digest_sign_init(locpctx->op.sig.sigprovctx,
192                                           mdname, props, provkey);
193     }
194
195     return ret ? 1 : 0;
196  err:
197     evp_pkey_ctx_free_old_ops(locpctx);
198     locpctx->operation = EVP_PKEY_OP_UNDEFINED;
199     return 0;
200
201  legacy:
202     /*
203      * TODO remove this when legacy is gone
204      * If we don't have the full support we need with provided methods,
205      * let's go see if legacy does.
206      */
207     ERR_pop_to_mark();
208
209     if (type == NULL && mdname != NULL)
210         type = evp_get_digestbyname_ex(locpctx->libctx, mdname);
211
212     if (ctx->pctx->pmeth == NULL) {
213         EVPerr(0, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
214         return 0;
215     }
216
217     if (!(ctx->pctx->pmeth->flags & EVP_PKEY_FLAG_SIGCTX_CUSTOM)) {
218
219         if (type == NULL) {
220             int def_nid;
221             if (EVP_PKEY_get_default_digest_nid(pkey, &def_nid) > 0)
222                 type = EVP_get_digestbynid(def_nid);
223         }
224
225         if (type == NULL) {
226             EVPerr(EVP_F_DO_SIGVER_INIT, EVP_R_NO_DEFAULT_DIGEST);
227             return 0;
228         }
229     }
230
231     if (ver) {
232         if (ctx->pctx->pmeth->verifyctx_init) {
233             if (ctx->pctx->pmeth->verifyctx_init(ctx->pctx, ctx) <= 0)
234                 return 0;
235             ctx->pctx->operation = EVP_PKEY_OP_VERIFYCTX;
236         } else if (ctx->pctx->pmeth->digestverify != 0) {
237             ctx->pctx->operation = EVP_PKEY_OP_VERIFY;
238             ctx->update = update;
239         } else if (EVP_PKEY_verify_init(ctx->pctx) <= 0) {
240             return 0;
241         }
242     } else {
243         if (ctx->pctx->pmeth->signctx_init) {
244             if (ctx->pctx->pmeth->signctx_init(ctx->pctx, ctx) <= 0)
245                 return 0;
246             ctx->pctx->operation = EVP_PKEY_OP_SIGNCTX;
247         } else if (ctx->pctx->pmeth->digestsign != 0) {
248             ctx->pctx->operation = EVP_PKEY_OP_SIGN;
249             ctx->update = update;
250         } else if (EVP_PKEY_sign_init(ctx->pctx) <= 0) {
251             return 0;
252         }
253     }
254     if (EVP_PKEY_CTX_set_signature_md(ctx->pctx, type) <= 0)
255         return 0;
256     if (pctx)
257         *pctx = ctx->pctx;
258     if (ctx->pctx->pmeth->flags & EVP_PKEY_FLAG_SIGCTX_CUSTOM)
259         return 1;
260     if (!EVP_DigestInit_ex(ctx, type, e))
261         return 0;
262     /*
263      * This indicates the current algorithm requires
264      * special treatment before hashing the tbs-message.
265      */
266     ctx->pctx->flag_call_digest_custom = 0;
267     if (ctx->pctx->pmeth->digest_custom != NULL)
268         ctx->pctx->flag_call_digest_custom = 1;
269
270     return 1;
271 }
272
273 int EVP_DigestSignInit_ex(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
274                           const char *mdname, const char *props, EVP_PKEY *pkey,
275                           OPENSSL_CTX *libctx)
276 {
277     return do_sigver_init(ctx, pctx, NULL, mdname, props, NULL, pkey, libctx,
278                           0);
279 }
280
281 int EVP_DigestSignInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
282                        const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey)
283 {
284     return do_sigver_init(ctx, pctx, type, NULL, NULL, e, pkey, NULL, 0);
285 }
286
287 int EVP_DigestVerifyInit_ex(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
288                             const char *mdname, const char *props,
289                             EVP_PKEY *pkey, OPENSSL_CTX *libctx)
290 {
291     return do_sigver_init(ctx, pctx, NULL, mdname, props, NULL, pkey, libctx, 1);
292 }
293
294 int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
295                          const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey)
296 {
297     return do_sigver_init(ctx, pctx, type, NULL, NULL, e, pkey, NULL, 1);
298 }
299 #endif /* FIPS_MDOE */
300
301 int EVP_DigestSignUpdate(EVP_MD_CTX *ctx, const void *data, size_t dsize)
302 {
303     EVP_PKEY_CTX *pctx = ctx->pctx;
304
305     if (pctx == NULL
306             || pctx->operation != EVP_PKEY_OP_SIGNCTX
307             || pctx->op.sig.sigprovctx == NULL
308             || pctx->op.sig.signature == NULL)
309         goto legacy;
310
311     if (pctx->op.sig.signature->digest_sign_update == NULL) {
312         ERR_raise(ERR_LIB_EVP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
313         return 0;
314     }
315
316     return pctx->op.sig.signature->digest_sign_update(pctx->op.sig.sigprovctx,
317                                                       data, dsize);
318
319  legacy:
320     if (pctx != NULL) {
321         /* do_sigver_init() checked that |digest_custom| is non-NULL */
322         if (pctx->flag_call_digest_custom
323             && !ctx->pctx->pmeth->digest_custom(ctx->pctx, ctx))
324             return 0;
325         pctx->flag_call_digest_custom = 0;
326     }
327
328     return EVP_DigestUpdate(ctx, data, dsize);
329 }
330
331 int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *data, size_t dsize)
332 {
333     EVP_PKEY_CTX *pctx = ctx->pctx;
334
335     if (pctx == NULL
336             || pctx->operation != EVP_PKEY_OP_VERIFYCTX
337             || pctx->op.sig.sigprovctx == NULL
338             || pctx->op.sig.signature == NULL)
339         goto legacy;
340
341     if (pctx->op.sig.signature->digest_verify_update == NULL) {
342         ERR_raise(ERR_LIB_EVP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
343         return 0;
344     }
345
346     return pctx->op.sig.signature->digest_verify_update(pctx->op.sig.sigprovctx,
347                                                         data, dsize);
348
349  legacy:
350     if (pctx != NULL) {
351         /* do_sigver_init() checked that |digest_custom| is non-NULL */
352         if (pctx->flag_call_digest_custom
353             && !ctx->pctx->pmeth->digest_custom(ctx->pctx, ctx))
354             return 0;
355         pctx->flag_call_digest_custom = 0;
356     }
357
358     return EVP_DigestUpdate(ctx, data, dsize);
359 }
360
361 #ifndef FIPS_MODULE
362 int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
363                         size_t *siglen)
364 {
365     int sctx = 0, r = 0;
366     EVP_PKEY_CTX *pctx = ctx->pctx;
367
368     if (pctx == NULL
369             || pctx->operation != EVP_PKEY_OP_SIGNCTX
370             || pctx->op.sig.sigprovctx == NULL
371             || pctx->op.sig.signature == NULL)
372         goto legacy;
373
374     return pctx->op.sig.signature->digest_sign_final(pctx->op.sig.sigprovctx,
375                                                      sigret, siglen, SIZE_MAX);
376
377  legacy:
378     if (pctx == NULL || pctx->pmeth == NULL) {
379         ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
380         return 0;
381     }
382
383     /* do_sigver_init() checked that |digest_custom| is non-NULL */
384     if (pctx->flag_call_digest_custom
385         && !ctx->pctx->pmeth->digest_custom(ctx->pctx, ctx))
386         return 0;
387     pctx->flag_call_digest_custom = 0;
388
389     if (pctx->pmeth->flags & EVP_PKEY_FLAG_SIGCTX_CUSTOM) {
390         if (sigret == NULL)
391             return pctx->pmeth->signctx(pctx, sigret, siglen, ctx);
392         if (ctx->flags & EVP_MD_CTX_FLAG_FINALISE)
393             r = pctx->pmeth->signctx(pctx, sigret, siglen, ctx);
394         else {
395             EVP_PKEY_CTX *dctx = EVP_PKEY_CTX_dup(pctx);
396
397             if (dctx == NULL)
398                 return 0;
399             r = dctx->pmeth->signctx(dctx, sigret, siglen, ctx);
400             EVP_PKEY_CTX_free(dctx);
401         }
402         return r;
403     }
404     if (pctx->pmeth->signctx != NULL)
405         sctx = 1;
406     else
407         sctx = 0;
408     if (sigret != NULL) {
409         unsigned char md[EVP_MAX_MD_SIZE];
410         unsigned int mdlen = 0;
411
412         if (ctx->flags & EVP_MD_CTX_FLAG_FINALISE) {
413             if (sctx)
414                 r = pctx->pmeth->signctx(pctx, sigret, siglen, ctx);
415             else
416                 r = EVP_DigestFinal_ex(ctx, md, &mdlen);
417         } else {
418             EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new();
419
420             if (tmp_ctx == NULL)
421                 return 0;
422             if (!EVP_MD_CTX_copy_ex(tmp_ctx, ctx)) {
423                 EVP_MD_CTX_free(tmp_ctx);
424                 return 0;
425             }
426             if (sctx)
427                 r = tmp_ctx->pctx->pmeth->signctx(tmp_ctx->pctx,
428                                                   sigret, siglen, tmp_ctx);
429             else
430                 r = EVP_DigestFinal_ex(tmp_ctx, md, &mdlen);
431             EVP_MD_CTX_free(tmp_ctx);
432         }
433         if (sctx || !r)
434             return r;
435         if (EVP_PKEY_sign(pctx, sigret, siglen, md, mdlen) <= 0)
436             return 0;
437     } else {
438         if (sctx) {
439             if (pctx->pmeth->signctx(pctx, sigret, siglen, ctx) <= 0)
440                 return 0;
441         } else {
442             int s = EVP_MD_size(ctx->digest);
443
444             if (s < 0 || EVP_PKEY_sign(pctx, sigret, siglen, NULL, s) <= 0)
445                 return 0;
446         }
447     }
448     return 1;
449 }
450
451 int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen,
452                    const unsigned char *tbs, size_t tbslen)
453 {
454     EVP_PKEY_CTX *pctx = ctx->pctx;
455
456     if (pctx != NULL
457             && pctx->operation == EVP_PKEY_OP_SIGNCTX
458             && pctx->op.sig.sigprovctx != NULL
459             && pctx->op.sig.signature != NULL) {
460         if (pctx->op.sig.signature->digest_sign != NULL)
461             return pctx->op.sig.signature->digest_sign(pctx->op.sig.sigprovctx,
462                                                        sigret, siglen, SIZE_MAX,
463                                                        tbs, tbslen);
464     } else {
465         /* legacy */
466         if (ctx->pctx->pmeth != NULL && ctx->pctx->pmeth->digestsign != NULL)
467             return ctx->pctx->pmeth->digestsign(ctx, sigret, siglen, tbs, tbslen);
468     }
469
470     if (sigret != NULL && EVP_DigestSignUpdate(ctx, tbs, tbslen) <= 0)
471         return 0;
472     return EVP_DigestSignFinal(ctx, sigret, siglen);
473 }
474
475 int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig,
476                           size_t siglen)
477 {
478     unsigned char md[EVP_MAX_MD_SIZE];
479     int r = 0;
480     unsigned int mdlen = 0;
481     int vctx = 0;
482     EVP_PKEY_CTX *pctx = ctx->pctx;
483
484     if (pctx == NULL
485             || pctx->operation != EVP_PKEY_OP_VERIFYCTX
486             || pctx->op.sig.sigprovctx == NULL
487             || pctx->op.sig.signature == NULL)
488         goto legacy;
489
490     return pctx->op.sig.signature->digest_verify_final(pctx->op.sig.sigprovctx,
491                                                        sig, siglen);
492
493  legacy:
494     if (pctx == NULL || pctx->pmeth == NULL) {
495         ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
496         return 0;
497     }
498
499     /* do_sigver_init() checked that |digest_custom| is non-NULL */
500     if (pctx->flag_call_digest_custom
501         && !ctx->pctx->pmeth->digest_custom(ctx->pctx, ctx))
502         return 0;
503     pctx->flag_call_digest_custom = 0;
504
505     if (pctx->pmeth->verifyctx != NULL)
506         vctx = 1;
507     else
508         vctx = 0;
509     if (ctx->flags & EVP_MD_CTX_FLAG_FINALISE) {
510         if (vctx)
511             r = pctx->pmeth->verifyctx(pctx, sig, siglen, ctx);
512         else
513             r = EVP_DigestFinal_ex(ctx, md, &mdlen);
514     } else {
515         EVP_MD_CTX *tmp_ctx = EVP_MD_CTX_new();
516         if (tmp_ctx == NULL)
517             return -1;
518         if (!EVP_MD_CTX_copy_ex(tmp_ctx, ctx)) {
519             EVP_MD_CTX_free(tmp_ctx);
520             return -1;
521         }
522         if (vctx)
523             r = tmp_ctx->pctx->pmeth->verifyctx(tmp_ctx->pctx,
524                                                 sig, siglen, tmp_ctx);
525         else
526             r = EVP_DigestFinal_ex(tmp_ctx, md, &mdlen);
527         EVP_MD_CTX_free(tmp_ctx);
528     }
529     if (vctx || !r)
530         return r;
531     return EVP_PKEY_verify(pctx, sig, siglen, md, mdlen);
532 }
533
534 int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,
535                      size_t siglen, const unsigned char *tbs, size_t tbslen)
536 {
537     EVP_PKEY_CTX *pctx = ctx->pctx;
538
539     if (pctx != NULL
540             && pctx->operation == EVP_PKEY_OP_VERIFYCTX
541             && pctx->op.sig.sigprovctx != NULL
542             && pctx->op.sig.signature != NULL) {
543         if (pctx->op.sig.signature->digest_verify != NULL)
544             return pctx->op.sig.signature->digest_verify(pctx->op.sig.sigprovctx,
545                                                          sigret, siglen,
546                                                          tbs, tbslen);
547     } else {
548         /* legacy */
549         if (ctx->pctx->pmeth != NULL && ctx->pctx->pmeth->digestverify != NULL)
550             return ctx->pctx->pmeth->digestverify(ctx, sigret, siglen, tbs, tbslen);
551     }
552
553     if (EVP_DigestVerifyUpdate(ctx, tbs, tbslen) <= 0)
554         return -1;
555     return EVP_DigestVerifyFinal(ctx, sigret, siglen);
556 }
557 #endif /* FIPS_MODULE */