blob: 028d9761c07620fb337d5bef6dcec15d01ad9ac1 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ipsec_output.c : IPSec output 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>
Neale Ranns918c1612019-02-21 23:34:59 -080023#include <vnet/ipsec/ipsec_io.h>
Piotr Bronowski829bff82022-05-10 14:06:29 +000024#include <vnet/ipsec/ipsec_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
Ed Warnickecb9cada2015-12-08 15:45:58 -070026#define foreach_ipsec_output_error \
27 _(RX_PKTS, "IPSec pkts received") \
28 _(POLICY_DISCARD, "IPSec policy discard") \
29 _(POLICY_NO_MATCH, "IPSec policy (no match)") \
30 _(POLICY_PROTECT, "IPSec policy protect") \
31 _(POLICY_BYPASS, "IPSec policy bypass") \
32 _(ENCAPS_FAILED, "IPSec encapsulation failed")
33
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070034typedef enum
35{
Ed Warnickecb9cada2015-12-08 15:45:58 -070036#define _(sym,str) IPSEC_OUTPUT_ERROR_##sym,
37 foreach_ipsec_output_error
38#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070039 IPSEC_DECAP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070040} ipsec_output_error_t;
41
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070042static char *ipsec_output_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070043#define _(sym,string) string,
44 foreach_ipsec_output_error
45#undef _
46};
47
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070048typedef struct
49{
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 u32 spd_id;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080051 u32 policy_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -070052} ipsec_output_trace_t;
53
54/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070055static u8 *
56format_ipsec_output_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070057{
58 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
59 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070060 ipsec_output_trace_t *t = va_arg (*args, ipsec_output_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
Neale Rannsa09c1ff2019-02-04 01:10:30 -080062 s = format (s, "spd %u policy %d", t->spd_id, t->policy_id);
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 return s;
65}
66
Matus Fabian08a6f012016-11-15 06:08:51 -080067static inline uword
68ipsec_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
69 vlib_frame_t * from_frame, int is_ipv6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070{
71 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Neale Rannsa09c1ff2019-02-04 01:10:30 -080073 u32 *from, *to_next = 0, thread_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070074 u32 n_left_from, sw_if_index0, last_sw_if_index = (u32) ~ 0;
75 u32 next_node_index = (u32) ~ 0, last_next_node_index = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 vlib_frame_t *f = 0;
77 u32 spd_index0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070078 ipsec_spd_t *spd0 = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +020079 int bogus;
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 u64 nc_protect = 0, nc_bypass = 0, nc_discard = 0, nc_nomatch = 0;
Zachary Leaf7cd35f52021-06-25 08:11:15 -050081 u8 flow_cache_enabled = im->output_flow_cache_flag;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
83 from = vlib_frame_vector_args (from_frame);
84 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080085 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87 while (n_left_from > 0)
88 {
Zhiyong Yangf9221162019-04-22 00:18:38 -040089 u32 bi0, pi0, bi1;
90 vlib_buffer_t *b0, *b1;
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +000091 ipsec_policy_t *p0 = NULL;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070092 ip4_header_t *ip0;
93 ip6_header_t *ip6_0 = 0;
94 udp_header_t *udp0;
Florin Corasfb28e9a2016-09-06 15:18:21 +020095 u32 iph_offset = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +020096 tcp_header_t *tcp0;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080097 u64 bytes0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 bi0 = from[0];
100 b0 = vlib_get_buffer (vm, bi0);
Vratko Polakea6a34c2019-04-23 15:52:28 +0200101 if (n_left_from > 1)
102 {
103 bi1 = from[1];
104 b1 = vlib_get_buffer (vm, bi1);
105 CLIB_PREFETCH (b1, CLIB_CACHE_LINE_BYTES * 2, STORE);
106 vlib_prefetch_buffer_data (b1, LOAD);
107 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700108 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Florin Corasfb28e9a2016-09-06 15:18:21 +0200109 iph_offset = vnet_buffer (b0)->ip.save_rewrite_length;
110 ip0 = (ip4_header_t *) ((u8 *) vlib_buffer_get_current (b0)
111 + iph_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 /* lookup for SPD only if sw_if_index is changed */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 if (PREDICT_FALSE (last_sw_if_index != sw_if_index0))
115 {
116 uword *p = hash_get (im->spd_index_by_sw_if_index, sw_if_index0);
Dave Barach47d41ad2020-02-17 09:13:26 -0500117 ALWAYS_ASSERT (p);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700118 spd_index0 = p[0];
119 spd0 = pool_elt_at_index (im->spds, spd_index0);
120 last_sw_if_index = sw_if_index0;
121 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700123 if (is_ipv6)
124 {
Matus Fabian08a6f012016-11-15 06:08:51 -0800125 ip6_0 = (ip6_header_t *) ((u8 *) vlib_buffer_get_current (b0)
126 + iph_offset);
127
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700128 udp0 = ip6_next_header (ip6_0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700130 clib_warning
131 ("packet received from %U port %u to %U port %u spd_id %u",
132 format_ip6_address, &ip6_0->src_address,
133 clib_net_to_host_u16 (udp0->src_port), format_ip6_address,
134 &ip6_0->dst_address, clib_net_to_host_u16 (udp0->dst_port),
135 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136#endif
137
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200138 p0 = ipsec6_output_policy_match (spd0,
139 &ip6_0->src_address,
140 &ip6_0->dst_address,
Neale Rannsa4d24312019-07-10 13:46:21 +0000141 clib_net_to_host_u16
142 (udp0->src_port),
143 clib_net_to_host_u16
144 (udp0->dst_port), ip6_0->protocol);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700145 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700147 {
148 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
150#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700151 clib_warning ("packet received from %U to %U port %u",
152 format_ip4_address, ip0->src_address.as_u8,
153 format_ip4_address, ip0->dst_address.as_u8,
154 clib_net_to_host_u16 (udp0->dst_port));
155 clib_warning ("sw_if_index0 %u spd_index0 %u spd_id %u",
156 sw_if_index0, spd_index0, spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157#endif
158
Govindarajan Mohandoss6d7dfcb2021-03-19 19:20:49 +0000159 /*
160 * Check whether flow cache is enabled.
161 */
162 if (flow_cache_enabled)
163 {
164 p0 = ipsec4_out_spd_find_flow_cache_entry (
165 im, ip0->protocol, ip0->src_address.as_u32,
166 ip0->dst_address.as_u32, udp0->src_port, udp0->dst_port);
167 }
168
169 /* Fall back to linear search if flow cache lookup fails */
170 if (p0 == NULL)
171 {
172 p0 = ipsec_output_policy_match (
173 spd0, ip0->protocol,
174 clib_net_to_host_u32 (ip0->src_address.as_u32),
175 clib_net_to_host_u32 (ip0->dst_address.as_u32),
176 clib_net_to_host_u16 (udp0->src_port),
177 clib_net_to_host_u16 (udp0->dst_port), flow_cache_enabled);
178 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700179 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200180 tcp0 = (void *) udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700182 if (PREDICT_TRUE (p0 != NULL))
183 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800184 pi0 = p0 - im->policies;
185
186 vlib_prefetch_combined_counter (&ipsec_spd_policy_counters,
187 thread_index, pi0);
188
189 if (is_ipv6)
190 {
191 bytes0 = clib_net_to_host_u16 (ip6_0->payload_length);
192 bytes0 += sizeof (ip6_header_t);
193 }
194 else
195 {
196 bytes0 = clib_net_to_host_u16 (ip0->length);
197 }
198
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700199 if (p0->policy == IPSEC_POLICY_ACTION_PROTECT)
200 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800201 ipsec_sa_t *sa = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700202 nc_protect++;
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000203 sa = ipsec_sa_get (p0->sa_index);
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800204 if (sa->protocol == IPSEC_PROTOCOL_ESP)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200205 if (is_ipv6)
206 next_node_index = im->esp6_encrypt_node_index;
207 else
208 next_node_index = im->esp4_encrypt_node_index;
209 else if (is_ipv6)
210 next_node_index = im->ah6_encrypt_node_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800211 else
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200212 next_node_index = im->ah4_encrypt_node_index;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100213 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800214
Mohsin Kazmi68095382021-02-10 11:26:24 +0100215 if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_OFFLOAD))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700216 {
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200217 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100218
219 /*
220 * Clearing offload flags before checksum is computed
221 * It guarantees the cache hit!
222 */
223 vnet_buffer_offload_flags_clear (b0, oflags);
224
225 if (is_ipv6)
Klement Sekera31da2e32018-06-24 22:49:55 +0200226 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100227 if (PREDICT_FALSE (oflags &
228 VNET_BUFFER_OFFLOAD_F_TCP_CKSUM))
229 {
230 tcp0->checksum = ip6_tcp_udp_icmp_compute_checksum (
231 vm, b0, ip6_0, &bogus);
232 }
233 if (PREDICT_FALSE (oflags &
234 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM))
235 {
236 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum (
237 vm, b0, ip6_0, &bogus);
238 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200239 }
Mohsin Kazmi68095382021-02-10 11:26:24 +0100240 else
Klement Sekera31da2e32018-06-24 22:49:55 +0200241 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100242 if (PREDICT_FALSE (oflags &
243 VNET_BUFFER_OFFLOAD_F_IP_CKSUM))
244 {
245 ip0->checksum = ip4_header_checksum (ip0);
246 }
247 if (PREDICT_FALSE (oflags &
248 VNET_BUFFER_OFFLOAD_F_TCP_CKSUM))
249 {
250 tcp0->checksum =
251 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
252 }
253 if (PREDICT_FALSE (oflags &
254 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM))
255 {
256 udp0->checksum =
257 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
258 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200259 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700260 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200261 vlib_buffer_advance (b0, iph_offset);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700262 }
263 else if (p0->policy == IPSEC_POLICY_ACTION_BYPASS)
264 {
265 nc_bypass++;
Matus Fabian08a6f012016-11-15 06:08:51 -0800266 next_node_index = get_next_output_feature_node_index (b0, node);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700267 }
268 else
269 {
270 nc_discard++;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700271 next_node_index = im->error_drop_node_index;
272 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800273 vlib_increment_combined_counter
274 (&ipsec_spd_policy_counters, thread_index, pi0, 1, bytes0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700275 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700277 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800278 pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700279 nc_nomatch++;
280 next_node_index = im->error_drop_node_index;
281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 from += 1;
284 n_left_from -= 1;
285
Damjan Marion3f54b182016-08-16 11:27:02 +0200286 if (PREDICT_FALSE ((last_next_node_index != next_node_index) || f == 0))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700287 {
288 /* if this is not 1st frame */
289 if (f)
290 vlib_put_frame_to_node (vm, last_next_node_index, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700292 last_next_node_index = next_node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700294 f = vlib_get_frame_to_node (vm, next_node_index);
Kingwel Xie2fab01e2018-10-10 21:03:10 -0400295
296 /* frame->frame_flags, copy it from node */
297 /* Copy trace flag from next_frame and from runtime. */
298 f->frame_flags |= node->flags & VLIB_NODE_FLAG_TRACE;
299
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700300 to_next = vlib_frame_vector_args (f);
301 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
303 to_next[0] = bi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700304 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 f->n_vectors++;
306
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800307 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
308 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700309 {
310 ipsec_output_trace_t *tr =
311 vlib_add_trace (vm, node, b0, sizeof (*tr));
312 if (spd0)
313 tr->spd_id = spd0->id;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800314 tr->policy_id = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700315 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 }
317
318 vlib_put_frame_to_node (vm, next_node_index, f);
Matus Fabian08a6f012016-11-15 06:08:51 -0800319 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700320 IPSEC_OUTPUT_ERROR_POLICY_PROTECT, nc_protect);
Matus Fabian08a6f012016-11-15 06:08:51 -0800321 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700322 IPSEC_OUTPUT_ERROR_POLICY_BYPASS, nc_bypass);
Matus Fabian08a6f012016-11-15 06:08:51 -0800323 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700324 IPSEC_OUTPUT_ERROR_POLICY_DISCARD, nc_discard);
Matus Fabian08a6f012016-11-15 06:08:51 -0800325 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700326 IPSEC_OUTPUT_ERROR_POLICY_NO_MATCH,
327 nc_nomatch);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 return from_frame->n_vectors;
329}
330
Klement Sekerab8f35442018-10-29 13:38:19 +0100331VLIB_NODE_FN (ipsec4_output_node) (vlib_main_t * vm,
332 vlib_node_runtime_t * node,
333 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800334{
335 return ipsec_output_inline (vm, node, frame, 0);
336}
337
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700338/* *INDENT-OFF* */
Klement Sekerab8f35442018-10-29 13:38:19 +0100339VLIB_REGISTER_NODE (ipsec4_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100340 .name = "ipsec4-output-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 .vector_size = sizeof (u32),
342 .format_trace = format_ipsec_output_trace,
343 .type = VLIB_NODE_TYPE_INTERNAL,
344
345 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
346 .error_strings = ipsec_output_error_strings,
347
348 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
349 .next_nodes = {
350#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 foreach_ipsec_output_next
352#undef _
353 },
354};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700355/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100356
Klement Sekerab8f35442018-10-29 13:38:19 +0100357VLIB_NODE_FN (ipsec6_output_node) (vlib_main_t * vm,
358 vlib_node_runtime_t * node,
359 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800360{
361 return ipsec_output_inline (vm, node, frame, 1);
362}
363
Klement Sekerab8f35442018-10-29 13:38:19 +0100364VLIB_REGISTER_NODE (ipsec6_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100365 .name = "ipsec6-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800366 .vector_size = sizeof (u32),
367 .format_trace = format_ipsec_output_trace,
368 .type = VLIB_NODE_TYPE_INTERNAL,
369
370 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
371 .error_strings = ipsec_output_error_strings,
372
373 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
374 .next_nodes = {
375#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
376 foreach_ipsec_output_next
377#undef _
378 },
379};
Matus Fabian08a6f012016-11-15 06:08:51 -0800380