blob: 1f3d6d01a93a5cd5eae6f8e5788fe05531f39df7 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel decapsulation
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>
Damjan Marion8b3191e2016-11-09 19:54:20 +010021#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
23#include <vnet/ipsec/ipsec.h>
24#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080025#include <vnet/ipsec/ah.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#define foreach_ipsec_input_error \
28 _(RX_PKTS, "IPSEC pkts received") \
29 _(DECRYPTION_FAILED, "IPSEC decryption failed")
30
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070031typedef enum
32{
Ed Warnickecb9cada2015-12-08 15:45:58 -070033#define _(sym,str) IPSEC_INPUT_ERROR_##sym,
34 foreach_ipsec_input_error
35#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070036 IPSEC_INPUT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070037} ipsec_input_error_t;
38
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070039static char *ipsec_input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#define _(sym,string) string,
41 foreach_ipsec_input_error
42#undef _
43};
44
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070045typedef struct
46{
Pierre Pfister62219272018-11-26 09:29:00 +010047 u32 spd;
Matus Fabian5539a072016-09-07 05:57:09 -070048 u32 sa_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -070049 u32 spi;
50 u32 seq;
51} ipsec_input_trace_t;
52
53/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070054static u8 *
55format_ipsec_input_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_input_trace_t *t = va_arg (*args, ipsec_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Matus Fabian5539a072016-09-07 05:57:09 -070061 if (t->spi == 0 && t->seq == 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070062 {
Matus Fabian5539a072016-09-07 05:57:09 -070063 s = format (s, "esp: no esp packet");
64 return s;
65 }
66
67 if (t->sa_id != 0)
68 {
Pierre Pfister62219272018-11-26 09:29:00 +010069 s =
70 format (s, "esp: sa_id %u spd %u spi %u seq %u", t->sa_id, t->spd,
71 t->spi, t->seq);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070072 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070074 {
Pierre Pfister62219272018-11-26 09:29:00 +010075 s =
76 format (s, "esp: no sa spd %u spi %u seq %u", t->spd, t->spi, t->seq);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070077 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 return s;
79}
80
81always_inline ipsec_policy_t *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070082ipsec_input_protect_policy_match (ipsec_spd_t * spd, u32 sa, u32 da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -070083{
84 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070085 ipsec_policy_t *p;
86 ipsec_sa_t *s;
87 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070089 vec_foreach (i, spd->ipv4_inbound_protect_policy_indices)
90 {
91 p = pool_elt_at_index (spd->policies, *i);
92 s = pool_elt_at_index (im->sad, p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070094 if (spi != s->spi)
95 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070097 if (s->is_tunnel)
98 {
99 if (da != clib_net_to_host_u32 (s->tunnel_dst_addr.ip4.as_u32))
100 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700102 if (sa != clib_net_to_host_u32 (s->tunnel_src_addr.ip4.as_u32))
103 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700105 return p;
106 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700108 if (da < clib_net_to_host_u32 (p->laddr.start.ip4.as_u32))
109 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700111 if (da > clib_net_to_host_u32 (p->laddr.stop.ip4.as_u32))
112 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 if (sa < clib_net_to_host_u32 (p->raddr.start.ip4.as_u32))
115 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700117 if (sa > clib_net_to_host_u32 (p->raddr.stop.ip4.as_u32))
118 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700120 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 *
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200136ipsec6_input_protect_policy_match (ipsec_spd_t * spd,
137 ip6_address_t * sa,
138 ip6_address_t * da, u32 spi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139{
140 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700141 ipsec_policy_t *p;
142 ipsec_sa_t *s;
143 u32 *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700145 vec_foreach (i, spd->ipv6_inbound_protect_policy_indices)
146 {
147 p = pool_elt_at_index (spd->policies, *i);
148 s = pool_elt_at_index (im->sad, p->sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700150 if (spi != s->spi)
151 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700153 if (s->is_tunnel)
154 {
155 if (!ip6_address_is_equal (sa, &s->tunnel_src_addr.ip6))
156 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700158 if (!ip6_address_is_equal (da, &s->tunnel_dst_addr.ip6))
159 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700161 return p;
162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700164 if (!ip6_addr_match_range (sa, &p->raddr.start.ip6, &p->raddr.stop.ip6))
165 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700167 if (!ip6_addr_match_range (da, &p->laddr.start.ip6, &p->laddr.stop.ip6))
168 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700170 return p;
171 }
172 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173}
174
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200175static vlib_node_registration_t ipsec4_input_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100176
Klement Sekerab8f35442018-10-29 13:38:19 +0100177VLIB_NODE_FN (ipsec4_input_node) (vlib_main_t * vm,
178 vlib_node_runtime_t * node,
179 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 u32 n_left_from, *from, next_index, *to_next;
182 ipsec_main_t *im = &ipsec_main;
183
184 from = vlib_frame_vector_args (from_frame);
185 n_left_from = from_frame->n_vectors;
186
187 next_index = node->cached_next_index;
188
189 while (n_left_from > 0)
190 {
191 u32 n_left_to_next;
192
193 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
194
195 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700196 {
197 u32 bi0, next0;
198 vlib_buffer_t *b0;
199 ip4_header_t *ip0;
200 esp_header_t *esp0;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800201 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700202 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700203 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700204 ipsec_policy_t *p0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700206 bi0 = to_next[0] = from[0];
207 from += 1;
208 n_left_from -= 1;
209 to_next += 1;
210 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700212 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200213 b0->flags |= VNET_BUFFER_F_IS_IP4;
214 b0->flags &= ~VNET_BUFFER_F_IS_IP6;
Damjan Marion7d98a122018-07-19 20:42:08 +0200215 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700217 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700219 ip0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
Klement Sekera4b089f22018-04-17 18:04:57 +0200221 if (PREDICT_TRUE
222 (ip0->protocol == IP_PROTOCOL_IPSEC_ESP
223 || ip0->protocol == IP_PROTOCOL_UDP))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700224 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700226 clib_warning
227 ("packet received from %U to %U spi %u size %u spd_id %u",
228 format_ip4_address, ip0->src_address.as_u8,
229 format_ip4_address, ip0->dst_address.as_u8,
230 clib_net_to_host_u32 (esp0->spi),
231 clib_net_to_host_u16 (ip0->length), spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232#endif
Matus Fabian5539a072016-09-07 05:57:09 -0700233
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800234 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Klement Sekera4b089f22018-04-17 18:04:57 +0200235 if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_UDP))
236 {
237 esp0 =
238 (esp_header_t *) ((u8 *) esp0 + sizeof (udp_header_t));
239 }
240 /* FIXME TODO missing check whether there is enough data inside
241 * IP/UDP to contain ESP header & stuff ? */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700242 p0 = ipsec_input_protect_policy_match (spd0,
243 clib_net_to_host_u32
Matus Fabian5539a072016-09-07 05:57:09 -0700244 (ip0->src_address.
245 as_u32),
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700246 clib_net_to_host_u32
Matus Fabian5539a072016-09-07 05:57:09 -0700247 (ip0->dst_address.
248 as_u32),
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700249 clib_net_to_host_u32
250 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700252 if (PREDICT_TRUE (p0 != 0))
253 {
254 p0->counter.packets++;
255 p0->counter.bytes += clib_net_to_host_u16 (ip0->length);
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100256 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
257 vnet_buffer (b0)->ipsec.flags = 0;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200258 next0 = im->esp4_decrypt_next_index;
Klement Sekera4b089f22018-04-17 18:04:57 +0200259 vlib_buffer_advance (b0, ((u8 *) esp0 - (u8 *) ip0));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700260 goto trace0;
261 }
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800262
263 /* FIXME bypass and discard */
264 trace0:
265 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
266 {
267 ipsec_input_trace_t *tr =
268 vlib_add_trace (vm, node, b0, sizeof (*tr));
Klement Sekera4b089f22018-04-17 18:04:57 +0200269 if (ip0->protocol == IP_PROTOCOL_IPSEC_ESP ||
270 ip0->protocol == IP_PROTOCOL_UDP)
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800271 {
272 if (p0)
273 tr->sa_id = p0->sa_id;
274 tr->spi = clib_host_to_net_u32 (esp0->spi);
275 tr->seq = clib_host_to_net_u32 (esp0->seq);
Pierre Pfister62219272018-11-26 09:29:00 +0100276 tr->spd = spd0->id;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800277 }
278 }
279
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700280 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800283 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_AH))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700284 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800285 ah0 = (ah_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
286 p0 = ipsec_input_protect_policy_match (spd0,
287 clib_net_to_host_u32
288 (ip0->src_address.
289 as_u32),
290 clib_net_to_host_u32
291 (ip0->dst_address.
292 as_u32),
293 clib_net_to_host_u32
294 (ah0->spi));
295
296 if (PREDICT_TRUE (p0 != 0))
Matus Fabian5539a072016-09-07 05:57:09 -0700297 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800298 p0->counter.packets++;
299 p0->counter.bytes += clib_net_to_host_u16 (ip0->length);
300 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
301 vnet_buffer (b0)->ipsec.flags = 0;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200302 next0 = im->ah4_decrypt_next_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800303 goto trace1;
304 }
305 /* FIXME bypass and discard */
306 trace1:
307 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
308 {
309 ipsec_input_trace_t *tr =
310 vlib_add_trace (vm, node, b0, sizeof (*tr));
311 if (ip0->protocol == IP_PROTOCOL_IPSEC_ESP)
312 {
313 if (p0)
314 tr->sa_id = p0->sa_id;
315 tr->spi = clib_host_to_net_u32 (ah0->spi);
316 tr->seq = clib_host_to_net_u32 (ah0->seq_no);
Pierre Pfister62219272018-11-26 09:29:00 +0100317 tr->spd = spd0->id;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800318 }
Matus Fabian5539a072016-09-07 05:57:09 -0700319 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700320 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700322 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
323 to_next, n_left_to_next, bi0,
324 next0);
325 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
327 }
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200328 vlib_node_increment_counter (vm, ipsec4_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700329 IPSEC_INPUT_ERROR_RX_PKTS,
330 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332 return from_frame->n_vectors;
333}
334
335
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700336/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200337VLIB_REGISTER_NODE (ipsec4_input_node,static) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100338 .name = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 .vector_size = sizeof (u32),
340 .format_trace = format_ipsec_input_trace,
341 .type = VLIB_NODE_TYPE_INTERNAL,
342
343 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
344 .error_strings = ipsec_input_error_strings,
345
346 .n_next_nodes = IPSEC_INPUT_N_NEXT,
347 .next_nodes = {
348#define _(s,n) [IPSEC_INPUT_NEXT_##s] = n,
349 foreach_ipsec_input_next
350#undef _
351 },
352};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700353/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200355static vlib_node_registration_t ipsec6_input_node;
Damjan Marion1c80e832016-05-11 23:07:18 +0200356
Klement Sekerab8f35442018-10-29 13:38:19 +0100357
358VLIB_NODE_FN (ipsec6_input_node) (vlib_main_t * vm,
359 vlib_node_runtime_t * node,
360 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 u32 n_left_from, *from, next_index, *to_next;
363 ipsec_main_t *im = &ipsec_main;
364
365 from = vlib_frame_vector_args (from_frame);
366 n_left_from = from_frame->n_vectors;
367
368 next_index = node->cached_next_index;
369
370 while (n_left_from > 0)
371 {
372 u32 n_left_to_next;
373
374 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
375
376 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700377 {
378 u32 bi0, next0;
379 vlib_buffer_t *b0;
380 ip6_header_t *ip0;
381 esp_header_t *esp0;
382 ip4_ipsec_config_t *c0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700383 ipsec_spd_t *spd0;
Matus Fabian5539a072016-09-07 05:57:09 -0700384 ipsec_policy_t *p0 = 0;
Klement Sekera611864f2018-09-26 11:19:00 +0200385 ah_header_t *ah0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700386 u32 header_size = sizeof (ip0[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700388 bi0 = to_next[0] = from[0];
389 from += 1;
390 n_left_from -= 1;
391 to_next += 1;
392 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700394 b0 = vlib_get_buffer (vm, bi0);
Szymon Sliwa65a27272018-05-09 14:28:08 +0200395 b0->flags |= VNET_BUFFER_F_IS_IP6;
396 b0->flags &= ~VNET_BUFFER_F_IS_IP4;
Damjan Marion7d98a122018-07-19 20:42:08 +0200397 c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700399 spd0 = pool_elt_at_index (im->spds, c0->spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700401 ip0 = vlib_buffer_get_current (b0);
402 esp0 = (esp_header_t *) ((u8 *) ip0 + header_size);
Klement Sekera611864f2018-09-26 11:19:00 +0200403 ah0 = (ah_header_t *) ((u8 *) ip0 + header_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700405 if (PREDICT_TRUE (ip0->protocol == IP_PROTOCOL_IPSEC_ESP))
406 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407#if 0
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700408 clib_warning
409 ("packet received from %U to %U spi %u size %u spd_id %u",
410 format_ip6_address, &ip0->src_address, format_ip6_address,
411 &ip0->dst_address, clib_net_to_host_u32 (esp0->spi),
412 clib_net_to_host_u16 (ip0->payload_length) + header_size,
413 spd0->id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414#endif
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200415 p0 = ipsec6_input_protect_policy_match (spd0,
416 &ip0->src_address,
417 &ip0->dst_address,
418 clib_net_to_host_u32
419 (esp0->spi));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700421 if (PREDICT_TRUE (p0 != 0))
422 {
423 p0->counter.packets++;
424 p0->counter.bytes +=
425 clib_net_to_host_u16 (ip0->payload_length);
426 p0->counter.bytes += header_size;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100427 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
428 vnet_buffer (b0)->ipsec.flags = 0;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200429 next0 = im->esp6_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700430 vlib_buffer_advance (b0, header_size);
431 goto trace0;
432 }
433 }
Klement Sekera611864f2018-09-26 11:19:00 +0200434 else if (ip0->protocol == IP_PROTOCOL_IPSEC_AH)
435 {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200436 p0 = ipsec6_input_protect_policy_match (spd0,
437 &ip0->src_address,
438 &ip0->dst_address,
439 clib_net_to_host_u32
440 (ah0->spi));
Klement Sekera611864f2018-09-26 11:19:00 +0200441
442 if (PREDICT_TRUE (p0 != 0))
443 {
444 p0->counter.packets++;
445 p0->counter.bytes +=
446 clib_net_to_host_u16 (ip0->payload_length);
447 p0->counter.bytes += header_size;
448 vnet_buffer (b0)->ipsec.sad_index = p0->sa_index;
449 vnet_buffer (b0)->ipsec.flags = 0;
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200450 next0 = im->ah6_decrypt_next_index;
Klement Sekera611864f2018-09-26 11:19:00 +0200451 goto trace0;
452 }
453 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700455 trace0:
456 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
457 {
458 ipsec_input_trace_t *tr =
459 vlib_add_trace (vm, node, b0, sizeof (*tr));
Matus Fabian5539a072016-09-07 05:57:09 -0700460 if (ip0->protocol == IP_PROTOCOL_IPSEC_ESP)
461 {
462 if (p0)
463 tr->sa_id = p0->sa_id;
464 tr->spi = clib_host_to_net_u32 (esp0->spi);
465 tr->seq = clib_host_to_net_u32 (esp0->seq);
Pierre Pfister62219272018-11-26 09:29:00 +0100466 tr->spd = spd0->id;
Matus Fabian5539a072016-09-07 05:57:09 -0700467 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700468 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700470 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
471 n_left_to_next, bi0, next0);
472 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
474 }
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200475 vlib_node_increment_counter (vm, ipsec6_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700476 IPSEC_INPUT_ERROR_RX_PKTS,
477 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
479 return from_frame->n_vectors;
480}
481
482
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700483/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200484VLIB_REGISTER_NODE (ipsec6_input_node,static) = {
Pierre Pfister057b3562018-12-10 17:01:01 +0100485 .name = "ipsec6-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486 .vector_size = sizeof (u32),
487 .format_trace = format_ipsec_input_trace,
488 .type = VLIB_NODE_TYPE_INTERNAL,
489
490 .n_errors = ARRAY_LEN(ipsec_input_error_strings),
491 .error_strings = ipsec_input_error_strings,
492
Pierre Pfister057b3562018-12-10 17:01:01 +0100493 .sibling_of = "ipsec4-input-feature",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700495/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200496
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700497/*
498 * fd.io coding-style-patch-verification: ON
499 *
500 * Local Variables:
501 * eval: (c-set-style "gnu")
502 * End:
503 */