]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_eng.c
9e77e5dc6a605bcc87bab2c9acfc46c47a31994e
[openssl-gost/engine.git] / gost_eng.c
1 /**********************************************************************
2  *                          gost_eng.c                                *
3  *             Copyright (c) 2005-2006 Cryptocom LTD                  *
4  *         This file is distributed under the same license as OpenSSL *
5  *                                                                    *
6  *              Main file of GOST engine                              *
7  *       for OpenSSL                                                  *
8  *          Requires OpenSSL 0.9.9 for compilation                    *
9  **********************************************************************/
10 #include <string.h>
11 #include <openssl/crypto.h>
12 #include <openssl/err.h>
13 #include <openssl/evp.h>
14 #include <openssl/engine.h>
15 #include <openssl/obj_mac.h>
16 #include "e_gost_err.h"
17 #include "gost_lcl.h"
18
19 #include "gost_grasshopper_cipher.h"
20
21 static const char* engine_gost_id = "gost";
22
23 static const char* engine_gost_name =
24         "Reference implementation of GOST engine";
25
26 /* Symmetric cipher and digest function registrar */
27
28 static int gost_ciphers(ENGINE* e, const EVP_CIPHER** cipher,
29                         const int** nids, int nid);
30
31 static int gost_digests(ENGINE* e, const EVP_MD** digest,
32                         const int** nids, int ind);
33
34 static int gost_pkey_meths(ENGINE* e, EVP_PKEY_METHOD** pmeth,
35                            const int** nids, int nid);
36
37 static int gost_pkey_asn1_meths(ENGINE* e, EVP_PKEY_ASN1_METHOD** ameth,
38                                 const int** nids, int nid);
39
40 static int gost_cipher_nids[] = {
41         NID_id_Gost28147_89,
42         NID_gost89_cnt,
43         NID_gost89_cnt_12,
44         NID_gost89_cbc,
45         NID_grasshopper_ecb,
46         NID_grasshopper_cbc,
47         NID_grasshopper_cfb,
48         NID_grasshopper_ofb,
49         NID_grasshopper_ctr,
50         0
51 };
52
53 static int gost_digest_nids(const int** nids) {
54     static int digest_nids[6] = {0, 0, 0, 0, 0, 0};
55     static int pos = 0;
56     static int init = 0;
57
58     if (!init) {
59         const EVP_MD* md;
60         if ((md = digest_gost()) != NULL)
61             digest_nids[pos++] = EVP_MD_type(md);
62         if ((md = imit_gost_cpa()) != NULL)
63             digest_nids[pos++] = EVP_MD_type(md);
64         if ((md = digest_gost2012_256()) != NULL)
65             digest_nids[pos++] = EVP_MD_type(md);
66         if ((md = digest_gost2012_512()) != NULL)
67             digest_nids[pos++] = EVP_MD_type(md);
68         if ((md = imit_gost_cp_12()) != NULL)
69             digest_nids[pos++] = EVP_MD_type(md);
70         digest_nids[pos] = 0;
71         init = 1;
72     }
73     *nids = digest_nids;
74     return pos;
75 }
76
77 static int gost_pkey_meth_nids[] = {
78         NID_id_GostR3410_2001,
79         NID_id_Gost28147_89_MAC,
80         NID_id_GostR3410_2012_256,
81         NID_id_GostR3410_2012_512,
82         NID_gost_mac_12,
83         0
84 };
85
86 static EVP_PKEY_METHOD* pmeth_GostR3410_2001 = NULL,
87         * pmeth_GostR3410_2012_256 = NULL,
88         * pmeth_GostR3410_2012_512 = NULL,
89         * pmeth_Gost28147_MAC = NULL, * pmeth_Gost28147_MAC_12 = NULL;
90
91 static EVP_PKEY_ASN1_METHOD* ameth_GostR3410_2001 = NULL,
92         * ameth_GostR3410_2012_256 = NULL,
93         * ameth_GostR3410_2012_512 = NULL,
94         * ameth_Gost28147_MAC = NULL, * ameth_Gost28147_MAC_12 = NULL;
95
96 static int gost_engine_init(ENGINE* e) {
97     return 1;
98 }
99
100 static int gost_engine_finish(ENGINE* e) {
101     return 1;
102 }
103
104 static int gost_engine_destroy(ENGINE* e) {
105     EVP_delete_digest_alias("streebog256");
106     EVP_delete_digest_alias("streebog512");
107     digest_gost_destroy();
108     digest_gost2012_256_destroy();
109     digest_gost2012_512_destroy();
110
111     imit_gost_cpa_destroy();
112     imit_gost_cp_12_destroy();
113
114     cipher_gost_destroy();
115
116     gost_param_free();
117
118     pmeth_GostR3410_2001 = NULL;
119     pmeth_Gost28147_MAC = NULL;
120     pmeth_GostR3410_2012_256 = NULL;
121     pmeth_GostR3410_2012_512 = NULL;
122     pmeth_Gost28147_MAC_12 = NULL;
123
124     ameth_GostR3410_2001 = NULL;
125     ameth_Gost28147_MAC = NULL;
126     ameth_GostR3410_2012_256 = NULL;
127     ameth_GostR3410_2012_512 = NULL;
128     ameth_Gost28147_MAC_12 = NULL;
129
130         ERR_unload_GOST_strings();
131         
132     return 1;
133 }
134
135 static int bind_gost(ENGINE* e, const char* id) {
136     int ret = 0;
137     if (id != NULL && strcmp(id, engine_gost_id) != 0)
138         return 0;
139     if (ameth_GostR3410_2001) {
140         printf("GOST engine already loaded\n");
141         goto end;
142     }
143     if (!ENGINE_set_id(e, engine_gost_id)) {
144         printf("ENGINE_set_id failed\n");
145         goto end;
146     }
147     if (!ENGINE_set_name(e, engine_gost_name)) {
148         printf("ENGINE_set_name failed\n");
149         goto end;
150     }
151     if (!ENGINE_set_digests(e, gost_digests)) {
152         printf("ENGINE_set_digests failed\n");
153         goto end;
154     }
155     if (!ENGINE_set_ciphers(e, gost_ciphers)) {
156         printf("ENGINE_set_ciphers failed\n");
157         goto end;
158     }
159     if (!ENGINE_set_pkey_meths(e, gost_pkey_meths)) {
160         printf("ENGINE_set_pkey_meths failed\n");
161         goto end;
162     }
163     if (!ENGINE_set_pkey_asn1_meths(e, gost_pkey_asn1_meths)) {
164         printf("ENGINE_set_pkey_asn1_meths failed\n");
165         goto end;
166     }
167     /* Control function and commands */
168     if (!ENGINE_set_cmd_defns(e, gost_cmds)) {
169         fprintf(stderr, "ENGINE_set_cmd_defns failed\n");
170         goto end;
171     }
172     if (!ENGINE_set_ctrl_function(e, gost_control_func)) {
173         fprintf(stderr, "ENGINE_set_ctrl_func failed\n");
174         goto end;
175     }
176     if (!ENGINE_set_destroy_function(e, gost_engine_destroy)
177         || !ENGINE_set_init_function(e, gost_engine_init)
178         || !ENGINE_set_finish_function(e, gost_engine_finish)) {
179         goto end;
180     }
181
182     if (!register_ameth_gost
183             (NID_id_GostR3410_2001, &ameth_GostR3410_2001, "GOST2001",
184              "GOST R 34.10-2001"))
185         goto end;
186     if (!register_ameth_gost
187             (NID_id_GostR3410_2012_256, &ameth_GostR3410_2012_256, "GOST2012_256",
188              "GOST R 34.10-2012 with 256 bit key"))
189         goto end;
190     if (!register_ameth_gost
191             (NID_id_GostR3410_2012_512, &ameth_GostR3410_2012_512, "GOST2012_512",
192              "GOST R 34.10-2012 with 512 bit key"))
193         goto end;
194     if (!register_ameth_gost(NID_id_Gost28147_89_MAC, &ameth_Gost28147_MAC,
195                              "GOST-MAC", "GOST 28147-89 MAC"))
196         goto end;
197     if (!register_ameth_gost(NID_gost_mac_12, &ameth_Gost28147_MAC_12,
198                              "GOST-MAC-12",
199                              "GOST 28147-89 MAC with 2012 params"))
200         goto end;
201
202     if (!register_pmeth_gost(NID_id_GostR3410_2001, &pmeth_GostR3410_2001, 0))
203         goto end;
204
205     if (!register_pmeth_gost
206             (NID_id_GostR3410_2012_256, &pmeth_GostR3410_2012_256, 0))
207         goto end;
208     if (!register_pmeth_gost
209             (NID_id_GostR3410_2012_512, &pmeth_GostR3410_2012_512, 0))
210         goto end;
211     if (!register_pmeth_gost
212             (NID_id_Gost28147_89_MAC, &pmeth_Gost28147_MAC, 0))
213         goto end;
214     if (!register_pmeth_gost(NID_gost_mac_12, &pmeth_Gost28147_MAC_12, 0))
215         goto end;
216     if (!ENGINE_register_ciphers(e)
217         || !ENGINE_register_digests(e)
218         || !ENGINE_register_pkey_meths(e)
219         /* These two actually should go in LIST_ADD command */
220         || !EVP_add_cipher(cipher_gost())
221         || !EVP_add_cipher(cipher_gost_cbc())
222         || !EVP_add_cipher(cipher_gost_cpacnt())
223         || !EVP_add_cipher(cipher_gost_cpcnt_12())
224         || !EVP_add_cipher(cipher_gost_grasshopper_ecb())
225         || !EVP_add_cipher(cipher_gost_grasshopper_cbc())
226         || !EVP_add_cipher(cipher_gost_grasshopper_cfb())
227         || !EVP_add_cipher(cipher_gost_grasshopper_ofb())
228         || !EVP_add_cipher(cipher_gost_grasshopper_ctr())
229         || !EVP_add_digest(digest_gost())
230         || !EVP_add_digest(digest_gost2012_512())
231         || !EVP_add_digest(digest_gost2012_256())
232         || !EVP_add_digest(imit_gost_cpa())
233         || !EVP_add_digest(imit_gost_cp_12())
234             ) {
235         goto end;
236     }
237
238     if(!EVP_add_digest_alias(SN_id_GostR3411_2012_256, "streebog256")
239        ||       !EVP_add_digest_alias(SN_id_GostR3411_2012_512, "streebog512")) {
240         goto end;
241     }
242
243     ENGINE_register_all_complete();
244
245     ERR_load_GOST_strings();
246     ret = 1;
247     end:
248     return ret;
249 }
250
251 #ifndef OPENSSL_NO_DYNAMIC_ENGINE
252 IMPLEMENT_DYNAMIC_BIND_FN(bind_gost)
253     IMPLEMENT_DYNAMIC_CHECK_FN()
254 #endif                          /* ndef OPENSSL_NO_DYNAMIC_ENGINE */
255
256 static int gost_digests(ENGINE* e, const EVP_MD** digest,
257                         const int** nids, int nid) {
258     int ok = 1;
259     if (digest == NULL) {
260         return gost_digest_nids(nids);
261     }
262     if (nid == NID_id_GostR3411_94) {
263         *digest = digest_gost();
264     } else if (nid == NID_id_Gost28147_89_MAC) {
265         *digest = imit_gost_cpa();
266     } else if (nid == NID_id_GostR3411_2012_256) {
267         *digest = digest_gost2012_256();
268     } else if (nid == NID_id_GostR3411_2012_512) {
269         *digest = digest_gost2012_512();
270     } else if (nid == NID_gost_mac_12) {
271         *digest = imit_gost_cp_12();
272     } else {
273         ok = 0;
274         *digest = NULL;
275     }
276     return ok;
277 }
278
279 static int gost_ciphers(ENGINE* e, const EVP_CIPHER** cipher,
280                         const int** nids, int nid) {
281     int ok = 1;
282     if (cipher == NULL) {
283         *nids = gost_cipher_nids;
284         return sizeof(gost_cipher_nids) / sizeof(gost_cipher_nids[0]) - 1;
285     }
286
287     if (nid == NID_id_Gost28147_89) {
288         *cipher = cipher_gost();
289     } else if (nid == NID_gost89_cnt) {
290         *cipher = cipher_gost_cpacnt();
291     } else if (nid == NID_gost89_cnt_12) {
292         *cipher = cipher_gost_cpcnt_12();
293     } else if (nid == NID_gost89_cbc) {
294         *cipher = cipher_gost_cbc();
295     } else if (nid == NID_grasshopper_ecb) {
296         *cipher = cipher_gost_grasshopper_ecb();
297     } else if (nid == NID_grasshopper_cbc) {
298         *cipher = cipher_gost_grasshopper_cbc();
299     } else if (nid == NID_grasshopper_cfb) {
300         *cipher = cipher_gost_grasshopper_cfb();
301     } else if (nid == NID_grasshopper_ofb) {
302         *cipher = cipher_gost_grasshopper_ofb();
303     } else if (nid == NID_grasshopper_ctr) {
304         *cipher = cipher_gost_grasshopper_ctr();
305     } else {
306         ok = 0;
307         *cipher = NULL;
308     }
309     return ok;
310 }
311
312 static int gost_pkey_meths(ENGINE* e, EVP_PKEY_METHOD** pmeth,
313                            const int** nids, int nid) {
314     if (pmeth == NULL) {
315         *nids = gost_pkey_meth_nids;
316         return sizeof(gost_pkey_meth_nids) / sizeof(gost_pkey_meth_nids[0]) - 1;
317     }
318
319     switch (nid) {
320         case NID_id_GostR3410_2001:
321             *pmeth = pmeth_GostR3410_2001;
322             return 1;
323         case NID_id_GostR3410_2012_256:
324             *pmeth = pmeth_GostR3410_2012_256;
325             return 1;
326         case NID_id_GostR3410_2012_512:
327             *pmeth = pmeth_GostR3410_2012_512;
328             return 1;
329         case NID_id_Gost28147_89_MAC:
330             *pmeth = pmeth_Gost28147_MAC;
331             return 1;
332         case NID_gost_mac_12:
333             *pmeth = pmeth_Gost28147_MAC_12;
334             return 1;
335
336         default:;
337     }
338
339     *pmeth = NULL;
340     return 0;
341 }
342
343 static int gost_pkey_asn1_meths(ENGINE* e, EVP_PKEY_ASN1_METHOD** ameth,
344                                 const int** nids, int nid) {
345     if (ameth == NULL) {
346         *nids = gost_pkey_meth_nids;
347         return sizeof(gost_pkey_meth_nids) / sizeof(gost_pkey_meth_nids[0]) - 1;
348     }
349
350     switch (nid) {
351         case NID_id_GostR3410_2001:
352             *ameth = ameth_GostR3410_2001;
353             return 1;
354         case NID_id_GostR3410_2012_256:
355             *ameth = ameth_GostR3410_2012_256;
356             return 1;
357         case NID_id_GostR3410_2012_512:
358             *ameth = ameth_GostR3410_2012_512;
359             return 1;
360         case NID_id_Gost28147_89_MAC:
361             *ameth = ameth_Gost28147_MAC;
362             return 1;
363         case NID_gost_mac_12:
364             *ameth = ameth_Gost28147_MAC_12;
365             return 1;
366
367         default:;
368     }
369
370     *ameth = NULL;
371     return 0;
372 }
373
374 #ifdef OPENSSL_NO_DYNAMIC_ENGINE
375
376 static ENGINE* engine_gost(void) {
377     ENGINE* ret = ENGINE_new();
378     if (!ret)
379         return NULL;
380     if (!bind_gost(ret, engine_gost_id)) {
381         ENGINE_free(ret);
382         return NULL;
383     }
384     return ret;
385 }
386
387 void ENGINE_load_gost(void) {
388     ENGINE* toadd;
389     if (pmeth_GostR3410_2001)
390         return;
391     toadd = engine_gost();
392     if (!toadd)
393         return;
394     ENGINE_add(toadd);
395     ENGINE_free(toadd);
396     ERR_clear_error();
397 }
398
399 #endif