Coverage Report

Created: 2022-08-24 06:31

/src/libressl/crypto/evp/p5_crpt2.c
Line
Count
Source (jump to first uncovered line)
1
/* $OpenBSD: p5_crpt2.c,v 1.24 2021/12/12 21:27:37 tb Exp $ */
2
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3
 * project 1999.
4
 */
5
/* ====================================================================
6
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
7
 *
8
 * Redistribution and use in source and binary forms, with or without
9
 * modification, are permitted provided that the following conditions
10
 * are met:
11
 *
12
 * 1. Redistributions of source code must retain the above copyright
13
 *    notice, this list of conditions and the following disclaimer.
14
 *
15
 * 2. Redistributions in binary form must reproduce the above copyright
16
 *    notice, this list of conditions and the following disclaimer in
17
 *    the documentation and/or other materials provided with the
18
 *    distribution.
19
 *
20
 * 3. All advertising materials mentioning features or use of this
21
 *    software must display the following acknowledgment:
22
 *    "This product includes software developed by the OpenSSL Project
23
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24
 *
25
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26
 *    endorse or promote products derived from this software without
27
 *    prior written permission. For written permission, please contact
28
 *    licensing@OpenSSL.org.
29
 *
30
 * 5. Products derived from this software may not be called "OpenSSL"
31
 *    nor may "OpenSSL" appear in their names without prior written
32
 *    permission of the OpenSSL Project.
33
 *
34
 * 6. Redistributions of any form whatsoever must retain the following
35
 *    acknowledgment:
36
 *    "This product includes software developed by the OpenSSL Project
37
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38
 *
39
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50
 * OF THE POSSIBILITY OF SUCH DAMAGE.
51
 * ====================================================================
52
 *
53
 * This product includes cryptographic software written by Eric Young
54
 * (eay@cryptsoft.com).  This product includes software written by Tim
55
 * Hudson (tjh@cryptsoft.com).
56
 *
57
 */
58
59
#include <stdio.h>
60
#include <stdlib.h>
61
#include <string.h>
62
63
#include <openssl/opensslconf.h>
64
65
#if !defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA)
66
67
#include <openssl/err.h>
68
#include <openssl/evp.h>
69
#include <openssl/hmac.h>
70
#include <openssl/x509.h>
71
72
#include "evp_locl.h"
73
#include "hmac_local.h"
74
75
/* This is an implementation of PKCS#5 v2.0 password based encryption key
76
 * derivation function PBKDF2.
77
 * SHA1 version verified against test vectors posted by Peter Gutmann
78
 * <pgut001@cs.auckland.ac.nz> to the PKCS-TNG <pkcs-tng@rsa.com> mailing list.
79
 */
80
81
int
82
PKCS5_PBKDF2_HMAC(const char *pass, int passlen, const unsigned char *salt,
83
    int saltlen, int iter, const EVP_MD *digest, int keylen, unsigned char *out)
84
0
{
85
0
  unsigned char digtmp[EVP_MAX_MD_SIZE], *p, itmp[4];
86
0
  int cplen, j, k, tkeylen, mdlen;
87
0
  unsigned long i = 1;
88
0
  HMAC_CTX hctx_tpl, hctx;
89
90
0
  mdlen = EVP_MD_size(digest);
91
0
  if (mdlen < 0)
92
0
    return 0;
93
94
0
  HMAC_CTX_init(&hctx_tpl);
95
0
  p = out;
96
0
  tkeylen = keylen;
97
0
  if (!pass)
98
0
    passlen = 0;
99
0
  else if (passlen == -1)
100
0
    passlen = strlen(pass);
101
0
  if (!HMAC_Init_ex(&hctx_tpl, pass, passlen, digest, NULL)) {
102
0
    HMAC_CTX_cleanup(&hctx_tpl);
103
0
    return 0;
104
0
  }
105
0
  while (tkeylen) {
106
0
    if (tkeylen > mdlen)
107
0
      cplen = mdlen;
108
0
    else
109
0
      cplen = tkeylen;
110
    /* We are unlikely to ever use more than 256 blocks (5120 bits!)
111
     * but just in case...
112
     */
113
0
    itmp[0] = (unsigned char)((i >> 24) & 0xff);
114
0
    itmp[1] = (unsigned char)((i >> 16) & 0xff);
115
0
    itmp[2] = (unsigned char)((i >> 8) & 0xff);
116
0
    itmp[3] = (unsigned char)(i & 0xff);
117
0
    if (!HMAC_CTX_copy(&hctx, &hctx_tpl)) {
118
0
      HMAC_CTX_cleanup(&hctx_tpl);
119
0
      return 0;
120
0
    }
121
0
    if (!HMAC_Update(&hctx, salt, saltlen) ||
122
0
        !HMAC_Update(&hctx, itmp, 4) ||
123
0
        !HMAC_Final(&hctx, digtmp, NULL)) {
124
0
      HMAC_CTX_cleanup(&hctx_tpl);
125
0
      HMAC_CTX_cleanup(&hctx);
126
0
      return 0;
127
0
    }
128
0
    HMAC_CTX_cleanup(&hctx);
129
0
    memcpy(p, digtmp, cplen);
130
0
    for (j = 1; j < iter; j++) {
131
0
      if (!HMAC_CTX_copy(&hctx, &hctx_tpl)) {
132
0
        HMAC_CTX_cleanup(&hctx_tpl);
133
0
        return 0;
134
0
      }
135
0
      if (!HMAC_Update(&hctx, digtmp, mdlen) ||
136
0
          !HMAC_Final(&hctx, digtmp, NULL)) {
137
0
        HMAC_CTX_cleanup(&hctx_tpl);
138
0
        HMAC_CTX_cleanup(&hctx);
139
0
        return 0;
140
0
      }
141
0
      HMAC_CTX_cleanup(&hctx);
142
0
      for (k = 0; k < cplen; k++)
143
0
        p[k] ^= digtmp[k];
144
0
    }
145
0
    tkeylen -= cplen;
146
0
    i++;
147
0
    p += cplen;
148
0
  }
149
0
  HMAC_CTX_cleanup(&hctx_tpl);
150
0
  return 1;
151
0
}
152
153
int
154
PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, const unsigned char *salt,
155
    int saltlen, int iter, int keylen, unsigned char *out)
156
0
{
157
0
  return PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter,
158
0
      EVP_sha1(), keylen, out);
159
0
}
160
161
/* Now the key derivation function itself. This is a bit evil because
162
 * it has to check the ASN1 parameters are valid: and there are quite a
163
 * few of them...
164
 */
165
166
int
167
PKCS5_v2_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
168
    ASN1_TYPE *param, const EVP_CIPHER *c, const EVP_MD *md, int en_de)
169
0
{
170
0
  const unsigned char *pbuf;
171
0
  int plen;
172
0
  PBE2PARAM *pbe2 = NULL;
173
0
  const EVP_CIPHER *cipher;
174
175
0
  int rv = 0;
176
177
0
  if (param == NULL || param->type != V_ASN1_SEQUENCE ||
178
0
      param->value.sequence == NULL) {
179
0
    EVPerror(EVP_R_DECODE_ERROR);
180
0
    goto err;
181
0
  }
182
183
0
  pbuf = param->value.sequence->data;
184
0
  plen = param->value.sequence->length;
185
0
  if (!(pbe2 = d2i_PBE2PARAM(NULL, &pbuf, plen))) {
186
0
    EVPerror(EVP_R_DECODE_ERROR);
187
0
    goto err;
188
0
  }
189
190
  /* See if we recognise the key derivation function */
191
192
0
  if (OBJ_obj2nid(pbe2->keyfunc->algorithm) != NID_id_pbkdf2) {
193
0
    EVPerror(EVP_R_UNSUPPORTED_KEY_DERIVATION_FUNCTION);
194
0
    goto err;
195
0
  }
196
197
  /* lets see if we recognise the encryption algorithm.
198
   */
199
200
0
  cipher = EVP_get_cipherbyobj(pbe2->encryption->algorithm);
201
202
0
  if (!cipher) {
203
0
    EVPerror(EVP_R_UNSUPPORTED_CIPHER);
204
0
    goto err;
205
0
  }
206
207
  /* Fixup cipher based on AlgorithmIdentifier */
208
0
  if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de))
209
0
    goto err;
210
0
  if (EVP_CIPHER_asn1_to_param(ctx, pbe2->encryption->parameter) < 0) {
211
0
    EVPerror(EVP_R_CIPHER_PARAMETER_ERROR);
212
0
    goto err;
213
0
  }
214
0
  rv = PKCS5_v2_PBKDF2_keyivgen(ctx, pass, passlen,
215
0
      pbe2->keyfunc->parameter, c, md, en_de);
216
217
0
err:
218
0
  PBE2PARAM_free(pbe2);
219
0
  return rv;
220
0
}
221
222
int
223
PKCS5_v2_PBKDF2_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
224
    ASN1_TYPE *param, const EVP_CIPHER *c, const EVP_MD *md, int en_de)
225
0
{
226
0
  unsigned char *salt, key[EVP_MAX_KEY_LENGTH];
227
0
  const unsigned char *pbuf;
228
0
  int saltlen, iter, plen;
229
0
  int rv = 0;
230
0
  unsigned int keylen = 0;
231
0
  int prf_nid, hmac_md_nid;
232
0
  PBKDF2PARAM *kdf = NULL;
233
0
  const EVP_MD *prfmd;
234
235
0
  if (EVP_CIPHER_CTX_cipher(ctx) == NULL) {
236
0
    EVPerror(EVP_R_NO_CIPHER_SET);
237
0
    return 0;
238
0
  }
239
0
  keylen = EVP_CIPHER_CTX_key_length(ctx);
240
0
  if (keylen > sizeof key) {
241
0
    EVPerror(EVP_R_BAD_KEY_LENGTH);
242
0
    return 0;
243
0
  }
244
245
  /* Decode parameter */
246
247
0
  if (!param || (param->type != V_ASN1_SEQUENCE)) {
248
0
    EVPerror(EVP_R_DECODE_ERROR);
249
0
    return 0;
250
0
  }
251
252
0
  pbuf = param->value.sequence->data;
253
0
  plen = param->value.sequence->length;
254
255
0
  if (!(kdf = d2i_PBKDF2PARAM(NULL, &pbuf, plen)) ) {
256
0
    EVPerror(EVP_R_DECODE_ERROR);
257
0
    return 0;
258
0
  }
259
260
  /* Now check the parameters of the kdf */
261
262
0
  if (kdf->keylength &&
263
0
      (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)){
264
0
    EVPerror(EVP_R_UNSUPPORTED_KEYLENGTH);
265
0
    goto err;
266
0
  }
267
268
0
  if (kdf->prf)
269
0
    prf_nid = OBJ_obj2nid(kdf->prf->algorithm);
270
0
  else
271
0
    prf_nid = NID_hmacWithSHA1;
272
273
0
  if (!EVP_PBE_find(EVP_PBE_TYPE_PRF, prf_nid, NULL, &hmac_md_nid, 0)) {
274
0
    EVPerror(EVP_R_UNSUPPORTED_PRF);
275
0
    goto err;
276
0
  }
277
278
0
  prfmd = EVP_get_digestbynid(hmac_md_nid);
279
0
  if (prfmd == NULL) {
280
0
    EVPerror(EVP_R_UNSUPPORTED_PRF);
281
0
    goto err;
282
0
  }
283
284
0
  if (kdf->salt->type != V_ASN1_OCTET_STRING) {
285
0
    EVPerror(EVP_R_UNSUPPORTED_SALT_TYPE);
286
0
    goto err;
287
0
  }
288
289
  /* it seems that its all OK */
290
0
  salt = kdf->salt->value.octet_string->data;
291
0
  saltlen = kdf->salt->value.octet_string->length;
292
0
  if ((iter = ASN1_INTEGER_get(kdf->iter)) <= 0) {
293
0
    EVPerror(EVP_R_UNSUPORTED_NUMBER_OF_ROUNDS);
294
0
    goto err;
295
0
  }
296
0
  if (!PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, prfmd,
297
0
      keylen, key))
298
0
    goto err;
299
0
  rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);
300
301
0
err:
302
0
  explicit_bzero(key, keylen);
303
0
  PBKDF2PARAM_free(kdf);
304
0
  return rv;
305
0
}
306
307
#endif