blob: 40561269237112751c0a5e1fd2447c08d4928e6c [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
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
Ed Warnickecb9cada2015-12-08 15:45:58 -070067always_inline ipsec_policy_t *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070068ipsec_output_policy_match (ipsec_spd_t * spd, u8 pr, u32 la, u32 ra, u16 lp,
69 u16 rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070{
Neale Rannsa09c1ff2019-02-04 01:10:30 -080071 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070072 ipsec_policy_t *p;
73 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
Damjan Marion3f54b182016-08-16 11:27:02 +020075 if (!spd)
76 return 0;
77
Neale Rannsa09c1ff2019-02-04 01:10:30 -080078 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP4_OUTBOUND])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070079 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -080080 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070081 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
82 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070084 if (ra < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
85 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070087 if (ra > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
88 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089
Radu Nicolaude412ce2018-03-12 13:52:41 +000090 if (la < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
91 continue;
92
93 if (la > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
94 continue;
95
Marco Varlese191a5942017-10-30 18:17:21 +010096 if (PREDICT_FALSE
97 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
98 && (pr != IP_PROTOCOL_SCTP)))
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 return p;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700100
101 if (lp < p->lport.start)
102 continue;
103
104 if (lp > p->lport.stop)
105 continue;
106
107 if (rp < p->rport.start)
108 continue;
109
110 if (rp > p->rport.stop)
111 continue;
112
113 return p;
114 }
115 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116}
117
118always_inline uword
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700119ip6_addr_match_range (ip6_address_t * a, ip6_address_t * la,
120 ip6_address_t * ua)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700122 if ((memcmp (a->as_u64, la->as_u64, 2 * sizeof (u64)) >= 0) &&
123 (memcmp (a->as_u64, ua->as_u64, 2 * sizeof (u64)) <= 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 return 1;
125 return 0;
126}
127
128always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200129ipsec6_output_policy_match (ipsec_spd_t * spd,
130 ip6_address_t * la,
131 ip6_address_t * ra, u16 lp, u16 rp, u8 pr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800133 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700134 ipsec_policy_t *p;
135 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Damjan Marion3f54b182016-08-16 11:27:02 +0200137 if (!spd)
138 return 0;
139
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800140 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_OUTBOUND])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700141 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800142 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700143 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
144 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700146 if (!ip6_addr_match_range (ra, &p->raddr.start.ip6, &p->raddr.stop.ip6))
147 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700149 if (!ip6_addr_match_range (la, &p->laddr.start.ip6, &p->laddr.stop.ip6))
150 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Marco Varlese191a5942017-10-30 18:17:21 +0100152 if (PREDICT_FALSE
153 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
154 && (pr != IP_PROTOCOL_SCTP)))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700155 return p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700157 if (lp < p->lport.start)
158 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700160 if (lp > p->lport.stop)
161 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700163 if (rp < p->rport.start)
164 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700166 if (rp > p->rport.stop)
167 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700169 return p;
170 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
172 return 0;
173}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700174
Matus Fabian08a6f012016-11-15 06:08:51 -0800175static inline uword
176ipsec_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
177 vlib_frame_t * from_frame, int is_ipv6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178{
179 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800181 u32 *from, *to_next = 0, thread_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700182 u32 n_left_from, sw_if_index0, last_sw_if_index = (u32) ~ 0;
183 u32 next_node_index = (u32) ~ 0, last_next_node_index = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 vlib_frame_t *f = 0;
185 u32 spd_index0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700186 ipsec_spd_t *spd0 = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +0200187 int bogus;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 u64 nc_protect = 0, nc_bypass = 0, nc_discard = 0, nc_nomatch = 0;
189
190 from = vlib_frame_vector_args (from_frame);
191 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800192 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
194 while (n_left_from > 0)
195 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800196 u32 bi0, pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700197 vlib_buffer_t *b0;
198 ipsec_policy_t *p0;
199 ip4_header_t *ip0;
200 ip6_header_t *ip6_0 = 0;
201 udp_header_t *udp0;
Florin Corasfb28e9a2016-09-06 15:18:21 +0200202 u32 iph_offset = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +0200203 tcp_header_t *tcp0;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800204 u64 bytes0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
206 bi0 = from[0];
207 b0 = vlib_get_buffer (vm, bi0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700208 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Florin Corasfb28e9a2016-09-06 15:18:21 +0200209 iph_offset = vnet_buffer (b0)->ip.save_rewrite_length;
210 ip0 = (ip4_header_t *) ((u8 *) vlib_buffer_get_current (b0)
211 + iph_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 /* lookup for SPD only if sw_if_index is changed */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700214 if (PREDICT_FALSE (last_sw_if_index != sw_if_index0))
215 {
216 uword *p = hash_get (im->spd_index_by_sw_if_index, sw_if_index0);
217 ASSERT (p);
218 spd_index0 = p[0];
219 spd0 = pool_elt_at_index (im->spds, spd_index0);
220 last_sw_if_index = sw_if_index0;
221 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700223 if (is_ipv6)
224 {
Matus Fabian08a6f012016-11-15 06:08:51 -0800225 ip6_0 = (ip6_header_t *) ((u8 *) vlib_buffer_get_current (b0)
226 + iph_offset);
227
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700228 udp0 = ip6_next_header (ip6_0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700230 clib_warning
231 ("packet received from %U port %u to %U port %u spd_id %u",
232 format_ip6_address, &ip6_0->src_address,
233 clib_net_to_host_u16 (udp0->src_port), format_ip6_address,
234 &ip6_0->dst_address, clib_net_to_host_u16 (udp0->dst_port),
235 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236#endif
237
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200238 p0 = ipsec6_output_policy_match (spd0,
239 &ip6_0->src_address,
240 &ip6_0->dst_address,
241 clib_net_to_host_u16
242 (udp0->src_port),
243 clib_net_to_host_u16
244 (udp0->dst_port), ip6_0->protocol);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700245 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700247 {
248 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
250#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700251 clib_warning ("packet received from %U to %U port %u",
252 format_ip4_address, ip0->src_address.as_u8,
253 format_ip4_address, ip0->dst_address.as_u8,
254 clib_net_to_host_u16 (udp0->dst_port));
255 clib_warning ("sw_if_index0 %u spd_index0 %u spd_id %u",
256 sw_if_index0, spd_index0, spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257#endif
258
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700259 p0 = ipsec_output_policy_match (spd0, ip0->protocol,
Ed Warnicke853e7202016-08-12 11:42:26 -0700260 clib_net_to_host_u32
261 (ip0->src_address.as_u32),
262 clib_net_to_host_u32
263 (ip0->dst_address.as_u32),
264 clib_net_to_host_u16
265 (udp0->src_port),
266 clib_net_to_host_u16
267 (udp0->dst_port));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700268 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200269 tcp0 = (void *) udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700271 if (PREDICT_TRUE (p0 != NULL))
272 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800273 pi0 = p0 - im->policies;
274
275 vlib_prefetch_combined_counter (&ipsec_spd_policy_counters,
276 thread_index, pi0);
277
278 if (is_ipv6)
279 {
280 bytes0 = clib_net_to_host_u16 (ip6_0->payload_length);
281 bytes0 += sizeof (ip6_header_t);
282 }
283 else
284 {
285 bytes0 = clib_net_to_host_u16 (ip0->length);
286 }
287
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700288 if (p0->policy == IPSEC_POLICY_ACTION_PROTECT)
289 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800290 ipsec_sa_t *sa = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700291 nc_protect++;
Radu Nicolaude412ce2018-03-12 13:52:41 +0000292 sa = pool_elt_at_index (im->sad, p0->sa_index);
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800293 if (sa->protocol == IPSEC_PROTOCOL_ESP)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200294 if (is_ipv6)
295 next_node_index = im->esp6_encrypt_node_index;
296 else
297 next_node_index = im->esp4_encrypt_node_index;
298 else if (is_ipv6)
299 next_node_index = im->ah6_encrypt_node_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800300 else
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200301 next_node_index = im->ah4_encrypt_node_index;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100302 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800303
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700304 if (is_ipv6)
305 {
Klement Sekera31da2e32018-06-24 22:49:55 +0200306 if (PREDICT_FALSE
307 (b0->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM))
308 {
309 tcp0->checksum =
310 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip6_0,
311 &bogus);
312 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
313 }
314 if (PREDICT_FALSE
315 (b0->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
316 {
317 udp0->checksum =
318 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip6_0,
319 &bogus);
320 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
321 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700322 }
323 else
324 {
Klement Sekera31da2e32018-06-24 22:49:55 +0200325 if (b0->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)
326 {
327 ip0->checksum = ip4_header_checksum (ip0);
328 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
329 }
330 if (PREDICT_FALSE
331 (b0->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM))
332 {
333 tcp0->checksum =
334 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
335 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
336 }
337 if (PREDICT_FALSE
338 (b0->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
339 {
340 udp0->checksum =
341 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
342 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
343 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700344 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200345 vlib_buffer_advance (b0, iph_offset);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700346 }
347 else if (p0->policy == IPSEC_POLICY_ACTION_BYPASS)
348 {
349 nc_bypass++;
Matus Fabian08a6f012016-11-15 06:08:51 -0800350 next_node_index = get_next_output_feature_node_index (b0, node);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700351 }
352 else
353 {
354 nc_discard++;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700355 next_node_index = im->error_drop_node_index;
356 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800357 vlib_increment_combined_counter
358 (&ipsec_spd_policy_counters, thread_index, pi0, 1, bytes0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700359 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700361 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800362 pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700363 nc_nomatch++;
364 next_node_index = im->error_drop_node_index;
365 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 from += 1;
368 n_left_from -= 1;
369
Damjan Marion3f54b182016-08-16 11:27:02 +0200370 if (PREDICT_FALSE ((last_next_node_index != next_node_index) || f == 0))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700371 {
372 /* if this is not 1st frame */
373 if (f)
374 vlib_put_frame_to_node (vm, last_next_node_index, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700376 last_next_node_index = next_node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700378 f = vlib_get_frame_to_node (vm, next_node_index);
Kingwel Xie2fab01e2018-10-10 21:03:10 -0400379
380 /* frame->frame_flags, copy it from node */
381 /* Copy trace flag from next_frame and from runtime. */
382 f->frame_flags |= node->flags & VLIB_NODE_FLAG_TRACE;
383
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700384 to_next = vlib_frame_vector_args (f);
385 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
387 to_next[0] = bi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700388 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 f->n_vectors++;
390
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800391 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
392 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700393 {
394 ipsec_output_trace_t *tr =
395 vlib_add_trace (vm, node, b0, sizeof (*tr));
396 if (spd0)
397 tr->spd_id = spd0->id;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800398 tr->policy_id = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700399 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 }
401
402 vlib_put_frame_to_node (vm, next_node_index, f);
Matus Fabian08a6f012016-11-15 06:08:51 -0800403 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700404 IPSEC_OUTPUT_ERROR_POLICY_PROTECT, nc_protect);
Matus Fabian08a6f012016-11-15 06:08:51 -0800405 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700406 IPSEC_OUTPUT_ERROR_POLICY_BYPASS, nc_bypass);
Matus Fabian08a6f012016-11-15 06:08:51 -0800407 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700408 IPSEC_OUTPUT_ERROR_POLICY_DISCARD, nc_discard);
Matus Fabian08a6f012016-11-15 06:08:51 -0800409 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700410 IPSEC_OUTPUT_ERROR_POLICY_NO_MATCH,
411 nc_nomatch);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 return from_frame->n_vectors;
413}
414
Klement Sekerab8f35442018-10-29 13:38:19 +0100415VLIB_NODE_FN (ipsec4_output_node) (vlib_main_t * vm,
416 vlib_node_runtime_t * node,
417 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800418{
419 return ipsec_output_inline (vm, node, frame, 0);
420}
421
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700422/* *INDENT-OFF* */
Klement Sekerab8f35442018-10-29 13:38:19 +0100423VLIB_REGISTER_NODE (ipsec4_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100424 .name = "ipsec4-output-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 .vector_size = sizeof (u32),
426 .format_trace = format_ipsec_output_trace,
427 .type = VLIB_NODE_TYPE_INTERNAL,
428
429 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
430 .error_strings = ipsec_output_error_strings,
431
432 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
433 .next_nodes = {
434#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 foreach_ipsec_output_next
436#undef _
437 },
438};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700439/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100440
Klement Sekerab8f35442018-10-29 13:38:19 +0100441VLIB_NODE_FN (ipsec6_output_node) (vlib_main_t * vm,
442 vlib_node_runtime_t * node,
443 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800444{
445 return ipsec_output_inline (vm, node, frame, 1);
446}
447
448/* *INDENT-OFF* */
Klement Sekerab8f35442018-10-29 13:38:19 +0100449VLIB_REGISTER_NODE (ipsec6_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100450 .name = "ipsec6-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800451 .vector_size = sizeof (u32),
452 .format_trace = format_ipsec_output_trace,
453 .type = VLIB_NODE_TYPE_INTERNAL,
454
455 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
456 .error_strings = ipsec_output_error_strings,
457
458 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
459 .next_nodes = {
460#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
461 foreach_ipsec_output_next
462#undef _
463 },
464};
465/* *INDENT-ON* */
466
Damjan Marione936bbe2016-02-25 23:17:38 +0100467#else /* IPSEC > 1 */
468
469/* Dummy ipsec output node, in case when IPSec is disabled */
470
471static uword
472ipsec_output_node_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700473 vlib_node_runtime_t * node, vlib_frame_t * frame)
Damjan Marione936bbe2016-02-25 23:17:38 +0100474{
475 clib_warning ("IPSec disabled");
476 return 0;
477}
478
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700479/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200480VLIB_REGISTER_NODE (ipsec4_output_node) = {
Damjan Marione936bbe2016-02-25 23:17:38 +0100481 .vector_size = sizeof (u32),
482 .function = ipsec_output_node_fn,
Pierre Pfister057b3562018-12-10 17:01:01 +0100483 .name = "ipsec4-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800484};
485
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200486VLIB_REGISTER_NODE (ipsec6_output_node) = {
Matus Fabian08a6f012016-11-15 06:08:51 -0800487 .vector_size = sizeof (u32),
488 .function = ipsec_output_node_fn,
Pierre Pfister057b3562018-12-10 17:01:01 +0100489 .name = "ipsec6-output-feature",
Damjan Marione936bbe2016-02-25 23:17:38 +0100490};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700491/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100492#endif
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700493
494/*
495 * fd.io coding-style-patch-verification: ON
496 *
497 * Local Variables:
498 * eval: (c-set-style "gnu")
499 * End:
500 */