blob: c414be05f7e8098e6d6ee2684513c430377186fa [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>
27#include <vnet/ip/ip4_input.h>
28
29/* Statistics (not really errors) */
30#define foreach_ipsec_tun_protect_input_error \
31 _(RX, "good packets received") \
32 _(DISABLED, "ipsec packets received on disabled interface") \
33 _(NO_TUNNEL, "no matching tunnel") \
34 _(TUNNEL_MISMATCH, "SPI-tunnel mismatch") \
Neale Ranns41afb332019-07-16 06:19:35 -070035 _(NAT_KEEPALIVE, "NAT Keepalive") \
36 _(TOO_SHORT, "Too Short") \
Neale Rannsc87b66c2019-02-07 07:26:12 -080037 _(SPI_0, "SPI 0")
38
39static char *ipsec_tun_protect_input_error_strings[] = {
40#define _(sym,string) string,
41 foreach_ipsec_tun_protect_input_error
42#undef _
43};
44
45typedef enum
46{
47#define _(sym,str) IPSEC_TUN_PROTECT_INPUT_ERROR_##sym,
48 foreach_ipsec_tun_protect_input_error
49#undef _
50 IPSEC_TUN_PROTECT_INPUT_N_ERROR,
51} ipsec_tun_protect_input_error_t;
52
53typedef enum ipsec_tun_next_t_
54{
55#define _(v, s) IPSEC_TUN_PROTECT_NEXT_##v,
56 foreach_ipsec_input_next
57#undef _
Neale Ranns7ec120e2020-01-21 04:58:02 +000058 IPSEC_TUN_PROTECT_N_NEXT,
Neale Rannsc87b66c2019-02-07 07:26:12 -080059} ipsec_tun_next_t;
60
61typedef struct
62{
Neale Ranns41afb332019-07-16 06:19:35 -070063 union
64 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +000065 ipsec4_tunnel_kv_t kv4;
66 ipsec6_tunnel_kv_t kv6;
Neale Ranns41afb332019-07-16 06:19:35 -070067 };
68 u8 is_ip6;
Neale Rannsc87b66c2019-02-07 07:26:12 -080069 u32 seq;
70} ipsec_tun_protect_input_trace_t;
71
72static u8 *
73format_ipsec_tun_protect_input_trace (u8 * s, va_list * args)
74{
75 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
76 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
77 ipsec_tun_protect_input_trace_t *t =
78 va_arg (*args, ipsec_tun_protect_input_trace_t *);
79
Neale Ranns41afb332019-07-16 06:19:35 -070080 if (t->is_ip6)
Neale Ranns7b4e52f2020-05-24 16:17:50 +000081 s = format (s, "IPSec: %U seq %u",
82 format_ipsec6_tunnel_kv, &t->kv6, t->seq);
Neale Ranns41afb332019-07-16 06:19:35 -070083 else
Neale Ranns12989b52019-09-26 16:20:19 +000084 s = format (s, "IPSec: %U seq %u sa %d",
Neale Ranns7b4e52f2020-05-24 16:17:50 +000085 format_ipsec4_tunnel_kv, &t->kv4, t->seq);
Neale Rannsc87b66c2019-02-07 07:26:12 -080086 return s;
87}
88
89always_inline u16
90ipsec_ip4_if_no_tunnel (vlib_node_runtime_t * node,
91 vlib_buffer_t * b,
92 const esp_header_t * esp, const ip4_header_t * ip4)
93{
94 if (PREDICT_FALSE (0 == esp->spi))
95 {
96 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_SPI_0];
97 b->punt_reason = ipsec_punt_reason[(ip4->protocol == IP_PROTOCOL_UDP ?
98 IPSEC_PUNT_IP4_SPI_UDP_0 :
Neale Ranns719beb72019-07-10 07:10:25 +000099 IPSEC_PUNT_IP4_NO_SUCH_TUNNEL)];
Neale Rannsc87b66c2019-02-07 07:26:12 -0800100 }
101 else
102 {
103 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL];
104 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP4_NO_SUCH_TUNNEL];
105 }
Brian Russell7a29a2d2021-02-22 18:42:24 +0000106 return VNET_DEVICE_INPUT_NEXT_PUNT;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800107}
108
109always_inline u16
110ipsec_ip6_if_no_tunnel (vlib_node_runtime_t * node,
111 vlib_buffer_t * b, const esp_header_t * esp)
112{
Neale Ranns719beb72019-07-10 07:10:25 +0000113 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL];
114 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP6_NO_SUCH_TUNNEL];
115
Brian Russell7a29a2d2021-02-22 18:42:24 +0000116 return VNET_DEVICE_INPUT_NEXT_PUNT;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800117}
118
119always_inline uword
120ipsec_tun_protect_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
121 vlib_frame_t * from_frame, int is_ip6)
122{
123 ipsec_main_t *im = &ipsec_main;
124 vnet_main_t *vnm = im->vnet_main;
125 vnet_interface_main_t *vim = &vnm->interface_main;
126
127 int is_trace = node->flags & VLIB_NODE_FLAG_TRACE;
128 u32 thread_index = vm->thread_index;
129
130 u32 n_left_from, *from;
131 u16 nexts[VLIB_FRAME_SIZE], *next;
132 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
133
134 from = vlib_frame_vector_args (from_frame);
135 n_left_from = from_frame->n_vectors;
136
137 vlib_get_buffers (vm, from, bufs, n_left_from);
138 b = bufs;
139 next = nexts;
140
Brian Russell7a29a2d2021-02-22 18:42:24 +0000141 clib_memset_u16 (
142 nexts, is_ip6 ? im->esp6_decrypt_next_index : im->esp4_decrypt_next_index,
143 n_left_from);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800144
145 u64 n_bytes = 0, n_packets = 0;
146 u32 n_disabled = 0, n_no_tunnel = 0;
147
148 u32 last_sw_if_index = ~0;
149 ipsec_tun_lkup_result_t last_result = {
150 .tun_index = ~0
151 };
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000152 ipsec4_tunnel_kv_t last_key4;
153 ipsec6_tunnel_kv_t last_key6;
Neale Ranns302b25a2020-10-19 13:23:33 +0000154 ipsec_tun_lkup_result_t itr0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800155
156 vlib_combined_counter_main_t *rx_counter;
157 vlib_combined_counter_main_t *drop_counter;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800158
159 if (is_ip6)
160 clib_memset (&last_key6, 0xff, sizeof (last_key6));
161 else
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000162 last_key4.key = ~0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800163
164 rx_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
165 drop_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
166
167 while (n_left_from > 0)
168 {
169 u32 sw_if_index0, len0, hdr_sz0;
Neale Ranns302b25a2020-10-19 13:23:33 +0000170 clib_bihash_kv_24_16_t bkey60;
171 clib_bihash_kv_8_16_t bkey40;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000172 ipsec4_tunnel_kv_t *key40;
173 ipsec6_tunnel_kv_t *key60;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800174 ip4_header_t *ip40;
175 ip6_header_t *ip60;
176 esp_header_t *esp0;
Neale Ranns41afb332019-07-16 06:19:35 -0700177 u16 buf_rewind0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800178
Neale Ranns41afb332019-07-16 06:19:35 -0700179 ip40 =
180 (ip4_header_t *) (b[0]->data + vnet_buffer (b[0])->l3_hdr_offset);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800181
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000182 key60 = (ipsec6_tunnel_kv_t *) & bkey60;
183 key40 = (ipsec4_tunnel_kv_t *) & bkey40;
184
Neale Rannsc87b66c2019-02-07 07:26:12 -0800185 if (is_ip6)
186 {
187 ip60 = (ip6_header_t *) ip40;
188 esp0 = (esp_header_t *) (ip60 + 1);
Neale Ranns992a4d02022-01-10 11:21:17 +0000189 buf_rewind0 = hdr_sz0 = sizeof (ip6_header_t);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800190 }
191 else
192 {
Neale Rannsc87b66c2019-02-07 07:26:12 -0800193 if (ip40->protocol == IP_PROTOCOL_UDP)
194 {
Neale Ranns992a4d02022-01-10 11:21:17 +0000195 /* NAT UDP port 4500 case, don't advance any more */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800196 esp0 =
197 (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40) +
198 sizeof (udp_header_t));
199 hdr_sz0 = 0;
Neale Ranns41afb332019-07-16 06:19:35 -0700200 buf_rewind0 = ip4_header_bytes (ip40) + sizeof (udp_header_t);
Neale Ranns992a4d02022-01-10 11:21:17 +0000201
202 const udp_header_t *udp0 =
203 (udp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
204
205 /* length 9 = sizeof(udp_header) + 1 byte of special SPI */
206 if (clib_net_to_host_u16 (udp0->length) == 9 &&
207 esp0->spi_bytes[0] == 0xff)
208 {
209 b[0]->error =
210 node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NAT_KEEPALIVE];
211
212 next[0] = VNET_DEVICE_INPUT_NEXT_IP4_DROP;
213 len0 = 0;
214
215 vlib_buffer_advance (b[0], -buf_rewind0);
216 goto trace00;
217 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800218 }
219 else
220 {
221 esp0 = (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
Neale Ranns41afb332019-07-16 06:19:35 -0700222 buf_rewind0 = hdr_sz0 = ip4_header_bytes (ip40);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800223 }
224 }
225
226 /* stats for the tunnel include all the data after the IP header
227 just like a norml IP-IP tunnel */
228 vlib_buffer_advance (b[0], hdr_sz0);
229 len0 = vlib_buffer_length_in_chain (vm, b[0]);
230
Neale Ranns41afb332019-07-16 06:19:35 -0700231 if (len0 < sizeof (esp_header_t))
232 {
Neale Ranns992a4d02022-01-10 11:21:17 +0000233 b[0]->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_TOO_SHORT];
Neale Ranns41afb332019-07-16 06:19:35 -0700234
Brian Russell7a29a2d2021-02-22 18:42:24 +0000235 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
236 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
Neale Ranns992a4d02022-01-10 11:21:17 +0000237 vlib_buffer_advance (b[0], -buf_rewind0);
Neale Ranns41afb332019-07-16 06:19:35 -0700238 goto trace00;
239 }
240
Neale Rannsc87b66c2019-02-07 07:26:12 -0800241 if (is_ip6)
242 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000243 key60->key.remote_ip = ip60->src_address;
244 key60->key.spi = esp0->spi;
245 key60->key.__pad = 0;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800246
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000247 if (memcmp (key60, &last_key6, sizeof (last_key6)) == 0)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800248 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000249 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800250 }
251 else
252 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000253 int rv =
Neale Ranns302b25a2020-10-19 13:23:33 +0000254 clib_bihash_search_inline_24_16 (&im->tun6_protect_by_key,
255 &bkey60);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000256 if (!rv)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800257 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000258 clib_memcpy_fast (&itr0, &bkey60.value, sizeof (itr0));
259 clib_memcpy_fast (&last_result, &bkey60.value,
260 sizeof (last_result));
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000261 clib_memcpy_fast (&last_key6, key60, sizeof (last_key6));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800262 }
263 else
264 {
265 next[0] = ipsec_ip6_if_no_tunnel (node, b[0], esp0);
266 n_no_tunnel++;
267 goto trace00;
268 }
269 }
270 }
271 else
272 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000273 ipsec4_tunnel_mk_key (key40, &ip40->src_address, esp0->spi);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800274
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000275 if (key40->key == last_key4.key)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800276 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000277 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800278 }
279 else
280 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000281 int rv =
Neale Ranns302b25a2020-10-19 13:23:33 +0000282 clib_bihash_search_inline_8_16 (&im->tun4_protect_by_key,
283 &bkey40);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000284 if (!rv)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800285 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000286 clib_memcpy_fast (&itr0, &bkey40.value, sizeof (itr0));
287 clib_memcpy_fast (&last_result, &bkey40.value,
288 sizeof (last_result));
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000289 last_key4.key = key40->key;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800290 }
291 else
292 {
293 next[0] = ipsec_ip4_if_no_tunnel (node, b[0], esp0, ip40);
Neale Ranns41afb332019-07-16 06:19:35 -0700294 vlib_buffer_advance (b[0], -buf_rewind0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800295 n_no_tunnel++;
296 goto trace00;
297 }
298 }
299 }
300
Neale Rannsc87b66c2019-02-07 07:26:12 -0800301 vnet_buffer (b[0])->ipsec.sad_index = itr0.sa_index;
302 vnet_buffer (b[0])->ipsec.protect_index = itr0.tun_index;
303
Neale Ranns302b25a2020-10-19 13:23:33 +0000304 sw_if_index0 = itr0.sw_if_index;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800305 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = sw_if_index0;
306
307 if (PREDICT_FALSE (!vnet_sw_interface_is_admin_up (vnm, sw_if_index0)))
308 {
309 vlib_increment_combined_counter
310 (drop_counter, thread_index, sw_if_index0, 1, len0);
311 n_disabled++;
312 b[0]->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_DISABLED];
Brian Russell7a29a2d2021-02-22 18:42:24 +0000313 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
314 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800315 goto trace00;
316 }
317 else
318 {
319 if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index))
320 {
321 n_packets++;
322 n_bytes += len0;
323 }
324 else
325 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000326 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
Neale Rannsc87b66c2019-02-07 07:26:12 -0800327 {
328 vlib_increment_combined_counter
329 (rx_counter, thread_index, last_sw_if_index,
330 n_packets, n_bytes);
331 }
332
333 last_sw_if_index = sw_if_index0;
334 n_packets = 1;
335 n_bytes = len0;
336 }
337
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000338 //IPSEC_TUN_PROTECT_NEXT_DECRYPT;
Brian Russell7a29a2d2021-02-22 18:42:24 +0000339 next[0] = is_ip6 ? im->esp6_decrypt_tun_next_index :
340 im->esp4_decrypt_tun_next_index;
341
342 if (itr0.flags & IPSEC_PROTECT_FEAT)
343 {
344 u32 next32;
345 u8 arc = feature_main.device_input_feature_arc_index;
346
347 next32 = next[0];
348 vnet_feature_arc_start (arc, sw_if_index0, &next32, b[0]);
349 next[0] = next32;
350 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800351 }
352 trace00:
353 if (PREDICT_FALSE (is_trace))
354 {
355 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
356 {
357 ipsec_tun_protect_input_trace_t *tr =
358 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Neale Ranns41afb332019-07-16 06:19:35 -0700359 if (is_ip6)
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000360 clib_memcpy (&tr->kv6, &bkey60, sizeof (tr->kv6));
Neale Ranns41afb332019-07-16 06:19:35 -0700361 else
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000362 clib_memcpy (&tr->kv4, &bkey40, sizeof (tr->kv4));
Neale Ranns41afb332019-07-16 06:19:35 -0700363 tr->is_ip6 = is_ip6;
Neale Ranns12989b52019-09-26 16:20:19 +0000364 tr->seq = (len0 >= sizeof (*esp0) ?
365 clib_host_to_net_u32 (esp0->seq) : ~0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800366 }
367 }
368
369 /* next */
370 b += 1;
371 next += 1;
372 n_left_from -= 1;
373 }
374
Neale Ranns302b25a2020-10-19 13:23:33 +0000375 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
376 vlib_increment_combined_counter (rx_counter,
377 thread_index,
378 last_sw_if_index, n_packets, n_bytes);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800379
380 vlib_node_increment_counter (vm, node->node_index,
381 IPSEC_TUN_PROTECT_INPUT_ERROR_RX,
382 from_frame->n_vectors - (n_disabled +
383 n_no_tunnel));
Alexander Chernavinf7f7f842020-03-20 10:36:43 -0400384 vlib_node_increment_counter (vm, node->node_index,
385 IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL,
386 n_no_tunnel);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800387
388 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
389
390 return from_frame->n_vectors;
391}
392
393VLIB_NODE_FN (ipsec4_tun_input_node) (vlib_main_t * vm,
394 vlib_node_runtime_t * node,
395 vlib_frame_t * from_frame)
396{
Neale Ranns7ec120e2020-01-21 04:58:02 +0000397 return ipsec_tun_protect_input_inline (vm, node, from_frame, 0);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800398}
399
400/* *INDENT-OFF* */
401VLIB_REGISTER_NODE (ipsec4_tun_input_node) = {
402 .name = "ipsec4-tun-input",
403 .vector_size = sizeof (u32),
404 .format_trace = format_ipsec_tun_protect_input_trace,
405 .type = VLIB_NODE_TYPE_INTERNAL,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000406 .n_errors = ARRAY_LEN (ipsec_tun_protect_input_error_strings),
Neale Rannsc87b66c2019-02-07 07:26:12 -0800407 .error_strings = ipsec_tun_protect_input_error_strings,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000408 .sibling_of = "device-input",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800409};
410/* *INDENT-ON* */
411
412VLIB_NODE_FN (ipsec6_tun_input_node) (vlib_main_t * vm,
413 vlib_node_runtime_t * node,
414 vlib_frame_t * from_frame)
415{
Neale Ranns7ec120e2020-01-21 04:58:02 +0000416 return ipsec_tun_protect_input_inline (vm, node, from_frame, 1);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800417}
418
419/* *INDENT-OFF* */
420VLIB_REGISTER_NODE (ipsec6_tun_input_node) = {
421 .name = "ipsec6-tun-input",
422 .vector_size = sizeof (u32),
423 .format_trace = format_ipsec_tun_protect_input_trace,
424 .type = VLIB_NODE_TYPE_INTERNAL,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000425 .n_errors = ARRAY_LEN (ipsec_tun_protect_input_error_strings),
Neale Rannsc87b66c2019-02-07 07:26:12 -0800426 .error_strings = ipsec_tun_protect_input_error_strings,
Brian Russell7a29a2d2021-02-22 18:42:24 +0000427 .sibling_of = "device-input",
Neale Rannsc87b66c2019-02-07 07:26:12 -0800428};
429/* *INDENT-ON* */
430
431/*
432 * fd.io coding-style-patch-verification: ON
433 *
434 * Local Variables:
435 * eval: (c-set-style "gnu")
436 * End:
437 */