/src/openssl32/providers/implementations/kdfs/argon2.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2022-2023 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 | | * RFC 9106 Argon2 (see https://www.rfc-editor.org/rfc/rfc9106.txt) |
10 | | * |
11 | | */ |
12 | | |
13 | | #include <stdlib.h> |
14 | | #include <stddef.h> |
15 | | #include <stdarg.h> |
16 | | #include <string.h> |
17 | | #include <openssl/e_os2.h> |
18 | | #include <openssl/evp.h> |
19 | | #include <openssl/objects.h> |
20 | | #include <openssl/crypto.h> |
21 | | #include <openssl/kdf.h> |
22 | | #include <openssl/err.h> |
23 | | #include <openssl/core_names.h> |
24 | | #include <openssl/params.h> |
25 | | #include <openssl/thread.h> |
26 | | #include <openssl/proverr.h> |
27 | | #include "internal/thread.h" |
28 | | #include "internal/numbers.h" |
29 | | #include "internal/endian.h" |
30 | | #include "crypto/evp.h" |
31 | | #include "prov/implementations.h" |
32 | | #include "prov/provider_ctx.h" |
33 | | #include "prov/providercommon.h" |
34 | | #include "prov/blake2.h" |
35 | | |
36 | | #if defined(OPENSSL_NO_DEFAULT_THREAD_POOL) && defined(OPENSSL_NO_THREAD_POOL) |
37 | | # define ARGON2_NO_THREADS |
38 | | #endif |
39 | | |
40 | | #if !defined(OPENSSL_THREADS) |
41 | | # define ARGON2_NO_THREADS |
42 | | #endif |
43 | | |
44 | | #ifndef OPENSSL_NO_ARGON2 |
45 | | |
46 | 150 | # define ARGON2_MIN_LANES 1u |
47 | 140 | # define ARGON2_MAX_LANES 0xFFFFFFu |
48 | 162 | # define ARGON2_MIN_THREADS 1u |
49 | 140 | # define ARGON2_MAX_THREADS 0xFFFFFFu |
50 | 3.55k | # define ARGON2_SYNC_POINTS 4u |
51 | 314 | # define ARGON2_MIN_OUT_LENGTH 4u |
52 | | # define ARGON2_MAX_OUT_LENGTH 0xFFFFFFFFu |
53 | 364 | # define ARGON2_MIN_MEMORY (2 * ARGON2_SYNC_POINTS) |
54 | | # define ARGON2_MIN(a, b) ((a) < (b) ? (a) : (b)) |
55 | | # define ARGON2_MAX_MEMORY 0xFFFFFFFFu |
56 | 151 | # define ARGON2_MIN_TIME 1u |
57 | | # define ARGON2_MAX_TIME 0xFFFFFFFFu |
58 | | # define ARGON2_MIN_PWD_LENGTH 0u |
59 | 224 | # define ARGON2_MAX_PWD_LENGTH 0xFFFFFFFFu |
60 | | # define ARGON2_MIN_AD_LENGTH 0u |
61 | 185 | # define ARGON2_MAX_AD_LENGTH 0xFFFFFFFFu |
62 | 263 | # define ARGON2_MIN_SALT_LENGTH 8u |
63 | 185 | # define ARGON2_MAX_SALT_LENGTH 0xFFFFFFFFu |
64 | | # define ARGON2_MIN_SECRET 0u |
65 | 185 | # define ARGON2_MAX_SECRET 0xFFFFFFFFu |
66 | 2.35M | # define ARGON2_BLOCK_SIZE 1024 |
67 | 2.35M | # define ARGON2_QWORDS_IN_BLOCK ((ARGON2_BLOCK_SIZE) / 8) |
68 | | # define ARGON2_OWORDS_IN_BLOCK ((ARGON2_BLOCK_SIZE) / 16) |
69 | | # define ARGON2_HWORDS_IN_BLOCK ((ARGON2_BLOCK_SIZE) / 32) |
70 | | # define ARGON2_512BIT_WORDS_IN_BLOCK ((ARGON2_BLOCK_SIZE) / 64) |
71 | 5.01k | # define ARGON2_ADDRESSES_IN_BLOCK 128 |
72 | 2.63k | # define ARGON2_PREHASH_DIGEST_LENGTH 64 |
73 | | # define ARGON2_PREHASH_SEED_LENGTH \ |
74 | 1.05k | (ARGON2_PREHASH_DIGEST_LENGTH + (2 * sizeof(uint32_t))) |
75 | | |
76 | 224 | # define ARGON2_DEFAULT_OUTLEN 64u |
77 | 224 | # define ARGON2_DEFAULT_T_COST 3u |
78 | 224 | # define ARGON2_DEFAULT_M_COST ARGON2_MIN_MEMORY |
79 | 224 | # define ARGON2_DEFAULT_LANES 1u |
80 | 224 | # define ARGON2_DEFAULT_THREADS 1u |
81 | 224 | # define ARGON2_DEFAULT_VERSION ARGON2_VERSION_NUMBER |
82 | | |
83 | | # undef G |
84 | | # define G(a, b, c, d) \ |
85 | 1.07M | do { \ |
86 | 1.07M | a = a + b + 2 * mul_lower(a, b); \ |
87 | 1.07M | d = rotr64(d ^ a, 32); \ |
88 | 1.07M | c = c + d + 2 * mul_lower(c, d); \ |
89 | 1.07M | b = rotr64(b ^ c, 24); \ |
90 | 1.07M | a = a + b + 2 * mul_lower(a, b); \ |
91 | 1.07M | d = rotr64(d ^ a, 16); \ |
92 | 1.07M | c = c + d + 2 * mul_lower(c, d); \ |
93 | 1.07M | b = rotr64(b ^ c, 63); \ |
94 | 1.07M | } while ((void)0, 0) |
95 | | |
96 | | # undef PERMUTATION_P |
97 | | # define PERMUTATION_P(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, \ |
98 | | v12, v13, v14, v15) \ |
99 | 134k | do { \ |
100 | 134k | G(v0, v4, v8, v12); \ |
101 | 134k | G(v1, v5, v9, v13); \ |
102 | 134k | G(v2, v6, v10, v14); \ |
103 | 134k | G(v3, v7, v11, v15); \ |
104 | 134k | G(v0, v5, v10, v15); \ |
105 | 134k | G(v1, v6, v11, v12); \ |
106 | 134k | G(v2, v7, v8, v13); \ |
107 | 134k | G(v3, v4, v9, v14); \ |
108 | 134k | } while ((void)0, 0) |
109 | | |
110 | | # undef PERMUTATION_P_COLUMN |
111 | | # define PERMUTATION_P_COLUMN(x, i) \ |
112 | 67.1k | do { \ |
113 | 67.1k | uint64_t *base = &x[16 * i]; \ |
114 | 67.1k | PERMUTATION_P( \ |
115 | 67.1k | *base, *(base + 1), *(base + 2), *(base + 3), \ |
116 | 67.1k | *(base + 4), *(base + 5), *(base + 6), *(base + 7), \ |
117 | 67.1k | *(base + 8), *(base + 9), *(base + 10), *(base + 11), \ |
118 | 67.1k | *(base + 12), *(base + 13), *(base + 14), *(base + 15) \ |
119 | 67.1k | ); \ |
120 | 67.1k | } while ((void)0, 0) |
121 | | |
122 | | # undef PERMUTATION_P_ROW |
123 | | # define PERMUTATION_P_ROW(x, i) \ |
124 | 67.1k | do { \ |
125 | 67.1k | uint64_t *base = &x[2 * i]; \ |
126 | 67.1k | PERMUTATION_P( \ |
127 | 67.1k | *base, *(base + 1), *(base + 16), *(base + 17), \ |
128 | 67.1k | *(base + 32), *(base + 33), *(base + 48), *(base + 49), \ |
129 | 67.1k | *(base + 64), *(base + 65), *(base + 80), *(base + 81), \ |
130 | 67.1k | *(base + 96), *(base + 97), *(base + 112), *(base + 113) \ |
131 | 67.1k | ); \ |
132 | 67.1k | } while ((void)0, 0) |
133 | | |
134 | | typedef struct { |
135 | | uint64_t v[ARGON2_QWORDS_IN_BLOCK]; |
136 | | } BLOCK; |
137 | | |
138 | | typedef enum { |
139 | | ARGON2_VERSION_10 = 0x10, |
140 | | ARGON2_VERSION_13 = 0x13, |
141 | | ARGON2_VERSION_NUMBER = ARGON2_VERSION_13 |
142 | | } ARGON2_VERSION; |
143 | | |
144 | | typedef enum { |
145 | | ARGON2_D = 0, |
146 | | ARGON2_I = 1, |
147 | | ARGON2_ID = 2 |
148 | | } ARGON2_TYPE; |
149 | | |
150 | | typedef struct { |
151 | | uint32_t pass; |
152 | | uint32_t lane; |
153 | | uint8_t slice; |
154 | | uint32_t index; |
155 | | } ARGON2_POS; |
156 | | |
157 | | typedef struct { |
158 | | void *provctx; |
159 | | uint32_t outlen; |
160 | | uint8_t *pwd; |
161 | | uint32_t pwdlen; |
162 | | uint8_t *salt; |
163 | | uint32_t saltlen; |
164 | | uint8_t *secret; |
165 | | uint32_t secretlen; |
166 | | uint8_t *ad; |
167 | | uint32_t adlen; |
168 | | uint32_t t_cost; |
169 | | uint32_t m_cost; |
170 | | uint32_t lanes; |
171 | | uint32_t threads; |
172 | | uint32_t version; |
173 | | uint32_t early_clean; |
174 | | ARGON2_TYPE type; |
175 | | BLOCK *memory; |
176 | | uint32_t passes; |
177 | | uint32_t memory_blocks; |
178 | | uint32_t segment_length; |
179 | | uint32_t lane_length; |
180 | | OSSL_LIB_CTX *libctx; |
181 | | EVP_MD *md; |
182 | | EVP_MAC *mac; |
183 | | char *propq; |
184 | | } KDF_ARGON2; |
185 | | |
186 | | typedef struct { |
187 | | ARGON2_POS pos; |
188 | | KDF_ARGON2 *ctx; |
189 | | } ARGON2_THREAD_DATA; |
190 | | |
191 | | static OSSL_FUNC_kdf_newctx_fn kdf_argon2i_new; |
192 | | static OSSL_FUNC_kdf_newctx_fn kdf_argon2d_new; |
193 | | static OSSL_FUNC_kdf_newctx_fn kdf_argon2id_new; |
194 | | static OSSL_FUNC_kdf_freectx_fn kdf_argon2_free; |
195 | | static OSSL_FUNC_kdf_reset_fn kdf_argon2_reset; |
196 | | static OSSL_FUNC_kdf_derive_fn kdf_argon2_derive; |
197 | | static OSSL_FUNC_kdf_settable_ctx_params_fn kdf_argon2_settable_ctx_params; |
198 | | static OSSL_FUNC_kdf_set_ctx_params_fn kdf_argon2_set_ctx_params; |
199 | | |
200 | | static void kdf_argon2_init(KDF_ARGON2 *ctx, ARGON2_TYPE t); |
201 | | static void *kdf_argon2d_new(void *provctx); |
202 | | static void *kdf_argon2i_new(void *provctx); |
203 | | static void *kdf_argon2id_new(void *provctx); |
204 | | static void kdf_argon2_free(void *vctx); |
205 | | static int kdf_argon2_derive(void *vctx, unsigned char *out, size_t outlen, |
206 | | const OSSL_PARAM params[]); |
207 | | static void kdf_argon2_reset(void *vctx); |
208 | | static int kdf_argon2_ctx_set_threads(KDF_ARGON2 *ctx, uint32_t threads); |
209 | | static int kdf_argon2_ctx_set_lanes(KDF_ARGON2 *ctx, uint32_t lanes); |
210 | | static int kdf_argon2_ctx_set_t_cost(KDF_ARGON2 *ctx, uint32_t t_cost); |
211 | | static int kdf_argon2_ctx_set_m_cost(KDF_ARGON2 *ctx, uint32_t m_cost); |
212 | | static int kdf_argon2_ctx_set_out_length(KDF_ARGON2 *ctx, uint32_t outlen); |
213 | | static int kdf_argon2_ctx_set_secret(KDF_ARGON2 *ctx, const OSSL_PARAM *p); |
214 | | static int kdf_argon2_ctx_set_pwd(KDF_ARGON2 *ctx, const OSSL_PARAM *p); |
215 | | static int kdf_argon2_ctx_set_salt(KDF_ARGON2 *ctx, const OSSL_PARAM *p); |
216 | | static int kdf_argon2_ctx_set_ad(KDF_ARGON2 *ctx, const OSSL_PARAM *p); |
217 | | static int kdf_argon2_set_ctx_params(void *vctx, const OSSL_PARAM params[]); |
218 | | static int kdf_argon2_get_ctx_params(void *vctx, OSSL_PARAM params[]); |
219 | | static int kdf_argon2_ctx_set_version(KDF_ARGON2 *ctx, uint32_t version); |
220 | | static const OSSL_PARAM *kdf_argon2_settable_ctx_params(ossl_unused void *ctx, |
221 | | ossl_unused void *p_ctx); |
222 | | static const OSSL_PARAM *kdf_argon2_gettable_ctx_params(ossl_unused void *ctx, |
223 | | ossl_unused void *p_ctx); |
224 | | |
225 | | static ossl_inline uint64_t load64(const uint8_t *src); |
226 | | static ossl_inline void store32(uint8_t *dst, uint32_t w); |
227 | | static ossl_inline void store64(uint8_t *dst, uint64_t w); |
228 | | static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c); |
229 | | static ossl_inline uint64_t mul_lower(uint64_t x, uint64_t y); |
230 | | |
231 | | static void init_block_value(BLOCK *b, uint8_t in); |
232 | | static void copy_block(BLOCK *dst, const BLOCK *src); |
233 | | static void xor_block(BLOCK *dst, const BLOCK *src); |
234 | | static void load_block(BLOCK *dst, const void *input); |
235 | | static void store_block(void *output, const BLOCK *src); |
236 | | static void fill_first_blocks(uint8_t *blockhash, const KDF_ARGON2 *ctx); |
237 | | static void fill_block(const BLOCK *prev, const BLOCK *ref, BLOCK *next, |
238 | | int with_xor); |
239 | | |
240 | | static void next_addresses(BLOCK *address_block, BLOCK *input_block, |
241 | | const BLOCK *zero_block); |
242 | | static int data_indep_addressing(const KDF_ARGON2 *ctx, uint32_t pass, |
243 | | uint8_t slice); |
244 | | static uint32_t index_alpha(const KDF_ARGON2 *ctx, uint32_t pass, |
245 | | uint8_t slice, uint32_t index, |
246 | | uint32_t pseudo_rand, int same_lane); |
247 | | |
248 | | static void fill_segment(const KDF_ARGON2 *ctx, uint32_t pass, uint32_t lane, |
249 | | uint8_t slice); |
250 | | |
251 | | # if !defined(ARGON2_NO_THREADS) |
252 | | static uint32_t fill_segment_thr(void *thread_data); |
253 | | static int fill_mem_blocks_mt(KDF_ARGON2 *ctx); |
254 | | # endif |
255 | | |
256 | | static int fill_mem_blocks_st(KDF_ARGON2 *ctx); |
257 | | static ossl_inline int fill_memory_blocks(KDF_ARGON2 *ctx); |
258 | | |
259 | | static void initial_hash(uint8_t *blockhash, KDF_ARGON2 *ctx); |
260 | | static int initialize(KDF_ARGON2 *ctx); |
261 | | static void finalize(const KDF_ARGON2 *ctx, void *out); |
262 | | |
263 | | static int blake2b(EVP_MD *md, EVP_MAC *mac, void *out, size_t outlen, |
264 | | const void *in, size_t inlen, const void *key, |
265 | | size_t keylen); |
266 | | static int blake2b_long(EVP_MD *md, EVP_MAC *mac, unsigned char *out, |
267 | | size_t outlen, const void *in, size_t inlen); |
268 | | |
269 | | static ossl_inline uint64_t load64(const uint8_t *src) |
270 | 111k | { |
271 | 111k | return |
272 | 111k | (((uint64_t)src[0]) << 0) |
273 | 111k | | (((uint64_t)src[1]) << 8) |
274 | 111k | | (((uint64_t)src[2]) << 16) |
275 | 111k | | (((uint64_t)src[3]) << 24) |
276 | 111k | | (((uint64_t)src[4]) << 32) |
277 | 111k | | (((uint64_t)src[5]) << 40) |
278 | 111k | | (((uint64_t)src[6]) << 48) |
279 | 111k | | (((uint64_t)src[7]) << 56); |
280 | 111k | } |
281 | | |
282 | | static ossl_inline void store32(uint8_t *dst, uint32_t w) |
283 | 3.18k | { |
284 | 3.18k | dst[0] = (uint8_t)(w >> 0); |
285 | 3.18k | dst[1] = (uint8_t)(w >> 8); |
286 | 3.18k | dst[2] = (uint8_t)(w >> 16); |
287 | 3.18k | dst[3] = (uint8_t)(w >> 24); |
288 | 3.18k | } |
289 | | |
290 | | static ossl_inline void store64(uint8_t *dst, uint64_t w) |
291 | 11.7k | { |
292 | 11.7k | dst[0] = (uint8_t)(w >> 0); |
293 | 11.7k | dst[1] = (uint8_t)(w >> 8); |
294 | 11.7k | dst[2] = (uint8_t)(w >> 16); |
295 | 11.7k | dst[3] = (uint8_t)(w >> 24); |
296 | 11.7k | dst[4] = (uint8_t)(w >> 32); |
297 | 11.7k | dst[5] = (uint8_t)(w >> 40); |
298 | 11.7k | dst[6] = (uint8_t)(w >> 48); |
299 | 11.7k | dst[7] = (uint8_t)(w >> 56); |
300 | 11.7k | } |
301 | | |
302 | | static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) |
303 | 4.29M | { |
304 | 4.29M | return (w >> c) | (w << (64 - c)); |
305 | 4.29M | } |
306 | | |
307 | | static ossl_inline uint64_t mul_lower(uint64_t x, uint64_t y) |
308 | 4.29M | { |
309 | 4.29M | const uint64_t m = 0xFFFFFFFFUL; |
310 | 4.29M | return (x & m) * (y & m); |
311 | 4.29M | } |
312 | | |
313 | | static void init_block_value(BLOCK *b, uint8_t in) |
314 | 1.42k | { |
315 | 1.42k | memset(b->v, in, sizeof(b->v)); |
316 | 1.42k | } |
317 | | |
318 | | static void copy_block(BLOCK *dst, const BLOCK *src) |
319 | 25.2k | { |
320 | 25.2k | memcpy(dst->v, src->v, sizeof(uint64_t) * ARGON2_QWORDS_IN_BLOCK); |
321 | 25.2k | } |
322 | | |
323 | | static void xor_block(BLOCK *dst, const BLOCK *src) |
324 | 17.1k | { |
325 | 17.1k | int i; |
326 | | |
327 | 2.20M | for (i = 0; i < ARGON2_QWORDS_IN_BLOCK; ++i) |
328 | 2.19M | dst->v[i] ^= src->v[i]; |
329 | 17.1k | } |
330 | | |
331 | | static void load_block(BLOCK *dst, const void *input) |
332 | 870 | { |
333 | 870 | unsigned i; |
334 | | |
335 | 112k | for (i = 0; i < ARGON2_QWORDS_IN_BLOCK; ++i) |
336 | 111k | dst->v[i] = load64((const uint8_t *)input + i * sizeof(dst->v[i])); |
337 | 870 | } |
338 | | |
339 | | static void store_block(void *output, const BLOCK *src) |
340 | 92 | { |
341 | 92 | unsigned i; |
342 | | |
343 | 11.8k | for (i = 0; i < ARGON2_QWORDS_IN_BLOCK; ++i) |
344 | 11.7k | store64((uint8_t *)output + i * sizeof(src->v[i]), src->v[i]); |
345 | 92 | } |
346 | | |
347 | | static void fill_first_blocks(uint8_t *blockhash, const KDF_ARGON2 *ctx) |
348 | 92 | { |
349 | 92 | uint32_t l; |
350 | 92 | uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; |
351 | | |
352 | | /* |
353 | | * Make the first and second block in each lane as G(H0||0||i) |
354 | | * or G(H0||1||i). |
355 | | */ |
356 | 527 | for (l = 0; l < ctx->lanes; ++l) { |
357 | 435 | store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 0); |
358 | 435 | store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH + 4, l); |
359 | 435 | blake2b_long(ctx->md, ctx->mac, blockhash_bytes, ARGON2_BLOCK_SIZE, |
360 | 435 | blockhash, ARGON2_PREHASH_SEED_LENGTH); |
361 | 435 | load_block(&ctx->memory[l * ctx->lane_length + 0], |
362 | 435 | blockhash_bytes); |
363 | 435 | store32(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 1); |
364 | 435 | blake2b_long(ctx->md, ctx->mac, blockhash_bytes, ARGON2_BLOCK_SIZE, |
365 | 435 | blockhash, ARGON2_PREHASH_SEED_LENGTH); |
366 | 435 | load_block(&ctx->memory[l * ctx->lane_length + 1], |
367 | 435 | blockhash_bytes); |
368 | 435 | } |
369 | 92 | OPENSSL_cleanse(blockhash_bytes, ARGON2_BLOCK_SIZE); |
370 | 92 | } |
371 | | |
372 | | static void fill_block(const BLOCK *prev, const BLOCK *ref, |
373 | | BLOCK *next, int with_xor) |
374 | 8.39k | { |
375 | 8.39k | BLOCK blockR, tmp; |
376 | 8.39k | unsigned i; |
377 | | |
378 | 8.39k | copy_block(&blockR, ref); |
379 | 8.39k | xor_block(&blockR, prev); |
380 | 8.39k | copy_block(&tmp, &blockR); |
381 | | |
382 | 8.39k | if (with_xor) |
383 | 0 | xor_block(&tmp, next); |
384 | | |
385 | 75.5k | for (i = 0; i < 8; ++i) |
386 | 67.1k | PERMUTATION_P_COLUMN(blockR.v, i); |
387 | | |
388 | 75.5k | for (i = 0; i < 8; ++i) |
389 | 67.1k | PERMUTATION_P_ROW(blockR.v, i); |
390 | | |
391 | 8.39k | copy_block(next, &tmp); |
392 | 8.39k | xor_block(next, &blockR); |
393 | 8.39k | } |
394 | | |
395 | | static void next_addresses(BLOCK *address_block, BLOCK *input_block, |
396 | | const BLOCK *zero_block) |
397 | 710 | { |
398 | 710 | input_block->v[6]++; |
399 | 710 | fill_block(zero_block, input_block, address_block, 0); |
400 | 710 | fill_block(zero_block, address_block, address_block, 0); |
401 | 710 | } |
402 | | |
403 | | static int data_indep_addressing(const KDF_ARGON2 *ctx, uint32_t pass, |
404 | | uint8_t slice) |
405 | 9.14k | { |
406 | 9.14k | switch (ctx->type) { |
407 | 2.29k | case ARGON2_I: |
408 | 2.29k | return 1; |
409 | 2.36k | case ARGON2_ID: |
410 | 2.36k | return (pass == 0) && (slice < ARGON2_SYNC_POINTS / 2); |
411 | 4.48k | case ARGON2_D: |
412 | 4.48k | default: |
413 | 4.48k | return 0; |
414 | 9.14k | } |
415 | 9.14k | } |
416 | | |
417 | | /* |
418 | | * Pass 0 (pass = 0): |
419 | | * This lane: all already finished segments plus already constructed blocks |
420 | | * in this segment |
421 | | * Other lanes: all already finished segments |
422 | | * |
423 | | * Pass 1+: |
424 | | * This lane: (SYNC_POINTS - 1) last segments plus already constructed |
425 | | * blocks in this segment |
426 | | * Other lanes: (SYNC_POINTS - 1) last segments |
427 | | */ |
428 | | static uint32_t index_alpha(const KDF_ARGON2 *ctx, uint32_t pass, |
429 | | uint8_t slice, uint32_t index, |
430 | | uint32_t pseudo_rand, int same_lane) |
431 | 6.97k | { |
432 | 6.97k | uint32_t ref_area_sz; |
433 | 6.97k | uint64_t rel_pos; |
434 | 6.97k | uint32_t start_pos, abs_pos; |
435 | | |
436 | 6.97k | start_pos = 0; |
437 | 6.97k | switch (pass) { |
438 | 6.97k | case 0: |
439 | 6.97k | if (slice == 0) |
440 | 1.09k | ref_area_sz = index - 1; |
441 | 5.88k | else if (same_lane) |
442 | 2.02k | ref_area_sz = slice * ctx->segment_length + index - 1; |
443 | 3.85k | else |
444 | 3.85k | ref_area_sz = slice * ctx->segment_length + |
445 | 3.85k | ((index == 0) ? (-1) : 0); |
446 | 6.97k | break; |
447 | 0 | default: |
448 | 0 | if (same_lane) |
449 | 0 | ref_area_sz = ctx->lane_length - ctx->segment_length + index - 1; |
450 | 0 | else |
451 | 0 | ref_area_sz = ctx->lane_length - ctx->segment_length + |
452 | 0 | ((index == 0) ? (-1) : 0); |
453 | 0 | if (slice != ARGON2_SYNC_POINTS - 1) |
454 | 0 | start_pos = (slice + 1) * ctx->segment_length; |
455 | 0 | break; |
456 | 6.97k | } |
457 | | |
458 | 6.97k | rel_pos = pseudo_rand; |
459 | 6.97k | rel_pos = rel_pos * rel_pos >> 32; |
460 | 6.97k | rel_pos = ref_area_sz - 1 - (ref_area_sz * rel_pos >> 32); |
461 | 6.97k | abs_pos = (start_pos + rel_pos) % ctx->lane_length; |
462 | | |
463 | 6.97k | return abs_pos; |
464 | 6.97k | } |
465 | | |
466 | | static void fill_segment(const KDF_ARGON2 *ctx, uint32_t pass, uint32_t lane, |
467 | | uint8_t slice) |
468 | 1.74k | { |
469 | 1.74k | BLOCK *ref_block = NULL, *curr_block = NULL; |
470 | 1.74k | BLOCK address_block, input_block, zero_block; |
471 | 1.74k | uint64_t rnd, ref_index, ref_lane; |
472 | 1.74k | uint32_t prev_offset; |
473 | 1.74k | uint32_t start_idx; |
474 | 1.74k | uint32_t j; |
475 | 1.74k | uint32_t curr_offset; /* Offset of the current block */ |
476 | | |
477 | 1.74k | memset(&input_block, 0, sizeof(BLOCK)); |
478 | | |
479 | 1.74k | if (ctx == NULL) |
480 | 0 | return; |
481 | | |
482 | 1.74k | if (data_indep_addressing(ctx, pass, slice)) { |
483 | 710 | init_block_value(&zero_block, 0); |
484 | 710 | init_block_value(&input_block, 0); |
485 | | |
486 | 710 | input_block.v[0] = pass; |
487 | 710 | input_block.v[1] = lane; |
488 | 710 | input_block.v[2] = slice; |
489 | 710 | input_block.v[3] = ctx->memory_blocks; |
490 | 710 | input_block.v[4] = ctx->passes; |
491 | 710 | input_block.v[5] = ctx->type; |
492 | 710 | } |
493 | | |
494 | 1.74k | start_idx = 0; |
495 | | |
496 | | /* We've generated the first two blocks. Generate the 1st block of addrs. */ |
497 | 1.74k | if ((pass == 0) && (slice == 0)) { |
498 | 435 | start_idx = 2; |
499 | 435 | if (data_indep_addressing(ctx, pass, slice)) |
500 | 221 | next_addresses(&address_block, &input_block, &zero_block); |
501 | 435 | } |
502 | | |
503 | 1.74k | curr_offset = lane * ctx->lane_length + slice * ctx->segment_length |
504 | 1.74k | + start_idx; |
505 | | |
506 | 1.74k | if ((curr_offset % ctx->lane_length) == 0) |
507 | 0 | prev_offset = curr_offset + ctx->lane_length - 1; |
508 | 1.74k | else |
509 | 1.74k | prev_offset = curr_offset - 1; |
510 | | |
511 | 8.71k | for (j = start_idx; j < ctx->segment_length; ++j, ++curr_offset, ++prev_offset) { |
512 | 6.97k | if (curr_offset % ctx->lane_length == 1) |
513 | 0 | prev_offset = curr_offset - 1; |
514 | | |
515 | | /* Taking pseudo-random value from the previous block. */ |
516 | 6.97k | if (data_indep_addressing(ctx, pass, slice)) { |
517 | 2.50k | if (j % ARGON2_ADDRESSES_IN_BLOCK == 0) |
518 | 489 | next_addresses(&address_block, &input_block, &zero_block); |
519 | 2.50k | rnd = address_block.v[j % ARGON2_ADDRESSES_IN_BLOCK]; |
520 | 4.46k | } else { |
521 | 4.46k | rnd = ctx->memory[prev_offset].v[0]; |
522 | 4.46k | } |
523 | | |
524 | | /* Computing the lane of the reference block */ |
525 | 6.97k | ref_lane = ((rnd >> 32)) % ctx->lanes; |
526 | | /* Can not reference other lanes yet */ |
527 | 6.97k | if ((pass == 0) && (slice == 0)) |
528 | 1.09k | ref_lane = lane; |
529 | | |
530 | | /* Computing the number of possible reference block within the lane. */ |
531 | 6.97k | ref_index = index_alpha(ctx, pass, slice, j, rnd & 0xFFFFFFFF, |
532 | 6.97k | ref_lane == lane); |
533 | | |
534 | | /* Creating a new block */ |
535 | 6.97k | ref_block = ctx->memory + ctx->lane_length * ref_lane + ref_index; |
536 | 6.97k | curr_block = ctx->memory + curr_offset; |
537 | 6.97k | if (ARGON2_VERSION_10 == ctx->version) { |
538 | | /* Version 1.2.1 and earlier: overwrite, not XOR */ |
539 | 6.38k | fill_block(ctx->memory + prev_offset, ref_block, curr_block, 0); |
540 | 6.38k | continue; |
541 | 6.38k | } |
542 | | |
543 | 590 | fill_block(ctx->memory + prev_offset, ref_block, curr_block, |
544 | 590 | pass == 0 ? 0 : 1); |
545 | 590 | } |
546 | 1.74k | } |
547 | | |
548 | | # if !defined(ARGON2_NO_THREADS) |
549 | | |
550 | | static uint32_t fill_segment_thr(void *thread_data) |
551 | 0 | { |
552 | 0 | ARGON2_THREAD_DATA *my_data; |
553 | |
|
554 | 0 | my_data = (ARGON2_THREAD_DATA *) thread_data; |
555 | 0 | fill_segment(my_data->ctx, my_data->pos.pass, my_data->pos.lane, |
556 | 0 | my_data->pos.slice); |
557 | |
|
558 | 0 | return 0; |
559 | 0 | } |
560 | | |
561 | | static int fill_mem_blocks_mt(KDF_ARGON2 *ctx) |
562 | 0 | { |
563 | 0 | uint32_t r, s, l, ll; |
564 | 0 | void **t; |
565 | 0 | ARGON2_THREAD_DATA *t_data; |
566 | |
|
567 | 0 | t = OPENSSL_zalloc(sizeof(void *)*ctx->lanes); |
568 | 0 | t_data = OPENSSL_zalloc(ctx->lanes * sizeof(ARGON2_THREAD_DATA)); |
569 | |
|
570 | 0 | if (t == NULL || t_data == NULL) |
571 | 0 | goto fail; |
572 | | |
573 | 0 | for (r = 0; r < ctx->passes; ++r) { |
574 | 0 | for (s = 0; s < ARGON2_SYNC_POINTS; ++s) { |
575 | 0 | for (l = 0; l < ctx->lanes; ++l) { |
576 | 0 | ARGON2_POS p; |
577 | 0 | if (l >= ctx->threads) { |
578 | 0 | if (ossl_crypto_thread_join(t[l - ctx->threads], NULL) == 0) |
579 | 0 | goto fail; |
580 | 0 | if (ossl_crypto_thread_clean(t[l - ctx->threads]) == 0) |
581 | 0 | goto fail; |
582 | 0 | t[l] = NULL; |
583 | 0 | } |
584 | | |
585 | 0 | p.pass = r; |
586 | 0 | p.lane = l; |
587 | 0 | p.slice = (uint8_t)s; |
588 | 0 | p.index = 0; |
589 | |
|
590 | 0 | t_data[l].ctx = ctx; |
591 | 0 | memcpy(&(t_data[l].pos), &p, sizeof(ARGON2_POS)); |
592 | 0 | t[l] = ossl_crypto_thread_start(ctx->libctx, &fill_segment_thr, |
593 | 0 | (void *) &t_data[l]); |
594 | 0 | if (t[l] == NULL) { |
595 | 0 | for (ll = 0; ll < l; ++ll) { |
596 | 0 | if (ossl_crypto_thread_join(t[ll], NULL) == 0) |
597 | 0 | goto fail; |
598 | 0 | if (ossl_crypto_thread_clean(t[ll]) == 0) |
599 | 0 | goto fail; |
600 | 0 | t[ll] = NULL; |
601 | 0 | } |
602 | 0 | goto fail; |
603 | 0 | } |
604 | 0 | } |
605 | 0 | for (l = ctx->lanes - ctx->threads; l < ctx->lanes; ++l) { |
606 | 0 | if (ossl_crypto_thread_join(t[l], NULL) == 0) |
607 | 0 | goto fail; |
608 | 0 | if (ossl_crypto_thread_clean(t[l]) == 0) |
609 | 0 | goto fail; |
610 | 0 | t[l] = NULL; |
611 | 0 | } |
612 | 0 | } |
613 | 0 | } |
614 | | |
615 | 0 | OPENSSL_free(t_data); |
616 | 0 | OPENSSL_free(t); |
617 | |
|
618 | 0 | return 1; |
619 | | |
620 | 0 | fail: |
621 | 0 | if (t_data != NULL) |
622 | 0 | OPENSSL_free(t_data); |
623 | 0 | if (t != NULL) |
624 | 0 | OPENSSL_free(t); |
625 | 0 | return 0; |
626 | 0 | } |
627 | | |
628 | | # endif /* !defined(ARGON2_NO_THREADS) */ |
629 | | |
630 | | static int fill_mem_blocks_st(KDF_ARGON2 *ctx) |
631 | 92 | { |
632 | 92 | uint32_t r, s, l; |
633 | | |
634 | 184 | for (r = 0; r < ctx->passes; ++r) |
635 | 460 | for (s = 0; s < ARGON2_SYNC_POINTS; ++s) |
636 | 2.10k | for (l = 0; l < ctx->lanes; ++l) |
637 | 1.74k | fill_segment(ctx, r, l, s); |
638 | 92 | return 1; |
639 | 92 | } |
640 | | |
641 | | static ossl_inline int fill_memory_blocks(KDF_ARGON2 *ctx) |
642 | 92 | { |
643 | 92 | # if !defined(ARGON2_NO_THREADS) |
644 | 92 | return ctx->threads == 1 ? fill_mem_blocks_st(ctx) : fill_mem_blocks_mt(ctx); |
645 | | # else |
646 | | return ctx->threads == 1 ? fill_mem_blocks_st(ctx) : 0; |
647 | | # endif |
648 | 92 | } |
649 | | |
650 | | static void initial_hash(uint8_t *blockhash, KDF_ARGON2 *ctx) |
651 | 92 | { |
652 | 92 | EVP_MD_CTX *mdctx; |
653 | 92 | uint8_t value[sizeof(uint32_t)]; |
654 | 92 | unsigned int tmp; |
655 | 92 | uint32_t args[7]; |
656 | | |
657 | 92 | if (ctx == NULL || blockhash == NULL) |
658 | 0 | return; |
659 | | |
660 | 92 | args[0] = ctx->lanes; |
661 | 92 | args[1] = ctx->outlen; |
662 | 92 | args[2] = ctx->m_cost; |
663 | 92 | args[3] = ctx->t_cost; |
664 | 92 | args[4] = ctx->version; |
665 | 92 | args[5] = (uint32_t) ctx->type; |
666 | 92 | args[6] = ctx->pwdlen; |
667 | | |
668 | 92 | mdctx = EVP_MD_CTX_create(); |
669 | 92 | if (mdctx == NULL || EVP_DigestInit_ex(mdctx, ctx->md, NULL) != 1) |
670 | 0 | goto fail; |
671 | | |
672 | 736 | for (tmp = 0; tmp < sizeof(args) / sizeof(uint32_t); ++tmp) { |
673 | 644 | store32((uint8_t *) &value, args[tmp]); |
674 | 644 | if (EVP_DigestUpdate(mdctx, &value, sizeof(value)) != 1) |
675 | 0 | goto fail; |
676 | 644 | } |
677 | | |
678 | 92 | if (ctx->pwd != NULL) { |
679 | 92 | if (EVP_DigestUpdate(mdctx, ctx->pwd, ctx->pwdlen) != 1) |
680 | 0 | goto fail; |
681 | 92 | if (ctx->early_clean) { |
682 | 56 | OPENSSL_cleanse(ctx->pwd, ctx->pwdlen); |
683 | 56 | ctx->pwdlen = 0; |
684 | 56 | } |
685 | 92 | } |
686 | | |
687 | 92 | store32((uint8_t *) &value, ctx->saltlen); |
688 | | |
689 | 92 | if (EVP_DigestUpdate(mdctx, &value, sizeof(value)) != 1) |
690 | 0 | goto fail; |
691 | | |
692 | 92 | if (ctx->salt != NULL) |
693 | 92 | if (EVP_DigestUpdate(mdctx, ctx->salt, ctx->saltlen) != 1) |
694 | 0 | goto fail; |
695 | | |
696 | 92 | store32((uint8_t *) &value, ctx->secretlen); |
697 | 92 | if (EVP_DigestUpdate(mdctx, &value, sizeof(value)) != 1) |
698 | 0 | goto fail; |
699 | | |
700 | 92 | if (ctx->secret != NULL) { |
701 | 92 | if (EVP_DigestUpdate(mdctx, ctx->secret, ctx->secretlen) != 1) |
702 | 0 | goto fail; |
703 | 92 | if (ctx->early_clean) { |
704 | 56 | OPENSSL_cleanse(ctx->secret, ctx->secretlen); |
705 | 56 | ctx->secretlen = 0; |
706 | 56 | } |
707 | 92 | } |
708 | | |
709 | 92 | store32((uint8_t *) &value, ctx->adlen); |
710 | 92 | if (EVP_DigestUpdate(mdctx, &value, sizeof(value)) != 1) |
711 | 0 | goto fail; |
712 | | |
713 | 92 | if (ctx->ad != NULL) |
714 | 92 | if (EVP_DigestUpdate(mdctx, ctx->ad, ctx->adlen) != 1) |
715 | 0 | goto fail; |
716 | | |
717 | 92 | tmp = ARGON2_PREHASH_DIGEST_LENGTH; |
718 | 92 | if (EVP_DigestFinal_ex(mdctx, blockhash, &tmp) != 1) |
719 | 0 | goto fail; |
720 | | |
721 | 92 | fail: |
722 | 92 | EVP_MD_CTX_destroy(mdctx); |
723 | 92 | } |
724 | | |
725 | | static int initialize(KDF_ARGON2 *ctx) |
726 | 92 | { |
727 | 92 | uint8_t blockhash[ARGON2_PREHASH_SEED_LENGTH]; |
728 | | |
729 | 92 | if (ctx == NULL) |
730 | 0 | return 0; |
731 | | |
732 | 92 | if (ctx->memory_blocks * sizeof(BLOCK) / sizeof(BLOCK) != ctx->memory_blocks) |
733 | 0 | return 0; |
734 | | |
735 | 92 | if (ctx->type != ARGON2_D) |
736 | 55 | ctx->memory = OPENSSL_secure_zalloc(ctx->memory_blocks * |
737 | 92 | sizeof(BLOCK)); |
738 | 37 | else |
739 | 37 | ctx->memory = OPENSSL_zalloc(ctx->memory_blocks * |
740 | 92 | sizeof(BLOCK)); |
741 | | |
742 | 92 | if (ctx->memory == NULL) { |
743 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_MEMORY_SIZE, |
744 | 0 | "cannot allocate required memory"); |
745 | 0 | return 0; |
746 | 0 | } |
747 | | |
748 | 92 | initial_hash(blockhash, ctx); |
749 | 92 | OPENSSL_cleanse(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, |
750 | 92 | ARGON2_PREHASH_SEED_LENGTH - ARGON2_PREHASH_DIGEST_LENGTH); |
751 | 92 | fill_first_blocks(blockhash, ctx); |
752 | 92 | OPENSSL_cleanse(blockhash, ARGON2_PREHASH_SEED_LENGTH); |
753 | | |
754 | 92 | return 1; |
755 | 92 | } |
756 | | |
757 | | static void finalize(const KDF_ARGON2 *ctx, void *out) |
758 | 92 | { |
759 | 92 | BLOCK blockhash; |
760 | 92 | uint8_t blockhash_bytes[ARGON2_BLOCK_SIZE]; |
761 | 92 | uint32_t last_block_in_lane; |
762 | 92 | uint32_t l; |
763 | | |
764 | 92 | if (ctx == NULL) |
765 | 0 | return; |
766 | | |
767 | 92 | copy_block(&blockhash, ctx->memory + ctx->lane_length - 1); |
768 | | |
769 | | /* XOR the last blocks */ |
770 | 435 | for (l = 1; l < ctx->lanes; ++l) { |
771 | 343 | last_block_in_lane = l * ctx->lane_length + (ctx->lane_length - 1); |
772 | 343 | xor_block(&blockhash, ctx->memory + last_block_in_lane); |
773 | 343 | } |
774 | | |
775 | | /* Hash the result */ |
776 | 92 | store_block(blockhash_bytes, &blockhash); |
777 | 92 | blake2b_long(ctx->md, ctx->mac, out, ctx->outlen, blockhash_bytes, |
778 | 92 | ARGON2_BLOCK_SIZE); |
779 | 92 | OPENSSL_cleanse(blockhash.v, ARGON2_BLOCK_SIZE); |
780 | 92 | OPENSSL_cleanse(blockhash_bytes, ARGON2_BLOCK_SIZE); |
781 | | |
782 | 92 | if (ctx->type != ARGON2_D) |
783 | 55 | OPENSSL_secure_clear_free(ctx->memory, |
784 | 92 | ctx->memory_blocks * sizeof(BLOCK)); |
785 | 37 | else |
786 | 37 | OPENSSL_clear_free(ctx->memory, |
787 | 92 | ctx->memory_blocks * sizeof(BLOCK)); |
788 | 92 | } |
789 | | |
790 | | static int blake2b_mac(EVP_MAC *mac, void *out, size_t outlen, const void *in, |
791 | | size_t inlen, const void *key, size_t keylen) |
792 | 0 | { |
793 | 0 | int ret = 0; |
794 | 0 | size_t par_n = 0, out_written; |
795 | 0 | EVP_MAC_CTX *ctx = NULL; |
796 | 0 | OSSL_PARAM par[3]; |
797 | |
|
798 | 0 | if ((ctx = EVP_MAC_CTX_new(mac)) == NULL) |
799 | 0 | goto fail; |
800 | | |
801 | 0 | par[par_n++] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, |
802 | 0 | (void *) key, keylen); |
803 | 0 | par[par_n++] = OSSL_PARAM_construct_size_t(OSSL_MAC_PARAM_SIZE, &outlen); |
804 | 0 | par[par_n++] = OSSL_PARAM_construct_end(); |
805 | |
|
806 | 0 | ret = EVP_MAC_CTX_set_params(ctx, par) == 1 |
807 | 0 | && EVP_MAC_init(ctx, NULL, 0, NULL) == 1 |
808 | 0 | && EVP_MAC_update(ctx, in, inlen) == 1 |
809 | 0 | && EVP_MAC_final(ctx, out, (size_t *) &out_written, outlen) == 1; |
810 | |
|
811 | 0 | fail: |
812 | 0 | EVP_MAC_CTX_free(ctx); |
813 | 0 | return ret; |
814 | 0 | } |
815 | | |
816 | | static int blake2b_md(EVP_MD *md, void *out, size_t outlen, const void *in, |
817 | | size_t inlen) |
818 | 26.1k | { |
819 | 26.1k | int ret = 0; |
820 | 26.1k | EVP_MD_CTX *ctx = NULL; |
821 | 26.1k | OSSL_PARAM par[2]; |
822 | | |
823 | 26.1k | if ((ctx = EVP_MD_CTX_create()) == NULL) |
824 | 0 | return 0; |
825 | | |
826 | 26.1k | par[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_SIZE, &outlen); |
827 | 26.1k | par[1] = OSSL_PARAM_construct_end(); |
828 | | |
829 | 26.1k | ret = EVP_DigestInit_ex2(ctx, md, par) == 1 |
830 | 26.1k | && EVP_DigestUpdate(ctx, in, inlen) == 1 |
831 | 26.1k | && EVP_DigestFinal_ex(ctx, out, NULL) == 1; |
832 | | |
833 | 26.1k | EVP_MD_CTX_free(ctx); |
834 | 26.1k | return ret; |
835 | 26.1k | } |
836 | | |
837 | | static int blake2b(EVP_MD *md, EVP_MAC *mac, void *out, size_t outlen, |
838 | | const void *in, size_t inlen, const void *key, size_t keylen) |
839 | 26.1k | { |
840 | 26.1k | if (out == NULL || outlen == 0) |
841 | 0 | return 0; |
842 | | |
843 | 26.1k | if (key == NULL || keylen == 0) |
844 | 26.1k | return blake2b_md(md, out, outlen, in, inlen); |
845 | | |
846 | 0 | return blake2b_mac(mac, out, outlen, in, inlen, key, keylen); |
847 | 26.1k | } |
848 | | |
849 | | static int blake2b_long(EVP_MD *md, EVP_MAC *mac, unsigned char *out, |
850 | | size_t outlen, const void *in, size_t inlen) |
851 | 962 | { |
852 | 962 | int ret = 0; |
853 | 962 | EVP_MD_CTX *ctx = NULL; |
854 | 962 | uint32_t outlen_curr; |
855 | 962 | uint8_t outbuf[BLAKE2B_OUTBYTES]; |
856 | 962 | uint8_t inbuf[BLAKE2B_OUTBYTES]; |
857 | 962 | uint8_t outlen_bytes[sizeof(uint32_t)] = {0}; |
858 | 962 | OSSL_PARAM par[2]; |
859 | 962 | size_t outlen_md; |
860 | | |
861 | 962 | if (out == NULL || outlen == 0) |
862 | 0 | return 0; |
863 | | |
864 | | /* Ensure little-endian byte order */ |
865 | 962 | store32(outlen_bytes, (uint32_t)outlen); |
866 | | |
867 | 962 | if ((ctx = EVP_MD_CTX_create()) == NULL) |
868 | 0 | return 0; |
869 | | |
870 | 962 | outlen_md = (outlen <= BLAKE2B_OUTBYTES) ? outlen : BLAKE2B_OUTBYTES; |
871 | 962 | par[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_SIZE, &outlen_md); |
872 | 962 | par[1] = OSSL_PARAM_construct_end(); |
873 | | |
874 | 962 | ret = EVP_DigestInit_ex2(ctx, md, par) == 1 |
875 | 962 | && EVP_DigestUpdate(ctx, outlen_bytes, sizeof(outlen_bytes)) == 1 |
876 | 962 | && EVP_DigestUpdate(ctx, in, inlen) == 1 |
877 | 962 | && EVP_DigestFinal_ex(ctx, (outlen > BLAKE2B_OUTBYTES) ? outbuf : out, |
878 | 962 | NULL) == 1; |
879 | | |
880 | 962 | if (ret == 0) |
881 | 0 | goto fail; |
882 | | |
883 | 962 | if (outlen > BLAKE2B_OUTBYTES) { |
884 | 870 | memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2); |
885 | 870 | out += BLAKE2B_OUTBYTES / 2; |
886 | 870 | outlen_curr = (uint32_t) outlen - BLAKE2B_OUTBYTES / 2; |
887 | | |
888 | 26.1k | while (outlen_curr > BLAKE2B_OUTBYTES) { |
889 | 25.2k | memcpy(inbuf, outbuf, BLAKE2B_OUTBYTES); |
890 | 25.2k | if (blake2b(md, mac, outbuf, BLAKE2B_OUTBYTES, inbuf, |
891 | 25.2k | BLAKE2B_OUTBYTES, NULL, 0) != 1) |
892 | 0 | goto fail; |
893 | 25.2k | memcpy(out, outbuf, BLAKE2B_OUTBYTES / 2); |
894 | 25.2k | out += BLAKE2B_OUTBYTES / 2; |
895 | 25.2k | outlen_curr -= BLAKE2B_OUTBYTES / 2; |
896 | 25.2k | } |
897 | | |
898 | 870 | memcpy(inbuf, outbuf, BLAKE2B_OUTBYTES); |
899 | 870 | if (blake2b(md, mac, outbuf, outlen_curr, inbuf, BLAKE2B_OUTBYTES, |
900 | 870 | NULL, 0) != 1) |
901 | 0 | goto fail; |
902 | 870 | memcpy(out, outbuf, outlen_curr); |
903 | 870 | } |
904 | 962 | ret = 1; |
905 | | |
906 | 962 | fail: |
907 | 962 | EVP_MD_CTX_free(ctx); |
908 | 962 | return ret; |
909 | 962 | } |
910 | | |
911 | | static void kdf_argon2_init(KDF_ARGON2 *c, ARGON2_TYPE type) |
912 | 224 | { |
913 | 224 | OSSL_LIB_CTX *libctx; |
914 | | |
915 | 224 | libctx = c->libctx; |
916 | 224 | memset(c, 0, sizeof(*c)); |
917 | | |
918 | 224 | c->libctx = libctx; |
919 | 224 | c->outlen = ARGON2_DEFAULT_OUTLEN; |
920 | 224 | c->t_cost = ARGON2_DEFAULT_T_COST; |
921 | 224 | c->m_cost = ARGON2_DEFAULT_M_COST; |
922 | 224 | c->lanes = ARGON2_DEFAULT_LANES; |
923 | 224 | c->threads = ARGON2_DEFAULT_THREADS; |
924 | 224 | c->version = ARGON2_DEFAULT_VERSION; |
925 | 224 | c->type = type; |
926 | 224 | } |
927 | | |
928 | | static void *kdf_argon2d_new(void *provctx) |
929 | 57 | { |
930 | 57 | KDF_ARGON2 *ctx; |
931 | | |
932 | 57 | if (!ossl_prov_is_running()) |
933 | 0 | return NULL; |
934 | | |
935 | 57 | ctx = OPENSSL_zalloc(sizeof(*ctx)); |
936 | 57 | if (ctx == NULL) { |
937 | 0 | ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE); |
938 | 0 | return NULL; |
939 | 0 | } |
940 | | |
941 | 57 | ctx->libctx = PROV_LIBCTX_OF(provctx); |
942 | | |
943 | 57 | kdf_argon2_init(ctx, ARGON2_D); |
944 | 57 | return ctx; |
945 | 57 | } |
946 | | |
947 | | static void *kdf_argon2i_new(void *provctx) |
948 | 69 | { |
949 | 69 | KDF_ARGON2 *ctx; |
950 | | |
951 | 69 | if (!ossl_prov_is_running()) |
952 | 0 | return NULL; |
953 | | |
954 | 69 | ctx = OPENSSL_zalloc(sizeof(*ctx)); |
955 | 69 | if (ctx == NULL) { |
956 | 0 | ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE); |
957 | 0 | return NULL; |
958 | 0 | } |
959 | | |
960 | 69 | ctx->libctx = PROV_LIBCTX_OF(provctx); |
961 | | |
962 | 69 | kdf_argon2_init(ctx, ARGON2_I); |
963 | 69 | return ctx; |
964 | 69 | } |
965 | | |
966 | | static void *kdf_argon2id_new(void *provctx) |
967 | 98 | { |
968 | 98 | KDF_ARGON2 *ctx; |
969 | | |
970 | 98 | if (!ossl_prov_is_running()) |
971 | 0 | return NULL; |
972 | | |
973 | 98 | ctx = OPENSSL_zalloc(sizeof(*ctx)); |
974 | 98 | if (ctx == NULL) { |
975 | 0 | ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE); |
976 | 0 | return NULL; |
977 | 0 | } |
978 | | |
979 | 98 | ctx->libctx = PROV_LIBCTX_OF(provctx); |
980 | | |
981 | 98 | kdf_argon2_init(ctx, ARGON2_ID); |
982 | 98 | return ctx; |
983 | 98 | } |
984 | | |
985 | | static void kdf_argon2_free(void *vctx) |
986 | 224 | { |
987 | 224 | KDF_ARGON2 *ctx = (KDF_ARGON2 *)vctx; |
988 | | |
989 | 224 | if (ctx == NULL) |
990 | 0 | return; |
991 | | |
992 | 224 | if (ctx->pwd != NULL) |
993 | 224 | OPENSSL_clear_free(ctx->pwd, ctx->pwdlen); |
994 | | |
995 | 224 | if (ctx->salt != NULL) |
996 | 185 | OPENSSL_clear_free(ctx->salt, ctx->saltlen); |
997 | | |
998 | 224 | if (ctx->secret != NULL) |
999 | 185 | OPENSSL_clear_free(ctx->secret, ctx->secretlen); |
1000 | | |
1001 | 224 | if (ctx->ad != NULL) |
1002 | 185 | OPENSSL_clear_free(ctx->ad, ctx->adlen); |
1003 | | |
1004 | 224 | EVP_MD_free(ctx->md); |
1005 | 224 | EVP_MAC_free(ctx->mac); |
1006 | | |
1007 | 224 | OPENSSL_free(ctx->propq); |
1008 | | |
1009 | 224 | memset(ctx, 0, sizeof(*ctx)); |
1010 | | |
1011 | 224 | OPENSSL_free(ctx); |
1012 | 224 | } |
1013 | | |
1014 | | static int kdf_argon2_derive(void *vctx, unsigned char *out, size_t outlen, |
1015 | | const OSSL_PARAM params[]) |
1016 | 104 | { |
1017 | 104 | KDF_ARGON2 *ctx; |
1018 | 104 | uint32_t memory_blocks, segment_length; |
1019 | | |
1020 | 104 | ctx = (KDF_ARGON2 *)vctx; |
1021 | | |
1022 | 104 | if (!ossl_prov_is_running() || !kdf_argon2_set_ctx_params(vctx, params)) |
1023 | 0 | return 0; |
1024 | | |
1025 | 104 | if (ctx->mac == NULL) |
1026 | 104 | ctx->mac = EVP_MAC_fetch(ctx->libctx, "blake2bmac", ctx->propq); |
1027 | 104 | if (ctx->mac == NULL) { |
1028 | 1 | ERR_raise_data(ERR_LIB_PROV, PROV_R_MISSING_MAC, |
1029 | 1 | "cannot fetch blake2bmac"); |
1030 | 1 | return 0; |
1031 | 1 | } |
1032 | | |
1033 | 103 | if (ctx->md == NULL) |
1034 | 103 | ctx->md = EVP_MD_fetch(ctx->libctx, "blake2b512", ctx->propq); |
1035 | 103 | if (ctx->md == NULL) { |
1036 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_MISSING_MESSAGE_DIGEST, |
1037 | 0 | "cannot fetch blake2b512"); |
1038 | 0 | return 0; |
1039 | 0 | } |
1040 | | |
1041 | 103 | if (ctx->salt == NULL || ctx->saltlen == 0) { |
1042 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_MISSING_SALT); |
1043 | 0 | return 0; |
1044 | 0 | } |
1045 | | |
1046 | 103 | if (outlen != ctx->outlen) { |
1047 | 95 | if (OSSL_PARAM_locate((OSSL_PARAM *)params, "size") != NULL) { |
1048 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL); |
1049 | 0 | return 0; |
1050 | 0 | } |
1051 | 95 | if (!kdf_argon2_ctx_set_out_length(ctx, (uint32_t) outlen)) |
1052 | 0 | return 0; |
1053 | 95 | } |
1054 | | |
1055 | 103 | switch (ctx->type) { |
1056 | 41 | case ARGON2_D: |
1057 | 57 | case ARGON2_I: |
1058 | 103 | case ARGON2_ID: |
1059 | 103 | break; |
1060 | 0 | default: |
1061 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_MODE, "invalid Argon2 type"); |
1062 | 0 | return 0; |
1063 | 103 | } |
1064 | | |
1065 | 103 | if (ctx->threads > 1) { |
1066 | | # ifdef ARGON2_NO_THREADS |
1067 | | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_THREAD_POOL_SIZE, |
1068 | | "requested %u threads, single-threaded mode supported only", |
1069 | | ctx->threads); |
1070 | | return 0; |
1071 | | # else |
1072 | 10 | if (ctx->threads > ossl_get_avail_threads(ctx->libctx)) { |
1073 | 10 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_THREAD_POOL_SIZE, |
1074 | 10 | "requested %u threads, available: %u", |
1075 | 10 | ctx->threads, ossl_get_avail_threads(ctx->libctx)); |
1076 | 10 | return 0; |
1077 | 10 | } |
1078 | 0 | # endif |
1079 | 0 | if (ctx->threads > ctx->lanes) { |
1080 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_THREAD_POOL_SIZE, |
1081 | 0 | "requested more threads (%u) than lanes (%u)", |
1082 | 0 | ctx->threads, ctx->lanes); |
1083 | 0 | return 0; |
1084 | 0 | } |
1085 | 0 | } |
1086 | | |
1087 | 93 | if (ctx->m_cost < 8 * ctx->lanes) { |
1088 | 1 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_MEMORY_SIZE, |
1089 | 1 | "m_cost must be greater or equal than 8 times the number of lanes"); |
1090 | 1 | return 0; |
1091 | 1 | } |
1092 | | |
1093 | 92 | memory_blocks = ctx->m_cost; |
1094 | 92 | if (memory_blocks < 2 * ARGON2_SYNC_POINTS * ctx->lanes) |
1095 | 0 | memory_blocks = 2 * ARGON2_SYNC_POINTS * ctx->lanes; |
1096 | | |
1097 | | /* Ensure that all segments have equal length */ |
1098 | 92 | segment_length = memory_blocks / (ctx->lanes * ARGON2_SYNC_POINTS); |
1099 | 92 | memory_blocks = segment_length * (ctx->lanes * ARGON2_SYNC_POINTS); |
1100 | | |
1101 | 92 | ctx->memory = NULL; |
1102 | 92 | ctx->memory_blocks = memory_blocks; |
1103 | 92 | ctx->segment_length = segment_length; |
1104 | 92 | ctx->passes = ctx->t_cost; |
1105 | 92 | ctx->lane_length = segment_length * ARGON2_SYNC_POINTS; |
1106 | | |
1107 | 92 | if (initialize(ctx) != 1) |
1108 | 0 | return 0; |
1109 | | |
1110 | 92 | if (fill_memory_blocks(ctx) != 1) |
1111 | 0 | return 0; |
1112 | | |
1113 | 92 | finalize(ctx, out); |
1114 | | |
1115 | 92 | return 1; |
1116 | 92 | } |
1117 | | |
1118 | | static void kdf_argon2_reset(void *vctx) |
1119 | 0 | { |
1120 | 0 | OSSL_LIB_CTX *libctx; |
1121 | 0 | KDF_ARGON2 *ctx; |
1122 | 0 | ARGON2_TYPE type; |
1123 | |
|
1124 | 0 | ctx = (KDF_ARGON2 *) vctx; |
1125 | 0 | type = ctx->type; |
1126 | 0 | libctx = ctx->libctx; |
1127 | |
|
1128 | 0 | EVP_MD_free(ctx->md); |
1129 | 0 | EVP_MAC_free(ctx->mac); |
1130 | |
|
1131 | 0 | OPENSSL_free(ctx->propq); |
1132 | |
|
1133 | 0 | if (ctx->pwd != NULL) |
1134 | 0 | OPENSSL_clear_free(ctx->pwd, ctx->pwdlen); |
1135 | |
|
1136 | 0 | if (ctx->salt != NULL) |
1137 | 0 | OPENSSL_clear_free(ctx->salt, ctx->saltlen); |
1138 | |
|
1139 | 0 | if (ctx->secret != NULL) |
1140 | 0 | OPENSSL_clear_free(ctx->secret, ctx->secretlen); |
1141 | |
|
1142 | 0 | if (ctx->ad != NULL) |
1143 | 0 | OPENSSL_clear_free(ctx->ad, ctx->adlen); |
1144 | |
|
1145 | 0 | memset(ctx, 0, sizeof(*ctx)); |
1146 | 0 | ctx->libctx = libctx; |
1147 | 0 | kdf_argon2_init(ctx, type); |
1148 | 0 | } |
1149 | | |
1150 | | static int kdf_argon2_ctx_set_threads(KDF_ARGON2 *ctx, uint32_t threads) |
1151 | 151 | { |
1152 | 151 | if (threads < ARGON2_MIN_THREADS) { |
1153 | 11 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_THREAD_POOL_SIZE, |
1154 | 11 | "min threads: %u", ARGON2_MIN_THREADS); |
1155 | 11 | return 0; |
1156 | 11 | } |
1157 | | |
1158 | 140 | if (threads > ARGON2_MAX_THREADS) { |
1159 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_THREAD_POOL_SIZE, |
1160 | 0 | "max threads: %u", ARGON2_MAX_THREADS); |
1161 | 0 | return 0; |
1162 | 0 | } |
1163 | | |
1164 | 140 | ctx->threads = threads; |
1165 | 140 | return 1; |
1166 | 140 | } |
1167 | | |
1168 | | static int kdf_argon2_ctx_set_lanes(KDF_ARGON2 *ctx, uint32_t lanes) |
1169 | 140 | { |
1170 | 140 | if (lanes > ARGON2_MAX_LANES) { |
1171 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER, |
1172 | 0 | "max lanes: %u", ARGON2_MAX_LANES); |
1173 | 0 | return 0; |
1174 | 0 | } |
1175 | | |
1176 | 140 | if (lanes < ARGON2_MIN_LANES) { |
1177 | 10 | ERR_raise_data(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER, |
1178 | 10 | "min lanes: %u", ARGON2_MIN_LANES); |
1179 | 10 | return 0; |
1180 | 10 | } |
1181 | | |
1182 | 130 | ctx->lanes = lanes; |
1183 | 130 | return 1; |
1184 | 140 | } |
1185 | | |
1186 | | static int kdf_argon2_ctx_set_t_cost(KDF_ARGON2 *ctx, uint32_t t_cost) |
1187 | 151 | { |
1188 | | /* ARGON2_MAX_MEMORY == max m_cost value, so skip check */ |
1189 | | |
1190 | 151 | if (t_cost < ARGON2_MIN_TIME) { |
1191 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_ITERATION_COUNT, |
1192 | 0 | "min: %u", ARGON2_MIN_TIME); |
1193 | 0 | return 0; |
1194 | 0 | } |
1195 | | |
1196 | 151 | ctx->t_cost = t_cost; |
1197 | 151 | return 1; |
1198 | 151 | } |
1199 | | |
1200 | | static int kdf_argon2_ctx_set_m_cost(KDF_ARGON2 *ctx, uint32_t m_cost) |
1201 | 130 | { |
1202 | | /* ARGON2_MAX_MEMORY == max m_cost value, so skip check */ |
1203 | | |
1204 | 130 | if (m_cost < ARGON2_MIN_MEMORY) { |
1205 | 10 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_MEMORY_SIZE, "min: %u", |
1206 | 10 | ARGON2_MIN_MEMORY); |
1207 | 10 | return 0; |
1208 | 10 | } |
1209 | | |
1210 | 120 | ctx->m_cost = m_cost; |
1211 | 120 | return 1; |
1212 | 130 | } |
1213 | | |
1214 | | static int kdf_argon2_ctx_set_out_length(KDF_ARGON2 *ctx, uint32_t outlen) |
1215 | 280 | { |
1216 | | /* |
1217 | | * ARGON2_MAX_OUT_LENGTH == max outlen value, so upper bounds checks |
1218 | | * are always satisfied; to suppress compiler if statement tautology |
1219 | | * warnings, these checks are skipped. |
1220 | | */ |
1221 | | |
1222 | 280 | if (outlen < ARGON2_MIN_OUT_LENGTH) { |
1223 | 34 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_OUTPUT_LENGTH, "min: %u", |
1224 | 34 | ARGON2_MIN_OUT_LENGTH); |
1225 | 34 | return 0; |
1226 | 34 | } |
1227 | | |
1228 | 246 | ctx->outlen = outlen; |
1229 | 246 | return 1; |
1230 | 280 | } |
1231 | | |
1232 | | static int kdf_argon2_ctx_set_secret(KDF_ARGON2 *ctx, const OSSL_PARAM *p) |
1233 | 185 | { |
1234 | 185 | size_t buflen; |
1235 | | |
1236 | 185 | if (p->data == NULL) |
1237 | 0 | return 0; |
1238 | | |
1239 | 185 | if (ctx->secret != NULL) { |
1240 | 0 | OPENSSL_clear_free(ctx->secret, ctx->secretlen); |
1241 | 0 | ctx->secret = NULL; |
1242 | 0 | ctx->secretlen = 0U; |
1243 | 0 | } |
1244 | | |
1245 | 185 | if (!OSSL_PARAM_get_octet_string(p, (void **)&ctx->secret, 0, &buflen)) |
1246 | 0 | return 0; |
1247 | | |
1248 | 185 | if (buflen > ARGON2_MAX_SECRET) { |
1249 | 0 | OPENSSL_free(ctx->secret); |
1250 | 0 | ctx->secret = NULL; |
1251 | 0 | ctx->secretlen = 0U; |
1252 | 0 | return 0; |
1253 | 0 | } |
1254 | | |
1255 | 185 | ctx->secretlen = (uint32_t) buflen; |
1256 | 185 | return 1; |
1257 | 185 | } |
1258 | | |
1259 | | static int kdf_argon2_ctx_set_pwd(KDF_ARGON2 *ctx, const OSSL_PARAM *p) |
1260 | 224 | { |
1261 | 224 | size_t buflen; |
1262 | | |
1263 | 224 | if (p->data == NULL) |
1264 | 0 | return 0; |
1265 | | |
1266 | 224 | if (ctx->pwd != NULL) { |
1267 | 0 | OPENSSL_clear_free(ctx->pwd, ctx->pwdlen); |
1268 | 0 | ctx->pwd = NULL; |
1269 | 0 | ctx->pwdlen = 0U; |
1270 | 0 | } |
1271 | | |
1272 | 224 | if (!OSSL_PARAM_get_octet_string(p, (void **)&ctx->pwd, 0, &buflen)) |
1273 | 0 | return 0; |
1274 | | |
1275 | 224 | if (buflen > ARGON2_MAX_PWD_LENGTH) { |
1276 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_SALT_LENGTH, "max: %u", |
1277 | 0 | ARGON2_MAX_PWD_LENGTH); |
1278 | 0 | goto fail; |
1279 | 0 | } |
1280 | | |
1281 | 224 | ctx->pwdlen = (uint32_t) buflen; |
1282 | 224 | return 1; |
1283 | | |
1284 | 0 | fail: |
1285 | 0 | OPENSSL_free(ctx->pwd); |
1286 | 0 | ctx->pwd = NULL; |
1287 | 0 | ctx->pwdlen = 0U; |
1288 | 0 | return 0; |
1289 | 224 | } |
1290 | | |
1291 | | static int kdf_argon2_ctx_set_salt(KDF_ARGON2 *ctx, const OSSL_PARAM *p) |
1292 | 224 | { |
1293 | 224 | size_t buflen; |
1294 | | |
1295 | 224 | if (p->data == NULL) |
1296 | 0 | return 0; |
1297 | | |
1298 | 224 | if (ctx->salt != NULL) { |
1299 | 0 | OPENSSL_clear_free(ctx->salt, ctx->saltlen); |
1300 | 0 | ctx->salt = NULL; |
1301 | 0 | ctx->saltlen = 0U; |
1302 | 0 | } |
1303 | | |
1304 | 224 | if (!OSSL_PARAM_get_octet_string(p, (void **)&ctx->salt, 0, &buflen)) |
1305 | 0 | return 0; |
1306 | | |
1307 | 224 | if (buflen < ARGON2_MIN_SALT_LENGTH) { |
1308 | 39 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_SALT_LENGTH, "min: %u", |
1309 | 39 | ARGON2_MIN_SALT_LENGTH); |
1310 | 39 | goto fail; |
1311 | 39 | } |
1312 | | |
1313 | 185 | if (buflen > ARGON2_MAX_SALT_LENGTH) { |
1314 | 0 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_SALT_LENGTH, "max: %u", |
1315 | 0 | ARGON2_MAX_SALT_LENGTH); |
1316 | 0 | goto fail; |
1317 | 0 | } |
1318 | | |
1319 | 185 | ctx->saltlen = (uint32_t) buflen; |
1320 | 185 | return 1; |
1321 | | |
1322 | 39 | fail: |
1323 | 39 | OPENSSL_free(ctx->salt); |
1324 | 39 | ctx->salt = NULL; |
1325 | 39 | ctx->saltlen = 0U; |
1326 | 39 | return 0; |
1327 | 185 | } |
1328 | | |
1329 | | static int kdf_argon2_ctx_set_ad(KDF_ARGON2 *ctx, const OSSL_PARAM *p) |
1330 | 185 | { |
1331 | 185 | size_t buflen; |
1332 | | |
1333 | 185 | if (p->data == NULL) |
1334 | 0 | return 0; |
1335 | | |
1336 | 185 | if (ctx->ad != NULL) { |
1337 | 0 | OPENSSL_clear_free(ctx->ad, ctx->adlen); |
1338 | 0 | ctx->ad = NULL; |
1339 | 0 | ctx->adlen = 0U; |
1340 | 0 | } |
1341 | | |
1342 | 185 | if (!OSSL_PARAM_get_octet_string(p, (void **)&ctx->ad, 0, &buflen)) |
1343 | 0 | return 0; |
1344 | | |
1345 | 185 | if (buflen > ARGON2_MAX_AD_LENGTH) { |
1346 | 0 | OPENSSL_free(ctx->ad); |
1347 | 0 | ctx->ad = NULL; |
1348 | 0 | ctx->adlen = 0U; |
1349 | 0 | return 0; |
1350 | 0 | } |
1351 | | |
1352 | 185 | ctx->adlen = (uint32_t) buflen; |
1353 | 185 | return 1; |
1354 | 185 | } |
1355 | | |
1356 | | static void kdf_argon2_ctx_set_flag_early_clean(KDF_ARGON2 *ctx, uint32_t f) |
1357 | 120 | { |
1358 | 120 | ctx->early_clean = !!(f); |
1359 | 120 | } |
1360 | | |
1361 | | static int kdf_argon2_ctx_set_version(KDF_ARGON2 *ctx, uint32_t version) |
1362 | 120 | { |
1363 | 120 | switch (version) { |
1364 | 87 | case ARGON2_VERSION_10: |
1365 | 104 | case ARGON2_VERSION_13: |
1366 | 104 | ctx->version = version; |
1367 | 104 | return 1; |
1368 | 16 | default: |
1369 | 16 | ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_MODE, |
1370 | 16 | "invalid Argon2 version"); |
1371 | 16 | return 0; |
1372 | 120 | } |
1373 | 120 | } |
1374 | | |
1375 | | static int set_property_query(KDF_ARGON2 *ctx, const char *propq) |
1376 | 104 | { |
1377 | 104 | OPENSSL_free(ctx->propq); |
1378 | 104 | ctx->propq = NULL; |
1379 | 104 | if (propq != NULL) { |
1380 | 104 | ctx->propq = OPENSSL_strdup(propq); |
1381 | 104 | if (ctx->propq == NULL) |
1382 | 0 | return 0; |
1383 | 104 | } |
1384 | 104 | EVP_MD_free(ctx->md); |
1385 | 104 | ctx->md = NULL; |
1386 | 104 | EVP_MAC_free(ctx->mac); |
1387 | 104 | ctx->mac = NULL; |
1388 | 104 | return 1; |
1389 | 104 | } |
1390 | | |
1391 | | static int kdf_argon2_set_ctx_params(void *vctx, const OSSL_PARAM params[]) |
1392 | 0 | { |
1393 | 0 | const OSSL_PARAM *p; |
1394 | 0 | KDF_ARGON2 *ctx; |
1395 | 0 | uint32_t u32_value; |
1396 | |
|
1397 | 0 | if (params == NULL) |
1398 | 0 | return 1; |
1399 | | |
1400 | 0 | ctx = (KDF_ARGON2 *) vctx; |
1401 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_PASSWORD)) != NULL) |
1402 | 0 | if (!kdf_argon2_ctx_set_pwd(ctx, p)) |
1403 | 0 | return 0; |
1404 | | |
1405 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_SALT)) != NULL) |
1406 | 0 | if (!kdf_argon2_ctx_set_salt(ctx, p)) |
1407 | 0 | return 0; |
1408 | | |
1409 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_SECRET)) != NULL) |
1410 | 0 | if (!kdf_argon2_ctx_set_secret(ctx, p)) |
1411 | 0 | return 0; |
1412 | | |
1413 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_ARGON2_AD)) != NULL) |
1414 | 0 | if (!kdf_argon2_ctx_set_ad(ctx, p)) |
1415 | 0 | return 0; |
1416 | | |
1417 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_SIZE)) != NULL) { |
1418 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1419 | 0 | return 0; |
1420 | 0 | if (!kdf_argon2_ctx_set_out_length(ctx, u32_value)) |
1421 | 0 | return 0; |
1422 | 0 | } |
1423 | | |
1424 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_ITER)) != NULL) { |
1425 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1426 | 0 | return 0; |
1427 | 0 | if (!kdf_argon2_ctx_set_t_cost(ctx, u32_value)) |
1428 | 0 | return 0; |
1429 | 0 | } |
1430 | | |
1431 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_THREADS)) != NULL) { |
1432 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1433 | 0 | return 0; |
1434 | 0 | if (!kdf_argon2_ctx_set_threads(ctx, u32_value)) |
1435 | 0 | return 0; |
1436 | 0 | } |
1437 | | |
1438 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_ARGON2_LANES)) != NULL) { |
1439 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1440 | 0 | return 0; |
1441 | 0 | if (!kdf_argon2_ctx_set_lanes(ctx, u32_value)) |
1442 | 0 | return 0; |
1443 | 0 | } |
1444 | | |
1445 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_ARGON2_MEMCOST)) != NULL) { |
1446 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1447 | 0 | return 0; |
1448 | 0 | if (!kdf_argon2_ctx_set_m_cost(ctx, u32_value)) |
1449 | 0 | return 0; |
1450 | 0 | } |
1451 | | |
1452 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_EARLY_CLEAN)) != NULL) { |
1453 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1454 | 0 | return 0; |
1455 | 0 | kdf_argon2_ctx_set_flag_early_clean(ctx, u32_value); |
1456 | 0 | } |
1457 | | |
1458 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_ARGON2_VERSION)) != NULL) { |
1459 | 0 | if (!OSSL_PARAM_get_uint32(p, &u32_value)) |
1460 | 0 | return 0; |
1461 | 0 | if (!kdf_argon2_ctx_set_version(ctx, u32_value)) |
1462 | 0 | return 0; |
1463 | 0 | } |
1464 | | |
1465 | 0 | if ((p = OSSL_PARAM_locate_const(params, OSSL_KDF_PARAM_PROPERTIES)) != NULL) { |
1466 | 0 | if (p->data_type != OSSL_PARAM_UTF8_STRING |
1467 | 0 | || !set_property_query(ctx, p->data)) |
1468 | 0 | return 0; |
1469 | 0 | } |
1470 | | |
1471 | 0 | return 1; |
1472 | 0 | } |
1473 | | |
1474 | | static const OSSL_PARAM *kdf_argon2_settable_ctx_params(ossl_unused void *ctx, |
1475 | | ossl_unused void *p_ctx) |
1476 | 224 | { |
1477 | 224 | static const OSSL_PARAM known_settable_ctx_params[] = { |
1478 | 224 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_PASSWORD, NULL, 0), |
1479 | 224 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_SALT, NULL, 0), |
1480 | 224 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_SECRET, NULL, 0), |
1481 | 224 | OSSL_PARAM_octet_string(OSSL_KDF_PARAM_ARGON2_AD, NULL, 0), |
1482 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_SIZE, NULL), |
1483 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_ITER, NULL), |
1484 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_THREADS, NULL), |
1485 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_ARGON2_LANES, NULL), |
1486 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_ARGON2_MEMCOST, NULL), |
1487 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_EARLY_CLEAN, NULL), |
1488 | 224 | OSSL_PARAM_uint32(OSSL_KDF_PARAM_ARGON2_VERSION, NULL), |
1489 | 224 | OSSL_PARAM_utf8_string(OSSL_KDF_PARAM_PROPERTIES, NULL, 0), |
1490 | 224 | OSSL_PARAM_END |
1491 | 224 | }; |
1492 | | |
1493 | 224 | return known_settable_ctx_params; |
1494 | 224 | } |
1495 | | |
1496 | | static int kdf_argon2_get_ctx_params(void *vctx, OSSL_PARAM params[]) |
1497 | 0 | { |
1498 | 0 | OSSL_PARAM *p; |
1499 | |
|
1500 | 0 | (void) vctx; |
1501 | 0 | if ((p = OSSL_PARAM_locate(params, OSSL_KDF_PARAM_SIZE)) != NULL) |
1502 | 0 | return OSSL_PARAM_set_size_t(p, SIZE_MAX); |
1503 | | |
1504 | 0 | return -2; |
1505 | 0 | } |
1506 | | |
1507 | | static const OSSL_PARAM *kdf_argon2_gettable_ctx_params(ossl_unused void *ctx, |
1508 | | ossl_unused void *p_ctx) |
1509 | 0 | { |
1510 | 0 | static const OSSL_PARAM known_gettable_ctx_params[] = { |
1511 | 0 | OSSL_PARAM_size_t(OSSL_KDF_PARAM_SIZE, NULL), |
1512 | 0 | OSSL_PARAM_END |
1513 | 0 | }; |
1514 | |
|
1515 | 0 | return known_gettable_ctx_params; |
1516 | 0 | } |
1517 | | |
1518 | | const OSSL_DISPATCH ossl_kdf_argon2i_functions[] = { |
1519 | | { OSSL_FUNC_KDF_NEWCTX, (void(*)(void))kdf_argon2i_new }, |
1520 | | { OSSL_FUNC_KDF_FREECTX, (void(*)(void))kdf_argon2_free }, |
1521 | | { OSSL_FUNC_KDF_RESET, (void(*)(void))kdf_argon2_reset }, |
1522 | | { OSSL_FUNC_KDF_DERIVE, (void(*)(void))kdf_argon2_derive }, |
1523 | | { OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS, |
1524 | | (void(*)(void))kdf_argon2_settable_ctx_params }, |
1525 | | { OSSL_FUNC_KDF_SET_CTX_PARAMS, (void(*)(void))kdf_argon2_set_ctx_params }, |
1526 | | { OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS, |
1527 | | (void(*)(void))kdf_argon2_gettable_ctx_params }, |
1528 | | { OSSL_FUNC_KDF_GET_CTX_PARAMS, (void(*)(void))kdf_argon2_get_ctx_params }, |
1529 | | OSSL_DISPATCH_END |
1530 | | }; |
1531 | | |
1532 | | const OSSL_DISPATCH ossl_kdf_argon2d_functions[] = { |
1533 | | { OSSL_FUNC_KDF_NEWCTX, (void(*)(void))kdf_argon2d_new }, |
1534 | | { OSSL_FUNC_KDF_FREECTX, (void(*)(void))kdf_argon2_free }, |
1535 | | { OSSL_FUNC_KDF_RESET, (void(*)(void))kdf_argon2_reset }, |
1536 | | { OSSL_FUNC_KDF_DERIVE, (void(*)(void))kdf_argon2_derive }, |
1537 | | { OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS, |
1538 | | (void(*)(void))kdf_argon2_settable_ctx_params }, |
1539 | | { OSSL_FUNC_KDF_SET_CTX_PARAMS, (void(*)(void))kdf_argon2_set_ctx_params }, |
1540 | | { OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS, |
1541 | | (void(*)(void))kdf_argon2_gettable_ctx_params }, |
1542 | | { OSSL_FUNC_KDF_GET_CTX_PARAMS, (void(*)(void))kdf_argon2_get_ctx_params }, |
1543 | | OSSL_DISPATCH_END |
1544 | | }; |
1545 | | |
1546 | | const OSSL_DISPATCH ossl_kdf_argon2id_functions[] = { |
1547 | | { OSSL_FUNC_KDF_NEWCTX, (void(*)(void))kdf_argon2id_new }, |
1548 | | { OSSL_FUNC_KDF_FREECTX, (void(*)(void))kdf_argon2_free }, |
1549 | | { OSSL_FUNC_KDF_RESET, (void(*)(void))kdf_argon2_reset }, |
1550 | | { OSSL_FUNC_KDF_DERIVE, (void(*)(void))kdf_argon2_derive }, |
1551 | | { OSSL_FUNC_KDF_SETTABLE_CTX_PARAMS, |
1552 | | (void(*)(void))kdf_argon2_settable_ctx_params }, |
1553 | | { OSSL_FUNC_KDF_SET_CTX_PARAMS, (void(*)(void))kdf_argon2_set_ctx_params }, |
1554 | | { OSSL_FUNC_KDF_GETTABLE_CTX_PARAMS, |
1555 | | (void(*)(void))kdf_argon2_gettable_ctx_params }, |
1556 | | { OSSL_FUNC_KDF_GET_CTX_PARAMS, (void(*)(void))kdf_argon2_get_ctx_params }, |
1557 | | OSSL_DISPATCH_END |
1558 | | }; |
1559 | | |
1560 | | #endif |