]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_crypt.c
gost_crypt: Fix Magma CBC in-place decryption
[openssl-gost/engine.git] / gost_crypt.c
1 /**********************************************************************
2  *                          gost_crypt.c                              *
3  *             Copyright (c) 2005-2006 Cryptocom LTD                  *
4  *         This file is distributed under the same license as OpenSSL *
5  *                                                                    *
6  *       OpenSSL interface to GOST 28147-89 cipher functions          *
7  *          Requires OpenSSL 0.9.9 for compilation                    *
8  **********************************************************************/
9 #include <string.h>
10 #include "gost89.h"
11 #include <openssl/err.h>
12 #include <openssl/rand.h>
13 #include "e_gost_err.h"
14 #include "gost_lcl.h"
15 #include "gost_gost2015.h"
16
17 #if !defined(CCGOST_DEBUG) && !defined(DEBUG)
18 # ifndef NDEBUG
19 #  define NDEBUG
20 # endif
21 #endif
22 #include <assert.h>
23
24 static int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
25                             const unsigned char *iv, int enc);
26 static int gost_cipher_init_cbc(EVP_CIPHER_CTX *ctx, const unsigned char *key,
27                                 const unsigned char *iv, int enc);
28 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
29                                 const unsigned char *iv, int enc);
30 static int gost_cipher_init_cp_12(EVP_CIPHER_CTX *ctx,
31                                   const unsigned char *key,
32                                   const unsigned char *iv, int enc);
33 /* Handles block of data in CFB mode */
34 static int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
35                               const unsigned char *in, size_t inl);
36 /* Handles block of data in CBC mode */
37 static int gost_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
38                               const unsigned char *in, size_t inl);
39 /* Handles block of data in CNT mode */
40 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
41                               const unsigned char *in, size_t inl);
42 /* Cleanup function */
43 static int gost_cipher_cleanup(EVP_CIPHER_CTX *);
44 /* set/get cipher parameters */
45 static int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
46 static int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
47 /* Control function */
48 static int gost_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
49
50 static int magma_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
51                              const unsigned char *iv, int enc);
52 static int magma_cipher_init_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, const unsigned char *key,
53                              const unsigned char *iv, int enc);
54 /* Handles block of data in CBC mode */
55 static int magma_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
56                                const unsigned char *in, size_t inl);
57 static int magma_cipher_do_ctr(EVP_CIPHER_CTX *ctx, unsigned char *out,
58                                const unsigned char *in, size_t inl);
59
60 static int magma_cipher_do_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, unsigned char *out,
61                                const unsigned char *in, size_t inl);
62
63 /* set/get cipher parameters */
64 static int magma_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
65 static int magma_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params);
66 /* Control function */
67 static int magma_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
68 static int magma_cipher_ctl_acpkm_omac(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr);
69
70 static EVP_CIPHER *_hidden_Gost28147_89_cipher = NULL;
71 const EVP_CIPHER *cipher_gost(void)
72 {
73     if (_hidden_Gost28147_89_cipher == NULL
74         && ((_hidden_Gost28147_89_cipher =
75              EVP_CIPHER_meth_new(NID_id_Gost28147_89, 1 /* block_size */ ,
76                                  32 /* key_size */ )) == NULL
77             || !EVP_CIPHER_meth_set_iv_length(_hidden_Gost28147_89_cipher, 8)
78             || !EVP_CIPHER_meth_set_flags(_hidden_Gost28147_89_cipher,
79                                           EVP_CIPH_CFB_MODE |
80                                           EVP_CIPH_NO_PADDING |
81                                           EVP_CIPH_CUSTOM_IV |
82                                           EVP_CIPH_RAND_KEY |
83                                           EVP_CIPH_ALWAYS_CALL_INIT)
84             || !EVP_CIPHER_meth_set_init(_hidden_Gost28147_89_cipher,
85                                          gost_cipher_init)
86             || !EVP_CIPHER_meth_set_do_cipher(_hidden_Gost28147_89_cipher,
87                                               gost_cipher_do_cfb)
88             || !EVP_CIPHER_meth_set_cleanup(_hidden_Gost28147_89_cipher,
89                                             gost_cipher_cleanup)
90             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_Gost28147_89_cipher,
91                                                   sizeof(struct
92                                                          ossl_gost_cipher_ctx))
93             ||
94             !EVP_CIPHER_meth_set_set_asn1_params(_hidden_Gost28147_89_cipher,
95                                                  gost89_set_asn1_parameters)
96             ||
97             !EVP_CIPHER_meth_set_get_asn1_params(_hidden_Gost28147_89_cipher,
98                                                  gost89_get_asn1_parameters)
99             || !EVP_CIPHER_meth_set_ctrl(_hidden_Gost28147_89_cipher,
100                                          gost_cipher_ctl))) {
101         EVP_CIPHER_meth_free(_hidden_Gost28147_89_cipher);
102         _hidden_Gost28147_89_cipher = NULL;
103     }
104     return _hidden_Gost28147_89_cipher;
105 }
106
107 static EVP_CIPHER *_hidden_Gost28147_89_cbc = NULL;
108 const EVP_CIPHER *cipher_gost_cbc(void)
109 {
110     if (_hidden_Gost28147_89_cbc == NULL
111         && ((_hidden_Gost28147_89_cbc =
112              EVP_CIPHER_meth_new(NID_gost89_cbc, 8 /* block_size */ ,
113                                  32 /* key_size */ )) == NULL
114             || !EVP_CIPHER_meth_set_iv_length(_hidden_Gost28147_89_cbc, 8)
115             || !EVP_CIPHER_meth_set_flags(_hidden_Gost28147_89_cbc,
116                                           EVP_CIPH_CBC_MODE |
117                                           EVP_CIPH_CUSTOM_IV |
118                                           EVP_CIPH_RAND_KEY |
119                                           EVP_CIPH_ALWAYS_CALL_INIT)
120             || !EVP_CIPHER_meth_set_init(_hidden_Gost28147_89_cbc,
121                                          gost_cipher_init_cbc)
122             || !EVP_CIPHER_meth_set_do_cipher(_hidden_Gost28147_89_cbc,
123                                               gost_cipher_do_cbc)
124             || !EVP_CIPHER_meth_set_cleanup(_hidden_Gost28147_89_cbc,
125                                             gost_cipher_cleanup)
126             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_Gost28147_89_cbc,
127                                                   sizeof(struct
128                                                          ossl_gost_cipher_ctx))
129             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_Gost28147_89_cbc,
130                                                     gost89_set_asn1_parameters)
131             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_Gost28147_89_cbc,
132                                                     gost89_get_asn1_parameters)
133             || !EVP_CIPHER_meth_set_ctrl(_hidden_Gost28147_89_cbc,
134                                          gost_cipher_ctl))) {
135         EVP_CIPHER_meth_free(_hidden_Gost28147_89_cbc);
136         _hidden_Gost28147_89_cbc = NULL;
137     }
138     return _hidden_Gost28147_89_cbc;
139 }
140
141 static EVP_CIPHER *_hidden_gost89_cnt = NULL;
142 const EVP_CIPHER *cipher_gost_cpacnt(void)
143 {
144     if (_hidden_gost89_cnt == NULL
145         && ((_hidden_gost89_cnt =
146              EVP_CIPHER_meth_new(NID_gost89_cnt, 1 /* block_size */ ,
147                                  32 /* key_size */ )) == NULL
148             || !EVP_CIPHER_meth_set_iv_length(_hidden_gost89_cnt, 8)
149             || !EVP_CIPHER_meth_set_flags(_hidden_gost89_cnt,
150                                           EVP_CIPH_OFB_MODE |
151                                           EVP_CIPH_NO_PADDING |
152                                           EVP_CIPH_CUSTOM_IV |
153                                           EVP_CIPH_RAND_KEY |
154                                           EVP_CIPH_ALWAYS_CALL_INIT)
155             || !EVP_CIPHER_meth_set_init(_hidden_gost89_cnt,
156                                          gost_cipher_init_cpa)
157             || !EVP_CIPHER_meth_set_do_cipher(_hidden_gost89_cnt,
158                                               gost_cipher_do_cnt)
159             || !EVP_CIPHER_meth_set_cleanup(_hidden_gost89_cnt,
160                                             gost_cipher_cleanup)
161             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_gost89_cnt,
162                                                   sizeof(struct
163                                                          ossl_gost_cipher_ctx))
164             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_gost89_cnt,
165                                                     gost89_set_asn1_parameters)
166             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_gost89_cnt,
167                                                     gost89_get_asn1_parameters)
168             || !EVP_CIPHER_meth_set_ctrl(_hidden_gost89_cnt, gost_cipher_ctl))) {
169         EVP_CIPHER_meth_free(_hidden_gost89_cnt);
170         _hidden_gost89_cnt = NULL;
171     }
172     return _hidden_gost89_cnt;
173 }
174
175 static EVP_CIPHER *_hidden_gost89_cnt_12 = NULL;
176 const EVP_CIPHER *cipher_gost_cpcnt_12(void)
177 {
178     if (_hidden_gost89_cnt_12 == NULL
179         && ((_hidden_gost89_cnt_12 =
180              EVP_CIPHER_meth_new(NID_gost89_cnt_12, 1 /* block_size */ ,
181                                  32 /* key_size */ )) == NULL
182             || !EVP_CIPHER_meth_set_iv_length(_hidden_gost89_cnt_12, 8)
183             || !EVP_CIPHER_meth_set_flags(_hidden_gost89_cnt_12,
184                                           EVP_CIPH_OFB_MODE |
185                                           EVP_CIPH_NO_PADDING |
186                                           EVP_CIPH_CUSTOM_IV |
187                                           EVP_CIPH_RAND_KEY |
188                                           EVP_CIPH_ALWAYS_CALL_INIT)
189             || !EVP_CIPHER_meth_set_init(_hidden_gost89_cnt_12,
190                                          gost_cipher_init_cp_12)
191             || !EVP_CIPHER_meth_set_do_cipher(_hidden_gost89_cnt_12,
192                                               gost_cipher_do_cnt)
193             || !EVP_CIPHER_meth_set_cleanup(_hidden_gost89_cnt_12,
194                                             gost_cipher_cleanup)
195             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_gost89_cnt_12,
196                                                   sizeof(struct
197                                                          ossl_gost_cipher_ctx))
198             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_gost89_cnt_12,
199                                                     gost89_set_asn1_parameters)
200             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_gost89_cnt_12,
201                                                     gost89_get_asn1_parameters)
202             || !EVP_CIPHER_meth_set_ctrl(_hidden_gost89_cnt_12,
203                                          gost_cipher_ctl))) {
204         EVP_CIPHER_meth_free(_hidden_gost89_cnt_12);
205         _hidden_gost89_cnt_12 = NULL;
206     }
207     return _hidden_gost89_cnt_12;
208 }
209
210 static EVP_CIPHER *_hidden_magma_ctr = NULL;
211 const EVP_CIPHER *cipher_magma_ctr(void)
212 {
213     if (_hidden_magma_ctr == NULL
214         && ((_hidden_magma_ctr =
215              EVP_CIPHER_meth_new(NID_magma_ctr, 1 /* block_size */ ,
216                                  32 /* key_size */ )) == NULL
217             || !EVP_CIPHER_meth_set_iv_length(_hidden_magma_ctr, 4)
218             || !EVP_CIPHER_meth_set_flags(_hidden_magma_ctr,
219                                           EVP_CIPH_CTR_MODE |
220                                           EVP_CIPH_NO_PADDING |
221                                           EVP_CIPH_CUSTOM_IV |
222                                           EVP_CIPH_RAND_KEY |
223                                           EVP_CIPH_ALWAYS_CALL_INIT)
224             || !EVP_CIPHER_meth_set_init(_hidden_magma_ctr, magma_cipher_init)
225             || !EVP_CIPHER_meth_set_do_cipher(_hidden_magma_ctr,
226                                               magma_cipher_do_ctr)
227             || !EVP_CIPHER_meth_set_cleanup(_hidden_magma_ctr,
228                                             gost_cipher_cleanup)
229             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_magma_ctr,
230                                                   sizeof(struct
231                                                          ossl_gost_cipher_ctx))
232             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_magma_ctr,
233                                                     magma_set_asn1_parameters)
234             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_magma_ctr,
235                                                     magma_get_asn1_parameters)
236             || !EVP_CIPHER_meth_set_ctrl(_hidden_magma_ctr, magma_cipher_ctl))) {
237         EVP_CIPHER_meth_free(_hidden_magma_ctr);
238         _hidden_magma_ctr = NULL;
239     }
240     return _hidden_magma_ctr;
241 }
242
243 static EVP_CIPHER *_hidden_magma_ctr_acpkm = NULL;
244 const EVP_CIPHER *cipher_magma_ctr_acpkm(void)
245 {
246     if (_hidden_magma_ctr_acpkm == NULL
247         && ((_hidden_magma_ctr_acpkm =
248              EVP_CIPHER_meth_new(NID_magma_ctr_acpkm, 1 /* block_size */ ,
249                                  32 /* key_size */ )) == NULL
250             || !EVP_CIPHER_meth_set_iv_length(_hidden_magma_ctr_acpkm, 4)
251             || !EVP_CIPHER_meth_set_flags(_hidden_magma_ctr_acpkm,
252                                           EVP_CIPH_CTR_MODE |
253                                           EVP_CIPH_NO_PADDING |
254                                           EVP_CIPH_CUSTOM_IV |
255                                           EVP_CIPH_RAND_KEY |
256                                           EVP_CIPH_ALWAYS_CALL_INIT)
257             || !EVP_CIPHER_meth_set_init(_hidden_magma_ctr_acpkm, magma_cipher_init)
258             || !EVP_CIPHER_meth_set_do_cipher(_hidden_magma_ctr_acpkm,
259                                               magma_cipher_do_ctr)
260             || !EVP_CIPHER_meth_set_cleanup(_hidden_magma_ctr_acpkm,
261                                             gost_cipher_cleanup)
262             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_magma_ctr_acpkm,
263                                                   sizeof(struct
264                                                          ossl_gost_cipher_ctx))
265             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_magma_ctr_acpkm,
266                                                     magma_set_asn1_parameters)
267             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_magma_ctr_acpkm,
268                                                     magma_get_asn1_parameters)
269
270             || !EVP_CIPHER_meth_set_ctrl(_hidden_magma_ctr_acpkm, magma_cipher_ctl))) {
271         EVP_CIPHER_meth_free(_hidden_magma_ctr_acpkm);
272         _hidden_magma_ctr_acpkm = NULL;
273     }
274     return _hidden_magma_ctr_acpkm;
275 }
276
277 static EVP_CIPHER *_hidden_magma_ctr_acpkm_omac = NULL;
278 const EVP_CIPHER *cipher_magma_ctr_acpkm_omac(void)
279 {
280     if (_hidden_magma_ctr_acpkm_omac == NULL
281         && ((_hidden_magma_ctr_acpkm_omac =
282              EVP_CIPHER_meth_new(NID_magma_ctr_acpkm_omac, 1 /* block_size */ ,
283                                  32 /* key_size */ )) == NULL
284             || !EVP_CIPHER_meth_set_iv_length(_hidden_magma_ctr_acpkm_omac, 4)
285             || !EVP_CIPHER_meth_set_flags(_hidden_magma_ctr_acpkm_omac,
286                                           EVP_CIPH_CTR_MODE |
287                                           EVP_CIPH_NO_PADDING |
288                                           EVP_CIPH_CUSTOM_IV |
289                                           EVP_CIPH_RAND_KEY |
290                                           EVP_CIPH_ALWAYS_CALL_INIT |
291                                                                                                                                                                         EVP_CIPH_CUSTOM_COPY |
292                                                                                                                                                                         EVP_CIPH_FLAG_CUSTOM_CIPHER |
293                                                                                                                                                                         EVP_CIPH_FLAG_CIPHER_WITH_MAC)
294             || !EVP_CIPHER_meth_set_init(_hidden_magma_ctr_acpkm_omac, magma_cipher_init_ctr_acpkm_omac)
295             || !EVP_CIPHER_meth_set_do_cipher(_hidden_magma_ctr_acpkm_omac,
296                                               magma_cipher_do_ctr_acpkm_omac)
297             || !EVP_CIPHER_meth_set_cleanup(_hidden_magma_ctr_acpkm_omac,
298                                             gost_cipher_cleanup)
299             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_magma_ctr_acpkm_omac,
300                                                   sizeof(struct
301                                                          ossl_gost_cipher_ctx))
302             || !EVP_CIPHER_meth_set_set_asn1_params(_hidden_magma_ctr_acpkm_omac,
303                                                     magma_set_asn1_parameters)
304             || !EVP_CIPHER_meth_set_get_asn1_params(_hidden_magma_ctr_acpkm_omac,
305                                                     magma_get_asn1_parameters)
306             || !EVP_CIPHER_meth_set_ctrl(_hidden_magma_ctr_acpkm_omac, magma_cipher_ctl_acpkm_omac))) {
307         EVP_CIPHER_meth_free(_hidden_magma_ctr_acpkm_omac);
308         _hidden_magma_ctr_acpkm_omac = NULL;
309     }
310     return _hidden_magma_ctr_acpkm_omac;
311 }
312
313 static EVP_CIPHER *_hidden_magma_cbc = NULL;
314 const EVP_CIPHER *cipher_magma_cbc(void)
315 {
316     if (_hidden_magma_cbc == NULL
317         && ((_hidden_magma_cbc =
318              EVP_CIPHER_meth_new(NID_magma_cbc, 8 /* block_size */ ,
319                                  32 /* key_size */ )) == NULL
320             || !EVP_CIPHER_meth_set_iv_length(_hidden_magma_cbc, 8)
321             || !EVP_CIPHER_meth_set_flags(_hidden_magma_cbc,
322                                           EVP_CIPH_CBC_MODE |
323                                           EVP_CIPH_CUSTOM_IV |
324                                           EVP_CIPH_RAND_KEY |
325                                           EVP_CIPH_ALWAYS_CALL_INIT)
326             || !EVP_CIPHER_meth_set_init(_hidden_magma_cbc, magma_cipher_init)
327             || !EVP_CIPHER_meth_set_do_cipher(_hidden_magma_cbc,
328                                               magma_cipher_do_cbc)
329             || !EVP_CIPHER_meth_set_cleanup(_hidden_magma_cbc,
330                                             gost_cipher_cleanup)
331             || !EVP_CIPHER_meth_set_impl_ctx_size(_hidden_magma_cbc,
332                                                   sizeof(struct
333                                                          ossl_gost_cipher_ctx))
334             || !EVP_CIPHER_meth_set_ctrl(_hidden_magma_cbc, magma_cipher_ctl))) {
335         EVP_CIPHER_meth_free(_hidden_magma_cbc);
336         _hidden_magma_cbc = NULL;
337     }
338     return _hidden_magma_cbc;
339 }
340
341 void cipher_gost_destroy(void)
342 {
343     EVP_CIPHER_meth_free(_hidden_Gost28147_89_cipher);
344     _hidden_Gost28147_89_cipher = NULL;
345     EVP_CIPHER_meth_free(_hidden_gost89_cnt);
346     _hidden_gost89_cnt = NULL;
347     EVP_CIPHER_meth_free(_hidden_Gost28147_89_cbc);
348     _hidden_Gost28147_89_cbc = NULL;
349     EVP_CIPHER_meth_free(_hidden_gost89_cnt_12);
350     _hidden_gost89_cnt_12 = NULL;
351     EVP_CIPHER_meth_free(_hidden_magma_cbc);
352     _hidden_magma_cbc = NULL;
353     EVP_CIPHER_meth_free(_hidden_magma_ctr);
354     _hidden_magma_ctr = NULL;
355     EVP_CIPHER_meth_free(_hidden_magma_ctr_acpkm);
356     _hidden_magma_ctr_acpkm = NULL;
357     EVP_CIPHER_meth_free(_hidden_magma_ctr_acpkm_omac);
358     _hidden_magma_ctr_acpkm_omac = NULL;
359 }
360
361 /* Implementation of GOST 28147-89 in MAC (imitovstavka) mode */
362 /* Init functions which set specific parameters */
363 static int gost_imit_init_cpa(EVP_MD_CTX *ctx);
364 static int gost_imit_init_cp_12(EVP_MD_CTX *ctx);
365 /* process block of data */
366 static int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count);
367 /* Return computed value */
368 static int gost_imit_final(EVP_MD_CTX *ctx, unsigned char *md);
369 /* Copies context */
370 static int gost_imit_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from);
371 static int gost_imit_cleanup(EVP_MD_CTX *ctx);
372 /* Control function, knows how to set MAC key.*/
373 static int gost_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr);
374
375 static EVP_MD *_hidden_Gost28147_89_MAC_md = NULL;
376 static EVP_MD *_hidden_Gost28147_89_12_MAC_md = NULL;
377
378 EVP_MD *imit_gost_cpa(void)
379 {
380     if (_hidden_Gost28147_89_MAC_md == NULL) {
381         EVP_MD *md;
382
383         if ((md = EVP_MD_meth_new(NID_id_Gost28147_89_MAC, NID_undef)) == NULL
384             || !EVP_MD_meth_set_result_size(md, 4)
385             || !EVP_MD_meth_set_input_blocksize(md, 8)
386             || !EVP_MD_meth_set_app_datasize(md,
387                                              sizeof(struct ossl_gost_imit_ctx))
388             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_XOF)
389             || !EVP_MD_meth_set_init(md, gost_imit_init_cpa)
390             || !EVP_MD_meth_set_update(md, gost_imit_update)
391             || !EVP_MD_meth_set_final(md, gost_imit_final)
392             || !EVP_MD_meth_set_copy(md, gost_imit_copy)
393             || !EVP_MD_meth_set_cleanup(md, gost_imit_cleanup)
394             || !EVP_MD_meth_set_ctrl(md, gost_imit_ctrl)) {
395             EVP_MD_meth_free(md);
396             md = NULL;
397         }
398         _hidden_Gost28147_89_MAC_md = md;
399     }
400     return _hidden_Gost28147_89_MAC_md;
401 }
402
403 void imit_gost_cpa_destroy(void)
404 {
405     EVP_MD_meth_free(_hidden_Gost28147_89_MAC_md);
406     _hidden_Gost28147_89_MAC_md = NULL;
407 }
408
409 EVP_MD *imit_gost_cp_12(void)
410 {
411     if (_hidden_Gost28147_89_12_MAC_md == NULL) {
412         EVP_MD *md;
413
414         if ((md = EVP_MD_meth_new(NID_gost_mac_12, NID_undef)) == NULL
415             || !EVP_MD_meth_set_result_size(md, 4)
416             || !EVP_MD_meth_set_input_blocksize(md, 8)
417             || !EVP_MD_meth_set_app_datasize(md,
418                                              sizeof(struct ossl_gost_imit_ctx))
419             || !EVP_MD_meth_set_flags(md, EVP_MD_FLAG_XOF)
420             || !EVP_MD_meth_set_init(md, gost_imit_init_cp_12)
421             || !EVP_MD_meth_set_update(md, gost_imit_update)
422             || !EVP_MD_meth_set_final(md, gost_imit_final)
423             || !EVP_MD_meth_set_copy(md, gost_imit_copy)
424             || !EVP_MD_meth_set_cleanup(md, gost_imit_cleanup)
425             || !EVP_MD_meth_set_ctrl(md, gost_imit_ctrl)) {
426             EVP_MD_meth_free(md);
427             md = NULL;
428         }
429         _hidden_Gost28147_89_12_MAC_md = md;
430     }
431     return _hidden_Gost28147_89_12_MAC_md;
432 }
433
434 void imit_gost_cp_12_destroy(void)
435 {
436     EVP_MD_meth_free(_hidden_Gost28147_89_12_MAC_md);
437     _hidden_Gost28147_89_12_MAC_md = NULL;
438 }
439
440 /*
441  * Correspondence between gost parameter OIDs and substitution blocks
442  * NID field is filed by register_gost_NID function in engine.c
443  * upon engine initialization
444  */
445
446 struct gost_cipher_info gost_cipher_list[] = {
447     /*- NID *//*
448      * Subst block
449      *//*
450      * Key meshing
451      */
452     /*
453      * {NID_id_GostR3411_94_CryptoProParamSet,&GostR3411_94_CryptoProParamSet,0},
454      */
455     {NID_id_Gost28147_89_CryptoPro_A_ParamSet, &Gost28147_CryptoProParamSetA,
456      1},
457     {NID_id_Gost28147_89_CryptoPro_B_ParamSet, &Gost28147_CryptoProParamSetB,
458      1},
459     {NID_id_Gost28147_89_CryptoPro_C_ParamSet, &Gost28147_CryptoProParamSetC,
460      1},
461     {NID_id_Gost28147_89_CryptoPro_D_ParamSet, &Gost28147_CryptoProParamSetD,
462      1},
463     {NID_id_tc26_gost_28147_param_Z, &Gost28147_TC26ParamSetZ, 1},
464     {NID_id_Gost28147_89_TestParamSet, &Gost28147_TestParamSet, 1},
465     {NID_undef, NULL, 0}
466 };
467
468 /*
469  * get encryption parameters from crypto network settings FIXME For now we
470  * use environment var CRYPT_PARAMS as place to store these settings.
471  * Actually, it is better to use engine control command, read from
472  * configuration file to set them
473  */
474 const struct gost_cipher_info *get_encryption_params(ASN1_OBJECT *obj)
475 {
476     int nid;
477     struct gost_cipher_info *param;
478     if (!obj) {
479         const char *params = get_gost_engine_param(GOST_PARAM_CRYPT_PARAMS);
480         if (!params || !strlen(params)) {
481             int i;
482             for (i = 0; gost_cipher_list[i].nid != NID_undef; i++)
483                 if (gost_cipher_list[i].nid == NID_id_tc26_gost_28147_param_Z)
484                     return &gost_cipher_list[i];
485             return &gost_cipher_list[0];
486         }
487
488         nid = OBJ_txt2nid(params);
489         if (nid == NID_undef) {
490             GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS,
491                     GOST_R_INVALID_CIPHER_PARAM_OID);
492             ERR_add_error_data(3, "Unsupported CRYPT_PARAMS='",
493                 params, "' specified in environment or in config");
494             return NULL;
495         }
496     } else {
497         nid = OBJ_obj2nid(obj);
498     }
499     for (param = gost_cipher_list; param->sblock != NULL && param->nid != nid;
500          param++) ;
501     if (!param->sblock) {
502         GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS, GOST_R_INVALID_CIPHER_PARAMS);
503         return NULL;
504     }
505     return param;
506 }
507
508 /* Sets cipher param from paramset NID. */
509 static int gost_cipher_set_param(struct ossl_gost_cipher_ctx *c, int nid)
510 {
511     const struct gost_cipher_info *param;
512     param = get_encryption_params((nid == NID_undef ? NULL : OBJ_nid2obj(nid)));
513     if (!param)
514         return 0;
515
516     c->paramNID = param->nid;
517     c->key_meshing = param->key_meshing;
518     c->count = 0;
519     gost_init(&(c->cctx), param->sblock);
520     return 1;
521 }
522
523 /* Initializes EVP_CIPHER_CTX by paramset NID */
524 static int gost_cipher_init_param(EVP_CIPHER_CTX *ctx,
525                                   const unsigned char *key,
526                                   const unsigned char *iv, int enc,
527                                   int paramNID, int mode)
528 {
529     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
530     if (EVP_CIPHER_CTX_get_app_data(ctx) == NULL) {
531         if (!gost_cipher_set_param(c, paramNID))
532             return 0;
533         EVP_CIPHER_CTX_set_app_data(ctx, EVP_CIPHER_CTX_get_cipher_data(ctx));
534     }
535     if (key)
536         gost_key(&(c->cctx), key);
537     if (iv) {
538         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
539                EVP_CIPHER_CTX_iv_length(ctx));
540     }
541     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
542            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
543     return 1;
544 }
545
546 static int gost_cipher_init_cnt(EVP_CIPHER_CTX *ctx,
547                                 const unsigned char *key,
548                                 const unsigned char *iv,
549                                 gost_subst_block * block)
550 {
551     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
552     gost_init(&(c->cctx), block);
553     c->key_meshing = 1;
554     c->count = 0;
555     if (key)
556         gost_key(&(c->cctx), key);
557     if (iv) {
558         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
559                EVP_CIPHER_CTX_iv_length(ctx));
560     }
561     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
562            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
563     return 1;
564 }
565
566 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
567                                 const unsigned char *iv, int enc)
568 {
569     return gost_cipher_init_cnt(ctx, key, iv, &Gost28147_CryptoProParamSetA);
570 }
571
572 static int gost_cipher_init_cp_12(EVP_CIPHER_CTX *ctx,
573                                   const unsigned char *key,
574                                   const unsigned char *iv, int enc)
575 {
576     return gost_cipher_init_cnt(ctx, key, iv, &Gost28147_TC26ParamSetZ);
577 }
578
579 /* Initializes EVP_CIPHER_CTX with default values */
580 int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
581                      const unsigned char *iv, int enc)
582 {
583     return gost_cipher_init_param(ctx, key, iv, enc, NID_undef,
584                                   EVP_CIPH_CFB_MODE);
585 }
586
587 /* Initializes EVP_CIPHER_CTX with default values */
588 int gost_cipher_init_cbc(EVP_CIPHER_CTX *ctx, const unsigned char *key,
589                          const unsigned char *iv, int enc)
590 {
591     return gost_cipher_init_param(ctx, key, iv, enc, NID_undef,
592                                   EVP_CIPH_CBC_MODE);
593 }
594
595 /* Initializes EVP_CIPHER_CTX with default values */
596 int magma_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
597                       const unsigned char *iv, int enc)
598 {
599     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
600     /* FIXME this is just initializtion check */
601     if (EVP_CIPHER_CTX_get_app_data(ctx) == NULL) {
602         if (!gost_cipher_set_param(c, NID_id_tc26_gost_28147_param_Z))
603             return 0;
604         EVP_CIPHER_CTX_set_app_data(ctx, EVP_CIPHER_CTX_get_cipher_data(ctx));
605
606         if (enc) {
607             if (init_zero_kdf_seed(c->kdf_seed) == 0)
608                 return -1;
609         }
610     }
611
612     if (key)
613         magma_key(&(c->cctx), key);
614     if (iv) {
615         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv,
616                EVP_CIPHER_CTX_iv_length(ctx));
617     }
618     memcpy(EVP_CIPHER_CTX_iv_noconst(ctx),
619            EVP_CIPHER_CTX_original_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx));
620
621     if (EVP_CIPHER_CTX_nid(ctx) == NID_magma_ctr_acpkm
622      || EVP_CIPHER_CTX_nid(ctx) == NID_magma_ctr_acpkm_omac) {
623        c->key_meshing = 1024;
624     } else {
625        c->key_meshing = 0;
626     }
627
628     return 1;
629 }
630
631 /* Initializes EVP_CIPHER_CTX with default values */
632 int magma_cipher_init_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, const unsigned char *key,
633                       const unsigned char *iv, int enc)
634 {
635         if (key) {
636     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
637                 unsigned char cipher_key[32];
638                 c->omac_ctx = EVP_MD_CTX_new();
639
640                 if (c->omac_ctx == NULL) {
641                     GOSTerr(GOST_F_MAGMA_CIPHER_INIT_CTR_ACPKM_OMAC, ERR_R_MALLOC_FAILURE);
642                                 return 0;
643                 }
644
645                 if (gost2015_acpkm_omac_init(NID_magma_mac, enc, key,
646                                  c->omac_ctx, cipher_key, c->kdf_seed) != 1) {
647                     EVP_MD_CTX_free(c->omac_ctx);
648                                 c->omac_ctx = NULL;
649                     return 0;
650                 }
651
652                 return magma_cipher_init(ctx, cipher_key, iv, enc);
653         }
654
655         return magma_cipher_init(ctx, key, iv, enc);
656 }
657
658 /*
659  * Wrapper around gostcrypt function from gost89.c which perform key meshing
660  * when nesseccary
661  */
662 static void gost_crypt_mesh(void *ctx, unsigned char *iv, unsigned char *buf)
663 {
664     struct ossl_gost_cipher_ctx *c = ctx;
665     assert(c->count % 8 == 0 && c->count <= 1024);
666     if (c->key_meshing && c->count == 1024) {
667         cryptopro_key_meshing(&(c->cctx), iv);
668     }
669     gostcrypt(&(c->cctx), iv, buf);
670     c->count = c->count % 1024 + 8;
671 }
672
673 static void gost_cnt_next(void *ctx, unsigned char *iv, unsigned char *buf)
674 {
675     struct ossl_gost_cipher_ctx *c = ctx;
676     word32 g, go;
677     unsigned char buf1[8];
678     assert(c->count % 8 == 0 && c->count <= 1024);
679     if (c->key_meshing && c->count == 1024) {
680         cryptopro_key_meshing(&(c->cctx), iv);
681     }
682     if (c->count == 0) {
683         gostcrypt(&(c->cctx), iv, buf1);
684     } else {
685         memcpy(buf1, iv, 8);
686     }
687     g = buf1[0] | (buf1[1] << 8) | (buf1[2] << 16) | ((word32) buf1[3] << 24);
688     g += 0x01010101;
689     buf1[0] = (unsigned char)(g & 0xff);
690     buf1[1] = (unsigned char)((g >> 8) & 0xff);
691     buf1[2] = (unsigned char)((g >> 16) & 0xff);
692     buf1[3] = (unsigned char)((g >> 24) & 0xff);
693     g = buf1[4] | (buf1[5] << 8) | (buf1[6] << 16) | ((word32) buf1[7] << 24);
694     go = g;
695     g += 0x01010104;
696     if (go > g)                 /* overflow */
697         g++;
698     buf1[4] = (unsigned char)(g & 0xff);
699     buf1[5] = (unsigned char)((g >> 8) & 0xff);
700     buf1[6] = (unsigned char)((g >> 16) & 0xff);
701     buf1[7] = (unsigned char)((g >> 24) & 0xff);
702     memcpy(iv, buf1, 8);
703     gostcrypt(&(c->cctx), buf1, buf);
704     c->count = c->count % 1024 + 8;
705 }
706
707 /* GOST encryption in CBC mode */
708 int gost_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
709                        const unsigned char *in, size_t inl)
710 {
711     unsigned char b[8];
712     const unsigned char *in_ptr = in;
713     unsigned char *out_ptr = out;
714     int i;
715     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
716     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
717     if (EVP_CIPHER_CTX_encrypting(ctx)) {
718         while (inl > 0) {
719
720             for (i = 0; i < 8; i++) {
721                 b[i] = iv[i] ^ in_ptr[i];
722             }
723             gostcrypt(&(c->cctx), b, out_ptr);
724             memcpy(iv, out_ptr, 8);
725             out_ptr += 8;
726             in_ptr += 8;
727             inl -= 8;
728         }
729     } else {
730         while (inl > 0) {
731             gostdecrypt(&(c->cctx), in_ptr, b);
732             for (i = 0; i < 8; i++) {
733                 out_ptr[i] = iv[i] ^ b[i];
734             }
735             memcpy(iv, in_ptr, 8);
736             out_ptr += 8;
737             in_ptr += 8;
738             inl -= 8;
739         }
740     }
741     return 1;
742 }
743
744 /* MAGMA encryption in CBC mode */
745 int magma_cipher_do_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
746                         const unsigned char *in, size_t inl)
747 {
748     unsigned char b[8];
749     unsigned char d[8];
750     const unsigned char *in_ptr = in;
751     unsigned char *out_ptr = out;
752     int i;
753     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
754     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
755     if (EVP_CIPHER_CTX_encrypting(ctx)) {
756         while (inl > 0) {
757
758             for (i = 0; i < 8; i++) {
759                 b[7 - i] = iv[i] ^ in_ptr[i];
760             }
761             gostcrypt(&(c->cctx), b, d);
762
763             for (i = 0; i < 8; i++) {
764                 out_ptr[7 - i] = d[i];
765             }
766             memcpy(iv, out_ptr, 8);
767             out_ptr += 8;
768             in_ptr += 8;
769             inl -= 8;
770         }
771     } else {
772         while (inl > 0) {
773             for (i = 0; i < 8; i++) {
774                 d[7 - i] = in_ptr[i];
775             }
776             gostdecrypt(&(c->cctx), d, b);
777             memcpy(d, in_ptr, 8);
778             for (i = 0; i < 8; i++) {
779                 out_ptr[i] = iv[i] ^ b[7 - i];
780             }
781             memcpy(iv, d, 8);
782             out_ptr += 8;
783             in_ptr += 8;
784             inl -= 8;
785         }
786     }
787     return 1;
788 }
789
790 /* increment counter (64-bit int) by 1 */
791 static void ctr64_inc(unsigned char *counter)
792 {
793     inc_counter(counter, 8);
794 }
795
796 /* MAGMA encryption in CTR mode */
797 static int magma_cipher_do_ctr(EVP_CIPHER_CTX *ctx, unsigned char *out,
798                                const unsigned char *in, size_t inl)
799 {
800     const unsigned char *in_ptr = in;
801     unsigned char *out_ptr = out;
802     size_t i = 0;
803     size_t j;
804     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
805     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
806     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
807     unsigned char b[8];
808 /* Process partial blocks */
809     if (EVP_CIPHER_CTX_num(ctx)) {
810         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
811              j++, i++, in_ptr++, out_ptr++) {
812             *out_ptr = buf[7 - j] ^ (*in_ptr);
813         }
814         if (j == 8) {
815             EVP_CIPHER_CTX_set_num(ctx, 0);
816         } else {
817             EVP_CIPHER_CTX_set_num(ctx, j);
818             return inl;
819         }
820     }
821
822 /* Process full blocks */
823     for (; i + 8 <= inl; i += 8, in_ptr += 8, out_ptr += 8) {
824         for (j = 0; j < 8; j++) {
825             b[7 - j] = iv[j];
826         }
827         gostcrypt(&(c->cctx), b, buf);
828         for (j = 0; j < 8; j++) {
829             out_ptr[j] = buf[7 - j] ^ in_ptr[j];
830         }
831         ctr64_inc(iv);
832         c->count += 8;
833         if (c->key_meshing && (c->count % c->key_meshing == 0))
834             acpkm_magma_key_meshing(&(c->cctx));
835     }
836
837 /* Process the rest of plaintext */
838     if (i < inl) {
839         for (j = 0; j < 8; j++) {
840             b[7 - j] = iv[j];
841         }
842         gostcrypt(&(c->cctx), b, buf);
843
844         for (j = 0; i < inl; j++, i++) {
845             out_ptr[j] = buf[7 - j] ^ in_ptr[j];
846         }
847
848         ctr64_inc(iv);
849         c->count += 8;
850         if (c->key_meshing && (c->count % c->key_meshing == 0))
851             acpkm_magma_key_meshing(&(c->cctx));
852
853         EVP_CIPHER_CTX_set_num(ctx, j);
854     } else {
855         EVP_CIPHER_CTX_set_num(ctx, 0);
856     }
857
858     return inl;
859 }
860
861 /* MAGMA encryption in CTR mode */
862 static int magma_cipher_do_ctr_acpkm_omac(EVP_CIPHER_CTX *ctx, unsigned char *out,
863                                const unsigned char *in, size_t inl)
864 {
865   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
866
867         if (in == NULL && inl == 0) /* Final call */
868                 return gost2015_final_call(ctx, c->omac_ctx, MAGMA_MAC_MAX_SIZE, c->tag, magma_cipher_do_ctr);
869
870         /* As in and out can be the same pointer, process unencrypted here */
871         if (EVP_CIPHER_CTX_encrypting(ctx))
872                 EVP_DigestSignUpdate(c->omac_ctx, in, inl);
873
874   if (magma_cipher_do_ctr(ctx, out, in, inl) != inl)
875       return -1;
876
877         /* As in and out can be the same pointer, process decrypted here */
878         if (!EVP_CIPHER_CTX_encrypting(ctx))
879                 EVP_DigestSignUpdate(c->omac_ctx, out, inl);
880
881         return inl;
882 }
883 /* GOST encryption in CFB mode */
884 int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
885                        const unsigned char *in, size_t inl)
886 {
887     const unsigned char *in_ptr = in;
888     unsigned char *out_ptr = out;
889     size_t i = 0;
890     size_t j = 0;
891     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
892     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
893 /* process partial block if any */
894     if (EVP_CIPHER_CTX_num(ctx)) {
895         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
896              j++, i++, in_ptr++, out_ptr++) {
897             if (!EVP_CIPHER_CTX_encrypting(ctx))
898                 buf[j + 8] = *in_ptr;
899             *out_ptr = buf[j] ^ (*in_ptr);
900             if (EVP_CIPHER_CTX_encrypting(ctx))
901                 buf[j + 8] = *out_ptr;
902         }
903         if (j == 8) {
904             memcpy(iv, buf + 8, 8);
905             EVP_CIPHER_CTX_set_num(ctx, 0);
906         } else {
907             EVP_CIPHER_CTX_set_num(ctx, j);
908             return 1;
909         }
910     }
911
912     for (; i + 8 < inl; i += 8, in_ptr += 8, out_ptr += 8) {
913         /*
914          * block cipher current iv
915          */
916         gost_crypt_mesh(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
917         /*
918          * xor next block of input text with it and output it
919          */
920         /*
921          * output this block
922          */
923         if (!EVP_CIPHER_CTX_encrypting(ctx))
924             memcpy(iv, in_ptr, 8);
925         for (j = 0; j < 8; j++) {
926             out_ptr[j] = buf[j] ^ in_ptr[j];
927         }
928         /* Encrypt */
929         /* Next iv is next block of cipher text */
930         if (EVP_CIPHER_CTX_encrypting(ctx))
931             memcpy(iv, out_ptr, 8);
932     }
933 /* Process rest of buffer */
934     if (i < inl) {
935         gost_crypt_mesh(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
936         if (!EVP_CIPHER_CTX_encrypting(ctx))
937             memcpy(buf + 8, in_ptr, inl - i);
938         for (j = 0; i < inl; j++, i++) {
939             out_ptr[j] = buf[j] ^ in_ptr[j];
940         }
941         EVP_CIPHER_CTX_set_num(ctx, j);
942         if (EVP_CIPHER_CTX_encrypting(ctx))
943             memcpy(buf + 8, out_ptr, j);
944     } else {
945         EVP_CIPHER_CTX_set_num(ctx, 0);
946     }
947     return 1;
948 }
949
950 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
951                               const unsigned char *in, size_t inl)
952 {
953     const unsigned char *in_ptr = in;
954     unsigned char *out_ptr = out;
955     size_t i = 0;
956     size_t j;
957     unsigned char *buf = EVP_CIPHER_CTX_buf_noconst(ctx);
958     unsigned char *iv = EVP_CIPHER_CTX_iv_noconst(ctx);
959 /* process partial block if any */
960     if (EVP_CIPHER_CTX_num(ctx)) {
961         for (j = EVP_CIPHER_CTX_num(ctx), i = 0; j < 8 && i < inl;
962              j++, i++, in_ptr++, out_ptr++) {
963             *out_ptr = buf[j] ^ (*in_ptr);
964         }
965         if (j == 8) {
966             EVP_CIPHER_CTX_set_num(ctx, 0);
967         } else {
968             EVP_CIPHER_CTX_set_num(ctx, j);
969             return 1;
970         }
971     }
972
973     for (; i + 8 < inl; i += 8, in_ptr += 8, out_ptr += 8) {
974         /*
975          * block cipher current iv
976          */
977         /* Encrypt */
978         gost_cnt_next(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
979         /*
980          * xor next block of input text with it and output it
981          */
982         /*
983          * output this block
984          */
985         for (j = 0; j < 8; j++) {
986             out_ptr[j] = buf[j] ^ in_ptr[j];
987         }
988     }
989 /* Process rest of buffer */
990     if (i < inl) {
991         gost_cnt_next(EVP_CIPHER_CTX_get_cipher_data(ctx), iv, buf);
992         for (j = 0; i < inl; j++, i++) {
993             out_ptr[j] = buf[j] ^ in_ptr[j];
994         }
995         EVP_CIPHER_CTX_set_num(ctx, j);
996     } else {
997         EVP_CIPHER_CTX_set_num(ctx, 0);
998     }
999     return 1;
1000 }
1001
1002 /* Cleaning up of EVP_CIPHER_CTX */
1003 int gost_cipher_cleanup(EVP_CIPHER_CTX *ctx)
1004 {
1005     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1006                 EVP_MD_CTX_free(c->omac_ctx);
1007     gost_destroy(&(c->cctx));
1008     EVP_CIPHER_CTX_set_app_data(ctx, NULL);
1009     return 1;
1010 }
1011
1012 /* Control function for gost cipher */
1013 int gost_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
1014 {
1015     switch (type) {
1016     case EVP_CTRL_RAND_KEY:
1017         {
1018             if (RAND_priv_bytes
1019                 ((unsigned char *)ptr, EVP_CIPHER_CTX_key_length(ctx)) <= 0) {
1020                 GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_RNG_ERROR);
1021                 return -1;
1022             }
1023             break;
1024         }
1025     case EVP_CTRL_PBE_PRF_NID:
1026         if (ptr) {
1027             const char *params = get_gost_engine_param(GOST_PARAM_PBE_PARAMS);
1028             int nid = NID_id_tc26_hmac_gost_3411_2012_512;
1029
1030             if (params) {
1031                 if (!strcmp("md_gost12_256", params))
1032                     nid = NID_id_tc26_hmac_gost_3411_2012_256;
1033                 else if (!strcmp("md_gost12_512", params))
1034                     nid = NID_id_tc26_hmac_gost_3411_2012_512;
1035                 else if (!strcmp("md_gost94", params))
1036                     nid = NID_id_HMACGostR3411_94;
1037             }
1038             *((int *)ptr) = nid;
1039             return 1;
1040         } else {
1041             return 0;
1042         }
1043
1044     case EVP_CTRL_SET_SBOX:
1045         if (ptr) {
1046             struct ossl_gost_cipher_ctx *c =
1047                 EVP_CIPHER_CTX_get_cipher_data(ctx);
1048             int nid;
1049             int cur_meshing;
1050             int ret;
1051
1052             if (c == NULL) {
1053                 return -1;
1054             }
1055
1056             if (c->count != 0) {
1057                 return -1;
1058             }
1059
1060             nid = OBJ_txt2nid(ptr);
1061             if (nid == NID_undef) {
1062                 return 0;
1063             }
1064
1065             cur_meshing = c->key_meshing;
1066             ret = gost_cipher_set_param(c, nid);
1067             c->key_meshing = cur_meshing;
1068             return ret;
1069         } else {
1070             return 0;
1071         }
1072     case EVP_CTRL_KEY_MESH:
1073         {
1074             struct ossl_gost_cipher_ctx *c =
1075                 EVP_CIPHER_CTX_get_cipher_data(ctx);
1076
1077             if (c == NULL) {
1078                 return -1;
1079             }
1080
1081             if (c->count != 0) {
1082                 return -1;
1083             }
1084
1085             c->key_meshing = arg;
1086             return 1;
1087         }
1088     default:
1089         GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
1090         return -1;
1091     }
1092     return 1;
1093 }
1094
1095 /* Control function for gost cipher */
1096 int magma_cipher_ctl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
1097 {
1098     switch (type) {
1099     case EVP_CTRL_RAND_KEY:
1100             if (RAND_priv_bytes
1101                 ((unsigned char *)ptr, EVP_CIPHER_CTX_key_length(ctx)) <= 0) {
1102                 GOSTerr(GOST_F_GOST_CIPHER_CTL, GOST_R_RNG_ERROR);
1103                 return -1;
1104             }
1105             break;
1106     case EVP_CTRL_KEY_MESH:
1107         {
1108             struct ossl_gost_cipher_ctx *c =
1109                 EVP_CIPHER_CTX_get_cipher_data(ctx);
1110
1111             if (c == NULL) {
1112                 return -1;
1113             }
1114
1115             if (c->count != 0) {
1116                 return -1;
1117             }
1118
1119             c->key_meshing = arg;
1120             return 1;
1121         }
1122     default:
1123         GOSTerr(GOST_F_MAGMA_CIPHER_CTL, GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
1124         return -1;
1125     }
1126     return 1;
1127 }
1128
1129 static int magma_cipher_ctl_acpkm_omac(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
1130 {
1131         switch (type)
1132         {
1133                 case EVP_CTRL_PROCESS_UNPROTECTED:
1134                 {
1135                         struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1136                         STACK_OF(X509_ATTRIBUTE) *x = ptr;
1137       return gost2015_process_unprotected_attributes(x, arg, MAGMA_MAC_MAX_SIZE, c->tag);
1138                 }
1139     case EVP_CTRL_COPY: {
1140                         EVP_CIPHER_CTX *out = ptr;
1141       struct ossl_gost_cipher_ctx *in_cctx  = EVP_CIPHER_CTX_get_cipher_data(ctx);
1142       struct ossl_gost_cipher_ctx *out_cctx = EVP_CIPHER_CTX_get_cipher_data(out);
1143
1144                         if (in_cctx->omac_ctx == out_cctx->omac_ctx) {
1145                                 out_cctx->omac_ctx = EVP_MD_CTX_new();
1146                                 if (out_cctx->omac_ctx == NULL) {
1147                                         GOSTerr(GOST_F_MAGMA_CIPHER_CTL_ACPKM_OMAC, ERR_R_MALLOC_FAILURE);
1148                                         return -1;
1149                                 }
1150                         }
1151                         return EVP_MD_CTX_copy(out_cctx->omac_ctx, in_cctx->omac_ctx);
1152                 }
1153                 default:
1154                         return magma_cipher_ctl(ctx, type, arg, ptr);
1155                         break;
1156         }
1157 }
1158
1159 /* Set cipher parameters from ASN1 structure */
1160 int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1161 {
1162     int len = 0;
1163     unsigned char *buf = NULL;
1164     unsigned char *p = NULL;
1165     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1166     GOST_CIPHER_PARAMS *gcp = GOST_CIPHER_PARAMS_new();
1167     ASN1_OCTET_STRING *os = NULL;
1168     if (!gcp) {
1169         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1170         return 0;
1171     }
1172     if (!ASN1_OCTET_STRING_set
1173         (gcp->iv, EVP_CIPHER_CTX_iv(ctx), EVP_CIPHER_CTX_iv_length(ctx))) {
1174         GOST_CIPHER_PARAMS_free(gcp);
1175         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1176         return 0;
1177     }
1178     ASN1_OBJECT_free(gcp->enc_param_set);
1179     gcp->enc_param_set = OBJ_nid2obj(c->paramNID);
1180
1181     len = i2d_GOST_CIPHER_PARAMS(gcp, NULL);
1182     p = buf = OPENSSL_malloc(len);
1183     if (!buf) {
1184         GOST_CIPHER_PARAMS_free(gcp);
1185         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1186         return 0;
1187     }
1188     i2d_GOST_CIPHER_PARAMS(gcp, &p);
1189     GOST_CIPHER_PARAMS_free(gcp);
1190
1191     os = ASN1_OCTET_STRING_new();
1192
1193     if (!os || !ASN1_OCTET_STRING_set(os, buf, len)) {
1194         OPENSSL_free(buf);
1195         GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, ERR_R_MALLOC_FAILURE);
1196         return 0;
1197     }
1198     OPENSSL_free(buf);
1199
1200     ASN1_TYPE_set(params, V_ASN1_SEQUENCE, os);
1201     return 1;
1202 }
1203
1204 /* Store parameters into ASN1 structure */
1205 int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1206 {
1207     int len;
1208     GOST_CIPHER_PARAMS *gcp = NULL;
1209     unsigned char *p;
1210     struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1211     int nid;
1212
1213     if (ASN1_TYPE_get(params) != V_ASN1_SEQUENCE) {
1214         return -1;
1215     }
1216
1217     p = params->value.sequence->data;
1218
1219     gcp = d2i_GOST_CIPHER_PARAMS(NULL, (const unsigned char **)&p,
1220                                  params->value.sequence->length);
1221
1222     len = gcp->iv->length;
1223     if (len != EVP_CIPHER_CTX_iv_length(ctx)) {
1224         GOST_CIPHER_PARAMS_free(gcp);
1225         GOSTerr(GOST_F_GOST89_GET_ASN1_PARAMETERS, GOST_R_INVALID_IV_LENGTH);
1226         return -1;
1227     }
1228
1229     nid = OBJ_obj2nid(gcp->enc_param_set);
1230     if (nid == NID_undef) {
1231         GOST_CIPHER_PARAMS_free(gcp);
1232         GOSTerr(GOST_F_GOST89_GET_ASN1_PARAMETERS,
1233                 GOST_R_INVALID_CIPHER_PARAM_OID);
1234         return -1;
1235     }
1236
1237     if (!gost_cipher_set_param(c, nid)) {
1238         GOST_CIPHER_PARAMS_free(gcp);
1239         return -1;
1240     }
1241     /*XXX missing non-const accessor */
1242     memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), gcp->iv->data,
1243            EVP_CIPHER_CTX_iv_length(ctx));
1244
1245     GOST_CIPHER_PARAMS_free(gcp);
1246
1247     return 1;
1248 }
1249
1250 #define MAGMA_UKM_LEN 12
1251 static int magma_set_asn1_parameters (EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1252 {
1253   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1254         c->key_meshing = 8192;
1255
1256         return gost2015_set_asn1_params(params, EVP_CIPHER_CTX_original_iv(ctx), 4,
1257                 c->kdf_seed);
1258 }
1259
1260 static int magma_get_asn1_parameters(EVP_CIPHER_CTX *ctx, ASN1_TYPE *params)
1261 {
1262   struct ossl_gost_cipher_ctx *c = EVP_CIPHER_CTX_get_cipher_data(ctx);
1263         unsigned char iv[16];
1264
1265         c->key_meshing = 8192;
1266
1267         if (gost2015_get_asn1_params(params, MAGMA_UKM_LEN, iv, 4, c->kdf_seed) < 0)
1268             return -1;
1269
1270         memcpy(EVP_CIPHER_CTX_iv_noconst(ctx), iv, sizeof(iv));
1271         memcpy((unsigned char *)EVP_CIPHER_CTX_original_iv(ctx), iv, sizeof(iv));
1272         /* Key meshing 8 kb*/
1273         c->key_meshing = 8192;
1274
1275         return 1;
1276 }
1277
1278 static int gost_imit_init(EVP_MD_CTX *ctx, gost_subst_block * block)
1279 {
1280     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1281     memset(c->buffer, 0, sizeof(c->buffer));
1282     memset(c->partial_block, 0, sizeof(c->partial_block));
1283     c->count = 0;
1284     c->bytes_left = 0;
1285     c->key_meshing = 1;
1286     c->dgst_size = 4;
1287     gost_init(&(c->cctx), block);
1288     return 1;
1289 }
1290
1291 static int gost_imit_init_cpa(EVP_MD_CTX *ctx)
1292 {
1293     return gost_imit_init(ctx, &Gost28147_CryptoProParamSetA);
1294 }
1295
1296 static int gost_imit_init_cp_12(EVP_MD_CTX *ctx)
1297 {
1298     return gost_imit_init(ctx, &Gost28147_TC26ParamSetZ);
1299 }
1300
1301 static void mac_block_mesh(struct ossl_gost_imit_ctx *c,
1302                            const unsigned char *data)
1303 {
1304     /*
1305      * We are using NULL for iv because CryptoPro doesn't interpret
1306      * internal state of MAC algorithm as iv during keymeshing (but does
1307      * initialize internal state from iv in key transport
1308      */
1309     assert(c->count % 8 == 0 && c->count <= 1024);
1310     if (c->key_meshing && c->count == 1024) {
1311         cryptopro_key_meshing(&(c->cctx), NULL);
1312     }
1313     mac_block(&(c->cctx), c->buffer, data);
1314     c->count = c->count % 1024 + 8;
1315 }
1316
1317 int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count)
1318 {
1319     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1320     const unsigned char *p = data;
1321     size_t bytes = count;
1322     if (!(c->key_set)) {
1323         GOSTerr(GOST_F_GOST_IMIT_UPDATE, GOST_R_MAC_KEY_NOT_SET);
1324         return 0;
1325     }
1326     if (c->bytes_left) {
1327         size_t i;
1328         for (i = c->bytes_left; i < 8 && bytes > 0; bytes--, i++, p++) {
1329             c->partial_block[i] = *p;
1330         }
1331         if (i == 8) {
1332             mac_block_mesh(c, c->partial_block);
1333         } else {
1334             c->bytes_left = i;
1335             return 1;
1336         }
1337     }
1338     while (bytes > 8) {
1339         mac_block_mesh(c, p);
1340         p += 8;
1341         bytes -= 8;
1342     }
1343     if (bytes > 0) {
1344         memcpy(c->partial_block, p, bytes);
1345     }
1346     c->bytes_left = bytes;
1347     return 1;
1348 }
1349
1350 int gost_imit_final(EVP_MD_CTX *ctx, unsigned char *md)
1351 {
1352     struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1353     if (!c->key_set) {
1354         GOSTerr(GOST_F_GOST_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET);
1355         return 0;
1356     }
1357     if (c->count == 0 && c->bytes_left) {
1358         unsigned char buffer[8];
1359         memset(buffer, 0, 8);
1360         gost_imit_update(ctx, buffer, 8);
1361     }
1362     if (c->bytes_left) {
1363         int i;
1364         for (i = c->bytes_left; i < 8; i++) {
1365             c->partial_block[i] = 0;
1366         }
1367         mac_block_mesh(c, c->partial_block);
1368     }
1369     get_mac(c->buffer, 8 * c->dgst_size, md);
1370     return 1;
1371 }
1372
1373 int gost_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr)
1374 {
1375     switch (type) {
1376     case EVP_MD_CTRL_KEY_LEN:
1377         *((unsigned int *)(ptr)) = 32;
1378         return 1;
1379     case EVP_MD_CTRL_SET_KEY:
1380         {
1381             struct ossl_gost_imit_ctx *gost_imit_ctx = EVP_MD_CTX_md_data(ctx);
1382
1383             if (EVP_MD_meth_get_init(EVP_MD_CTX_md(ctx)) (ctx) <= 0) {
1384                 GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_MAC_KEY_NOT_SET);
1385                 return 0;
1386             }
1387             EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_NO_INIT);
1388
1389             if (arg == 0) {
1390                 struct gost_mac_key *key = (struct gost_mac_key *)ptr;
1391                 if (key->mac_param_nid != NID_undef) {
1392                     const struct gost_cipher_info *param =
1393                         get_encryption_params(OBJ_nid2obj(key->mac_param_nid));
1394                     if (param == NULL) {
1395                         GOSTerr(GOST_F_GOST_IMIT_CTRL,
1396                                 GOST_R_INVALID_MAC_PARAMS);
1397                         return 0;
1398                     }
1399                     gost_init(&(gost_imit_ctx->cctx), param->sblock);
1400                 }
1401                 gost_key(&(gost_imit_ctx->cctx), key->key);
1402                 gost_imit_ctx->key_set = 1;
1403
1404                 return 1;
1405             } else if (arg == 32) {
1406                 gost_key(&(gost_imit_ctx->cctx), ptr);
1407                 gost_imit_ctx->key_set = 1;
1408                 return 1;
1409             }
1410             GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_SIZE);
1411             return 0;
1412         }
1413     case EVP_MD_CTRL_XOF_LEN:
1414         {
1415             struct ossl_gost_imit_ctx *c = EVP_MD_CTX_md_data(ctx);
1416             if (arg < 1 || arg > 8) {
1417                 GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_SIZE);
1418                 return 0;
1419             }
1420             c->dgst_size = arg;
1421             return 1;
1422         }
1423
1424     default:
1425         return 0;
1426     }
1427 }
1428
1429 int gost_imit_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
1430 {
1431     if (EVP_MD_CTX_md_data(to) && EVP_MD_CTX_md_data(from)) {
1432         memcpy(EVP_MD_CTX_md_data(to), EVP_MD_CTX_md_data(from),
1433                sizeof(struct ossl_gost_imit_ctx));
1434     }
1435     return 1;
1436 }
1437
1438 /* Clean up imit ctx */
1439 int gost_imit_cleanup(EVP_MD_CTX *ctx)
1440 {
1441     memset(EVP_MD_CTX_md_data(ctx), 0, sizeof(struct ossl_gost_imit_ctx));
1442     return 1;
1443 }