ipsec: Support async mode per-SA
[vpp.git] / src / vnet / ipsec / ipsec.c
1 /*
2  * ipsec.c : IPSEC module functions
3  *
4  * Copyright (c) 2015 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <vnet/vnet.h>
19 #include <vnet/api_errno.h>
20 #include <vnet/ip/ip.h>
21 #include <vnet/interface.h>
22 #include <vnet/udp/udp_local.h>
23
24 #include <vnet/ipsec/ipsec.h>
25 #include <vnet/ipsec/esp.h>
26 #include <vnet/ipsec/ah.h>
27
28 ipsec_main_t ipsec_main;
29 esp_async_post_next_t esp_encrypt_async_next;
30 esp_async_post_next_t esp_decrypt_async_next;
31
32 static clib_error_t *
33 ipsec_check_ah_support (ipsec_sa_t * sa)
34 {
35   ipsec_main_t *im = &ipsec_main;
36
37   if (sa->integ_alg == IPSEC_INTEG_ALG_NONE)
38     return clib_error_return (0, "unsupported none integ-alg");
39
40   if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
41     return clib_error_return (0, "No crypto engine support for %U",
42                               format_ipsec_integ_alg, sa->integ_alg);
43
44   return 0;
45 }
46
47 static clib_error_t *
48 ipsec_check_esp_support (ipsec_sa_t * sa)
49 {
50   ipsec_main_t *im = &ipsec_main;
51
52   if (IPSEC_INTEG_ALG_NONE != sa->integ_alg)
53     {
54       if (!vnet_crypto_is_set_handler (im->integ_algs[sa->integ_alg].alg))
55         return clib_error_return (0, "No crypto engine support for %U",
56                                   format_ipsec_integ_alg, sa->integ_alg);
57     }
58   if (IPSEC_CRYPTO_ALG_NONE != sa->crypto_alg)
59     {
60       if (!vnet_crypto_is_set_handler (im->crypto_algs[sa->crypto_alg].alg))
61         return clib_error_return (0, "No crypto engine support for %U",
62                                   format_ipsec_crypto_alg, sa->crypto_alg);
63     }
64
65   return (0);
66 }
67
68 clib_error_t *
69 ipsec_add_del_sa_sess_cb (ipsec_main_t * im, u32 sa_index, u8 is_add)
70 {
71   ipsec_ah_backend_t *ah =
72     pool_elt_at_index (im->ah_backends, im->ah_current_backend);
73   if (ah->add_del_sa_sess_cb)
74     {
75       clib_error_t *err = ah->add_del_sa_sess_cb (sa_index, is_add);
76       if (err)
77         return err;
78     }
79   ipsec_esp_backend_t *esp =
80     pool_elt_at_index (im->esp_backends, im->esp_current_backend);
81   if (esp->add_del_sa_sess_cb)
82     {
83       clib_error_t *err = esp->add_del_sa_sess_cb (sa_index, is_add);
84       if (err)
85         return err;
86     }
87   return 0;
88 }
89
90 clib_error_t *
91 ipsec_check_support_cb (ipsec_main_t * im, ipsec_sa_t * sa)
92 {
93   clib_error_t *error = 0;
94
95   if (PREDICT_FALSE (sa->protocol == IPSEC_PROTOCOL_AH))
96     {
97       ipsec_ah_backend_t *ah =
98         pool_elt_at_index (im->ah_backends, im->ah_current_backend);
99       ASSERT (ah->check_support_cb);
100       error = ah->check_support_cb (sa);
101     }
102   else
103     {
104       ipsec_esp_backend_t *esp =
105         pool_elt_at_index (im->esp_backends, im->esp_current_backend);
106       ASSERT (esp->check_support_cb);
107       error = esp->check_support_cb (sa);
108     }
109   return error;
110 }
111
112
113 static void
114 ipsec_add_node (vlib_main_t * vm, const char *node_name,
115                 const char *prev_node_name, u32 * out_node_index,
116                 u32 * out_next_index)
117 {
118   vlib_node_t *prev_node, *node;
119   prev_node = vlib_get_node_by_name (vm, (u8 *) prev_node_name);
120   ASSERT (prev_node);
121   node = vlib_get_node_by_name (vm, (u8 *) node_name);
122   ASSERT (node);
123   *out_node_index = node->index;
124   *out_next_index = vlib_node_add_next (vm, prev_node->index, node->index);
125 }
126
127 void
128 ipsec_unregister_udp_port (u16 port)
129 {
130   ipsec_main_t *im = &ipsec_main;
131   u32 n_regs;
132   uword *p;
133
134   p = hash_get (im->udp_port_registrations, port);
135
136   ASSERT (p);
137
138   n_regs = p[0];
139
140   if (0 == --n_regs)
141     {
142       udp_unregister_dst_port (vlib_get_main (), port, 1);
143       hash_unset (im->udp_port_registrations, port);
144     }
145   else
146     {
147       hash_unset (im->udp_port_registrations, port);
148       hash_set (im->udp_port_registrations, port, n_regs);
149     }
150 }
151
152 void
153 ipsec_register_udp_port (u16 port)
154 {
155   ipsec_main_t *im = &ipsec_main;
156   u32 n_regs;
157   uword *p;
158
159   p = hash_get (im->udp_port_registrations, port);
160
161   n_regs = (p ? p[0] : 0);
162
163   if (0 == n_regs++)
164     udp_register_dst_port (vlib_get_main (), port,
165                            ipsec4_tun_input_node.index, 1);
166
167   hash_unset (im->udp_port_registrations, port);
168   hash_set (im->udp_port_registrations, port, n_regs);
169 }
170
171 u32
172 ipsec_register_ah_backend (vlib_main_t * vm, ipsec_main_t * im,
173                            const char *name,
174                            const char *ah4_encrypt_node_name,
175                            const char *ah4_decrypt_node_name,
176                            const char *ah6_encrypt_node_name,
177                            const char *ah6_decrypt_node_name,
178                            check_support_cb_t ah_check_support_cb,
179                            add_del_sa_sess_cb_t ah_add_del_sa_sess_cb)
180 {
181   ipsec_ah_backend_t *b;
182   pool_get (im->ah_backends, b);
183   b->name = format (0, "%s%c", name, 0);
184
185   ipsec_add_node (vm, ah4_encrypt_node_name, "ipsec4-output-feature",
186                   &b->ah4_encrypt_node_index, &b->ah4_encrypt_next_index);
187   ipsec_add_node (vm, ah4_decrypt_node_name, "ipsec4-input-feature",
188                   &b->ah4_decrypt_node_index, &b->ah4_decrypt_next_index);
189   ipsec_add_node (vm, ah6_encrypt_node_name, "ipsec6-output-feature",
190                   &b->ah6_encrypt_node_index, &b->ah6_encrypt_next_index);
191   ipsec_add_node (vm, ah6_decrypt_node_name, "ipsec6-input-feature",
192                   &b->ah6_decrypt_node_index, &b->ah6_decrypt_next_index);
193
194   b->check_support_cb = ah_check_support_cb;
195   b->add_del_sa_sess_cb = ah_add_del_sa_sess_cb;
196   return b - im->ah_backends;
197 }
198
199 u32
200 ipsec_register_esp_backend (
201   vlib_main_t *vm, ipsec_main_t *im, const char *name,
202   const char *esp4_encrypt_node_name, const char *esp4_encrypt_node_tun_name,
203   const char *esp4_decrypt_node_name, const char *esp4_decrypt_tun_node_name,
204   const char *esp6_encrypt_node_name, const char *esp6_encrypt_node_tun_name,
205   const char *esp6_decrypt_node_name, const char *esp6_decrypt_tun_node_name,
206   const char *esp_mpls_encrypt_node_tun_name,
207   check_support_cb_t esp_check_support_cb,
208   add_del_sa_sess_cb_t esp_add_del_sa_sess_cb,
209   enable_disable_cb_t enable_disable_cb)
210 {
211   ipsec_esp_backend_t *b;
212
213   pool_get (im->esp_backends, b);
214   b->name = format (0, "%s%c", name, 0);
215
216   ipsec_add_node (vm, esp4_encrypt_node_name, "ipsec4-output-feature",
217                   &b->esp4_encrypt_node_index, &b->esp4_encrypt_next_index);
218   ipsec_add_node (vm, esp4_decrypt_node_name, "ipsec4-input-feature",
219                   &b->esp4_decrypt_node_index, &b->esp4_decrypt_next_index);
220   ipsec_add_node (vm, esp6_encrypt_node_name, "ipsec6-output-feature",
221                   &b->esp6_encrypt_node_index, &b->esp6_encrypt_next_index);
222   ipsec_add_node (vm, esp6_decrypt_node_name, "ipsec6-input-feature",
223                   &b->esp6_decrypt_node_index, &b->esp6_decrypt_next_index);
224   ipsec_add_node (vm, esp4_decrypt_tun_node_name, "ipsec4-tun-input",
225                   &b->esp4_decrypt_tun_node_index,
226                   &b->esp4_decrypt_tun_next_index);
227   ipsec_add_node (vm, esp6_decrypt_tun_node_name, "ipsec6-tun-input",
228                   &b->esp6_decrypt_tun_node_index,
229                   &b->esp6_decrypt_tun_next_index);
230
231   b->esp6_encrypt_tun_node_index =
232     vlib_get_node_by_name (vm, (u8 *) esp6_encrypt_node_tun_name)->index;
233   b->esp_mpls_encrypt_tun_node_index =
234     vlib_get_node_by_name (vm, (u8 *) esp_mpls_encrypt_node_tun_name)->index;
235   b->esp4_encrypt_tun_node_index =
236     vlib_get_node_by_name (vm, (u8 *) esp4_encrypt_node_tun_name)->index;
237
238   b->check_support_cb = esp_check_support_cb;
239   b->add_del_sa_sess_cb = esp_add_del_sa_sess_cb;
240   b->enable_disable_cb = enable_disable_cb;
241
242   return b - im->esp_backends;
243 }
244
245 clib_error_t *
246 ipsec_rsc_in_use (ipsec_main_t * im)
247 {
248   /* return an error is crypto resource are in use */
249   if (pool_elts (ipsec_sa_pool) > 0)
250     return clib_error_return (0, "%d SA entries configured",
251                               pool_elts (ipsec_sa_pool));
252
253   return (NULL);
254 }
255
256 int
257 ipsec_select_ah_backend (ipsec_main_t * im, u32 backend_idx)
258 {
259   if (ipsec_rsc_in_use (im))
260     return VNET_API_ERROR_RSRC_IN_USE;
261
262   if (pool_is_free_index (im->ah_backends, backend_idx))
263     return VNET_API_ERROR_INVALID_VALUE;
264
265   ipsec_ah_backend_t *b = pool_elt_at_index (im->ah_backends, backend_idx);
266   im->ah_current_backend = backend_idx;
267   im->ah4_encrypt_node_index = b->ah4_encrypt_node_index;
268   im->ah4_decrypt_node_index = b->ah4_decrypt_node_index;
269   im->ah4_encrypt_next_index = b->ah4_encrypt_next_index;
270   im->ah4_decrypt_next_index = b->ah4_decrypt_next_index;
271   im->ah6_encrypt_node_index = b->ah6_encrypt_node_index;
272   im->ah6_decrypt_node_index = b->ah6_decrypt_node_index;
273   im->ah6_encrypt_next_index = b->ah6_encrypt_next_index;
274   im->ah6_decrypt_next_index = b->ah6_decrypt_next_index;
275
276   return 0;
277 }
278
279 int
280 ipsec_select_esp_backend (ipsec_main_t * im, u32 backend_idx)
281 {
282   if (ipsec_rsc_in_use (im))
283     return VNET_API_ERROR_RSRC_IN_USE;
284
285   if (pool_is_free_index (im->esp_backends, backend_idx))
286     return VNET_API_ERROR_INVALID_VALUE;
287
288   /* disable current backend */
289   if (im->esp_current_backend != ~0)
290     {
291       ipsec_esp_backend_t *cb = pool_elt_at_index (im->esp_backends,
292                                                    im->esp_current_backend);
293       if (cb->enable_disable_cb)
294         {
295           if ((cb->enable_disable_cb) (0) != 0)
296             return -1;
297         }
298     }
299
300   ipsec_esp_backend_t *b = pool_elt_at_index (im->esp_backends, backend_idx);
301   im->esp_current_backend = backend_idx;
302   im->esp4_encrypt_node_index = b->esp4_encrypt_node_index;
303   im->esp4_decrypt_node_index = b->esp4_decrypt_node_index;
304   im->esp4_encrypt_next_index = b->esp4_encrypt_next_index;
305   im->esp4_decrypt_next_index = b->esp4_decrypt_next_index;
306   im->esp6_encrypt_node_index = b->esp6_encrypt_node_index;
307   im->esp6_decrypt_node_index = b->esp6_decrypt_node_index;
308   im->esp6_encrypt_next_index = b->esp6_encrypt_next_index;
309   im->esp6_decrypt_next_index = b->esp6_decrypt_next_index;
310   im->esp4_decrypt_tun_node_index = b->esp4_decrypt_tun_node_index;
311   im->esp4_decrypt_tun_next_index = b->esp4_decrypt_tun_next_index;
312   im->esp6_decrypt_tun_node_index = b->esp6_decrypt_tun_node_index;
313   im->esp6_decrypt_tun_next_index = b->esp6_decrypt_tun_next_index;
314   im->esp4_encrypt_tun_node_index = b->esp4_encrypt_tun_node_index;
315   im->esp6_encrypt_tun_node_index = b->esp6_encrypt_tun_node_index;
316   im->esp_mpls_encrypt_tun_node_index = b->esp_mpls_encrypt_tun_node_index;
317
318   if (b->enable_disable_cb)
319     {
320       if ((b->enable_disable_cb) (1) != 0)
321         return -1;
322     }
323   return 0;
324 }
325
326 void
327 ipsec_set_async_mode (u32 is_enabled)
328 {
329   ipsec_main_t *im = &ipsec_main;
330   ipsec_sa_t *sa;
331
332   vnet_crypto_request_async_mode (is_enabled);
333
334   im->async_mode = is_enabled;
335
336   /* change SA crypto op data */
337   pool_foreach (sa, ipsec_sa_pool)
338     {
339       sa->crypto_op_data =
340         (is_enabled ? sa->async_op_data.data : sa->sync_op_data.data);
341     }
342 }
343
344 static void
345 crypto_engine_backend_register_post_node (vlib_main_t * vm)
346 {
347   esp_async_post_next_t *eit;
348   esp_async_post_next_t *dit;
349
350   eit = &esp_encrypt_async_next;
351   eit->esp4_post_next =
352     vnet_crypto_register_post_node (vm, "esp4-encrypt-post");
353   eit->esp6_post_next =
354     vnet_crypto_register_post_node (vm, "esp6-encrypt-post");
355   eit->esp4_tun_post_next =
356     vnet_crypto_register_post_node (vm, "esp4-encrypt-tun-post");
357   eit->esp6_tun_post_next =
358     vnet_crypto_register_post_node (vm, "esp6-encrypt-tun-post");
359   eit->esp_mpls_tun_post_next =
360     vnet_crypto_register_post_node (vm, "esp-mpls-encrypt-tun-post");
361
362   dit = &esp_decrypt_async_next;
363   dit->esp4_post_next =
364     vnet_crypto_register_post_node (vm, "esp4-decrypt-post");
365   dit->esp6_post_next =
366     vnet_crypto_register_post_node (vm, "esp6-decrypt-post");
367   dit->esp4_tun_post_next =
368     vnet_crypto_register_post_node (vm, "esp4-decrypt-tun-post");
369   dit->esp6_tun_post_next =
370     vnet_crypto_register_post_node (vm, "esp6-decrypt-tun-post");
371 }
372
373 static clib_error_t *
374 ipsec_init (vlib_main_t * vm)
375 {
376   clib_error_t *error;
377   ipsec_main_t *im = &ipsec_main;
378   ipsec_main_crypto_alg_t *a;
379
380   /* Backend registration requires the feature arcs to be set up */
381   if ((error = vlib_call_init_function (vm, vnet_feature_init)))
382     return (error);
383
384   im->vnet_main = vnet_get_main ();
385   im->vlib_main = vm;
386
387   im->spd_index_by_spd_id = hash_create (0, sizeof (uword));
388   im->sa_index_by_sa_id = hash_create (0, sizeof (uword));
389   im->spd_index_by_sw_if_index = hash_create (0, sizeof (uword));
390
391   vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
392   ASSERT (node);
393   im->error_drop_node_index = node->index;
394
395   im->ah_current_backend = ~0;
396   im->esp_current_backend = ~0;
397
398   u32 idx = ipsec_register_ah_backend (vm, im, "crypto engine backend",
399                                        "ah4-encrypt",
400                                        "ah4-decrypt",
401                                        "ah6-encrypt",
402                                        "ah6-decrypt",
403                                        ipsec_check_ah_support,
404                                        NULL);
405
406   im->ah_default_backend = idx;
407   int rv = ipsec_select_ah_backend (im, idx);
408   ASSERT (0 == rv);
409   (void) (rv);                  // avoid warning
410
411   idx = ipsec_register_esp_backend (
412     vm, im, "crypto engine backend", "esp4-encrypt", "esp4-encrypt-tun",
413     "esp4-decrypt", "esp4-decrypt-tun", "esp6-encrypt", "esp6-encrypt-tun",
414     "esp6-decrypt", "esp6-decrypt-tun", "esp-mpls-encrypt-tun",
415     ipsec_check_esp_support, NULL, crypto_dispatch_enable_disable);
416   im->esp_default_backend = idx;
417
418   rv = ipsec_select_esp_backend (im, idx);
419   ASSERT (0 == rv);
420   (void) (rv);                  // avoid warning
421
422   if ((error = vlib_call_init_function (vm, ipsec_cli_init)))
423     return error;
424
425   vec_validate (im->crypto_algs, IPSEC_CRYPTO_N_ALG - 1);
426
427   a = im->crypto_algs + IPSEC_CRYPTO_ALG_NONE;
428   a->enc_op_id = VNET_CRYPTO_OP_NONE;
429   a->dec_op_id = VNET_CRYPTO_OP_NONE;
430   a->alg = VNET_CRYPTO_ALG_NONE;
431   a->iv_size = 0;
432   a->block_align = 1;
433
434   a = im->crypto_algs + IPSEC_CRYPTO_ALG_DES_CBC;
435   a->enc_op_id = VNET_CRYPTO_OP_DES_CBC_ENC;
436   a->dec_op_id = VNET_CRYPTO_OP_DES_CBC_DEC;
437   a->alg = VNET_CRYPTO_ALG_DES_CBC;
438   a->iv_size = a->block_align = 8;
439
440   a = im->crypto_algs + IPSEC_CRYPTO_ALG_3DES_CBC;
441   a->enc_op_id = VNET_CRYPTO_OP_3DES_CBC_ENC;
442   a->dec_op_id = VNET_CRYPTO_OP_3DES_CBC_DEC;
443   a->alg = VNET_CRYPTO_ALG_3DES_CBC;
444   a->iv_size = a->block_align = 8;
445
446   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_128;
447   a->enc_op_id = VNET_CRYPTO_OP_AES_128_CBC_ENC;
448   a->dec_op_id = VNET_CRYPTO_OP_AES_128_CBC_DEC;
449   a->alg = VNET_CRYPTO_ALG_AES_128_CBC;
450   a->iv_size = a->block_align = 16;
451
452   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_192;
453   a->enc_op_id = VNET_CRYPTO_OP_AES_192_CBC_ENC;
454   a->dec_op_id = VNET_CRYPTO_OP_AES_192_CBC_DEC;
455   a->alg = VNET_CRYPTO_ALG_AES_192_CBC;
456   a->iv_size = a->block_align = 16;
457
458   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CBC_256;
459   a->enc_op_id = VNET_CRYPTO_OP_AES_256_CBC_ENC;
460   a->dec_op_id = VNET_CRYPTO_OP_AES_256_CBC_DEC;
461   a->alg = VNET_CRYPTO_ALG_AES_256_CBC;
462   a->iv_size = a->block_align = 16;
463
464   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_128;
465   a->enc_op_id = VNET_CRYPTO_OP_AES_128_CTR_ENC;
466   a->dec_op_id = VNET_CRYPTO_OP_AES_128_CTR_DEC;
467   a->alg = VNET_CRYPTO_ALG_AES_128_CTR;
468   a->iv_size = 8;
469   a->block_align = 1;
470
471   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_192;
472   a->enc_op_id = VNET_CRYPTO_OP_AES_192_CTR_ENC;
473   a->dec_op_id = VNET_CRYPTO_OP_AES_192_CTR_DEC;
474   a->alg = VNET_CRYPTO_ALG_AES_192_CTR;
475   a->iv_size = 8;
476   a->block_align = 1;
477
478   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_CTR_256;
479   a->enc_op_id = VNET_CRYPTO_OP_AES_256_CTR_ENC;
480   a->dec_op_id = VNET_CRYPTO_OP_AES_256_CTR_DEC;
481   a->alg = VNET_CRYPTO_ALG_AES_256_CTR;
482   a->iv_size = 8;
483   a->block_align = 1;
484
485   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_128;
486   a->enc_op_id = VNET_CRYPTO_OP_AES_128_GCM_ENC;
487   a->dec_op_id = VNET_CRYPTO_OP_AES_128_GCM_DEC;
488   a->alg = VNET_CRYPTO_ALG_AES_128_GCM;
489   a->iv_size = 8;
490   a->block_align = 1;
491   a->icv_size = 16;
492
493   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_192;
494   a->enc_op_id = VNET_CRYPTO_OP_AES_192_GCM_ENC;
495   a->dec_op_id = VNET_CRYPTO_OP_AES_192_GCM_DEC;
496   a->alg = VNET_CRYPTO_ALG_AES_192_GCM;
497   a->iv_size = 8;
498   a->block_align = 1;
499   a->icv_size = 16;
500
501   a = im->crypto_algs + IPSEC_CRYPTO_ALG_AES_GCM_256;
502   a->enc_op_id = VNET_CRYPTO_OP_AES_256_GCM_ENC;
503   a->dec_op_id = VNET_CRYPTO_OP_AES_256_GCM_DEC;
504   a->alg = VNET_CRYPTO_ALG_AES_256_GCM;
505   a->iv_size = 8;
506   a->block_align = 1;
507   a->icv_size = 16;
508
509   vec_validate (im->integ_algs, IPSEC_INTEG_N_ALG - 1);
510   ipsec_main_integ_alg_t *i;
511
512   i = &im->integ_algs[IPSEC_INTEG_ALG_MD5_96];
513   i->op_id = VNET_CRYPTO_OP_MD5_HMAC;
514   i->alg = VNET_CRYPTO_ALG_HMAC_MD5;
515   i->icv_size = 12;
516
517   i = &im->integ_algs[IPSEC_INTEG_ALG_SHA1_96];
518   i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
519   i->alg = VNET_CRYPTO_ALG_HMAC_SHA1;
520   i->icv_size = 12;
521
522   i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_96];
523   i->op_id = VNET_CRYPTO_OP_SHA1_HMAC;
524   i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
525   i->icv_size = 12;
526
527   i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_256_128];
528   i->op_id = VNET_CRYPTO_OP_SHA256_HMAC;
529   i->alg = VNET_CRYPTO_ALG_HMAC_SHA256;
530   i->icv_size = 16;
531
532   i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_384_192];
533   i->op_id = VNET_CRYPTO_OP_SHA384_HMAC;
534   i->alg = VNET_CRYPTO_ALG_HMAC_SHA384;
535   i->icv_size = 24;
536
537   i = &im->integ_algs[IPSEC_INTEG_ALG_SHA_512_256];
538   i->op_id = VNET_CRYPTO_OP_SHA512_HMAC;
539   i->alg = VNET_CRYPTO_ALG_HMAC_SHA512;
540   i->icv_size = 32;
541
542   vec_validate_aligned (im->ptd, vlib_num_workers (), CLIB_CACHE_LINE_BYTES);
543
544   im->async_mode = 0;
545   crypto_engine_backend_register_post_node (vm);
546
547   return 0;
548 }
549
550 VLIB_INIT_FUNCTION (ipsec_init);
551
552 /*
553  * fd.io coding-style-patch-verification: ON
554  *
555  * Local Variables:
556  * eval: (c-set-style "gnu")
557  * End:
558  */