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