blob: d56b665157dd670e5d08d4f4f8be3749d81d2d84 [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>
23
Damjan Mariona9a951f2017-01-16 22:06:10 +010024#if WITH_LIBSSL > 0
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
Matus Fabian08a6f012016-11-15 06:08:51 -080048static vlib_node_registration_t ipsec_output_ip4_node;
49static vlib_node_registration_t ipsec_output_ip6_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070051typedef struct
52{
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 u32 spd_id;
54} ipsec_output_trace_t;
55
56/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070057static u8 *
58format_ipsec_output_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059{
60 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
61 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070062 ipsec_output_trace_t *t = va_arg (*args, ipsec_output_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
64 if (t->spd_id != ~0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065 {
66 s = format (s, "spd %u ", t->spd_id);
67 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070069 {
70 s = format (s, "no spd");
71 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 return s;
73}
74
Ed Warnickecb9cada2015-12-08 15:45:58 -070075always_inline ipsec_policy_t *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070076ipsec_output_policy_match (ipsec_spd_t * spd, u8 pr, u32 la, u32 ra, u16 lp,
77 u16 rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070078{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070079 ipsec_policy_t *p;
80 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
Damjan Marion3f54b182016-08-16 11:27:02 +020082 if (!spd)
83 return 0;
84
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070085 vec_foreach (i, spd->ipv4_outbound_policies)
86 {
87 p = pool_elt_at_index (spd->policies, *i);
88 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
89 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070091 if (la < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
92 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070094 if (la > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
95 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070097 if (ra < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
98 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700100 if (ra > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
101 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
Marco Varlese191a5942017-10-30 18:17:21 +0100103 if (PREDICT_FALSE
104 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
105 && (pr != IP_PROTOCOL_SCTP)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 return p;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700107
108 if (lp < p->lport.start)
109 continue;
110
111 if (lp > p->lport.stop)
112 continue;
113
114 if (rp < p->rport.start)
115 continue;
116
117 if (rp > p->rport.stop)
118 continue;
119
120 return p;
121 }
122 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123}
124
125always_inline uword
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700126ip6_addr_match_range (ip6_address_t * a, ip6_address_t * la,
127 ip6_address_t * ua)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700129 if ((memcmp (a->as_u64, la->as_u64, 2 * sizeof (u64)) >= 0) &&
130 (memcmp (a->as_u64, ua->as_u64, 2 * sizeof (u64)) <= 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 return 1;
132 return 0;
133}
134
135always_inline ipsec_policy_t *
136ipsec_output_ip6_policy_match (ipsec_spd_t * spd,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700137 ip6_address_t * la,
138 ip6_address_t * ra, u16 lp, u16 rp, u8 pr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700140 ipsec_policy_t *p;
141 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
Damjan Marion3f54b182016-08-16 11:27:02 +0200143 if (!spd)
144 return 0;
145
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700146 vec_foreach (i, spd->ipv6_outbound_policies)
147 {
148 p = pool_elt_at_index (spd->policies, *i);
149 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
150 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700152 if (!ip6_addr_match_range (ra, &p->raddr.start.ip6, &p->raddr.stop.ip6))
153 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700155 if (!ip6_addr_match_range (la, &p->laddr.start.ip6, &p->laddr.stop.ip6))
156 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Marco Varlese191a5942017-10-30 18:17:21 +0100158 if (PREDICT_FALSE
159 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
160 && (pr != IP_PROTOCOL_SCTP)))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700161 return p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700163 if (lp < p->lport.start)
164 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700166 if (lp > p->lport.stop)
167 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700169 if (rp < p->rport.start)
170 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700172 if (rp > p->rport.stop)
173 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700175 return p;
176 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
178 return 0;
179}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700180
Matus Fabian08a6f012016-11-15 06:08:51 -0800181static inline uword
182ipsec_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
183 vlib_frame_t * from_frame, int is_ipv6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184{
185 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700187 u32 *from, *to_next = 0;
188 u32 n_left_from, sw_if_index0, last_sw_if_index = (u32) ~ 0;
189 u32 next_node_index = (u32) ~ 0, last_next_node_index = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 vlib_frame_t *f = 0;
191 u32 spd_index0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700192 ipsec_spd_t *spd0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 u64 nc_protect = 0, nc_bypass = 0, nc_discard = 0, nc_nomatch = 0;
194
195 from = vlib_frame_vector_args (from_frame);
196 n_left_from = from_frame->n_vectors;
197
198 while (n_left_from > 0)
199 {
200 u32 bi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700201 vlib_buffer_t *b0;
202 ipsec_policy_t *p0;
203 ip4_header_t *ip0;
204 ip6_header_t *ip6_0 = 0;
205 udp_header_t *udp0;
Florin Corasfb28e9a2016-09-06 15:18:21 +0200206 u32 iph_offset = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
208 bi0 = from[0];
209 b0 = vlib_get_buffer (vm, bi0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700210 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Florin Corasfb28e9a2016-09-06 15:18:21 +0200211 iph_offset = vnet_buffer (b0)->ip.save_rewrite_length;
212 ip0 = (ip4_header_t *) ((u8 *) vlib_buffer_get_current (b0)
213 + iph_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 /* lookup for SPD only if sw_if_index is changed */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700216 if (PREDICT_FALSE (last_sw_if_index != sw_if_index0))
217 {
218 uword *p = hash_get (im->spd_index_by_sw_if_index, sw_if_index0);
219 ASSERT (p);
220 spd_index0 = p[0];
221 spd0 = pool_elt_at_index (im->spds, spd_index0);
222 last_sw_if_index = sw_if_index0;
223 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700225 if (is_ipv6)
226 {
Matus Fabian08a6f012016-11-15 06:08:51 -0800227 ip6_0 = (ip6_header_t *) ((u8 *) vlib_buffer_get_current (b0)
228 + iph_offset);
229
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700230 udp0 = ip6_next_header (ip6_0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700232 clib_warning
233 ("packet received from %U port %u to %U port %u spd_id %u",
234 format_ip6_address, &ip6_0->src_address,
235 clib_net_to_host_u16 (udp0->src_port), format_ip6_address,
236 &ip6_0->dst_address, clib_net_to_host_u16 (udp0->dst_port),
237 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238#endif
239
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700240 p0 = ipsec_output_ip6_policy_match (spd0,
241 &ip6_0->src_address,
242 &ip6_0->dst_address,
Ed Warnicke853e7202016-08-12 11:42:26 -0700243 clib_net_to_host_u16
244 (udp0->src_port),
245 clib_net_to_host_u16
246 (udp0->dst_port),
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700247 ip6_0->protocol);
248 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700250 {
251 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
253#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700254 clib_warning ("packet received from %U to %U port %u",
255 format_ip4_address, ip0->src_address.as_u8,
256 format_ip4_address, ip0->dst_address.as_u8,
257 clib_net_to_host_u16 (udp0->dst_port));
258 clib_warning ("sw_if_index0 %u spd_index0 %u spd_id %u",
259 sw_if_index0, spd_index0, spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260#endif
261
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700262 p0 = ipsec_output_policy_match (spd0, ip0->protocol,
Ed Warnicke853e7202016-08-12 11:42:26 -0700263 clib_net_to_host_u32
264 (ip0->src_address.as_u32),
265 clib_net_to_host_u32
266 (ip0->dst_address.as_u32),
267 clib_net_to_host_u16
268 (udp0->src_port),
269 clib_net_to_host_u16
270 (udp0->dst_port));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700271 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700273 if (PREDICT_TRUE (p0 != NULL))
274 {
275 if (p0->policy == IPSEC_POLICY_ACTION_PROTECT)
276 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800277 u32 sa_index = 0;
278 ipsec_sa_t *sa = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700279 nc_protect++;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800280 sa_index = ipsec_get_sa_index_by_sa_id (p0->sa_id);
281 sa = pool_elt_at_index (im->sad, sa_index);
282 if (sa->protocol == IPSEC_PROTOCOL_ESP)
283 next_node_index = im->esp_encrypt_node_index;
284 else
285 next_node_index = im->ah_encrypt_node_index;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100286 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Florin Corasfb28e9a2016-09-06 15:18:21 +0200287 vlib_buffer_advance (b0, iph_offset);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700288 p0->counter.packets++;
289 if (is_ipv6)
290 {
291 p0->counter.bytes +=
292 clib_net_to_host_u16 (ip6_0->payload_length);
293 p0->counter.bytes += sizeof (ip6_header_t);
294 }
295 else
296 {
297 p0->counter.bytes += clib_net_to_host_u16 (ip0->length);
298 }
299 }
300 else if (p0->policy == IPSEC_POLICY_ACTION_BYPASS)
301 {
302 nc_bypass++;
Matus Fabian08a6f012016-11-15 06:08:51 -0800303 next_node_index = get_next_output_feature_node_index (b0, node);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700304 p0->counter.packets++;
305 if (is_ipv6)
306 {
307 p0->counter.bytes +=
308 clib_net_to_host_u16 (ip6_0->payload_length);
309 p0->counter.bytes += sizeof (ip6_header_t);
310 }
311 else
312 {
313 p0->counter.bytes += clib_net_to_host_u16 (ip0->length);
314 }
315 }
316 else
317 {
318 nc_discard++;
319 p0->counter.packets++;
320 if (is_ipv6)
321 {
322 p0->counter.bytes +=
323 clib_net_to_host_u16 (ip6_0->payload_length);
324 p0->counter.bytes += sizeof (ip6_header_t);
325 }
326 else
327 {
328 p0->counter.bytes += clib_net_to_host_u16 (ip0->length);
329 }
330 next_node_index = im->error_drop_node_index;
331 }
332 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700334 {
335 nc_nomatch++;
336 next_node_index = im->error_drop_node_index;
337 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 from += 1;
340 n_left_from -= 1;
341
Damjan Marion3f54b182016-08-16 11:27:02 +0200342 if (PREDICT_FALSE ((last_next_node_index != next_node_index) || f == 0))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700343 {
344 /* if this is not 1st frame */
345 if (f)
346 vlib_put_frame_to_node (vm, last_next_node_index, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700348 last_next_node_index = next_node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700350 f = vlib_get_frame_to_node (vm, next_node_index);
351 to_next = vlib_frame_vector_args (f);
352 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
354 to_next[0] = bi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700355 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 f->n_vectors++;
357
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700358 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
359 {
360 ipsec_output_trace_t *tr =
361 vlib_add_trace (vm, node, b0, sizeof (*tr));
362 if (spd0)
363 tr->spd_id = spd0->id;
364 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 }
366
367 vlib_put_frame_to_node (vm, next_node_index, f);
Matus Fabian08a6f012016-11-15 06:08:51 -0800368 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700369 IPSEC_OUTPUT_ERROR_POLICY_PROTECT, nc_protect);
Matus Fabian08a6f012016-11-15 06:08:51 -0800370 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700371 IPSEC_OUTPUT_ERROR_POLICY_BYPASS, nc_bypass);
Matus Fabian08a6f012016-11-15 06:08:51 -0800372 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700373 IPSEC_OUTPUT_ERROR_POLICY_DISCARD, nc_discard);
Matus Fabian08a6f012016-11-15 06:08:51 -0800374 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700375 IPSEC_OUTPUT_ERROR_POLICY_NO_MATCH,
376 nc_nomatch);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 return from_frame->n_vectors;
378}
379
Matus Fabian08a6f012016-11-15 06:08:51 -0800380static uword
381ipsec_output_ip4_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
382 vlib_frame_t * frame)
383{
384 return ipsec_output_inline (vm, node, frame, 0);
385}
386
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700387/* *INDENT-OFF* */
Matus Fabian08a6f012016-11-15 06:08:51 -0800388VLIB_REGISTER_NODE (ipsec_output_ip4_node,static) = {
389 .function = ipsec_output_ip4_node_fn,
390 .name = "ipsec-output-ip4",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 .vector_size = sizeof (u32),
392 .format_trace = format_ipsec_output_trace,
393 .type = VLIB_NODE_TYPE_INTERNAL,
394
395 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
396 .error_strings = ipsec_output_error_strings,
397
398 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
399 .next_nodes = {
400#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 foreach_ipsec_output_next
402#undef _
403 },
404};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700405/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100406
Matus Fabian08a6f012016-11-15 06:08:51 -0800407VLIB_NODE_FUNCTION_MULTIARCH (ipsec_output_ip4_node, ipsec_output_ip4_node_fn)
408 static uword
409 ipsec_output_ip6_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
410 vlib_frame_t * frame)
411{
412 return ipsec_output_inline (vm, node, frame, 1);
413}
414
415/* *INDENT-OFF* */
416VLIB_REGISTER_NODE (ipsec_output_ip6_node,static) = {
417 .function = ipsec_output_ip6_node_fn,
418 .name = "ipsec-output-ip6",
419 .vector_size = sizeof (u32),
420 .format_trace = format_ipsec_output_trace,
421 .type = VLIB_NODE_TYPE_INTERNAL,
422
423 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
424 .error_strings = ipsec_output_error_strings,
425
426 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
427 .next_nodes = {
428#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
429 foreach_ipsec_output_next
430#undef _
431 },
432};
433/* *INDENT-ON* */
434
435VLIB_NODE_FUNCTION_MULTIARCH (ipsec_output_ip6_node, ipsec_output_ip6_node_fn)
Damjan Marione936bbe2016-02-25 23:17:38 +0100436#else /* IPSEC > 1 */
437
438/* Dummy ipsec output node, in case when IPSec is disabled */
439
440static uword
441ipsec_output_node_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700442 vlib_node_runtime_t * node, vlib_frame_t * frame)
Damjan Marione936bbe2016-02-25 23:17:38 +0100443{
444 clib_warning ("IPSec disabled");
445 return 0;
446}
447
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700448/* *INDENT-OFF* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100449VLIB_REGISTER_NODE (ipsec_output_node) = {
450 .vector_size = sizeof (u32),
451 .function = ipsec_output_node_fn,
Matus Fabian08a6f012016-11-15 06:08:51 -0800452 .name = "ipsec-output-ip4",
453};
454
455VLIB_REGISTER_NODE (ipsec_output_node) = {
456 .vector_size = sizeof (u32),
457 .function = ipsec_output_node_fn,
458 .name = "ipsec-output-ip6",
Damjan Marione936bbe2016-02-25 23:17:38 +0100459};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700460/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100461#endif
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700462
463/*
464 * fd.io coding-style-patch-verification: ON
465 *
466 * Local Variables:
467 * eval: (c-set-style "gnu")
468 * End:
469 */