blob: 8fb9566fa38314f12cbb8a0d6c838c9b266589f3 [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#define foreach_ipsec_output_error \
26 _(RX_PKTS, "IPSec pkts received") \
27 _(POLICY_DISCARD, "IPSec policy discard") \
28 _(POLICY_NO_MATCH, "IPSec policy (no match)") \
29 _(POLICY_PROTECT, "IPSec policy protect") \
30 _(POLICY_BYPASS, "IPSec policy bypass") \
31 _(ENCAPS_FAILED, "IPSec encapsulation failed")
32
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070033typedef enum
34{
Ed Warnickecb9cada2015-12-08 15:45:58 -070035#define _(sym,str) IPSEC_OUTPUT_ERROR_##sym,
36 foreach_ipsec_output_error
37#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070038 IPSEC_DECAP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070039} ipsec_output_error_t;
40
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070041static char *ipsec_output_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070042#define _(sym,string) string,
43 foreach_ipsec_output_error
44#undef _
45};
46
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070047typedef struct
48{
Ed Warnickecb9cada2015-12-08 15:45:58 -070049 u32 spd_id;
Neale Rannsa09c1ff2019-02-04 01:10:30 -080050 u32 policy_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -070051} ipsec_output_trace_t;
52
53/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070054static u8 *
55format_ipsec_output_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070056{
57 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
58 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070059 ipsec_output_trace_t *t = va_arg (*args, ipsec_output_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Neale Rannsa09c1ff2019-02-04 01:10:30 -080061 s = format (s, "spd %u policy %d", t->spd_id, t->policy_id);
62
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 return s;
64}
65
Ed Warnickecb9cada2015-12-08 15:45:58 -070066always_inline ipsec_policy_t *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070067ipsec_output_policy_match (ipsec_spd_t * spd, u8 pr, u32 la, u32 ra, u16 lp,
68 u16 rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070069{
Neale Rannsa09c1ff2019-02-04 01:10:30 -080070 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070071 ipsec_policy_t *p;
72 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
Damjan Marion3f54b182016-08-16 11:27:02 +020074 if (!spd)
75 return 0;
76
Neale Rannsa09c1ff2019-02-04 01:10:30 -080077 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP4_OUTBOUND])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070078 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -080079 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070080 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
81 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
Neale Rannsa4d24312019-07-10 13:46:21 +000083 if (ra < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070084 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
Neale Rannsa4d24312019-07-10 13:46:21 +000086 if (ra > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070087 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Neale Rannsa4d24312019-07-10 13:46:21 +000089 if (la < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
Radu Nicolaude412ce2018-03-12 13:52:41 +000090 continue;
91
Neale Rannsa4d24312019-07-10 13:46:21 +000092 if (la > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
Radu Nicolaude412ce2018-03-12 13:52:41 +000093 continue;
94
Marco Varlese191a5942017-10-30 18:17:21 +010095 if (PREDICT_FALSE
96 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
97 && (pr != IP_PROTOCOL_SCTP)))
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 return p;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070099
100 if (lp < p->lport.start)
101 continue;
102
103 if (lp > p->lport.stop)
104 continue;
105
106 if (rp < p->rport.start)
107 continue;
108
109 if (rp > p->rport.stop)
110 continue;
111
112 return p;
113 }
114 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115}
116
117always_inline uword
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700118ip6_addr_match_range (ip6_address_t * a, ip6_address_t * la,
119 ip6_address_t * ua)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700121 if ((memcmp (a->as_u64, la->as_u64, 2 * sizeof (u64)) >= 0) &&
122 (memcmp (a->as_u64, ua->as_u64, 2 * sizeof (u64)) <= 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 return 1;
124 return 0;
125}
126
127always_inline ipsec_policy_t *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200128ipsec6_output_policy_match (ipsec_spd_t * spd,
129 ip6_address_t * la,
130 ip6_address_t * ra, u16 lp, u16 rp, u8 pr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131{
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800132 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700133 ipsec_policy_t *p;
134 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
Damjan Marion3f54b182016-08-16 11:27:02 +0200136 if (!spd)
137 return 0;
138
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800139 vec_foreach (i, spd->policies[IPSEC_SPD_POLICY_IP6_OUTBOUND])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700140 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800141 p = pool_elt_at_index (im->policies, *i);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700142 if (PREDICT_FALSE (p->protocol && (p->protocol != pr)))
143 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700145 if (!ip6_addr_match_range (ra, &p->raddr.start.ip6, &p->raddr.stop.ip6))
146 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700148 if (!ip6_addr_match_range (la, &p->laddr.start.ip6, &p->laddr.stop.ip6))
149 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
Marco Varlese191a5942017-10-30 18:17:21 +0100151 if (PREDICT_FALSE
152 ((pr != IP_PROTOCOL_TCP) && (pr != IP_PROTOCOL_UDP)
153 && (pr != IP_PROTOCOL_SCTP)))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700154 return p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700156 if (lp < p->lport.start)
157 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700159 if (lp > p->lport.stop)
160 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700162 if (rp < p->rport.start)
163 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700165 if (rp > p->rport.stop)
166 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700168 return p;
169 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 return 0;
172}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700173
Matus Fabian08a6f012016-11-15 06:08:51 -0800174static inline uword
175ipsec_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
176 vlib_frame_t * from_frame, int is_ipv6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177{
178 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800180 u32 *from, *to_next = 0, thread_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700181 u32 n_left_from, sw_if_index0, last_sw_if_index = (u32) ~ 0;
182 u32 next_node_index = (u32) ~ 0, last_next_node_index = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 vlib_frame_t *f = 0;
184 u32 spd_index0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700185 ipsec_spd_t *spd0 = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +0200186 int bogus;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 u64 nc_protect = 0, nc_bypass = 0, nc_discard = 0, nc_nomatch = 0;
188
189 from = vlib_frame_vector_args (from_frame);
190 n_left_from = from_frame->n_vectors;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800191 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
193 while (n_left_from > 0)
194 {
Zhiyong Yangf9221162019-04-22 00:18:38 -0400195 u32 bi0, pi0, bi1;
196 vlib_buffer_t *b0, *b1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700197 ipsec_policy_t *p0;
198 ip4_header_t *ip0;
199 ip6_header_t *ip6_0 = 0;
200 udp_header_t *udp0;
Florin Corasfb28e9a2016-09-06 15:18:21 +0200201 u32 iph_offset = 0;
Klement Sekera31da2e32018-06-24 22:49:55 +0200202 tcp_header_t *tcp0;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800203 u64 bytes0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
205 bi0 = from[0];
206 b0 = vlib_get_buffer (vm, bi0);
Vratko Polakea6a34c2019-04-23 15:52:28 +0200207 if (n_left_from > 1)
208 {
209 bi1 = from[1];
210 b1 = vlib_get_buffer (vm, bi1);
211 CLIB_PREFETCH (b1, CLIB_CACHE_LINE_BYTES * 2, STORE);
212 vlib_prefetch_buffer_data (b1, LOAD);
213 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700214 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Florin Corasfb28e9a2016-09-06 15:18:21 +0200215 iph_offset = vnet_buffer (b0)->ip.save_rewrite_length;
216 ip0 = (ip4_header_t *) ((u8 *) vlib_buffer_get_current (b0)
217 + iph_offset);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 /* lookup for SPD only if sw_if_index is changed */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700220 if (PREDICT_FALSE (last_sw_if_index != sw_if_index0))
221 {
222 uword *p = hash_get (im->spd_index_by_sw_if_index, sw_if_index0);
Dave Barach47d41ad2020-02-17 09:13:26 -0500223 ALWAYS_ASSERT (p);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700224 spd_index0 = p[0];
225 spd0 = pool_elt_at_index (im->spds, spd_index0);
226 last_sw_if_index = sw_if_index0;
227 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700229 if (is_ipv6)
230 {
Matus Fabian08a6f012016-11-15 06:08:51 -0800231 ip6_0 = (ip6_header_t *) ((u8 *) vlib_buffer_get_current (b0)
232 + iph_offset);
233
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700234 udp0 = ip6_next_header (ip6_0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700236 clib_warning
237 ("packet received from %U port %u to %U port %u spd_id %u",
238 format_ip6_address, &ip6_0->src_address,
239 clib_net_to_host_u16 (udp0->src_port), format_ip6_address,
240 &ip6_0->dst_address, clib_net_to_host_u16 (udp0->dst_port),
241 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242#endif
243
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200244 p0 = ipsec6_output_policy_match (spd0,
245 &ip6_0->src_address,
246 &ip6_0->dst_address,
Neale Rannsa4d24312019-07-10 13:46:21 +0000247 clib_net_to_host_u16
248 (udp0->src_port),
249 clib_net_to_host_u16
250 (udp0->dst_port), ip6_0->protocol);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700251 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700253 {
254 udp0 = (udp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
256#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700257 clib_warning ("packet received from %U to %U port %u",
258 format_ip4_address, ip0->src_address.as_u8,
259 format_ip4_address, ip0->dst_address.as_u8,
260 clib_net_to_host_u16 (udp0->dst_port));
261 clib_warning ("sw_if_index0 %u spd_index0 %u spd_id %u",
262 sw_if_index0, spd_index0, spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263#endif
264
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700265 p0 = ipsec_output_policy_match (spd0, ip0->protocol,
Neale Rannsa4d24312019-07-10 13:46:21 +0000266 clib_net_to_host_u32
267 (ip0->src_address.as_u32),
268 clib_net_to_host_u32
269 (ip0->dst_address.as_u32),
270 clib_net_to_host_u16
271 (udp0->src_port),
272 clib_net_to_host_u16
273 (udp0->dst_port));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700274 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200275 tcp0 = (void *) udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700277 if (PREDICT_TRUE (p0 != NULL))
278 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800279 pi0 = p0 - im->policies;
280
281 vlib_prefetch_combined_counter (&ipsec_spd_policy_counters,
282 thread_index, pi0);
283
284 if (is_ipv6)
285 {
286 bytes0 = clib_net_to_host_u16 (ip6_0->payload_length);
287 bytes0 += sizeof (ip6_header_t);
288 }
289 else
290 {
291 bytes0 = clib_net_to_host_u16 (ip0->length);
292 }
293
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700294 if (p0->policy == IPSEC_POLICY_ACTION_PROTECT)
295 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800296 ipsec_sa_t *sa = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700297 nc_protect++;
Neale Rannsc5fe57d2021-02-25 16:01:28 +0000298 sa = ipsec_sa_get (p0->sa_index);
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800299 if (sa->protocol == IPSEC_PROTOCOL_ESP)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200300 if (is_ipv6)
301 next_node_index = im->esp6_encrypt_node_index;
302 else
303 next_node_index = im->esp4_encrypt_node_index;
304 else if (is_ipv6)
305 next_node_index = im->ah6_encrypt_node_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800306 else
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200307 next_node_index = im->ah4_encrypt_node_index;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100308 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800309
Mohsin Kazmi68095382021-02-10 11:26:24 +0100310 if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_OFFLOAD))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700311 {
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +0200312 vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100313
314 /*
315 * Clearing offload flags before checksum is computed
316 * It guarantees the cache hit!
317 */
318 vnet_buffer_offload_flags_clear (b0, oflags);
319
320 if (is_ipv6)
Klement Sekera31da2e32018-06-24 22:49:55 +0200321 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100322 if (PREDICT_FALSE (oflags &
323 VNET_BUFFER_OFFLOAD_F_TCP_CKSUM))
324 {
325 tcp0->checksum = ip6_tcp_udp_icmp_compute_checksum (
326 vm, b0, ip6_0, &bogus);
327 }
328 if (PREDICT_FALSE (oflags &
329 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM))
330 {
331 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum (
332 vm, b0, ip6_0, &bogus);
333 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200334 }
Mohsin Kazmi68095382021-02-10 11:26:24 +0100335 else
Klement Sekera31da2e32018-06-24 22:49:55 +0200336 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100337 if (PREDICT_FALSE (oflags &
338 VNET_BUFFER_OFFLOAD_F_IP_CKSUM))
339 {
340 ip0->checksum = ip4_header_checksum (ip0);
341 }
342 if (PREDICT_FALSE (oflags &
343 VNET_BUFFER_OFFLOAD_F_TCP_CKSUM))
344 {
345 tcp0->checksum =
346 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
347 }
348 if (PREDICT_FALSE (oflags &
349 VNET_BUFFER_OFFLOAD_F_UDP_CKSUM))
350 {
351 udp0->checksum =
352 ip4_tcp_udp_compute_checksum (vm, b0, ip0);
353 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200354 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700355 }
Klement Sekera31da2e32018-06-24 22:49:55 +0200356 vlib_buffer_advance (b0, iph_offset);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700357 }
358 else if (p0->policy == IPSEC_POLICY_ACTION_BYPASS)
359 {
360 nc_bypass++;
Matus Fabian08a6f012016-11-15 06:08:51 -0800361 next_node_index = get_next_output_feature_node_index (b0, node);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700362 }
363 else
364 {
365 nc_discard++;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700366 next_node_index = im->error_drop_node_index;
367 }
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800368 vlib_increment_combined_counter
369 (&ipsec_spd_policy_counters, thread_index, pi0, 1, bytes0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700370 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700372 {
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800373 pi0 = ~0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700374 nc_nomatch++;
375 next_node_index = im->error_drop_node_index;
376 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 from += 1;
379 n_left_from -= 1;
380
Damjan Marion3f54b182016-08-16 11:27:02 +0200381 if (PREDICT_FALSE ((last_next_node_index != next_node_index) || f == 0))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700382 {
383 /* if this is not 1st frame */
384 if (f)
385 vlib_put_frame_to_node (vm, last_next_node_index, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700387 last_next_node_index = next_node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700389 f = vlib_get_frame_to_node (vm, next_node_index);
Kingwel Xie2fab01e2018-10-10 21:03:10 -0400390
391 /* frame->frame_flags, copy it from node */
392 /* Copy trace flag from next_frame and from runtime. */
393 f->frame_flags |= node->flags & VLIB_NODE_FLAG_TRACE;
394
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700395 to_next = vlib_frame_vector_args (f);
396 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
398 to_next[0] = bi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700399 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 f->n_vectors++;
401
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800402 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE) &&
403 PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700404 {
405 ipsec_output_trace_t *tr =
406 vlib_add_trace (vm, node, b0, sizeof (*tr));
407 if (spd0)
408 tr->spd_id = spd0->id;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800409 tr->policy_id = pi0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700410 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 }
412
413 vlib_put_frame_to_node (vm, next_node_index, f);
Matus Fabian08a6f012016-11-15 06:08:51 -0800414 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700415 IPSEC_OUTPUT_ERROR_POLICY_PROTECT, nc_protect);
Matus Fabian08a6f012016-11-15 06:08:51 -0800416 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700417 IPSEC_OUTPUT_ERROR_POLICY_BYPASS, nc_bypass);
Matus Fabian08a6f012016-11-15 06:08:51 -0800418 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700419 IPSEC_OUTPUT_ERROR_POLICY_DISCARD, nc_discard);
Matus Fabian08a6f012016-11-15 06:08:51 -0800420 vlib_node_increment_counter (vm, node->node_index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700421 IPSEC_OUTPUT_ERROR_POLICY_NO_MATCH,
422 nc_nomatch);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 return from_frame->n_vectors;
424}
425
Klement Sekerab8f35442018-10-29 13:38:19 +0100426VLIB_NODE_FN (ipsec4_output_node) (vlib_main_t * vm,
427 vlib_node_runtime_t * node,
428 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800429{
430 return ipsec_output_inline (vm, node, frame, 0);
431}
432
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700433/* *INDENT-OFF* */
Klement Sekerab8f35442018-10-29 13:38:19 +0100434VLIB_REGISTER_NODE (ipsec4_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100435 .name = "ipsec4-output-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 .vector_size = sizeof (u32),
437 .format_trace = format_ipsec_output_trace,
438 .type = VLIB_NODE_TYPE_INTERNAL,
439
440 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
441 .error_strings = ipsec_output_error_strings,
442
443 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
444 .next_nodes = {
445#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 foreach_ipsec_output_next
447#undef _
448 },
449};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700450/* *INDENT-ON* */
Damjan Marione936bbe2016-02-25 23:17:38 +0100451
Klement Sekerab8f35442018-10-29 13:38:19 +0100452VLIB_NODE_FN (ipsec6_output_node) (vlib_main_t * vm,
453 vlib_node_runtime_t * node,
454 vlib_frame_t * frame)
Matus Fabian08a6f012016-11-15 06:08:51 -0800455{
456 return ipsec_output_inline (vm, node, frame, 1);
457}
458
Klement Sekerab8f35442018-10-29 13:38:19 +0100459VLIB_REGISTER_NODE (ipsec6_output_node) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100460 .name = "ipsec6-output-feature",
Matus Fabian08a6f012016-11-15 06:08:51 -0800461 .vector_size = sizeof (u32),
462 .format_trace = format_ipsec_output_trace,
463 .type = VLIB_NODE_TYPE_INTERNAL,
464
465 .n_errors = ARRAY_LEN(ipsec_output_error_strings),
466 .error_strings = ipsec_output_error_strings,
467
468 .n_next_nodes = IPSEC_OUTPUT_N_NEXT,
469 .next_nodes = {
470#define _(s,n) [IPSEC_OUTPUT_NEXT_##s] = n,
471 foreach_ipsec_output_next
472#undef _
473 },
474};
Matus Fabian08a6f012016-11-15 06:08:51 -0800475