misc: fix issues reported by clang-15
[vpp.git] / src / vnet / ipsec / esp_encrypt.c
1 /*
2  * esp_encrypt.c : IPSec ESP encrypt 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/crypto/crypto.h>
23
24 #include <vnet/ipsec/ipsec.h>
25 #include <vnet/ipsec/ipsec_tun.h>
26 #include <vnet/ipsec/ipsec.api_enum.h>
27 #include <vnet/ipsec/esp.h>
28 #include <vnet/tunnel/tunnel_dp.h>
29
30 #define foreach_esp_encrypt_next                                              \
31   _ (DROP4, "ip4-drop")                                                       \
32   _ (DROP6, "ip6-drop")                                                       \
33   _ (DROP_MPLS, "mpls-drop")                                                  \
34   _ (HANDOFF4, "handoff4")                                                    \
35   _ (HANDOFF6, "handoff6")                                                    \
36   _ (HANDOFF_MPLS, "handoff-mpls")                                            \
37   _ (INTERFACE_OUTPUT, "interface-output")
38
39 #define _(v, s) ESP_ENCRYPT_NEXT_##v,
40 typedef enum
41 {
42   foreach_esp_encrypt_next
43 #undef _
44     ESP_ENCRYPT_N_NEXT,
45 } esp_encrypt_next_t;
46
47 typedef struct
48 {
49   u32 sa_index;
50   u32 spi;
51   u32 seq;
52   u32 sa_seq_hi;
53   u8 udp_encap;
54   ipsec_crypto_alg_t crypto_alg;
55   ipsec_integ_alg_t integ_alg;
56 } esp_encrypt_trace_t;
57
58 typedef struct
59 {
60   u32 next_index;
61 } esp_encrypt_post_trace_t;
62
63 typedef vl_counter_esp_encrypt_enum_t esp_encrypt_error_t;
64
65 /* packet trace format function */
66 static u8 *
67 format_esp_encrypt_trace (u8 * s, va_list * args)
68 {
69   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
70   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
71   esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
72
73   s =
74     format (s,
75             "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
76             t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
77             format_ipsec_crypto_alg,
78             t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
79             t->udp_encap ? " udp-encap-enabled" : "");
80   return s;
81 }
82
83 static u8 *
84 format_esp_post_encrypt_trace (u8 * s, va_list * args)
85 {
86   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
87   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
88   esp_encrypt_post_trace_t *t = va_arg (*args, esp_encrypt_post_trace_t *);
89
90   s = format (s, "esp-post: next node index %u", t->next_index);
91   return s;
92 }
93
94 /* pad packet in input buffer */
95 static_always_inline u8 *
96 esp_add_footer_and_icv (vlib_main_t *vm, vlib_buffer_t **last, u8 esp_align,
97                         u8 icv_sz, vlib_node_runtime_t *node,
98                         u16 buffer_data_size, uword total_len)
99 {
100   static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
101     0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
102     0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00,
103   };
104
105   u16 min_length = total_len + sizeof (esp_footer_t);
106   u16 new_length = round_pow2 (min_length, esp_align);
107   u8 pad_bytes = new_length - min_length;
108   esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (last[0]) +
109                                       last[0]->current_length + pad_bytes);
110   u16 tail_sz = sizeof (esp_footer_t) + pad_bytes + icv_sz;
111
112   if (last[0]->current_data + last[0]->current_length + tail_sz >
113       buffer_data_size)
114     {
115       u32 tmp_bi = 0;
116       if (vlib_buffer_alloc (vm, &tmp_bi, 1) != 1)
117         return 0;
118
119       vlib_buffer_t *tmp = vlib_get_buffer (vm, tmp_bi);
120       last[0]->next_buffer = tmp_bi;
121       last[0]->flags |= VLIB_BUFFER_NEXT_PRESENT;
122       f = (esp_footer_t *) (vlib_buffer_get_current (tmp) + pad_bytes);
123       tmp->current_length += tail_sz;
124       last[0] = tmp;
125     }
126   else
127     last[0]->current_length += tail_sz;
128
129   f->pad_length = pad_bytes;
130   if (pad_bytes)
131     {
132       ASSERT (pad_bytes <= ESP_MAX_BLOCK_SIZE);
133       pad_bytes = clib_min (ESP_MAX_BLOCK_SIZE, pad_bytes);
134       clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
135     }
136
137   return &f->next_header;
138 }
139
140 static_always_inline void
141 esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
142 {
143   ip_csum_t sum;
144   u16 old_len;
145
146   len = clib_net_to_host_u16 (len);
147   old_len = ip4->length;
148
149   if (is_transport)
150     {
151       u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
152
153       sum = ip_csum_update (ip4->checksum, ip4->protocol,
154                             prot, ip4_header_t, protocol);
155       ip4->protocol = prot;
156
157       sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
158     }
159   else
160     sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
161
162   ip4->length = len;
163   ip4->checksum = ip_csum_fold (sum);
164 }
165
166 static_always_inline void
167 esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
168 {
169   clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
170   udp->length = clib_net_to_host_u16 (len);
171 }
172
173 static_always_inline u8
174 ext_hdr_is_pre_esp (u8 nexthdr)
175 {
176 #ifdef CLIB_HAVE_VEC128
177   static const u8x16 ext_hdr_types = {
178     IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
179     IP_PROTOCOL_IPV6_ROUTE,
180     IP_PROTOCOL_IPV6_FRAGMENTATION,
181   };
182
183   return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
184 #else
185   return ((nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
186           (nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) |
187           ((nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION) != 0));
188 #endif
189 }
190
191 static_always_inline u8
192 esp_get_ip6_hdr_len (ip6_header_t * ip6, ip6_ext_header_t ** ext_hdr)
193 {
194   /* this code assumes that HbH, route and frag headers will be before
195      others, if that is not the case, they will end up encrypted */
196   u8 len = sizeof (ip6_header_t);
197   ip6_ext_header_t *p;
198
199   /* if next packet doesn't have ext header */
200   if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
201     {
202       *ext_hdr = NULL;
203       return len;
204     }
205
206   p = ip6_next_header (ip6);
207   len += ip6_ext_header_len (p);
208   while (ext_hdr_is_pre_esp (p->next_hdr))
209     {
210       len += ip6_ext_header_len (p);
211       p = ip6_ext_next_header (p);
212     }
213
214   *ext_hdr = p;
215   return len;
216 }
217
218 static_always_inline void
219 esp_process_chained_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
220                          vnet_crypto_op_t * ops, vlib_buffer_t * b[],
221                          u16 * nexts, vnet_crypto_op_chunk_t * chunks,
222                          u16 drop_next)
223 {
224   u32 n_fail, n_ops = vec_len (ops);
225   vnet_crypto_op_t *op = ops;
226
227   if (n_ops == 0)
228     return;
229
230   n_fail = n_ops - vnet_crypto_process_chained_ops (vm, op, chunks, n_ops);
231
232   while (n_fail)
233     {
234       ASSERT (op - ops < n_ops);
235
236       if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
237         {
238           u32 bi = op->user_data;
239           b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
240           nexts[bi] = drop_next;
241           n_fail--;
242         }
243       op++;
244     }
245 }
246
247 static_always_inline void
248 esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
249                  vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts,
250                  u16 drop_next)
251 {
252   u32 n_fail, n_ops = vec_len (ops);
253   vnet_crypto_op_t *op = ops;
254
255   if (n_ops == 0)
256     return;
257
258   n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
259
260   while (n_fail)
261     {
262       ASSERT (op - ops < n_ops);
263
264       if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
265         {
266           u32 bi = op->user_data;
267           b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
268           nexts[bi] = drop_next;
269           n_fail--;
270         }
271       op++;
272     }
273 }
274
275 static_always_inline u32
276 esp_encrypt_chain_crypto (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
277                           ipsec_sa_t * sa0, vlib_buffer_t * b,
278                           vlib_buffer_t * lb, u8 icv_sz, u8 * start,
279                           u32 start_len, u16 * n_ch)
280 {
281   vnet_crypto_op_chunk_t *ch;
282   vlib_buffer_t *cb = b;
283   u32 n_chunks = 1;
284   u32 total_len;
285   vec_add2 (ptd->chunks, ch, 1);
286   total_len = ch->len = start_len;
287   ch->src = ch->dst = start;
288   cb = vlib_get_buffer (vm, cb->next_buffer);
289
290   while (1)
291     {
292       vec_add2 (ptd->chunks, ch, 1);
293       n_chunks += 1;
294       if (lb == cb)
295         total_len += ch->len = cb->current_length - icv_sz;
296       else
297         total_len += ch->len = cb->current_length;
298       ch->src = ch->dst = vlib_buffer_get_current (cb);
299
300       if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
301         break;
302
303       cb = vlib_get_buffer (vm, cb->next_buffer);
304     }
305
306   if (n_ch)
307     *n_ch = n_chunks;
308
309   return total_len;
310 }
311
312 static_always_inline u32
313 esp_encrypt_chain_integ (vlib_main_t * vm, ipsec_per_thread_data_t * ptd,
314                          ipsec_sa_t * sa0, vlib_buffer_t * b,
315                          vlib_buffer_t * lb, u8 icv_sz, u8 * start,
316                          u32 start_len, u8 * digest, u16 * n_ch)
317 {
318   vnet_crypto_op_chunk_t *ch;
319   vlib_buffer_t *cb = b;
320   u32 n_chunks = 1;
321   u32 total_len;
322   vec_add2 (ptd->chunks, ch, 1);
323   total_len = ch->len = start_len;
324   ch->src = start;
325   cb = vlib_get_buffer (vm, cb->next_buffer);
326
327   while (1)
328     {
329       vec_add2 (ptd->chunks, ch, 1);
330       n_chunks += 1;
331       if (lb == cb)
332         {
333           total_len += ch->len = cb->current_length - icv_sz;
334           if (ipsec_sa_is_set_USE_ESN (sa0))
335             {
336               u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
337               clib_memcpy_fast (digest, &seq_hi, sizeof (seq_hi));
338               ch->len += sizeof (seq_hi);
339               total_len += sizeof (seq_hi);
340             }
341         }
342       else
343         total_len += ch->len = cb->current_length;
344       ch->src = vlib_buffer_get_current (cb);
345
346       if (!(cb->flags & VLIB_BUFFER_NEXT_PRESENT))
347         break;
348
349       cb = vlib_get_buffer (vm, cb->next_buffer);
350     }
351
352   if (n_ch)
353     *n_ch = n_chunks;
354
355   return total_len;
356 }
357
358 always_inline void
359 esp_prepare_sync_op (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
360                      vnet_crypto_op_t **crypto_ops,
361                      vnet_crypto_op_t **integ_ops, ipsec_sa_t *sa0, u32 seq_hi,
362                      u8 *payload, u16 payload_len, u8 iv_sz, u8 icv_sz, u32 bi,
363                      vlib_buffer_t **b, vlib_buffer_t *lb, u32 hdr_len,
364                      esp_header_t *esp)
365 {
366   if (sa0->crypto_enc_op_id)
367     {
368       vnet_crypto_op_t *op;
369       vec_add2_aligned (crypto_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
370       vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
371
372       op->src = op->dst = payload;
373       op->key_index = sa0->crypto_key_index;
374       op->len = payload_len - icv_sz;
375       op->user_data = bi;
376
377       if (ipsec_sa_is_set_IS_CTR (sa0))
378         {
379           ASSERT (sizeof (u64) == iv_sz);
380           /* construct nonce in a scratch space in front of the IP header */
381           esp_ctr_nonce_t *nonce =
382             (esp_ctr_nonce_t *) (payload - sizeof (u64) - hdr_len -
383                                  sizeof (*nonce));
384           u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
385
386           if (ipsec_sa_is_set_IS_AEAD (sa0))
387             {
388               /* constuct aad in a scratch space in front of the nonce */
389               op->aad = (u8 *) nonce - sizeof (esp_aead_t);
390               op->aad_len = esp_aad_fill (op->aad, esp, sa0, seq_hi);
391               op->tag = payload + op->len;
392               op->tag_len = 16;
393             }
394           else
395             {
396               nonce->ctr = clib_host_to_net_u32 (1);
397             }
398
399           nonce->salt = sa0->salt;
400           nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa0->ctr_iv_counter++);
401           op->iv = (u8 *) nonce;
402         }
403       else
404         {
405           op->iv = payload - iv_sz;
406           op->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
407         }
408
409       if (lb != b[0])
410         {
411           /* is chained */
412           op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
413           op->chunk_index = vec_len (ptd->chunks);
414           op->tag = vlib_buffer_get_tail (lb) - icv_sz;
415           esp_encrypt_chain_crypto (vm, ptd, sa0, b[0], lb, icv_sz, payload,
416                                     payload_len, &op->n_chunks);
417         }
418     }
419
420   if (sa0->integ_op_id)
421     {
422       vnet_crypto_op_t *op;
423       vec_add2_aligned (integ_ops[0], op, 1, CLIB_CACHE_LINE_BYTES);
424       vnet_crypto_op_init (op, sa0->integ_op_id);
425       op->src = payload - iv_sz - sizeof (esp_header_t);
426       op->digest = payload + payload_len - icv_sz;
427       op->key_index = sa0->integ_key_index;
428       op->digest_len = icv_sz;
429       op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
430       op->user_data = bi;
431
432       if (lb != b[0])
433         {
434           /* is chained */
435           op->flags |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
436           op->chunk_index = vec_len (ptd->chunks);
437           op->digest = vlib_buffer_get_tail (lb) - icv_sz;
438
439           esp_encrypt_chain_integ (vm, ptd, sa0, b[0], lb, icv_sz,
440                                    payload - iv_sz - sizeof (esp_header_t),
441                                    payload_len + iv_sz +
442                                    sizeof (esp_header_t), op->digest,
443                                    &op->n_chunks);
444         }
445       else if (ipsec_sa_is_set_USE_ESN (sa0))
446         {
447           u32 tmp = clib_net_to_host_u32 (seq_hi);
448           clib_memcpy_fast (op->digest, &tmp, sizeof (seq_hi));
449           op->len += sizeof (seq_hi);
450         }
451     }
452 }
453
454 static_always_inline void
455 esp_prepare_async_frame (vlib_main_t *vm, ipsec_per_thread_data_t *ptd,
456                          vnet_crypto_async_frame_t *async_frame,
457                          ipsec_sa_t *sa, vlib_buffer_t *b, esp_header_t *esp,
458                          u8 *payload, u32 payload_len, u8 iv_sz, u8 icv_sz,
459                          u32 bi, u16 next, u32 hdr_len, u16 async_next,
460                          vlib_buffer_t *lb)
461 {
462   esp_post_data_t *post = esp_post_data (b);
463   u8 *tag, *iv, *aad = 0;
464   u8 flag = 0;
465   u32 key_index;
466   i16 crypto_start_offset, integ_start_offset = 0;
467   u16 crypto_total_len, integ_total_len;
468
469   post->next_index = next;
470
471   /* crypto */
472   crypto_start_offset = payload - b->data;
473   crypto_total_len = integ_total_len = payload_len - icv_sz;
474   tag = payload + crypto_total_len;
475
476   key_index = sa->linked_key_index;
477
478   if (ipsec_sa_is_set_IS_CTR (sa))
479     {
480       ASSERT (sizeof (u64) == iv_sz);
481       /* construct nonce in a scratch space in front of the IP header */
482       esp_ctr_nonce_t *nonce = (esp_ctr_nonce_t *) (payload - sizeof (u64) -
483                                                     hdr_len - sizeof (*nonce));
484       u64 *pkt_iv = (u64 *) (payload - sizeof (u64));
485
486       if (ipsec_sa_is_set_IS_AEAD (sa))
487         {
488           /* constuct aad in a scratch space in front of the nonce */
489           aad = (u8 *) nonce - sizeof (esp_aead_t);
490           esp_aad_fill (aad, esp, sa, sa->seq_hi);
491           key_index = sa->crypto_key_index;
492         }
493       else
494         {
495           nonce->ctr = clib_host_to_net_u32 (1);
496         }
497
498       nonce->salt = sa->salt;
499       nonce->iv = *pkt_iv = clib_host_to_net_u64 (sa->ctr_iv_counter++);
500       iv = (u8 *) nonce;
501     }
502   else
503     {
504       iv = payload - iv_sz;
505       flag |= VNET_CRYPTO_OP_FLAG_INIT_IV;
506     }
507
508   if (lb != b)
509     {
510       /* chain */
511       flag |= VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS;
512       tag = vlib_buffer_get_tail (lb) - icv_sz;
513       crypto_total_len = esp_encrypt_chain_crypto (vm, ptd, sa, b, lb, icv_sz,
514                                                    payload, payload_len, 0);
515     }
516
517   if (sa->integ_op_id)
518     {
519       integ_start_offset = crypto_start_offset - iv_sz - sizeof (esp_header_t);
520       integ_total_len += iv_sz + sizeof (esp_header_t);
521
522       if (b != lb)
523         {
524           integ_total_len = esp_encrypt_chain_integ (
525             vm, ptd, sa, b, lb, icv_sz,
526             payload - iv_sz - sizeof (esp_header_t),
527             payload_len + iv_sz + sizeof (esp_header_t), tag, 0);
528         }
529       else if (ipsec_sa_is_set_USE_ESN (sa))
530         {
531           u32 seq_hi = clib_net_to_host_u32 (sa->seq_hi);
532           clib_memcpy_fast (tag, &seq_hi, sizeof (seq_hi));
533           integ_total_len += sizeof (seq_hi);
534         }
535     }
536
537   /* this always succeeds because we know the frame is not full */
538   vnet_crypto_async_add_to_frame (vm, async_frame, key_index, crypto_total_len,
539                                   integ_total_len - crypto_total_len,
540                                   crypto_start_offset, integ_start_offset, bi,
541                                   async_next, iv, tag, aad, flag);
542 }
543
544 always_inline uword
545 esp_encrypt_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
546                     vlib_frame_t *frame, vnet_link_t lt, int is_tun,
547                     u16 async_next_node)
548 {
549   ipsec_main_t *im = &ipsec_main;
550   ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
551   u32 *from = vlib_frame_vector_args (frame);
552   u32 n_left = frame->n_vectors;
553   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
554   u32 thread_index = vm->thread_index;
555   u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
556   u32 current_sa_index = ~0, current_sa_packets = 0;
557   u32 current_sa_bytes = 0, spi = 0;
558   u8 esp_align = 4, iv_sz = 0, icv_sz = 0;
559   ipsec_sa_t *sa0 = 0;
560   vlib_buffer_t *lb;
561   vnet_crypto_op_t **crypto_ops = &ptd->crypto_ops;
562   vnet_crypto_op_t **integ_ops = &ptd->integ_ops;
563   vnet_crypto_async_frame_t *async_frames[VNET_CRYPTO_ASYNC_OP_N_IDS];
564   int is_async = im->async_mode;
565   vnet_crypto_async_op_id_t async_op = ~0;
566   u16 drop_next =
567     (lt == VNET_LINK_IP6 ? ESP_ENCRYPT_NEXT_DROP6 :
568                            (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_DROP4 :
569                                                   ESP_ENCRYPT_NEXT_DROP_MPLS));
570   u16 handoff_next = (lt == VNET_LINK_IP6 ?
571                         ESP_ENCRYPT_NEXT_HANDOFF6 :
572                         (lt == VNET_LINK_IP4 ? ESP_ENCRYPT_NEXT_HANDOFF4 :
573                                                ESP_ENCRYPT_NEXT_HANDOFF_MPLS));
574   vlib_buffer_t *sync_bufs[VLIB_FRAME_SIZE];
575   u16 sync_nexts[VLIB_FRAME_SIZE], *sync_next = sync_nexts, n_sync = 0;
576   u16 n_async = 0;
577   u16 noop_nexts[VLIB_FRAME_SIZE], n_noop = 0;
578   u32 sync_bi[VLIB_FRAME_SIZE];
579   u32 noop_bi[VLIB_FRAME_SIZE];
580   esp_encrypt_error_t err;
581
582   vlib_get_buffers (vm, from, b, n_left);
583
584   vec_reset_length (ptd->crypto_ops);
585   vec_reset_length (ptd->integ_ops);
586   vec_reset_length (ptd->chained_crypto_ops);
587   vec_reset_length (ptd->chained_integ_ops);
588   vec_reset_length (ptd->async_frames);
589   vec_reset_length (ptd->chunks);
590   clib_memset (async_frames, 0, sizeof (async_frames));
591
592   while (n_left > 0)
593     {
594       u32 sa_index0;
595       dpo_id_t *dpo;
596       esp_header_t *esp;
597       u8 *payload, *next_hdr_ptr;
598       u16 payload_len, payload_len_total, n_bufs;
599       u32 hdr_len;
600
601       err = ESP_ENCRYPT_ERROR_RX_PKTS;
602
603       if (n_left > 2)
604         {
605           u8 *p;
606           vlib_prefetch_buffer_header (b[2], LOAD);
607           p = vlib_buffer_get_current (b[1]);
608           clib_prefetch_load (p);
609           p -= CLIB_CACHE_LINE_BYTES;
610           clib_prefetch_load (p);
611           /* speculate that the trailer goes in the first buffer */
612           CLIB_PREFETCH (vlib_buffer_get_tail (b[1]),
613                          CLIB_CACHE_LINE_BYTES, LOAD);
614         }
615
616       if (is_tun)
617         {
618           /* we are on a ipsec tunnel's feature arc */
619           vnet_buffer (b[0])->ipsec.sad_index =
620             sa_index0 = ipsec_tun_protect_get_sa_out
621             (vnet_buffer (b[0])->ip.adj_index[VLIB_TX]);
622
623           if (PREDICT_FALSE (INDEX_INVALID == sa_index0))
624             {
625               err = ESP_ENCRYPT_ERROR_NO_PROTECTION;
626               esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
627                                   drop_next);
628               goto trace;
629             }
630         }
631       else
632         sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
633
634       if (sa_index0 != current_sa_index)
635         {
636           if (current_sa_packets)
637             vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
638                                              current_sa_index,
639                                              current_sa_packets,
640                                              current_sa_bytes);
641           current_sa_packets = current_sa_bytes = 0;
642
643           sa0 = ipsec_sa_get (sa_index0);
644
645           if (PREDICT_FALSE ((sa0->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
646                               sa0->integ_alg == IPSEC_INTEG_ALG_NONE) &&
647                              !ipsec_sa_is_set_NO_ALGO_NO_DROP (sa0)))
648             {
649               err = ESP_ENCRYPT_ERROR_NO_ENCRYPTION;
650               esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
651                                   drop_next);
652               goto trace;
653             }
654           /* fetch the second cacheline ASAP */
655           clib_prefetch_load (sa0->cacheline1);
656
657           current_sa_index = sa_index0;
658           spi = clib_net_to_host_u32 (sa0->spi);
659           esp_align = sa0->esp_block_align;
660           icv_sz = sa0->integ_icv_size;
661           iv_sz = sa0->crypto_iv_size;
662           is_async = im->async_mode | ipsec_sa_is_set_IS_ASYNC (sa0);
663         }
664
665       if (PREDICT_FALSE (~0 == sa0->thread_index))
666         {
667           /* this is the first packet to use this SA, claim the SA
668            * for this thread. this could happen simultaneously on
669            * another thread */
670           clib_atomic_cmp_and_swap (&sa0->thread_index, ~0,
671                                     ipsec_sa_assign_thread (thread_index));
672         }
673
674       if (PREDICT_FALSE (thread_index != sa0->thread_index))
675         {
676           vnet_buffer (b[0])->ipsec.thread_index = sa0->thread_index;
677           err = ESP_ENCRYPT_ERROR_HANDOFF;
678           esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
679                               handoff_next);
680           goto trace;
681         }
682
683       lb = b[0];
684       n_bufs = vlib_buffer_chain_linearize (vm, b[0]);
685       if (n_bufs == 0)
686         {
687           err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
688           esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
689           goto trace;
690         }
691
692       if (n_bufs > 1)
693         {
694           /* find last buffer in the chain */
695           while (lb->flags & VLIB_BUFFER_NEXT_PRESENT)
696             lb = vlib_get_buffer (vm, lb->next_buffer);
697         }
698
699       if (PREDICT_FALSE (esp_seq_advance (sa0)))
700         {
701           err = ESP_ENCRYPT_ERROR_SEQ_CYCLED;
702           esp_set_next_index (b[0], node, err, n_noop, noop_nexts, drop_next);
703           goto trace;
704         }
705
706       /* space for IV */
707       hdr_len = iv_sz;
708
709       if (ipsec_sa_is_set_IS_TUNNEL (sa0))
710         {
711           payload = vlib_buffer_get_current (b[0]);
712           next_hdr_ptr = esp_add_footer_and_icv (
713             vm, &lb, esp_align, icv_sz, node, buffer_data_size,
714             vlib_buffer_length_in_chain (vm, b[0]));
715           if (!next_hdr_ptr)
716             {
717               err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
718               esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
719                                   drop_next);
720               goto trace;
721             }
722           b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
723           payload_len = b[0]->current_length;
724           payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
725
726           /* ESP header */
727           hdr_len += sizeof (*esp);
728           esp = (esp_header_t *) (payload - hdr_len);
729
730           /* optional UDP header */
731           if (ipsec_sa_is_set_UDP_ENCAP (sa0))
732             {
733               hdr_len += sizeof (udp_header_t);
734               esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
735                                 payload_len_total + hdr_len);
736             }
737
738           /* IP header */
739           if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
740             {
741               ip6_header_t *ip6;
742               u16 len = sizeof (ip6_header_t);
743               hdr_len += len;
744               ip6 = (ip6_header_t *) (payload - hdr_len);
745               clib_memcpy_fast (ip6, &sa0->ip6_hdr, sizeof (ip6_header_t));
746
747               if (VNET_LINK_IP6 == lt)
748                 {
749                   *next_hdr_ptr = IP_PROTOCOL_IPV6;
750                   tunnel_encap_fixup_6o6 (sa0->tunnel_flags,
751                                           (const ip6_header_t *) payload,
752                                           ip6);
753                 }
754               else if (VNET_LINK_IP4 == lt)
755                 {
756                   *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
757                   tunnel_encap_fixup_4o6 (sa0->tunnel_flags, b[0],
758                                           (const ip4_header_t *) payload, ip6);
759                 }
760               else if (VNET_LINK_MPLS == lt)
761                 {
762                   *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
763                   tunnel_encap_fixup_mplso6 (
764                     sa0->tunnel_flags, b[0],
765                     (const mpls_unicast_header_t *) payload, ip6);
766                 }
767               else
768                 ASSERT (0);
769
770               len = payload_len_total + hdr_len - len;
771               ip6->payload_length = clib_net_to_host_u16 (len);
772               b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
773             }
774           else
775             {
776               ip4_header_t *ip4;
777               u16 len = sizeof (ip4_header_t);
778               hdr_len += len;
779               ip4 = (ip4_header_t *) (payload - hdr_len);
780               clib_memcpy_fast (ip4, &sa0->ip4_hdr, sizeof (ip4_header_t));
781
782               if (VNET_LINK_IP6 == lt)
783                 {
784                   *next_hdr_ptr = IP_PROTOCOL_IPV6;
785                   tunnel_encap_fixup_6o4_w_chksum (sa0->tunnel_flags,
786                                                    (const ip6_header_t *)
787                                                    payload, ip4);
788                 }
789               else if (VNET_LINK_IP4 == lt)
790                 {
791                   *next_hdr_ptr = IP_PROTOCOL_IP_IN_IP;
792                   tunnel_encap_fixup_4o4_w_chksum (sa0->tunnel_flags,
793                                                    (const ip4_header_t *)
794                                                    payload, ip4);
795                 }
796               else if (VNET_LINK_MPLS == lt)
797                 {
798                   *next_hdr_ptr = IP_PROTOCOL_MPLS_IN_IP;
799                   tunnel_encap_fixup_mplso4_w_chksum (
800                     sa0->tunnel_flags, (const mpls_unicast_header_t *) payload,
801                     ip4);
802                 }
803               else
804                 ASSERT (0);
805
806               len = payload_len_total + hdr_len;
807               esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
808             }
809
810           dpo = &sa0->dpo;
811           if (!is_tun)
812             {
813               sync_next[0] = dpo->dpoi_next_node;
814               vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
815             }
816           else
817             sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
818           b[0]->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
819         }
820       else                      /* transport mode */
821         {
822           u8 *l2_hdr, l2_len, *ip_hdr;
823           u16 ip_len;
824           ip6_ext_header_t *ext_hdr;
825           udp_header_t *udp = 0;
826           u16 udp_len = 0;
827           u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
828
829           /*
830            * Get extension header chain length. It might be longer than the
831            * buffer's pre_data area.
832            */
833           ip_len =
834             (VNET_LINK_IP6 == lt ?
835                esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr, &ext_hdr) :
836                ip4_header_bytes ((ip4_header_t *) old_ip_hdr));
837           if ((old_ip_hdr - ip_len) < &b[0]->pre_data[0])
838             {
839               err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
840               esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
841                                   drop_next);
842               goto trace;
843             }
844
845           vlib_buffer_advance (b[0], ip_len);
846           payload = vlib_buffer_get_current (b[0]);
847           next_hdr_ptr = esp_add_footer_and_icv (
848             vm, &lb, esp_align, icv_sz, node, buffer_data_size,
849             vlib_buffer_length_in_chain (vm, b[0]));
850           if (!next_hdr_ptr)
851             {
852               err = ESP_ENCRYPT_ERROR_NO_BUFFERS;
853               esp_set_next_index (b[0], node, err, n_noop, noop_nexts,
854                                   drop_next);
855               goto trace;
856             }
857
858           b[0]->flags &= ~VLIB_BUFFER_TOTAL_LENGTH_VALID;
859           payload_len = b[0]->current_length;
860           payload_len_total = vlib_buffer_length_in_chain (vm, b[0]);
861
862           /* ESP header */
863           hdr_len += sizeof (*esp);
864           esp = (esp_header_t *) (payload - hdr_len);
865
866           /* optional UDP header */
867           if (ipsec_sa_is_set_UDP_ENCAP (sa0))
868             {
869               hdr_len += sizeof (udp_header_t);
870               udp = (udp_header_t *) (payload - hdr_len);
871             }
872
873           /* IP header */
874           hdr_len += ip_len;
875           ip_hdr = payload - hdr_len;
876
877           /* L2 header */
878           if (!is_tun)
879             {
880               l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
881               hdr_len += l2_len;
882               l2_hdr = payload - hdr_len;
883
884               /* copy l2 and ip header */
885               clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
886             }
887           else
888             l2_len = 0;
889
890           u16 len;
891           len = payload_len_total + hdr_len - l2_len;
892
893           if (VNET_LINK_IP6 == lt)
894             {
895               ip6_header_t *ip6 = (ip6_header_t *) (old_ip_hdr);
896               if (PREDICT_TRUE (NULL == ext_hdr))
897                 {
898                   *next_hdr_ptr = ip6->protocol;
899                   ip6->protocol =
900                     (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
901                 }
902               else
903                 {
904                   *next_hdr_ptr = ext_hdr->next_hdr;
905                   ext_hdr->next_hdr =
906                     (udp) ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
907                 }
908               ip6->payload_length =
909                 clib_host_to_net_u16 (len - sizeof (ip6_header_t));
910             }
911           else if (VNET_LINK_IP4 == lt)
912             {
913               ip4_header_t *ip4 = (ip4_header_t *) (old_ip_hdr);
914               *next_hdr_ptr = ip4->protocol;
915               esp_update_ip4_hdr (ip4, len, /* is_transport */ 1,
916                                   (udp != NULL));
917             }
918
919           clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
920
921           if (udp)
922             {
923               udp_len = len - ip_len;
924               esp_fill_udp_hdr (sa0, udp, udp_len);
925             }
926
927           sync_next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
928         }
929
930       if (lb != b[0])
931         {
932           crypto_ops = &ptd->chained_crypto_ops;
933           integ_ops = &ptd->chained_integ_ops;
934         }
935       else
936         {
937           crypto_ops = &ptd->crypto_ops;
938           integ_ops = &ptd->integ_ops;
939         }
940
941       esp->spi = spi;
942       esp->seq = clib_net_to_host_u32 (sa0->seq);
943
944       if (is_async)
945         {
946           async_op = sa0->crypto_async_enc_op_id;
947
948           /* get a frame for this op if we don't yet have one or it's full
949            */
950           if (NULL == async_frames[async_op] ||
951               vnet_crypto_async_frame_is_full (async_frames[async_op]))
952             {
953               async_frames[async_op] =
954                 vnet_crypto_async_get_frame (vm, async_op);
955               /* Save the frame to the list we'll submit at the end */
956               vec_add1 (ptd->async_frames, async_frames[async_op]);
957             }
958
959           esp_prepare_async_frame (vm, ptd, async_frames[async_op], sa0, b[0],
960                                    esp, payload, payload_len, iv_sz, icv_sz,
961                                    from[b - bufs], sync_next[0], hdr_len,
962                                    async_next_node, lb);
963         }
964       else
965         esp_prepare_sync_op (vm, ptd, crypto_ops, integ_ops, sa0, sa0->seq_hi,
966                              payload, payload_len, iv_sz, icv_sz, n_sync, b,
967                              lb, hdr_len, esp);
968
969       vlib_buffer_advance (b[0], 0LL - hdr_len);
970
971       current_sa_packets += 1;
972       current_sa_bytes += payload_len_total;
973
974     trace:
975       if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
976         {
977           esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
978                                                     sizeof (*tr));
979           if (INDEX_INVALID == sa_index0)
980             clib_memset_u8 (tr, 0xff, sizeof (*tr));
981           else
982             {
983               tr->sa_index = sa_index0;
984               tr->spi = sa0->spi;
985               tr->seq = sa0->seq;
986               tr->sa_seq_hi = sa0->seq_hi;
987               tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
988               tr->crypto_alg = sa0->crypto_alg;
989               tr->integ_alg = sa0->integ_alg;
990             }
991         }
992
993       /* next */
994       if (ESP_ENCRYPT_ERROR_RX_PKTS != err)
995         {
996           noop_bi[n_noop] = from[b - bufs];
997           n_noop++;
998         }
999       else if (!is_async)
1000         {
1001           sync_bi[n_sync] = from[b - bufs];
1002           sync_bufs[n_sync] = b[0];
1003           n_sync++;
1004           sync_next++;
1005         }
1006       else
1007         {
1008           n_async++;
1009         }
1010       n_left -= 1;
1011       b += 1;
1012     }
1013
1014   if (INDEX_INVALID != current_sa_index)
1015     vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
1016                                      current_sa_index, current_sa_packets,
1017                                      current_sa_bytes);
1018   if (n_sync)
1019     {
1020       esp_process_ops (vm, node, ptd->crypto_ops, sync_bufs, sync_nexts,
1021                        drop_next);
1022       esp_process_chained_ops (vm, node, ptd->chained_crypto_ops, sync_bufs,
1023                                sync_nexts, ptd->chunks, drop_next);
1024
1025       esp_process_ops (vm, node, ptd->integ_ops, sync_bufs, sync_nexts,
1026                        drop_next);
1027       esp_process_chained_ops (vm, node, ptd->chained_integ_ops, sync_bufs,
1028                                sync_nexts, ptd->chunks, drop_next);
1029
1030       vlib_buffer_enqueue_to_next (vm, node, sync_bi, sync_nexts, n_sync);
1031     }
1032   if (n_async)
1033     {
1034       /* submit all of the open frames */
1035       vnet_crypto_async_frame_t **async_frame;
1036
1037       vec_foreach (async_frame, ptd->async_frames)
1038         {
1039           if (vnet_crypto_async_submit_open_frame (vm, *async_frame) < 0)
1040             {
1041               n_noop += esp_async_recycle_failed_submit (
1042                 vm, *async_frame, node, ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR,
1043                 n_noop, noop_bi, noop_nexts, drop_next);
1044               vnet_crypto_async_reset_frame (*async_frame);
1045               vnet_crypto_async_free_frame (vm, *async_frame);
1046             }
1047         }
1048     }
1049   if (n_noop)
1050     vlib_buffer_enqueue_to_next (vm, node, noop_bi, noop_nexts, n_noop);
1051
1052   vlib_node_increment_counter (vm, node->node_index, ESP_ENCRYPT_ERROR_RX_PKTS,
1053                                frame->n_vectors);
1054
1055   return frame->n_vectors;
1056 }
1057
1058 always_inline uword
1059 esp_encrypt_post_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1060                          vlib_frame_t * frame)
1061 {
1062   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
1063   u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
1064   u32 *from = vlib_frame_vector_args (frame);
1065   u32 n_left = frame->n_vectors;
1066
1067   vlib_get_buffers (vm, from, b, n_left);
1068
1069   if (n_left >= 4)
1070     {
1071       vlib_prefetch_buffer_header (b[0], LOAD);
1072       vlib_prefetch_buffer_header (b[1], LOAD);
1073       vlib_prefetch_buffer_header (b[2], LOAD);
1074       vlib_prefetch_buffer_header (b[3], LOAD);
1075     }
1076
1077   while (n_left > 8)
1078     {
1079       vlib_prefetch_buffer_header (b[4], LOAD);
1080       vlib_prefetch_buffer_header (b[5], LOAD);
1081       vlib_prefetch_buffer_header (b[6], LOAD);
1082       vlib_prefetch_buffer_header (b[7], LOAD);
1083
1084       next[0] = (esp_post_data (b[0]))->next_index;
1085       next[1] = (esp_post_data (b[1]))->next_index;
1086       next[2] = (esp_post_data (b[2]))->next_index;
1087       next[3] = (esp_post_data (b[3]))->next_index;
1088
1089       if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1090         {
1091           if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
1092             {
1093               esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1094                                                              sizeof (*tr));
1095               tr->next_index = next[0];
1096             }
1097           if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
1098             {
1099               esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[1],
1100                                                              sizeof (*tr));
1101               tr->next_index = next[1];
1102             }
1103           if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
1104             {
1105               esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[2],
1106                                                              sizeof (*tr));
1107               tr->next_index = next[2];
1108             }
1109           if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
1110             {
1111               esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[3],
1112                                                              sizeof (*tr));
1113               tr->next_index = next[3];
1114             }
1115         }
1116
1117       b += 4;
1118       next += 4;
1119       n_left -= 4;
1120     }
1121
1122   while (n_left > 0)
1123     {
1124       next[0] = (esp_post_data (b[0]))->next_index;
1125       if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
1126         {
1127           esp_encrypt_post_trace_t *tr = vlib_add_trace (vm, node, b[0],
1128                                                          sizeof (*tr));
1129           tr->next_index = next[0];
1130         }
1131
1132       b += 1;
1133       next += 1;
1134       n_left -= 1;
1135     }
1136
1137   vlib_node_increment_counter (vm, node->node_index,
1138                                ESP_ENCRYPT_ERROR_POST_RX_PKTS,
1139                                frame->n_vectors);
1140   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
1141   return frame->n_vectors;
1142 }
1143
1144 VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
1145                                   vlib_node_runtime_t * node,
1146                                   vlib_frame_t * from_frame)
1147 {
1148   return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 0,
1149                              esp_encrypt_async_next.esp4_post_next);
1150 }
1151
1152 /* *INDENT-OFF* */
1153 VLIB_REGISTER_NODE (esp4_encrypt_node) = {
1154   .name = "esp4-encrypt",
1155   .vector_size = sizeof (u32),
1156   .format_trace = format_esp_encrypt_trace,
1157   .type = VLIB_NODE_TYPE_INTERNAL,
1158
1159   .n_errors = ESP_ENCRYPT_N_ERROR,
1160   .error_counters = esp_encrypt_error_counters,
1161
1162   .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1163   .next_nodes = { [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1164                   [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1165                   [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1166                   [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-handoff",
1167                   [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-handoff",
1168                   [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "error-drop",
1169                   [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output" },
1170 };
1171 /* *INDENT-ON* */
1172
1173 VLIB_NODE_FN (esp4_encrypt_post_node) (vlib_main_t * vm,
1174                                        vlib_node_runtime_t * node,
1175                                        vlib_frame_t * from_frame)
1176 {
1177   return esp_encrypt_post_inline (vm, node, from_frame);
1178 }
1179
1180 /* *INDENT-OFF* */
1181 VLIB_REGISTER_NODE (esp4_encrypt_post_node) = {
1182   .name = "esp4-encrypt-post",
1183   .vector_size = sizeof (u32),
1184   .format_trace = format_esp_post_encrypt_trace,
1185   .type = VLIB_NODE_TYPE_INTERNAL,
1186   .sibling_of = "esp4-encrypt",
1187
1188   .n_errors = ESP_ENCRYPT_N_ERROR,
1189   .error_counters = esp_encrypt_error_counters,
1190 };
1191 /* *INDENT-ON* */
1192
1193 VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
1194                                   vlib_node_runtime_t * node,
1195                                   vlib_frame_t * from_frame)
1196 {
1197   return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 0,
1198                              esp_encrypt_async_next.esp6_post_next);
1199 }
1200
1201 /* *INDENT-OFF* */
1202 VLIB_REGISTER_NODE (esp6_encrypt_node) = {
1203   .name = "esp6-encrypt",
1204   .vector_size = sizeof (u32),
1205   .format_trace = format_esp_encrypt_trace,
1206   .type = VLIB_NODE_TYPE_INTERNAL,
1207   .sibling_of = "esp4-encrypt",
1208
1209   .n_errors = ESP_ENCRYPT_N_ERROR,
1210   .error_counters = esp_encrypt_error_counters,
1211 };
1212 /* *INDENT-ON* */
1213
1214 VLIB_NODE_FN (esp6_encrypt_post_node) (vlib_main_t * vm,
1215                                        vlib_node_runtime_t * node,
1216                                        vlib_frame_t * from_frame)
1217 {
1218   return esp_encrypt_post_inline (vm, node, from_frame);
1219 }
1220
1221 /* *INDENT-OFF* */
1222 VLIB_REGISTER_NODE (esp6_encrypt_post_node) = {
1223   .name = "esp6-encrypt-post",
1224   .vector_size = sizeof (u32),
1225   .format_trace = format_esp_post_encrypt_trace,
1226   .type = VLIB_NODE_TYPE_INTERNAL,
1227   .sibling_of = "esp4-encrypt",
1228
1229   .n_errors = ESP_ENCRYPT_N_ERROR,
1230   .error_counters = esp_encrypt_error_counters,
1231 };
1232 /* *INDENT-ON* */
1233
1234 VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
1235                                       vlib_node_runtime_t * node,
1236                                       vlib_frame_t * from_frame)
1237 {
1238   return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP4, 1,
1239                              esp_encrypt_async_next.esp4_tun_post_next);
1240 }
1241
1242 /* *INDENT-OFF* */
1243 VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
1244   .name = "esp4-encrypt-tun",
1245   .vector_size = sizeof (u32),
1246   .format_trace = format_esp_encrypt_trace,
1247   .type = VLIB_NODE_TYPE_INTERNAL,
1248
1249   .n_errors = ESP_ENCRYPT_N_ERROR,
1250   .error_counters = esp_encrypt_error_counters,
1251
1252   .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1253   .next_nodes = {
1254     [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1255     [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1256     [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1257     [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1258     [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1259     [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1260     [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1261   },
1262 };
1263
1264 VLIB_NODE_FN (esp4_encrypt_tun_post_node) (vlib_main_t * vm,
1265                                   vlib_node_runtime_t * node,
1266                                   vlib_frame_t * from_frame)
1267 {
1268   return esp_encrypt_post_inline (vm, node, from_frame);
1269 }
1270
1271 /* *INDENT-OFF* */
1272 VLIB_REGISTER_NODE (esp4_encrypt_tun_post_node) = {
1273   .name = "esp4-encrypt-tun-post",
1274   .vector_size = sizeof (u32),
1275   .format_trace = format_esp_post_encrypt_trace,
1276   .type = VLIB_NODE_TYPE_INTERNAL,
1277   .sibling_of = "esp4-encrypt-tun",
1278
1279   .n_errors = ESP_ENCRYPT_N_ERROR,
1280   .error_counters = esp_encrypt_error_counters,
1281 };
1282 /* *INDENT-ON* */
1283
1284 VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
1285                                       vlib_node_runtime_t * node,
1286                                       vlib_frame_t * from_frame)
1287 {
1288   return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_IP6, 1,
1289                              esp_encrypt_async_next.esp6_tun_post_next);
1290 }
1291
1292 /* *INDENT-OFF* */
1293 VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
1294   .name = "esp6-encrypt-tun",
1295   .vector_size = sizeof (u32),
1296   .format_trace = format_esp_encrypt_trace,
1297   .type = VLIB_NODE_TYPE_INTERNAL,
1298
1299   .n_errors = ESP_ENCRYPT_N_ERROR,
1300   .error_counters = esp_encrypt_error_counters,
1301
1302   .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1303   .next_nodes = {
1304     [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1305     [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1306     [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1307     [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1308     [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1309     [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1310     [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1311   },
1312 };
1313
1314 /* *INDENT-ON* */
1315
1316 VLIB_NODE_FN (esp6_encrypt_tun_post_node) (vlib_main_t * vm,
1317                                            vlib_node_runtime_t * node,
1318                                            vlib_frame_t * from_frame)
1319 {
1320   return esp_encrypt_post_inline (vm, node, from_frame);
1321 }
1322
1323 /* *INDENT-OFF* */
1324 VLIB_REGISTER_NODE (esp6_encrypt_tun_post_node) = {
1325   .name = "esp6-encrypt-tun-post",
1326   .vector_size = sizeof (u32),
1327   .format_trace = format_esp_post_encrypt_trace,
1328   .type = VLIB_NODE_TYPE_INTERNAL,
1329   .sibling_of = "esp-mpls-encrypt-tun",
1330
1331   .n_errors = ESP_ENCRYPT_N_ERROR,
1332   .error_counters = esp_encrypt_error_counters,
1333 };
1334 /* *INDENT-ON* */
1335
1336 VLIB_NODE_FN (esp_mpls_encrypt_tun_node)
1337 (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1338 {
1339   return esp_encrypt_inline (vm, node, from_frame, VNET_LINK_MPLS, 1,
1340                              esp_encrypt_async_next.esp_mpls_tun_post_next);
1341 }
1342
1343 VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_node) = {
1344   .name = "esp-mpls-encrypt-tun",
1345   .vector_size = sizeof (u32),
1346   .format_trace = format_esp_encrypt_trace,
1347   .type = VLIB_NODE_TYPE_INTERNAL,
1348
1349   .n_errors = ESP_ENCRYPT_N_ERROR,
1350   .error_counters = esp_encrypt_error_counters,
1351
1352   .n_next_nodes = ESP_ENCRYPT_N_NEXT,
1353   .next_nodes = {
1354     [ESP_ENCRYPT_NEXT_DROP4] = "ip4-drop",
1355     [ESP_ENCRYPT_NEXT_DROP6] = "ip6-drop",
1356     [ESP_ENCRYPT_NEXT_DROP_MPLS] = "mpls-drop",
1357     [ESP_ENCRYPT_NEXT_HANDOFF4] = "esp4-encrypt-tun-handoff",
1358     [ESP_ENCRYPT_NEXT_HANDOFF6] = "esp6-encrypt-tun-handoff",
1359     [ESP_ENCRYPT_NEXT_HANDOFF_MPLS] = "esp-mpls-encrypt-tun-handoff",
1360     [ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "adj-midchain-tx",
1361   },
1362 };
1363
1364 VLIB_NODE_FN (esp_mpls_encrypt_tun_post_node)
1365 (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
1366 {
1367   return esp_encrypt_post_inline (vm, node, from_frame);
1368 }
1369
1370 VLIB_REGISTER_NODE (esp_mpls_encrypt_tun_post_node) = {
1371   .name = "esp-mpls-encrypt-tun-post",
1372   .vector_size = sizeof (u32),
1373   .format_trace = format_esp_post_encrypt_trace,
1374   .type = VLIB_NODE_TYPE_INTERNAL,
1375   .sibling_of = "esp-mpls-encrypt-tun",
1376
1377   .n_errors = ESP_ENCRYPT_N_ERROR,
1378   .error_counters = esp_encrypt_error_counters,
1379 };
1380
1381 #ifndef CLIB_MARCH_VARIANT
1382
1383 static clib_error_t *
1384 esp_encrypt_init (vlib_main_t *vm)
1385 {
1386   ipsec_main_t *im = &ipsec_main;
1387
1388   im->esp4_enc_fq_index =
1389     vlib_frame_queue_main_init (esp4_encrypt_node.index, 0);
1390   im->esp6_enc_fq_index =
1391     vlib_frame_queue_main_init (esp6_encrypt_node.index, 0);
1392   im->esp4_enc_tun_fq_index =
1393     vlib_frame_queue_main_init (esp4_encrypt_tun_node.index, 0);
1394   im->esp6_enc_tun_fq_index =
1395     vlib_frame_queue_main_init (esp6_encrypt_tun_node.index, 0);
1396   im->esp_mpls_enc_tun_fq_index =
1397     vlib_frame_queue_main_init (esp_mpls_encrypt_tun_node.index, 0);
1398
1399   return 0;
1400 }
1401
1402 VLIB_INIT_FUNCTION (esp_encrypt_init);
1403
1404 #endif
1405
1406 /*
1407  * fd.io coding-style-patch-verification: ON
1408  *
1409  * Local Variables:
1410  * eval: (c-set-style "gnu")
1411  * End:
1412  */