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