]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/digest.c
GH715: ENGINE_finish can take NULL
[thirdparty/openssl.git] / crypto / evp / digest.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
5ba372b1
BM
57/* ====================================================================
58 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
59 *
60 * Redistribution and use in source and binary forms, with or without
61 * modification, are permitted provided that the following conditions
62 * are met:
63 *
64 * 1. Redistributions of source code must retain the above copyright
0f113f3e 65 * notice, this list of conditions and the following disclaimer.
5ba372b1
BM
66 *
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in
69 * the documentation and/or other materials provided with the
70 * distribution.
71 *
72 * 3. All advertising materials mentioning features or use of this
73 * software must display the following acknowledgment:
74 * "This product includes software developed by the OpenSSL Project
75 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76 *
77 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78 * endorse or promote products derived from this software without
79 * prior written permission. For written permission, please contact
80 * openssl-core@openssl.org.
81 *
82 * 5. Products derived from this software may not be called "OpenSSL"
83 * nor may "OpenSSL" appear in their names without prior written
84 * permission of the OpenSSL Project.
85 *
86 * 6. Redistributions of any form whatsoever must retain the following
87 * acknowledgment:
88 * "This product includes software developed by the OpenSSL Project
89 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90 *
91 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
95 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 * OF THE POSSIBILITY OF SUCH DAMAGE.
103 * ====================================================================
104 *
105 * This product includes cryptographic software written by Eric Young
106 * (eay@cryptsoft.com). This product includes software written by Tim
107 * Hudson (tjh@cryptsoft.com).
108 *
109 */
d02b48c6
RE
110
111#include <stdio.h>
b39fc560 112#include "internal/cryptlib.h"
ec577822
BM
113#include <openssl/objects.h>
114#include <openssl/evp.h>
0b13e9f0 115#ifndef OPENSSL_NO_ENGINE
0f113f3e 116# include <openssl/engine.h>
0b13e9f0 117#endif
ab0a14bb 118#include "internal/evp_int.h"
77a01145 119#include "evp_locl.h"
d02b48c6 120
74cabf3f 121/* This call frees resources associated with the context */
959ed531 122int EVP_MD_CTX_reset(EVP_MD_CTX *ctx)
0f113f3e 123{
74cabf3f
RL
124 if (ctx == NULL)
125 return 1;
126
127 /*
128 * Don't assume ctx->md_data was cleaned in EVP_Digest_Final, because
129 * sometimes only copies of the context are ever finalised.
130 */
131 if (ctx->digest && ctx->digest->cleanup
132 && !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_CLEANED))
133 ctx->digest->cleanup(ctx);
134 if (ctx->digest && ctx->digest->ctx_size && ctx->md_data
135 && !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_REUSE)) {
136 OPENSSL_clear_free(ctx->md_data, ctx->digest->ctx_size);
137 }
138 EVP_PKEY_CTX_free(ctx->pctx);
139#ifndef OPENSSL_NO_ENGINE
7c96dbcd 140 ENGINE_finish(ctx->engine);
74cabf3f 141#endif
16f8d4eb 142 memset(ctx, 0, sizeof(*ctx));
74cabf3f
RL
143
144 return 1;
0f113f3e 145}
dbad1690 146
959ed531 147EVP_MD_CTX *EVP_MD_CTX_new(void)
0f113f3e 148{
74cabf3f
RL
149 return OPENSSL_zalloc(sizeof(EVP_MD_CTX));
150}
dbad1690 151
959ed531 152void EVP_MD_CTX_free(EVP_MD_CTX *ctx)
74cabf3f 153{
959ed531 154 EVP_MD_CTX_reset(ctx);
74cabf3f 155 OPENSSL_free(ctx);
0f113f3e 156}
dbad1690 157
2dc769a1 158int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
0f113f3e 159{
959ed531 160 EVP_MD_CTX_reset(ctx);
0f113f3e
MC
161 return EVP_DigestInit_ex(ctx, type, NULL);
162}
0fea7ed4 163
11a57c7b 164int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
0f113f3e
MC
165{
166 EVP_MD_CTX_clear_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
0b13e9f0 167#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
168 /*
169 * Whether it's nice or not, "Inits" can be used on "Final"'d contexts so
170 * this context may already have an ENGINE! Try to avoid releasing the
171 * previous handle, re-querying for an ENGINE, and having a
0d4fb843 172 * reinitialisation, when it may all be unnecessary.
0f113f3e
MC
173 */
174 if (ctx->engine && ctx->digest && (!type ||
175 (type
176 && (type->type ==
177 ctx->digest->type))))
178 goto skip_to_init;
179 if (type) {
180 /*
181 * Ensure an ENGINE left lying around from last time is cleared (the
182 * previous check attempted to avoid this if the same ENGINE and
183 * EVP_MD could be used).
184 */
7c96dbcd
RS
185 ENGINE_finish(ctx->engine);
186 if (impl != NULL) {
0f113f3e
MC
187 if (!ENGINE_init(impl)) {
188 EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_INITIALIZATION_ERROR);
189 return 0;
190 }
7c96dbcd 191 } else {
0f113f3e
MC
192 /* Ask if an ENGINE is reserved for this job */
193 impl = ENGINE_get_digest_engine(type->type);
7c96dbcd
RS
194 }
195 if (impl != NULL) {
0f113f3e
MC
196 /* There's an ENGINE for this job ... (apparently) */
197 const EVP_MD *d = ENGINE_get_digest(impl, type->type);
7c96dbcd
RS
198
199 if (d == NULL) {
0f113f3e
MC
200 EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_INITIALIZATION_ERROR);
201 ENGINE_finish(impl);
202 return 0;
203 }
204 /* We'll use the ENGINE's private digest definition */
205 type = d;
206 /*
207 * Store the ENGINE functional reference so we know 'type' came
208 * from an ENGINE and we need to release it when done.
209 */
210 ctx->engine = impl;
211 } else
212 ctx->engine = NULL;
a0108702
MC
213 } else {
214 if (!ctx->digest) {
215 EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_NO_DIGEST_SET);
216 return 0;
217 }
218 type = ctx->digest;
0f113f3e 219 }
90e8a310 220#endif
0f113f3e
MC
221 if (ctx->digest != type) {
222 if (ctx->digest && ctx->digest->ctx_size)
223 OPENSSL_free(ctx->md_data);
224 ctx->digest = type;
225 if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) {
226 ctx->update = type->update;
84c15091 227 ctx->md_data = OPENSSL_zalloc(type->ctx_size);
0f113f3e
MC
228 if (ctx->md_data == NULL) {
229 EVPerr(EVP_F_EVP_DIGESTINIT_EX, ERR_R_MALLOC_FAILURE);
230 return 0;
231 }
232 }
233 }
0b13e9f0 234#ifndef OPENSSL_NO_ENGINE
0f113f3e 235 skip_to_init:
0b13e9f0 236#endif
0f113f3e
MC
237 if (ctx->pctx) {
238 int r;
239 r = EVP_PKEY_CTX_ctrl(ctx->pctx, -1, EVP_PKEY_OP_TYPE_SIG,
240 EVP_PKEY_CTRL_DIGESTINIT, 0, ctx);
241 if (r <= 0 && (r != -2))
242 return 0;
243 }
244 if (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT)
245 return 1;
246 return ctx->digest->init(ctx);
247}
d02b48c6 248
f80921b6 249int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count)
0f113f3e
MC
250{
251 return ctx->update(ctx, data, count);
252}
d02b48c6 253
dbad1690 254/* The caller can assume that this removes any secret data from the context */
2dc769a1 255int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *size)
0f113f3e
MC
256{
257 int ret;
258 ret = EVP_DigestFinal_ex(ctx, md, size);
959ed531 259 EVP_MD_CTX_reset(ctx);
0f113f3e
MC
260 return ret;
261}
20d2186c
DSH
262
263/* The caller can assume that this removes any secret data from the context */
264int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *size)
0f113f3e
MC
265{
266 int ret;
54a656ef 267
0f113f3e
MC
268 OPENSSL_assert(ctx->digest->md_size <= EVP_MAX_MD_SIZE);
269 ret = ctx->digest->final(ctx, md);
270 if (size != NULL)
271 *size = ctx->digest->md_size;
272 if (ctx->digest->cleanup) {
273 ctx->digest->cleanup(ctx);
274 EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
275 }
276 memset(ctx->md_data, 0, ctx->digest->ctx_size);
277 return ret;
278}
351d8998 279
dbad1690 280int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in)
0f113f3e 281{
959ed531 282 EVP_MD_CTX_reset(out);
0f113f3e
MC
283 return EVP_MD_CTX_copy_ex(out, in);
284}
20d2186c
DSH
285
286int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in)
0f113f3e
MC
287{
288 unsigned char *tmp_buf;
289 if ((in == NULL) || (in->digest == NULL)) {
290 EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, EVP_R_INPUT_NOT_INITIALIZED);
291 return 0;
292 }
0b13e9f0 293#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
294 /* Make sure it's safe to copy a digest context using an ENGINE */
295 if (in->engine && !ENGINE_init(in->engine)) {
296 EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, ERR_R_ENGINE_LIB);
297 return 0;
298 }
0b13e9f0 299#endif
26188931 300
0f113f3e
MC
301 if (out->digest == in->digest) {
302 tmp_buf = out->md_data;
303 EVP_MD_CTX_set_flags(out, EVP_MD_CTX_FLAG_REUSE);
304 } else
305 tmp_buf = NULL;
959ed531 306 EVP_MD_CTX_reset(out);
b4faea50 307 memcpy(out, in, sizeof(*out));
0f113f3e 308
6aa0ba4b
RL
309 /* Null these variables, since they are getting fixed up
310 * properly below. Anything else may cause a memleak and/or
311 * double free if any of the memory allocations below fail
312 */
313 out->md_data = NULL;
314 out->pctx = NULL;
315
0f113f3e
MC
316 if (in->md_data && out->digest->ctx_size) {
317 if (tmp_buf)
318 out->md_data = tmp_buf;
319 else {
320 out->md_data = OPENSSL_malloc(out->digest->ctx_size);
90945fa3 321 if (out->md_data == NULL) {
0f113f3e
MC
322 EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, ERR_R_MALLOC_FAILURE);
323 return 0;
324 }
325 }
326 memcpy(out->md_data, in->md_data, out->digest->ctx_size);
327 }
26188931 328
0f113f3e 329 out->update = in->update;
d4575825 330
0f113f3e
MC
331 if (in->pctx) {
332 out->pctx = EVP_PKEY_CTX_dup(in->pctx);
333 if (!out->pctx) {
959ed531 334 EVP_MD_CTX_reset(out);
0f113f3e
MC
335 return 0;
336 }
337 }
18327cd0 338
0f113f3e
MC
339 if (out->digest->copy)
340 return out->digest->copy(out, in);
3a828611 341
0f113f3e
MC
342 return 1;
343}
88ce56f8 344
9e0aad9f 345int EVP_Digest(const void *data, size_t count,
0f113f3e
MC
346 unsigned char *md, unsigned int *size, const EVP_MD *type,
347 ENGINE *impl)
348{
bfb0641f 349 EVP_MD_CTX *ctx = EVP_MD_CTX_new();
0f113f3e 350 int ret;
dbad1690 351
74cabf3f
RL
352 if (ctx == NULL)
353 return 0;
354 EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_ONESHOT);
355 ret = EVP_DigestInit_ex(ctx, type, impl)
356 && EVP_DigestUpdate(ctx, data, count)
357 && EVP_DigestFinal_ex(ctx, md, size);
bfb0641f 358 EVP_MD_CTX_free(ctx);
dbad1690 359
0f113f3e
MC
360 return ret;
361}
dbad1690 362
396d5fd0
DSH
363int EVP_MD_CTX_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2)
364{
365 if (ctx->digest && ctx->digest->md_ctrl) {
366 int ret = ctx->digest->md_ctrl(ctx, cmd, p1, p2);
367 if (ret <= 0)
368 return 0;
369 return 1;
370 }
371 return 0;
372}