GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libcrypto/crypto/../../libssl/src/crypto/evp/bio_md.c Lines: 60 97 61.9 %
Date: 2016-12-06 Branches: 22 56 39.3 %

Line Branch Exec Source
1
/* $OpenBSD: bio_md.c,v 1.14 2014/07/11 08:44:48 jsing Exp $ */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3
 * All rights reserved.
4
 *
5
 * This package is an SSL implementation written
6
 * by Eric Young (eay@cryptsoft.com).
7
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9
 * This library is free for commercial and non-commercial use as long as
10
 * the following conditions are aheared to.  The following conditions
11
 * apply to all code found in this distribution, be it the RC4, RSA,
12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13
 * included with this distribution is covered by the same copyright terms
14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16
 * Copyright remains Eric Young's, and as such any Copyright notices in
17
 * the code are not to be removed.
18
 * If this package is used in a product, Eric Young should be given attribution
19
 * as the author of the parts of the library used.
20
 * This can be in the form of a textual message at program startup or
21
 * in documentation (online or textual) provided with the package.
22
 *
23
 * Redistribution and use in source and binary forms, with or without
24
 * modification, are permitted provided that the following conditions
25
 * are met:
26
 * 1. Redistributions of source code must retain the copyright
27
 *    notice, this list of conditions and the following disclaimer.
28
 * 2. Redistributions in binary form must reproduce the above copyright
29
 *    notice, this list of conditions and the following disclaimer in the
30
 *    documentation and/or other materials provided with the distribution.
31
 * 3. All advertising materials mentioning features or use of this software
32
 *    must display the following acknowledgement:
33
 *    "This product includes cryptographic software written by
34
 *     Eric Young (eay@cryptsoft.com)"
35
 *    The word 'cryptographic' can be left out if the rouines from the library
36
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38
 *    the apps directory (application code) you must include an acknowledgement:
39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51
 * SUCH DAMAGE.
52
 *
53
 * The licence and distribution terms for any publically available version or
54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
55
 * copied and put under another distribution licence
56
 * [including the GNU Public Licence.]
57
 */
58
59
#include <stdio.h>
60
#include <errno.h>
61
62
#include <openssl/buffer.h>
63
#include <openssl/evp.h>
64
65
/* BIO_put and BIO_get both add to the digest,
66
 * BIO_gets returns the digest */
67
68
static int md_write(BIO *h, char const *buf, int num);
69
static int md_read(BIO *h, char *buf, int size);
70
/*static int md_puts(BIO *h, const char *str); */
71
static int md_gets(BIO *h, char *str, int size);
72
static long md_ctrl(BIO *h, int cmd, long arg1, void *arg2);
73
static int md_new(BIO *h);
74
static int md_free(BIO *data);
75
static long md_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
76
77
static BIO_METHOD methods_md = {
78
	.type = BIO_TYPE_MD,
79
	.name = "message digest",
80
	.bwrite = md_write,
81
	.bread = md_read,
82
	.bgets = md_gets,
83
	.ctrl = md_ctrl,
84
	.create = md_new,
85
	.destroy = md_free,
86
	.callback_ctrl = md_callback_ctrl
87
};
88
89
BIO_METHOD *
90
BIO_f_md(void)
91
12
{
92
12
	return (&methods_md);
93
}
94
95
static int
96
md_new(BIO *bi)
97
12
{
98
	EVP_MD_CTX *ctx;
99
100
12
	ctx = EVP_MD_CTX_create();
101
12
	if (ctx == NULL)
102
		return (0);
103
104
12
	bi->init = 0;
105
12
	bi->ptr = (char *)ctx;
106
12
	bi->flags = 0;
107
12
	return (1);
108
}
109
110
static int
111
md_free(BIO *a)
112
12
{
113
12
	if (a == NULL)
114
		return (0);
115
12
	EVP_MD_CTX_destroy(a->ptr);
116
12
	a->ptr = NULL;
117
12
	a->init = 0;
118
12
	a->flags = 0;
119
12
	return (1);
120
}
121
122
static int
123
md_read(BIO *b, char *out, int outl)
124
20
{
125
20
	int ret = 0;
126
	EVP_MD_CTX *ctx;
127
128
20
	if (out == NULL)
129
		return (0);
130
20
	ctx = b->ptr;
131
132

20
	if ((ctx == NULL) || (b->next_bio == NULL))
133
		return (0);
134
135
20
	ret = BIO_read(b->next_bio, out, outl);
136
20
	if (b->init) {
137
20
		if (ret > 0) {
138
10
			if (EVP_DigestUpdate(ctx, (unsigned char *)out,
139
			    (unsigned int)ret) <= 0)
140
				return (-1);
141
		}
142
	}
143
20
	BIO_clear_retry_flags(b);
144
20
	BIO_copy_next_retry(b);
145
20
	return (ret);
146
}
147
148
static int
149
md_write(BIO *b, const char *in, int inl)
150
2
{
151
2
	int ret = 0;
152
	EVP_MD_CTX *ctx;
153
154
2
	if ((in == NULL) || (inl <= 0))
155
		return (0);
156
2
	ctx = b->ptr;
157
158

2
	if ((ctx != NULL) && (b->next_bio != NULL))
159
2
		ret = BIO_write(b->next_bio, in, inl);
160
2
	if (b->init) {
161
2
		if (ret > 0) {
162
2
			if (!EVP_DigestUpdate(ctx, (const unsigned char *)in,
163
			    (unsigned int)ret)) {
164
				BIO_clear_retry_flags(b);
165
				return 0;
166
			}
167
		}
168
	}
169
2
	if (b->next_bio != NULL) {
170
2
		BIO_clear_retry_flags(b);
171
2
		BIO_copy_next_retry(b);
172
	}
173
2
	return (ret);
174
}
175
176
static long
177
md_ctrl(BIO *b, int cmd, long num, void *ptr)
178
36
{
179
	EVP_MD_CTX *ctx, *dctx, **pctx;
180
	const EVP_MD **ppmd;
181
	EVP_MD *md;
182
36
	long ret = 1;
183
	BIO *dbio;
184
185
36
	ctx = b->ptr;
186
187


36
	switch (cmd) {
188
	case BIO_CTRL_RESET:
189
		if (b->init)
190
			ret = EVP_DigestInit_ex(ctx, ctx->digest, NULL);
191
		else
192
			ret = 0;
193
		if (ret > 0)
194
			ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
195
		break;
196
	case BIO_C_GET_MD:
197
		if (b->init) {
198
			ppmd = ptr;
199
			*ppmd = ctx->digest;
200
		} else
201
			ret = 0;
202
		break;
203
	case BIO_C_GET_MD_CTX:
204
4
		pctx = ptr;
205
4
		*pctx = ctx;
206
4
		b->init = 1;
207
4
		break;
208
	case BIO_C_SET_MD_CTX:
209
		if (b->init)
210
			b->ptr = ptr;
211
		else
212
			ret = 0;
213
		break;
214
	case BIO_C_DO_STATE_MACHINE:
215
		BIO_clear_retry_flags(b);
216
		ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
217
		BIO_copy_next_retry(b);
218
		break;
219
220
	case BIO_C_SET_MD:
221
12
		md = ptr;
222
12
		ret = EVP_DigestInit_ex(ctx, md, NULL);
223
12
		if (ret > 0)
224
12
			b->init = 1;
225
		break;
226
	case BIO_CTRL_DUP:
227
		dbio = ptr;
228
		dctx = dbio->ptr;
229
		if (!EVP_MD_CTX_copy_ex(dctx, ctx))
230
			return 0;
231
		b->init = 1;
232
		break;
233
	default:
234
20
		ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
235
		break;
236
	}
237
36
	return (ret);
238
}
239
240
static long
241
md_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
242
{
243
	long ret = 1;
244
245
	if (b->next_bio == NULL)
246
		return (0);
247
	switch (cmd) {
248
	default:
249
		ret = BIO_callback_ctrl(b->next_bio, cmd, fp);
250
		break;
251
	}
252
	return (ret);
253
}
254
255
static int
256
md_gets(BIO *bp, char *buf, int size)
257
8
{
258
	EVP_MD_CTX *ctx;
259
	unsigned int ret;
260
261
8
	ctx = bp->ptr;
262
8
	if (size < ctx->digest->md_size)
263
		return (0);
264
8
	if (EVP_DigestFinal_ex(ctx, (unsigned char *)buf, &ret) <= 0)
265
		return -1;
266
267
8
	return ((int)ret);
268
}
269
270
/*
271
static int md_puts(bp,str)
272
BIO *bp;
273
char *str;
274
	{
275
	return(-1);
276
	}
277
*/