ipsec: GCM, Anti-replay and ESN fixess
[vpp.git] / src / vnet / ipsec / esp_decrypt.c
1 /*
2  * esp_decrypt.c : IPSec ESP decrypt node
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
22 #include <vnet/ipsec/ipsec.h>
23 #include <vnet/ipsec/esp.h>
24 #include <vnet/ipsec/ipsec_io.h>
25 #include <vnet/ipsec/ipsec_tun.h>
26
27 #define foreach_esp_decrypt_next                \
28 _(DROP, "error-drop")                           \
29 _(IP4_INPUT, "ip4-input-no-checksum")           \
30 _(IP6_INPUT, "ip6-input")
31
32 #define _(v, s) ESP_DECRYPT_NEXT_##v,
33 typedef enum
34 {
35   foreach_esp_decrypt_next
36 #undef _
37     ESP_DECRYPT_N_NEXT,
38 } esp_decrypt_next_t;
39
40
41 #define foreach_esp_decrypt_error                               \
42  _(RX_PKTS, "ESP pkts received")                                \
43  _(DECRYPTION_FAILED, "ESP decryption failed")                  \
44  _(INTEG_ERROR, "Integrity check failed")                       \
45  _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
46  _(REPLAY, "SA replayed packet")                                \
47  _(RUNT, "undersized packet")                                   \
48  _(CHAINED_BUFFER, "chained buffers (packet dropped)")          \
49  _(OVERSIZED_HEADER, "buffer with oversized header (dropped)")  \
50  _(NO_TAIL_SPACE, "no enough buffer tail space (dropped)")
51
52
53 typedef enum
54 {
55 #define _(sym,str) ESP_DECRYPT_ERROR_##sym,
56   foreach_esp_decrypt_error
57 #undef _
58     ESP_DECRYPT_N_ERROR,
59 } esp_decrypt_error_t;
60
61 static char *esp_decrypt_error_strings[] = {
62 #define _(sym,string) string,
63   foreach_esp_decrypt_error
64 #undef _
65 };
66
67 typedef struct
68 {
69   u32 seq;
70   u32 sa_seq;
71   u32 sa_seq_hi;
72   ipsec_crypto_alg_t crypto_alg;
73   ipsec_integ_alg_t integ_alg;
74 } esp_decrypt_trace_t;
75
76 /* packet trace format function */
77 static u8 *
78 format_esp_decrypt_trace (u8 * s, va_list * args)
79 {
80   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
81   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
82   esp_decrypt_trace_t *t = va_arg (*args, esp_decrypt_trace_t *);
83
84   s =
85     format (s,
86             "esp: crypto %U integrity %U pkt-seq %d sa-seq %u sa-seq-hi %u",
87             format_ipsec_crypto_alg, t->crypto_alg, format_ipsec_integ_alg,
88             t->integ_alg, t->seq, t->sa_seq, t->sa_seq_hi);
89   return s;
90 }
91
92 typedef struct
93 {
94   union
95   {
96     struct
97     {
98       u8 icv_sz;
99       u8 iv_sz;
100       ipsec_sa_flags_t flags;
101       u32 sa_index;
102     };
103     u64 sa_data;
104   };
105
106   u32 seq;
107   i16 current_data;
108   i16 current_length;
109   u16 hdr_sz;
110 } esp_decrypt_packet_data_t;
111
112 STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 3 * sizeof (u64));
113
114 #define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2)
115
116 always_inline uword
117 esp_decrypt_inline (vlib_main_t * vm,
118                     vlib_node_runtime_t * node, vlib_frame_t * from_frame,
119                     int is_ip6, int is_tun)
120 {
121   ipsec_main_t *im = &ipsec_main;
122   u32 thread_index = vm->thread_index;
123   u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
124   u16 len;
125   ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, thread_index);
126   u32 *from = vlib_frame_vector_args (from_frame);
127   u32 n, n_left = from_frame->n_vectors;
128   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
129   u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
130   esp_decrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data;
131   esp_decrypt_packet_data_t cpd = { };
132   u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0;
133   const u8 esp_sz = sizeof (esp_header_t);
134   ipsec_sa_t *sa0 = 0;
135
136   vlib_get_buffers (vm, from, b, n_left);
137   vec_reset_length (ptd->crypto_ops);
138   vec_reset_length (ptd->integ_ops);
139   clib_memset_u16 (nexts, -1, n_left);
140
141   while (n_left > 0)
142     {
143       u8 *payload;
144
145       if (n_left > 2)
146         {
147           u8 *p;
148           vlib_prefetch_buffer_header (b[2], LOAD);
149           p = vlib_buffer_get_current (b[1]);
150           CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
151           p -= CLIB_CACHE_LINE_BYTES;
152           CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
153         }
154
155       if (vlib_buffer_chain_linearize (vm, b[0]) != 1)
156         {
157           b[0]->error = node->errors[ESP_DECRYPT_ERROR_CHAINED_BUFFER];
158           next[0] = ESP_DECRYPT_NEXT_DROP;
159           goto next;
160         }
161
162       if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index)
163         {
164           if (current_sa_pkts)
165             vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
166                                              current_sa_index,
167                                              current_sa_pkts,
168                                              current_sa_bytes);
169           current_sa_bytes = current_sa_pkts = 0;
170
171           current_sa_index = vnet_buffer (b[0])->ipsec.sad_index;
172           sa0 = pool_elt_at_index (im->sad, current_sa_index);
173           cpd.icv_sz = sa0->integ_icv_size;
174           cpd.iv_sz = sa0->crypto_iv_size;
175           cpd.flags = sa0->flags;
176           cpd.sa_index = current_sa_index;
177         }
178
179       /* store packet data for next round for easier prefetch */
180       pd->sa_data = cpd.sa_data;
181       pd->current_data = b[0]->current_data;
182       pd->current_length = b[0]->current_length;
183       pd->hdr_sz = pd->current_data - vnet_buffer (b[0])->l3_hdr_offset;
184       payload = b[0]->data + pd->current_data;
185       pd->seq = clib_host_to_net_u32 (((esp_header_t *) payload)->seq);
186
187       /* we need 4 extra bytes for HMAC calculation when ESN are used */
188       if (ipsec_sa_is_set_USE_ESN (sa0) && pd->icv_sz &&
189           (pd->current_data + pd->current_length + 4 > buffer_data_size))
190         {
191           b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_TAIL_SPACE];
192           next[0] = ESP_DECRYPT_NEXT_DROP;
193           goto next;
194         }
195
196       /* anti-reply check */
197       if (ipsec_sa_anti_replay_check (sa0, pd->seq))
198         {
199           b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY];
200           next[0] = ESP_DECRYPT_NEXT_DROP;
201           goto next;
202         }
203
204       if (pd->current_length < cpd.icv_sz + esp_sz + cpd.iv_sz)
205         {
206           b[0]->error = node->errors[ESP_DECRYPT_ERROR_RUNT];
207           next[0] = ESP_DECRYPT_NEXT_DROP;
208           goto next;
209         }
210
211       len = pd->current_length - cpd.icv_sz;
212       current_sa_pkts += 1;
213       current_sa_bytes += pd->current_length;
214
215       if (PREDICT_TRUE (sa0->integ_op_id != VNET_CRYPTO_OP_NONE))
216         {
217           vnet_crypto_op_t *op;
218           vec_add2_aligned (ptd->integ_ops, op, 1, CLIB_CACHE_LINE_BYTES);
219
220           vnet_crypto_op_init (op, sa0->integ_op_id);
221           op->key_index = sa0->integ_key_index;
222           op->src = payload;
223           op->flags = VNET_CRYPTO_OP_FLAG_HMAC_CHECK;
224           op->user_data = b - bufs;
225           op->digest = payload + len;
226           op->digest_len = cpd.icv_sz;
227           op->len = len;
228           if (ipsec_sa_is_set_USE_ESN (sa0))
229             {
230               /* shift ICV by 4 bytes to insert ESN */
231               u32 seq_hi = clib_host_to_net_u32 (sa0->seq_hi);
232               u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi);
233               clib_memcpy_fast (tmp, payload + len, ESP_MAX_ICV_SIZE);
234               clib_memcpy_fast (payload + len, &seq_hi, sz);
235               clib_memcpy_fast (payload + len + sz, tmp, ESP_MAX_ICV_SIZE);
236               op->len += sz;
237               op->digest += sz;
238             }
239         }
240
241       payload += esp_sz;
242       len -= esp_sz;
243
244       if (sa0->crypto_enc_op_id != VNET_CRYPTO_OP_NONE)
245         {
246           vnet_crypto_op_t *op;
247           vec_add2_aligned (ptd->crypto_ops, op, 1, CLIB_CACHE_LINE_BYTES);
248           vnet_crypto_op_init (op, sa0->crypto_dec_op_id);
249           op->key_index = sa0->crypto_key_index;
250           op->iv = payload;
251
252           if (ipsec_sa_is_set_IS_AEAD (sa0))
253             {
254               esp_header_t *esp0;
255               esp_aead_t *aad;
256               u8 *scratch;
257
258               /*
259                * construct the AAD and the nonce (Salt || IV) in a scratch
260                * space in front of the IP header.
261                */
262               scratch = payload - esp_sz;
263               esp0 = (esp_header_t *) (scratch);
264
265               scratch -= (sizeof (*aad) + pd->hdr_sz);
266               op->aad = scratch;
267
268               esp_aad_fill (op, esp0, sa0);
269
270               /*
271                * we don't need to refer to the ESP header anymore so we
272                * can overwrite it with the salt and use the IV where it is
273                * to form the nonce = (Salt + IV)
274                */
275               op->iv -= sizeof (sa0->salt);
276               clib_memcpy_fast (op->iv, &sa0->salt, sizeof (sa0->salt));
277
278               op->tag = payload + len;
279               op->tag_len = 16;
280             }
281           op->src = op->dst = payload += cpd.iv_sz;
282           op->len = len - cpd.iv_sz;
283           op->user_data = b - bufs;
284         }
285
286       /* next */
287     next:
288       n_left -= 1;
289       next += 1;
290       pd += 1;
291       b += 1;
292     }
293
294   vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
295                                    current_sa_index, current_sa_pkts,
296                                    current_sa_bytes);
297
298   if ((n = vec_len (ptd->integ_ops)))
299     {
300       vnet_crypto_op_t *op = ptd->integ_ops;
301       n -= vnet_crypto_process_ops (vm, op, n);
302       while (n)
303         {
304           ASSERT (op - ptd->integ_ops < vec_len (ptd->integ_ops));
305           if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
306             {
307               u32 err, bi = op->user_data;
308               if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
309                 err = ESP_DECRYPT_ERROR_INTEG_ERROR;
310               else
311                 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
312               bufs[bi]->error = node->errors[err];
313               nexts[bi] = ESP_DECRYPT_NEXT_DROP;
314               n--;
315             }
316           op++;
317         }
318     }
319   if ((n = vec_len (ptd->crypto_ops)))
320     {
321       vnet_crypto_op_t *op = ptd->crypto_ops;
322       n -= vnet_crypto_process_ops (vm, op, n);
323       while (n)
324         {
325           ASSERT (op - ptd->crypto_ops < vec_len (ptd->crypto_ops));
326           if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
327             {
328               u32 err, bi;
329
330               bi = op->user_data;
331
332               if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
333                 err = ESP_DECRYPT_ERROR_DECRYPTION_FAILED;
334               else
335                 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
336
337               bufs[bi]->error = node->errors[err];
338               nexts[bi] = ESP_DECRYPT_NEXT_DROP;
339               n--;
340             }
341           op++;
342         }
343     }
344
345   /* Post decryption ronud - adjust packet data start and length and next
346      node */
347
348   n_left = from_frame->n_vectors;
349   next = nexts;
350   pd = pkt_data;
351   b = bufs;
352
353   while (n_left)
354     {
355       const u8 tun_flags = IPSEC_SA_FLAG_IS_TUNNEL |
356         IPSEC_SA_FLAG_IS_TUNNEL_V6;
357
358       if (n_left >= 2)
359         {
360           void *data = b[1]->data + pd[1].current_data;
361
362           /* buffer metadata */
363           vlib_prefetch_buffer_header (b[1], LOAD);
364
365           /* esp_footer_t */
366           CLIB_PREFETCH (data + pd[1].current_length - pd[1].icv_sz - 2,
367                          CLIB_CACHE_LINE_BYTES, LOAD);
368
369           /* packet headers */
370           CLIB_PREFETCH (data - CLIB_CACHE_LINE_BYTES,
371                          CLIB_CACHE_LINE_BYTES * 2, LOAD);
372         }
373
374       if (next[0] < ESP_DECRYPT_N_NEXT)
375         goto trace;
376
377       sa0 = vec_elt_at_index (im->sad, pd->sa_index);
378
379       ipsec_sa_anti_replay_advance (sa0, pd->seq);
380
381       esp_footer_t *f = (esp_footer_t *) (b[0]->data + pd->current_data +
382                                           pd->current_length - sizeof (*f) -
383                                           pd->icv_sz);
384       u16 adv = pd->iv_sz + esp_sz;
385       u16 tail = sizeof (esp_footer_t) + f->pad_length + pd->icv_sz;
386
387       if ((pd->flags & tun_flags) == 0 && !is_tun)      /* transport mode */
388         {
389           u8 udp_sz = (is_ip6 == 0 && pd->flags & IPSEC_SA_FLAG_UDP_ENCAP) ?
390             sizeof (udp_header_t) : 0;
391           u16 ip_hdr_sz = pd->hdr_sz - udp_sz;
392           u8 *old_ip = b[0]->data + pd->current_data - ip_hdr_sz - udp_sz;
393           u8 *ip = old_ip + adv + udp_sz;
394
395           if (is_ip6 && ip_hdr_sz > 64)
396             memmove (ip, old_ip, ip_hdr_sz);
397           else
398             clib_memcpy_le64 (ip, old_ip, ip_hdr_sz);
399
400           b[0]->current_data = pd->current_data + adv - ip_hdr_sz;
401           b[0]->current_length = pd->current_length + ip_hdr_sz - tail - adv;
402
403           if (is_ip6)
404             {
405               ip6_header_t *ip6 = (ip6_header_t *) ip;
406               u16 len = clib_net_to_host_u16 (ip6->payload_length);
407               len -= adv + tail;
408               ip6->payload_length = clib_host_to_net_u16 (len);
409               ip6->protocol = f->next_header;
410               next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
411             }
412           else
413             {
414               ip4_header_t *ip4 = (ip4_header_t *) ip;
415               ip_csum_t sum = ip4->checksum;
416               u16 len = clib_net_to_host_u16 (ip4->length);
417               len = clib_host_to_net_u16 (len - adv - tail - udp_sz);
418               sum = ip_csum_update (sum, ip4->protocol, f->next_header,
419                                     ip4_header_t, protocol);
420               sum = ip_csum_update (sum, ip4->length, len,
421                                     ip4_header_t, length);
422               ip4->checksum = ip_csum_fold (sum);
423               ip4->protocol = f->next_header;
424               ip4->length = len;
425               next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
426             }
427         }
428       else
429         {
430           if (PREDICT_TRUE (f->next_header == IP_PROTOCOL_IP_IN_IP))
431             {
432               next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
433               b[0]->current_data = pd->current_data + adv;
434               b[0]->current_length = pd->current_length - adv - tail;
435             }
436           else if (f->next_header == IP_PROTOCOL_IPV6)
437             {
438               next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
439               b[0]->current_data = pd->current_data + adv;
440               b[0]->current_length = pd->current_length - adv - tail;
441             }
442           else
443             {
444               next[0] = ESP_DECRYPT_NEXT_DROP;
445               b[0]->error = node->errors[ESP_DECRYPT_ERROR_DECRYPTION_FAILED];
446               goto trace;
447             }
448           if (is_tun)
449             {
450               if (ipsec_sa_is_set_IS_PROTECT (sa0))
451                 {
452                   /*
453                    * Check that the reveal IP header matches that
454                    * of the tunnel we are protecting
455                    */
456                   const ipsec_tun_protect_t *itp;
457
458                   itp =
459                     ipsec_tun_protect_get (vnet_buffer (b[0])->
460                                            ipsec.protect_index);
461                   if (PREDICT_TRUE (f->next_header == IP_PROTOCOL_IP_IN_IP))
462                     {
463                       const ip4_header_t *ip4;
464
465                       ip4 = vlib_buffer_get_current (b[0]);
466
467                       if (!ip46_address_is_equal_v4 (&itp->itp_tun.src,
468                                                      &ip4->dst_address) ||
469                           !ip46_address_is_equal_v4 (&itp->itp_tun.dst,
470                                                      &ip4->src_address))
471                         next[0] = ESP_DECRYPT_NEXT_DROP;
472
473                     }
474                   else if (f->next_header == IP_PROTOCOL_IPV6)
475                     {
476                       const ip6_header_t *ip6;
477
478                       ip6 = vlib_buffer_get_current (b[0]);
479
480                       if (!ip46_address_is_equal_v6 (&itp->itp_tun.src,
481                                                      &ip6->dst_address) ||
482                           !ip46_address_is_equal_v6 (&itp->itp_tun.dst,
483                                                      &ip6->src_address))
484                         next[0] = ESP_DECRYPT_NEXT_DROP;
485                     }
486                 }
487             }
488         }
489
490     trace:
491       if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
492         {
493           esp_decrypt_trace_t *tr;
494           tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
495           sa0 = pool_elt_at_index (im->sad,
496                                    vnet_buffer (b[0])->ipsec.sad_index);
497           tr->crypto_alg = sa0->crypto_alg;
498           tr->integ_alg = sa0->integ_alg;
499           tr->seq = pd->seq;
500           tr->sa_seq = sa0->last_seq;
501           tr->sa_seq_hi = sa0->seq_hi;
502         }
503
504       /* next */
505       n_left -= 1;
506       next += 1;
507       pd += 1;
508       b += 1;
509     }
510
511   n_left = from_frame->n_vectors;
512   vlib_node_increment_counter (vm, node->node_index,
513                                ESP_DECRYPT_ERROR_RX_PKTS, n_left);
514
515   vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left);
516
517   b = bufs;
518   return n_left;
519 }
520
521 VLIB_NODE_FN (esp4_decrypt_node) (vlib_main_t * vm,
522                                   vlib_node_runtime_t * node,
523                                   vlib_frame_t * from_frame)
524 {
525   return esp_decrypt_inline (vm, node, from_frame, 0, 0);
526 }
527
528 VLIB_NODE_FN (esp4_decrypt_tun_node) (vlib_main_t * vm,
529                                       vlib_node_runtime_t * node,
530                                       vlib_frame_t * from_frame)
531 {
532   return esp_decrypt_inline (vm, node, from_frame, 0, 1);
533 }
534
535 VLIB_NODE_FN (esp6_decrypt_node) (vlib_main_t * vm,
536                                   vlib_node_runtime_t * node,
537                                   vlib_frame_t * from_frame)
538 {
539   return esp_decrypt_inline (vm, node, from_frame, 1, 0);
540 }
541
542 VLIB_NODE_FN (esp6_decrypt_tun_node) (vlib_main_t * vm,
543                                       vlib_node_runtime_t * node,
544                                       vlib_frame_t * from_frame)
545 {
546   return esp_decrypt_inline (vm, node, from_frame, 1, 1);
547 }
548
549 /* *INDENT-OFF* */
550 VLIB_REGISTER_NODE (esp4_decrypt_node) = {
551   .name = "esp4-decrypt",
552   .vector_size = sizeof (u32),
553   .format_trace = format_esp_decrypt_trace,
554   .type = VLIB_NODE_TYPE_INTERNAL,
555
556   .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
557   .error_strings = esp_decrypt_error_strings,
558
559   .n_next_nodes = ESP_DECRYPT_N_NEXT,
560   .next_nodes = {
561 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
562     foreach_esp_decrypt_next
563 #undef _
564   },
565 };
566
567 VLIB_REGISTER_NODE (esp6_decrypt_node) = {
568   .name = "esp6-decrypt",
569   .vector_size = sizeof (u32),
570   .format_trace = format_esp_decrypt_trace,
571   .type = VLIB_NODE_TYPE_INTERNAL,
572
573   .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
574   .error_strings = esp_decrypt_error_strings,
575
576   .n_next_nodes = ESP_DECRYPT_N_NEXT,
577   .next_nodes = {
578 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
579     foreach_esp_decrypt_next
580 #undef _
581   },
582 };
583
584 VLIB_REGISTER_NODE (esp4_decrypt_tun_node) = {
585   .name = "esp4-decrypt-tun",
586   .vector_size = sizeof (u32),
587   .format_trace = format_esp_decrypt_trace,
588   .type = VLIB_NODE_TYPE_INTERNAL,
589
590   .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
591   .error_strings = esp_decrypt_error_strings,
592
593   .n_next_nodes = ESP_DECRYPT_N_NEXT,
594   .next_nodes = {
595 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
596     foreach_esp_decrypt_next
597 #undef _
598   },
599 };
600
601 VLIB_REGISTER_NODE (esp6_decrypt_tun_node) = {
602   .name = "esp6-decrypt-tun",
603   .vector_size = sizeof (u32),
604   .format_trace = format_esp_decrypt_trace,
605   .type = VLIB_NODE_TYPE_INTERNAL,
606
607   .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
608   .error_strings = esp_decrypt_error_strings,
609
610   .n_next_nodes = ESP_DECRYPT_N_NEXT,
611   .next_nodes = {
612 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
613     foreach_esp_decrypt_next
614 #undef _
615   },
616 };
617 /* *INDENT-ON* */
618
619 /*
620  * fd.io coding-style-patch-verification: ON
621  *
622  * Local Variables:
623  * eval: (c-set-style "gnu")
624  * End:
625  */