dpdk/ipsec: fix digest physical address
[vpp.git] / src / plugins / dpdk / ipsec / esp_decrypt.c
1 /*
2  * esp_decrypt.c : IPSec ESP Decrypt node using DPDK Cryptodev
3  *
4  * Copyright (c) 2017 Intel 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 opy 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 <dpdk/ipsec/ipsec.h>
25 #include <dpdk/device/dpdk.h>
26 #include <dpdk/device/dpdk_priv.h>
27
28 #define foreach_esp_decrypt_next               \
29 _(DROP, "error-drop")                          \
30 _(IP4_INPUT, "ip4-input-no-checksum")          \
31 _(IP6_INPUT, "ip6-input")
32
33 #define _(v, s) ESP_DECRYPT_NEXT_##v,
34 typedef enum {
35   foreach_esp_decrypt_next
36 #undef _
37   ESP_DECRYPT_N_NEXT,
38 } esp_decrypt_next_t;
39
40 #define foreach_esp_decrypt_error                \
41  _(RX_PKTS, "ESP pkts received")                 \
42  _(DECRYPTION_FAILED, "ESP decryption failed")   \
43  _(REPLAY, "SA replayed packet")                 \
44  _(NOT_IP, "Not IP packet (dropped)")            \
45  _(ENQ_FAIL, "Enqueue failed (buffer full)")     \
46  _(DISCARD, "Not enough crypto operations, discarding frame")  \
47  _(BAD_LEN, "Invalid ciphertext length")         \
48  _(SESSION, "Failed to get crypto session")      \
49  _(NOSUP, "Cipher/Auth not supported")
50
51
52 typedef enum {
53 #define _(sym,str) ESP_DECRYPT_ERROR_##sym,
54   foreach_esp_decrypt_error
55 #undef _
56   ESP_DECRYPT_N_ERROR,
57 } esp_decrypt_error_t;
58
59 static char * esp_decrypt_error_strings[] = {
60 #define _(sym,string) string,
61   foreach_esp_decrypt_error
62 #undef _
63 };
64
65 vlib_node_registration_t dpdk_esp_decrypt_node;
66
67 typedef struct {
68   ipsec_crypto_alg_t crypto_alg;
69   ipsec_integ_alg_t integ_alg;
70   u8 packet_data[64];
71 } esp_decrypt_trace_t;
72
73 /* packet trace format function */
74 static u8 * format_esp_decrypt_trace (u8 * s, va_list * args)
75 {
76   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
77   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
78   esp_decrypt_trace_t * t = va_arg (*args, esp_decrypt_trace_t *);
79   u32 indent = format_get_indent (s);
80
81   s = format (s, "cipher %U auth %U\n",
82               format_ipsec_crypto_alg, t->crypto_alg,
83               format_ipsec_integ_alg, t->integ_alg);
84   s = format (s, "%U%U",
85               format_white_space, indent,
86               format_esp_header, t->packet_data);
87   return s;
88 }
89
90 static uword
91 dpdk_esp_decrypt_node_fn (vlib_main_t * vm,
92              vlib_node_runtime_t * node,
93              vlib_frame_t * from_frame)
94 {
95   u32 n_left_from, *from, *to_next, next_index;
96   ipsec_main_t *im = &ipsec_main;
97   u32 thread_idx = vlib_get_thread_index();
98   dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
99   crypto_resource_t *res = 0;
100   ipsec_sa_t *sa0 = 0;
101   crypto_alg_t *cipher_alg = 0, *auth_alg = 0;
102   struct rte_cryptodev_sym_session *session = 0;
103   u32 ret, last_sa_index = ~0;
104   u8 numa = rte_socket_id ();
105   u8 is_aead = 0;
106   crypto_worker_main_t *cwm =
107     vec_elt_at_index (dcm->workers_main, thread_idx);
108   struct rte_crypto_op **ops = cwm->ops;
109
110   from = vlib_frame_vector_args (from_frame);
111   n_left_from = from_frame->n_vectors;
112
113   ret = crypto_alloc_ops (numa, ops, n_left_from);
114   if (ret)
115     {
116       vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
117                                    ESP_DECRYPT_ERROR_DISCARD, 1);
118       /* Discard whole frame */
119       return n_left_from;
120     }
121
122   next_index = ESP_DECRYPT_NEXT_DROP;
123
124   while (n_left_from > 0)
125     {
126       u32 n_left_to_next;
127
128       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
129
130       while (n_left_from > 0 && n_left_to_next > 0)
131         {
132           clib_error_t *error;
133           u32 bi0, sa_index0, seq, iv_size;
134           u8 trunc_size;
135           vlib_buffer_t *b0;
136           esp_header_t *esp0;
137           struct rte_mbuf *mb0;
138           struct rte_crypto_op *op;
139           u16 res_idx;
140
141           bi0 = from[0];
142           from += 1;
143           n_left_from -= 1;
144
145           b0 = vlib_get_buffer (vm, bi0);
146           mb0 = rte_mbuf_from_vlib_buffer(b0);
147           esp0 = vlib_buffer_get_current (b0);
148
149           /* ih0/ih6_0 */
150           CLIB_PREFETCH (esp0, sizeof (esp0[0]) + 16, LOAD);
151           /* mb0 */
152           CLIB_PREFETCH (mb0, CLIB_CACHE_LINE_BYTES, STORE);
153
154           op = ops[0];
155           ops += 1;
156           ASSERT (op->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED);
157
158           dpdk_op_priv_t *priv = crypto_op_get_priv (op);
159
160           u16 op_len =
161             sizeof (op[0]) + sizeof (op[0].sym[0]) + sizeof (priv[0]);
162           CLIB_PREFETCH (op, op_len, STORE);
163
164           sa_index0 = vnet_buffer(b0)->ipsec.sad_index;
165
166           if (sa_index0 != last_sa_index)
167             {
168               sa0 = pool_elt_at_index (im->sad, sa_index0);
169
170               cipher_alg = vec_elt_at_index (dcm->cipher_algs, sa0->crypto_alg);
171               auth_alg = vec_elt_at_index (dcm->auth_algs, sa0->integ_alg);
172
173 #if DPDK_NO_AEAD
174               is_aead = (sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128 ||
175                             sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_192 ||
176                             sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_256);
177 #else
178               is_aead = (cipher_alg->type == RTE_CRYPTO_SYM_XFORM_AEAD);
179 #endif
180               if (is_aead)
181                 auth_alg = cipher_alg;
182
183               res_idx = get_resource (cwm, sa0);
184
185               if (PREDICT_FALSE (res_idx == (u16) ~0))
186                 {
187                   clib_warning ("unsupported SA by thread index %u", thread_idx);
188                   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
189                                                ESP_DECRYPT_ERROR_NOSUP, 1);
190                   to_next[0] = bi0;
191                   to_next += 1;
192                   n_left_to_next -= 1;
193                   goto trace;
194                 }
195               res = vec_elt_at_index (dcm->resource, res_idx);
196
197               error = crypto_get_session (&session, sa_index0, res, cwm, 0);
198               if (PREDICT_FALSE (error || !session))
199                 {
200                   clib_warning ("failed to get crypto session");
201                   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
202                                                ESP_DECRYPT_ERROR_SESSION, 1);
203                   to_next[0] = bi0;
204                   to_next += 1;
205                   n_left_to_next -= 1;
206                   goto trace;
207                 }
208
209               last_sa_index = sa_index0;
210             }
211
212           /* anti-replay check */
213           if (sa0->use_anti_replay)
214             {
215               int rv = 0;
216
217               seq = clib_net_to_host_u32 (esp0->seq);
218
219               if (PREDICT_TRUE(sa0->use_esn))
220                 rv = esp_replay_check_esn (sa0, seq);
221               else
222                 rv = esp_replay_check (sa0, seq);
223
224               if (PREDICT_FALSE (rv))
225                 {
226                   clib_warning ("failed anti-replay check");
227                   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
228                                                ESP_DECRYPT_ERROR_REPLAY, 1);
229                   to_next[0] = bi0;
230                   to_next += 1;
231                   n_left_to_next -= 1;
232                   goto trace;
233                 }
234             }
235
236           priv->next = DPDK_CRYPTO_INPUT_NEXT_DECRYPT_POST;
237
238           /* FIXME multi-seg */
239           sa0->total_data_size += b0->current_length;
240
241           res->ops[res->n_ops] = op;
242           res->bi[res->n_ops] = bi0;
243           res->n_ops += 1;
244
245           /* Convert vlib buffer to mbuf */
246           mb0->data_len = b0->current_length;
247           mb0->pkt_len = b0->current_length;
248           mb0->data_off = RTE_PKTMBUF_HEADROOM + b0->current_data;
249
250           trunc_size = auth_alg->trunc_size;
251           iv_size = cipher_alg->iv_len;
252
253           /* Outer IP header has already been stripped */
254           u16 payload_len =
255             b0->current_length - sizeof (esp_header_t) - iv_size - trunc_size;
256
257           ASSERT (payload_len >= 4);
258
259           if (payload_len & (cipher_alg->boundary - 1))
260             {
261               clib_warning ("payload %u not multiple of %d\n",
262                             payload_len, cipher_alg->boundary);
263               vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
264                                            ESP_DECRYPT_ERROR_BAD_LEN, 1);
265               res->n_ops -= 1;
266               to_next[0] = bi0;
267               to_next += 1;
268               n_left_to_next -= 1;
269               goto trace;
270             }
271
272           u32 cipher_off, cipher_len;
273           u32 auth_len = 0, aad_size = 0;
274           u8 *aad = NULL;
275
276           u8 *iv = (u8 *) (esp0 + 1);
277
278           dpdk_gcm_cnt_blk *icb = &priv->cb;
279
280           cipher_off = sizeof (esp_header_t) + iv_size;
281           cipher_len = payload_len;
282
283           u8 *digest = vlib_buffer_get_tail (b0) - trunc_size;
284           u64 digest_paddr =
285             mb0->buf_physaddr + digest - ((u8 *) mb0->buf_addr);
286
287           if (!is_aead && cipher_alg->alg == RTE_CRYPTO_CIPHER_AES_CBC)
288             clib_memcpy(icb, iv, 16);
289           else /* CTR/GCM */
290             {
291               u32 *_iv = (u32 *) iv;
292
293               crypto_set_icb (icb, sa0->salt, _iv[0], _iv[1]);
294 #if DPDK_NO_AEAD
295               iv_size = 16;
296 #else
297               iv_size = 12;
298 #endif
299             }
300
301           if (is_aead)
302             {
303               aad = priv->aad;
304               clib_memcpy(aad, esp0, 8);
305               if (PREDICT_FALSE (sa0->use_esn))
306                 {
307                   *((u32*)&aad[8]) = sa0->seq_hi;
308                   aad_size = 12;
309                 }
310               else
311                 aad_size = 8;
312             }
313           else
314             {
315               auth_len = sizeof(esp_header_t) + iv_size + payload_len;
316
317               if (sa0->use_esn)
318                 {
319                   clib_memcpy (priv->icv, digest, trunc_size);
320                   *((u32*) digest) = sa0->seq_hi;
321                   auth_len += sizeof(sa0->seq_hi);
322
323                   digest = priv->icv;
324                   digest_paddr =
325                     op->phys_addr + (uintptr_t) priv->icv - (uintptr_t) op;
326                 }
327             }
328
329           crypto_op_setup (is_aead, mb0, op, session,
330                            cipher_off, cipher_len, (u8 *) icb, iv_size,
331                            0, auth_len, aad, aad_size,
332                            digest, digest_paddr, trunc_size);
333 trace:
334           if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
335             {
336               esp_decrypt_trace_t *tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
337               tr->crypto_alg = sa0->crypto_alg;
338               tr->integ_alg = sa0->integ_alg;
339               clib_memcpy (tr->packet_data, vlib_buffer_get_current (b0),
340                            sizeof (esp_header_t));
341             }
342         }
343       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
344     }
345
346   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
347                                ESP_DECRYPT_ERROR_RX_PKTS,
348                                from_frame->n_vectors);
349
350   crypto_enqueue_ops (vm, cwm, 0, dpdk_esp_decrypt_node.index,
351                       ESP_DECRYPT_ERROR_ENQ_FAIL, numa);
352
353   crypto_free_ops (numa, ops, cwm->ops + from_frame->n_vectors - ops);
354
355   return from_frame->n_vectors;
356 }
357
358 /* *INDENT-OFF* */
359 VLIB_REGISTER_NODE (dpdk_esp_decrypt_node) = {
360   .function = dpdk_esp_decrypt_node_fn,
361   .name = "dpdk-esp-decrypt",
362   .vector_size = sizeof (u32),
363   .format_trace = format_esp_decrypt_trace,
364   .type = VLIB_NODE_TYPE_INTERNAL,
365
366   .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
367   .error_strings = esp_decrypt_error_strings,
368
369   .n_next_nodes = ESP_DECRYPT_N_NEXT,
370   .next_nodes = {
371 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
372     foreach_esp_decrypt_next
373 #undef _
374   },
375 };
376 /* *INDENT-ON* */
377
378 VLIB_NODE_FUNCTION_MULTIARCH (dpdk_esp_decrypt_node, dpdk_esp_decrypt_node_fn)
379
380 /*
381  * Decrypt Post Node
382  */
383
384 #define foreach_esp_decrypt_post_error        \
385  _(PKTS, "ESP post pkts")
386
387 typedef enum {
388 #define _(sym,str) ESP_DECRYPT_POST_ERROR_##sym,
389   foreach_esp_decrypt_post_error
390 #undef _
391   ESP_DECRYPT_POST_N_ERROR,
392 } esp_decrypt_post_error_t;
393
394 static char * esp_decrypt_post_error_strings[] = {
395 #define _(sym,string) string,
396   foreach_esp_decrypt_post_error
397 #undef _
398 };
399
400 vlib_node_registration_t dpdk_esp_decrypt_post_node;
401
402 static u8 * format_esp_decrypt_post_trace (u8 * s, va_list * args)
403 {
404   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
405   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
406   esp_decrypt_trace_t * t = va_arg (*args, esp_decrypt_trace_t *);
407   u32 indent = format_get_indent (s);
408
409   s = format (s, "cipher %U auth %U\n",
410               format_ipsec_crypto_alg, t->crypto_alg,
411               format_ipsec_integ_alg, t->integ_alg);
412
413   ip4_header_t *ih4 = (ip4_header_t *) t->packet_data;
414   if ((ih4->ip_version_and_header_length & 0xF0) == 0x60)
415     s = format (s, "%U%U", format_white_space, indent, format_ip6_header, ih4);
416   else
417     s = format (s, "%U%U", format_white_space, indent, format_ip4_header, ih4);
418
419   return s;
420 }
421
422 static uword
423 dpdk_esp_decrypt_post_node_fn (vlib_main_t * vm,
424              vlib_node_runtime_t * node,
425              vlib_frame_t * from_frame)
426 {
427   u32 n_left_from, *from, *to_next = 0, next_index;
428   ipsec_sa_t * sa0;
429   u32 sa_index0 = ~0;
430   ipsec_main_t *im = &ipsec_main;
431   dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
432
433   from = vlib_frame_vector_args (from_frame);
434   n_left_from = from_frame->n_vectors;
435
436   next_index = node->cached_next_index;
437
438   while (n_left_from > 0)
439     {
440       u32 n_left_to_next;
441
442       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
443
444       while (n_left_from > 0 && n_left_to_next > 0)
445         {
446           esp_footer_t * f0;
447           u32 bi0, iv_size, next0;
448           vlib_buffer_t * b0 = 0;
449           ip4_header_t *ih4 = 0, *oh4 = 0;
450           ip6_header_t *ih6 = 0, *oh6 = 0;
451           crypto_alg_t *cipher_alg, *auth_alg;
452           esp_header_t *esp0;
453           u8 trunc_size, is_aead;
454
455           next0 = ESP_DECRYPT_NEXT_DROP;
456
457           bi0 = from[0];
458           from += 1;
459           n_left_from -= 1;
460           n_left_to_next -= 1;
461
462           b0 = vlib_get_buffer (vm, bi0);
463           esp0 = vlib_buffer_get_current (b0);
464
465           sa_index0 = vnet_buffer(b0)->ipsec.sad_index;
466           sa0 = pool_elt_at_index (im->sad, sa_index0);
467
468           to_next[0] = bi0;
469           to_next += 1;
470
471           cipher_alg = vec_elt_at_index (dcm->cipher_algs, sa0->crypto_alg);
472           auth_alg = vec_elt_at_index (dcm->auth_algs, sa0->integ_alg);
473 #if DPDK_NO_AEAD
474           is_aead = (sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128 ||
475                         sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_192 ||
476                         sa0->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_256);
477 #else
478           is_aead = cipher_alg->type == RTE_CRYPTO_SYM_XFORM_AEAD;
479 #endif
480           if (is_aead)
481             auth_alg = cipher_alg;
482
483           trunc_size = auth_alg->trunc_size;
484
485           iv_size = cipher_alg->iv_len;
486
487           if (sa0->use_anti_replay)
488             {
489               u32 seq;
490               seq = clib_host_to_net_u32(esp0->seq);
491               if (PREDICT_TRUE(sa0->use_esn))
492                 esp_replay_advance_esn(sa0, seq);
493               else
494                 esp_replay_advance(sa0, seq);
495             }
496
497           /* FIXME ip header */
498           ih4 = (ip4_header_t *) (b0->data + sizeof(ethernet_header_t));
499           vlib_buffer_advance (b0, sizeof (esp_header_t) + iv_size);
500
501           b0->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
502           f0 = (esp_footer_t *) (vlib_buffer_get_tail (b0) - trunc_size - 2);
503           b0->current_length -= (f0->pad_length + trunc_size + 2);
504 #if 0
505           /* check padding */
506           const u8 *padding = vlib_buffer_get_tail (b0);
507           if (PREDICT_FALSE (memcmp (padding, pad_data, f0->pad_length)))
508             {
509               clib_warning("bad padding");
510               vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
511                                            ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
512                                            1);
513               goto trace;
514             }
515 #endif
516           if (sa0->is_tunnel)
517             {
518               if (f0->next_header == IP_PROTOCOL_IP_IN_IP)
519                 next0 = ESP_DECRYPT_NEXT_IP4_INPUT;
520               else if (sa0->is_tunnel_ip6 && f0->next_header == IP_PROTOCOL_IPV6)
521                 next0 = ESP_DECRYPT_NEXT_IP6_INPUT;
522               else
523                 {
524                   clib_warning("next header: 0x%x", f0->next_header);
525                   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
526                                                ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
527                                                1);
528                   goto trace;
529                 }
530             }
531           else /* transport mode */
532             {
533               if ((ih4->ip_version_and_header_length & 0xF0) == 0x40)
534                 {
535                   u16 ih4_len = ip4_header_bytes (ih4);
536                   vlib_buffer_advance (b0, - ih4_len);
537                   oh4 = vlib_buffer_get_current (b0);
538                   memmove(oh4, ih4, ih4_len);
539
540                   next0 = ESP_DECRYPT_NEXT_IP4_INPUT;
541                   u16 old_ttl_prot =
542                     ((u16) oh4->ttl) << 8 | (u16) oh4->protocol;
543                   u16 new_ttl_prot =
544                     ((u16) oh4->ttl) << 8 | (u16) f0->next_header;
545                   oh4->protocol = f0->next_header;
546                   u16 new_len = clib_host_to_net_u16 (b0->current_length);
547                   oh4->length = new_len;
548                   /* rfc1264 incremental checksum update */
549                   oh4->checksum = ~(~oh4->checksum + ~oh4->length + new_len +
550                                     ~old_ttl_prot + new_ttl_prot);
551
552                 }
553               else if ((ih4->ip_version_and_header_length & 0xF0) == 0x60)
554                 {
555                   /* FIXME find ip header */
556                   ih6 = (ip6_header_t *) (b0->data + sizeof(ethernet_header_t));
557                   vlib_buffer_advance (b0, -sizeof(ip6_header_t));
558                   oh6 = vlib_buffer_get_current (b0);
559                   memmove(oh6, ih6, sizeof(ip6_header_t));
560
561                   next0 = ESP_DECRYPT_NEXT_IP6_INPUT;
562                   oh6->protocol = f0->next_header;
563                   u16 len = b0->current_length - sizeof (ip6_header_t);
564                   oh6->payload_length = clib_host_to_net_u16 (len);
565                 }
566               else
567                 {
568                   clib_warning("next header: 0x%x", f0->next_header);
569                   vlib_node_increment_counter (vm, dpdk_esp_decrypt_node.index,
570                                                ESP_DECRYPT_ERROR_DECRYPTION_FAILED,
571                                                1);
572                   goto trace;
573                 }
574             }
575
576           vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32)~0;
577
578         trace:
579           if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
580             {
581               esp_decrypt_trace_t *tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
582               tr->crypto_alg = sa0->crypto_alg;
583               tr->integ_alg = sa0->integ_alg;
584               ih4 = vlib_buffer_get_current (b0);
585               clib_memcpy (tr->packet_data, ih4, sizeof (ip6_header_t));
586             }
587
588           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
589                                            to_next, n_left_to_next, bi0, next0);
590         }
591       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
592     }
593
594   vlib_node_increment_counter (vm, dpdk_esp_decrypt_post_node.index,
595                                ESP_DECRYPT_POST_ERROR_PKTS,
596                                from_frame->n_vectors);
597
598   return from_frame->n_vectors;
599 }
600
601 /* *INDENT-OFF* */
602 VLIB_REGISTER_NODE (dpdk_esp_decrypt_post_node) = {
603   .function = dpdk_esp_decrypt_post_node_fn,
604   .name = "dpdk-esp-decrypt-post",
605   .vector_size = sizeof (u32),
606   .format_trace = format_esp_decrypt_post_trace,
607   .type = VLIB_NODE_TYPE_INTERNAL,
608
609   .n_errors = ARRAY_LEN(esp_decrypt_post_error_strings),
610   .error_strings = esp_decrypt_post_error_strings,
611
612   .n_next_nodes = ESP_DECRYPT_N_NEXT,
613   .next_nodes = {
614 #define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
615     foreach_esp_decrypt_next
616 #undef _
617   },
618 };
619 /* *INDENT-ON* */
620
621 VLIB_NODE_FUNCTION_MULTIARCH (dpdk_esp_decrypt_post_node, dpdk_esp_decrypt_post_node_fn)