blob: 9f1e2d6c5a1a45db41c1033fdd78b5a5856c98ad [file] [log] [blame]
Neale Rannsc87b66c2019-02-07 07:26:12 -08001/*
2 * ipsec_tun_protect_in.c : IPSec interface input node
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21
22#include <vnet/ipsec/ipsec.h>
23#include <vnet/ipsec/esp.h>
24#include <vnet/ipsec/ipsec_io.h>
25#include <vnet/ipsec/ipsec_punt.h>
26#include <vnet/ipsec/ipsec_tun.h>
Neale Ranns93688d72022-08-09 03:34:51 +000027#include <vnet/ipsec/ipsec.api_enum.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080028#include <vnet/ip/ip4_input.h>
29
Neale Ranns93688d72022-08-09 03:34:51 +000030typedef vl_counter_ipsec_tun_enum_t ipsec_tun_protect_input_error_t;
Neale Rannsc87b66c2019-02-07 07:26:12 -080031
32typedef enum ipsec_tun_next_t_
33{
34#define _(v, s) IPSEC_TUN_PROTECT_NEXT_##v,
35 foreach_ipsec_input_next
36#undef _
Neale Ranns7ec120e2020-01-21 04:58:02 +000037 IPSEC_TUN_PROTECT_N_NEXT,
Neale Rannsc87b66c2019-02-07 07:26:12 -080038} ipsec_tun_next_t;
39
40typedef struct
41{
Neale Ranns41afb332019-07-16 06:19:35 -070042 union
43 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +000044 ipsec4_tunnel_kv_t kv4;
45 ipsec6_tunnel_kv_t kv6;
Neale Ranns41afb332019-07-16 06:19:35 -070046 };
47 u8 is_ip6;
Neale Rannsc87b66c2019-02-07 07:26:12 -080048 u32 seq;
49} ipsec_tun_protect_input_trace_t;
50
51static u8 *
52format_ipsec_tun_protect_input_trace (u8 * s, va_list * args)
53{
54 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
55 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
56 ipsec_tun_protect_input_trace_t *t =
57 va_arg (*args, ipsec_tun_protect_input_trace_t *);
58
Neale Ranns41afb332019-07-16 06:19:35 -070059 if (t->is_ip6)
Neale Ranns7b4e52f2020-05-24 16:17:50 +000060 s = format (s, "IPSec: %U seq %u",
61 format_ipsec6_tunnel_kv, &t->kv6, t->seq);
Neale Ranns41afb332019-07-16 06:19:35 -070062 else
Neale Ranns12989b52019-09-26 16:20:19 +000063 s = format (s, "IPSec: %U seq %u sa %d",
Neale Ranns7b4e52f2020-05-24 16:17:50 +000064 format_ipsec4_tunnel_kv, &t->kv4, t->seq);
Neale Rannsc87b66c2019-02-07 07:26:12 -080065 return s;
66}
67
68always_inline u16
69ipsec_ip4_if_no_tunnel (vlib_node_runtime_t * node,
70 vlib_buffer_t * b,
71 const esp_header_t * esp, const ip4_header_t * ip4)
72{
73 if (PREDICT_FALSE (0 == esp->spi))
74 {
Neale Ranns93688d72022-08-09 03:34:51 +000075 b->error = node->errors[IPSEC_TUN_ERROR_SPI_0];
Neale Rannsc87b66c2019-02-07 07:26:12 -080076 b->punt_reason = ipsec_punt_reason[(ip4->protocol == IP_PROTOCOL_UDP ?
77 IPSEC_PUNT_IP4_SPI_UDP_0 :
Neale Ranns719beb72019-07-10 07:10:25 +000078 IPSEC_PUNT_IP4_NO_SUCH_TUNNEL)];
Neale Rannsc87b66c2019-02-07 07:26:12 -080079 }
80 else
81 {
Neale Ranns93688d72022-08-09 03:34:51 +000082 b->error = node->errors[IPSEC_TUN_ERROR_NO_TUNNEL];
Neale Rannsc87b66c2019-02-07 07:26:12 -080083 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP4_NO_SUCH_TUNNEL];
84 }
Brian Russell7a29a2d2021-02-22 18:42:24 +000085 return VNET_DEVICE_INPUT_NEXT_PUNT;
Neale Rannsc87b66c2019-02-07 07:26:12 -080086}
87
88always_inline u16
Matthew Smith6f1eb482022-08-09 22:19:38 +000089ipsec_ip6_if_no_tunnel (vlib_node_runtime_t *node, vlib_buffer_t *b,
90 const esp_header_t *esp, const ip6_header_t *ip6)
Neale Rannsc87b66c2019-02-07 07:26:12 -080091{
Matthew Smith6f1eb482022-08-09 22:19:38 +000092 if (PREDICT_FALSE (0 == esp->spi))
93 {
94 b->error = node->errors[IPSEC_TUN_ERROR_SPI_0];
95 b->punt_reason = ipsec_punt_reason[(ip6->protocol == IP_PROTOCOL_UDP ?
96 IPSEC_PUNT_IP6_SPI_UDP_0 :
97 IPSEC_PUNT_IP6_NO_SUCH_TUNNEL)];
98 }
99 else
100 {
101 b->error = node->errors[IPSEC_TUN_ERROR_NO_TUNNEL];
102 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP6_NO_SUCH_TUNNEL];
103 }
Neale Ranns719beb72019-07-10 07:10:25 +0000104
Brian Russell7a29a2d2021-02-22 18:42:24 +0000105 return VNET_DEVICE_INPUT_NEXT_PUNT;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800106}
107
108always_inline uword
109ipsec_tun_protect_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
110 vlib_frame_t * from_frame, int is_ip6)
111{
112 ipsec_main_t *im = &ipsec_main;
113 vnet_main_t *vnm = im->vnet_main;
114 vnet_interface_main_t *vim = &vnm->interface_main;
115
116 int is_trace = node->flags & VLIB_NODE_FLAG_TRACE;
117 u32 thread_index = vm->thread_index;
118
119 u32 n_left_from, *from;
120 u16 nexts[VLIB_FRAME_SIZE], *next;
121 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
122
123 from = vlib_frame_vector_args (from_frame);
124 n_left_from = from_frame->n_vectors;
125
126 vlib_get_buffers (vm, from, bufs, n_left_from);
127 b = bufs;
128 next = nexts;
129
Brian Russell7a29a2d2021-02-22 18:42:24 +0000130 clib_memset_u16 (
131 nexts, is_ip6 ? im->esp6_decrypt_next_index : im->esp4_decrypt_next_index,
132 n_left_from);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800133
134 u64 n_bytes = 0, n_packets = 0;
135 u32 n_disabled = 0, n_no_tunnel = 0;
136
137 u32 last_sw_if_index = ~0;
138 ipsec_tun_lkup_result_t last_result = {
139 .tun_index = ~0
140 };
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000141 ipsec4_tunnel_kv_t last_key4;
142 ipsec6_tunnel_kv_t last_key6;
Neale Ranns302b25a2020-10-19 13:23:33 +0000143 ipsec_tun_lkup_result_t itr0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800144
145 vlib_combined_counter_main_t *rx_counter;
146 vlib_combined_counter_main_t *drop_counter;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800147
148 if (is_ip6)
149 clib_memset (&last_key6, 0xff, sizeof (last_key6));
150 else
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000151 last_key4.key = ~0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800152
153 rx_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
154 drop_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
155
156 while (n_left_from > 0)
157 {
158 u32 sw_if_index0, len0, hdr_sz0;
Andrew Yourtchenko13633312022-08-31 14:37:36 +0000159 clib_bihash_kv_24_16_t bkey60 = { 0 };
160 clib_bihash_kv_8_16_t bkey40 = { 0 };
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000161 ipsec4_tunnel_kv_t *key40;
162 ipsec6_tunnel_kv_t *key60;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800163 ip4_header_t *ip40;
164 ip6_header_t *ip60;
165 esp_header_t *esp0;
Neale Ranns41afb332019-07-16 06:19:35 -0700166 u16 buf_rewind0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800167
Neale Ranns41afb332019-07-16 06:19:35 -0700168 ip40 =
169 (ip4_header_t *) (b[0]->data + vnet_buffer (b[0])->l3_hdr_offset);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800170
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000171 key60 = (ipsec6_tunnel_kv_t *) & bkey60;
172 key40 = (ipsec4_tunnel_kv_t *) & bkey40;
173
Neale Rannsc87b66c2019-02-07 07:26:12 -0800174 if (is_ip6)
175 {
176 ip60 = (ip6_header_t *) ip40;
Matthew Smith6f1eb482022-08-09 22:19:38 +0000177 if (ip60->protocol == IP_PROTOCOL_UDP)
178 {
179 /* NAT UDP port 4500 case, don't advance any more */
180 esp0 = (esp_header_t *) ((u8 *) ip60 + sizeof (ip6_header_t) +
181 sizeof (udp_header_t));
182 hdr_sz0 = 0;
183 buf_rewind0 = sizeof (ip6_header_t) + sizeof (udp_header_t);
184
185 const udp_header_t *udp0 =
186 (udp_header_t *) ((u8 *) ip60 + sizeof (ip6_header_t));
187
188 /* length 9 = sizeof(udp_header) + 1 byte of special SPI */
189 if (clib_net_to_host_u16 (udp0->length) == 9 &&
190 esp0->spi_bytes[0] == 0xff)
191 {
192 b[0]->error = node->errors[IPSEC_TUN_ERROR_NAT_KEEPALIVE];
193
194 next[0] = VNET_DEVICE_INPUT_NEXT_IP6_DROP;
195 len0 = 0;
196
197 vlib_buffer_advance (b[0], -buf_rewind0);
198 goto trace00;
199 }
200 }
201 else
202 {
203 esp0 = (esp_header_t *) (ip60 + 1);
204 buf_rewind0 = hdr_sz0 = sizeof (ip6_header_t);
205 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800206 }
207 else
208 {
Neale Rannsc87b66c2019-02-07 07:26:12 -0800209 if (ip40->protocol == IP_PROTOCOL_UDP)
210 {
Neale Ranns992a4d02022-01-10 11:21:17 +0000211 /* NAT UDP port 4500 case, don't advance any more */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800212 esp0 =
213 (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40) +
214 sizeof (udp_header_t));
215 hdr_sz0 = 0;
Neale Ranns41afb332019-07-16 06:19:35 -0700216 buf_rewind0 = ip4_header_bytes (ip40) + sizeof (udp_header_t);
Neale Ranns992a4d02022-01-10 11:21:17 +0000217
218 const udp_header_t *udp0 =
219 (udp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
220
221 /* length 9 = sizeof(udp_header) + 1 byte of special SPI */
222 if (clib_net_to_host_u16 (udp0->length) == 9 &&
223 esp0->spi_bytes[0] == 0xff)
224 {
Neale Ranns93688d72022-08-09 03:34:51 +0000225 b[0]->error = node->errors[IPSEC_TUN_ERROR_NAT_KEEPALIVE];
Neale Ranns992a4d02022-01-10 11:21:17 +0000226
227 next[0] = VNET_DEVICE_INPUT_NEXT_IP4_DROP;
228 len0 = 0;
229
230 vlib_buffer_advance (b[0], -buf_rewind0);
231 goto trace00;
232 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800233 }
234 else
235 {
236 esp0 = (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
Neale Ranns41afb332019-07-16 06:19:35 -0700237 buf_rewind0 = hdr_sz0 = ip4_header_bytes (ip40);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800238 }
239 }
240
241 /* stats for the tunnel include all the data after the IP header
242 just like a norml IP-IP tunnel */
243 vlib_buffer_advance (b[0], hdr_sz0);
244 len0 = vlib_buffer_length_in_chain (vm, b[0]);
245
Neale Ranns41afb332019-07-16 06:19:35 -0700246 if (len0 < sizeof (esp_header_t))
247 {
Neale Ranns93688d72022-08-09 03:34:51 +0000248 b[0]->error = node->errors[IPSEC_TUN_ERROR_TOO_SHORT];
Neale Ranns41afb332019-07-16 06:19:35 -0700249
Brian Russell7a29a2d2021-02-22 18:42:24 +0000250 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
251 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
Neale Ranns992a4d02022-01-10 11:21:17 +0000252 vlib_buffer_advance (b[0], -buf_rewind0);
Neale Ranns41afb332019-07-16 06:19:35 -0700253 goto trace00;
254 }
255
Neale Rannsc87b66c2019-02-07 07:26:12 -0800256 if (is_ip6)
257 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000258 key60->key.remote_ip = ip60->src_address;
259 key60->key.spi = esp0->spi;
260 key60->key.__pad = 0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800261
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000262 if (memcmp (key60, &last_key6, sizeof (last_key6)) == 0)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800263 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000264 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800265 }
266 else
267 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000268 int rv =
Neale Ranns302b25a2020-10-19 13:23:33 +0000269 clib_bihash_search_inline_24_16 (&im->tun6_protect_by_key,
270 &bkey60);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000271 if (!rv)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800272 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000273 clib_memcpy_fast (&itr0, &bkey60.value, sizeof (itr0));
274 clib_memcpy_fast (&last_result, &bkey60.value,
275 sizeof (last_result));
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000276 clib_memcpy_fast (&last_key6, key60, sizeof (last_key6));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800277 }
278 else
279 {
Matthew Smith6f1eb482022-08-09 22:19:38 +0000280 next[0] = ipsec_ip6_if_no_tunnel (node, b[0], esp0, ip60);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800281 n_no_tunnel++;
282 goto trace00;
283 }
284 }
285 }
286 else
287 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000288 ipsec4_tunnel_mk_key (key40, &ip40->src_address, esp0->spi);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800289
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000290 if (key40->key == last_key4.key)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800291 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000292 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800293 }
294 else
295 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000296 int rv =
Neale Ranns302b25a2020-10-19 13:23:33 +0000297 clib_bihash_search_inline_8_16 (&im->tun4_protect_by_key,
298 &bkey40);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000299 if (!rv)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800300 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000301 clib_memcpy_fast (&itr0, &bkey40.value, sizeof (itr0));
302 clib_memcpy_fast (&last_result, &bkey40.value,
303 sizeof (last_result));
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000304 last_key4.key = key40->key;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800305 }
306 else
307 {
308 next[0] = ipsec_ip4_if_no_tunnel (node, b[0], esp0, ip40);
Neale Ranns41afb332019-07-16 06:19:35 -0700309 vlib_buffer_advance (b[0], -buf_rewind0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800310 n_no_tunnel++;
311 goto trace00;
312 }
313 }
314 }
315
Neale Rannsc87b66c2019-02-07 07:26:12 -0800316 vnet_buffer (b[0])->ipsec.sad_index = itr0.sa_index;
317 vnet_buffer (b[0])->ipsec.protect_index = itr0.tun_index;
318
Neale Ranns302b25a2020-10-19 13:23:33 +0000319 sw_if_index0 = itr0.sw_if_index;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800320 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = sw_if_index0;
321
322 if (PREDICT_FALSE (!vnet_sw_interface_is_admin_up (vnm, sw_if_index0)))
323 {
324 vlib_increment_combined_counter
325 (drop_counter, thread_index, sw_if_index0, 1, len0);
326 n_disabled++;
Neale Ranns93688d72022-08-09 03:34:51 +0000327 b[0]->error = node->errors[IPSEC_TUN_ERROR_DISABLED];
Brian Russell7a29a2d2021-02-22 18:42:24 +0000328 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
329 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800330 goto trace00;
331 }
332 else
333 {
334 if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index))
335 {
336 n_packets++;
337 n_bytes += len0;
338 }
339 else
340 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000341 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
Neale Rannsc87b66c2019-02-07 07:26:12 -0800342 {
343 vlib_increment_combined_counter
344 (rx_counter, thread_index, last_sw_if_index,
345 n_packets, n_bytes);
346 }
347
348 last_sw_if_index = sw_if_index0;
349 n_packets = 1;
350 n_bytes = len0;
351 }
352
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000353 //IPSEC_TUN_PROTECT_NEXT_DECRYPT;
Brian Russell7a29a2d2021-02-22 18:42:24 +0000354 next[0] = is_ip6 ? im->esp6_decrypt_tun_next_index :
355 im->esp4_decrypt_tun_next_index;
356
357 if (itr0.flags & IPSEC_PROTECT_FEAT)
358 {
359 u32 next32;
360 u8 arc = feature_main.device_input_feature_arc_index;
361
362 next32 = next[0];
363 vnet_feature_arc_start (arc, sw_if_index0, &next32, b[0]);
364 next[0] = next32;
365 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800366 }
367 trace00:
368 if (PREDICT_FALSE (is_trace))
369 {
370 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
371 {
372 ipsec_tun_protect_input_trace_t *tr =
373 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Neale Ranns41afb332019-07-16 06:19:35 -0700374 if (is_ip6)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000375 clib_memcpy (&tr->kv6, &bkey60, sizeof (tr->kv6));
Neale Ranns41afb332019-07-16 06:19:35 -0700376 else
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000377 clib_memcpy (&tr->kv4, &bkey40, sizeof (tr->kv4));
Neale Ranns41afb332019-07-16 06:19:35 -0700378 tr->is_ip6 = is_ip6;
Neale Ranns12989b52019-09-26 16:20:19 +0000379 tr->seq = (len0 >= sizeof (*esp0) ?
380 clib_host_to_net_u32 (esp0->seq) : ~0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800381 }
382 }
383
384 /* next */
385 b += 1;
386 next += 1;
387 n_left_from -= 1;
388 }
389
Neale Ranns302b25a2020-10-19 13:23:33 +0000390 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
391 vlib_increment_combined_counter (rx_counter,
392 thread_index,
393 last_sw_if_index, n_packets, n_bytes);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800394
Neale Ranns93688d72022-08-09 03:34:51 +0000395 vlib_node_increment_counter (vm, node->node_index, IPSEC_TUN_ERROR_RX,
396 from_frame->n_vectors -
397 (n_disabled + n_no_tunnel));
398 vlib_node_increment_counter (vm, node->node_index, IPSEC_TUN_ERROR_NO_TUNNEL,
Alexander Chernavinf7f7f842020-03-20 10:36:43 -0400399 n_no_tunnel);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800400
401 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
402
403 return from_frame->n_vectors;
404}
405
406VLIB_NODE_FN (ipsec4_tun_input_node) (vlib_main_t * vm,
407 vlib_node_runtime_t * node,
408 vlib_frame_t * from_frame)
409{
Neale Ranns7ec120e2020-01-21 04:58:02 +0000410 return ipsec_tun_protect_input_inline (vm, node, from_frame, 0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800411}
412
413/* *INDENT-OFF* */
414VLIB_REGISTER_NODE (ipsec4_tun_input_node) = {
415 .name = "ipsec4-tun-input",
416 .vector_size = sizeof (u32),
417 .format_trace = format_ipsec_tun_protect_input_trace,
418 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns93688d72022-08-09 03:34:51 +0000419 .n_errors = IPSEC_TUN_N_ERROR,
420 .error_counters = ipsec_tun_error_counters,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000421 .sibling_of = "device-input",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800422};
423/* *INDENT-ON* */
424
425VLIB_NODE_FN (ipsec6_tun_input_node) (vlib_main_t * vm,
426 vlib_node_runtime_t * node,
427 vlib_frame_t * from_frame)
428{
Neale Ranns7ec120e2020-01-21 04:58:02 +0000429 return ipsec_tun_protect_input_inline (vm, node, from_frame, 1);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800430}
431
432/* *INDENT-OFF* */
433VLIB_REGISTER_NODE (ipsec6_tun_input_node) = {
434 .name = "ipsec6-tun-input",
435 .vector_size = sizeof (u32),
436 .format_trace = format_ipsec_tun_protect_input_trace,
437 .type = VLIB_NODE_TYPE_INTERNAL,
Neale Ranns93688d72022-08-09 03:34:51 +0000438 .n_errors = IPSEC_TUN_N_ERROR,
439 .error_counters = ipsec_tun_error_counters,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000440 .sibling_of = "device-input",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800441};
442/* *INDENT-ON* */
443
444/*
445 * fd.io coding-style-patch-verification: ON
446 *
447 * Local Variables:
448 * eval: (c-set-style "gnu")
449 * End:
450 */