blob: 6e4c7f1b687e31a7bea5e5f31e1df4a9e703a575 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel support
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#include <vnet/interface.h>
Klement Sekera4b089f22018-04-17 18:04:57 +020022#include <vnet/udp/udp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/ipsec/ikev2.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000026#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080027#include <vnet/ipsec/ah.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000028
Klement Sekera4b089f22018-04-17 18:04:57 +020029
Dave Wallace71612d62017-10-24 01:32:41 -040030ipsec_main_t ipsec_main;
31
Matus Fabian694265d2016-08-10 01:55:36 -070032u32
33ipsec_get_sa_index_by_sa_id (u32 sa_id)
34{
35 ipsec_main_t *im = &ipsec_main;
36 uword *p = hash_get (im->sa_index_by_sa_id, sa_id);
37 if (!p)
38 return ~0;
39
40 return p[0];
41}
42
Ed Warnickecb9cada2015-12-08 15:45:58 -070043int
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070044ipsec_set_interface_spd (vlib_main_t * vm, u32 sw_if_index, u32 spd_id,
45 int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -070046{
47 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 ip4_ipsec_config_t config;
49
Damjan Marion8b3191e2016-11-09 19:54:20 +010050 u32 spd_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 uword *p;
52
53 p = hash_get (im->spd_index_by_spd_id, spd_id);
54 if (!p)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070055 return VNET_API_ERROR_SYSCALL_ERROR_1; /* no such spd-id */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57 spd_index = p[0];
58
59 p = hash_get (im->spd_index_by_sw_if_index, sw_if_index);
60 if (p && is_add)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070061 return VNET_API_ERROR_SYSCALL_ERROR_1; /* spd already assigned */
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
63 if (is_add)
64 {
65 hash_set (im->spd_index_by_sw_if_index, sw_if_index, spd_index);
66 }
67 else
68 {
69 hash_unset (im->spd_index_by_sw_if_index, sw_if_index);
70 }
71
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070072 clib_warning ("sw_if_index %u spd_id %u spd_index %u",
73 sw_if_index, spd_id, spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
75 /* enable IPsec on TX */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +020076 vnet_feature_enable_disable ("ip4-output", "ipsec4-output", sw_if_index,
Matus Fabian08a6f012016-11-15 06:08:51 -080077 is_add, 0, 0);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +020078 vnet_feature_enable_disable ("ip6-output", "ipsec6-output", sw_if_index,
Matus Fabian08a6f012016-11-15 06:08:51 -080079 is_add, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Kingwel Xiefc91a172018-09-26 05:07:09 -040081 config.spd_index = spd_index;
82
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 /* enable IPsec on RX */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +020084 vnet_feature_enable_disable ("ip4-unicast", "ipsec4-input", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +010085 is_add, &config, sizeof (config));
Klement Sekerabe5a5dd2018-10-09 16:05:48 +020086 vnet_feature_enable_disable ("ip6-unicast", "ipsec6-input", sw_if_index,
Damjan Marion8b3191e2016-11-09 19:54:20 +010087 is_add, &config, sizeof (config));
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89 return 0;
90}
91
92int
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070093ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -070094{
95 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070096 ipsec_spd_t *spd = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070097 uword *p;
98 u32 spd_index, k, v;
99
100 p = hash_get (im->spd_index_by_spd_id, spd_id);
101 if (p && is_add)
102 return VNET_API_ERROR_INVALID_VALUE;
103 if (!p && !is_add)
104 return VNET_API_ERROR_INVALID_VALUE;
105
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700106 if (!is_add) /* delete */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 {
108 spd_index = p[0];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700109 spd = pool_elt_at_index (im->spds, spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 if (!spd)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700111 return VNET_API_ERROR_INVALID_VALUE;
112 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 hash_foreach (k, v, im->spd_index_by_sw_if_index, ({
114 if (v == spd_index)
115 ipsec_set_interface_spd(vm, k, spd_id, 0);
116 }));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700117 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 hash_unset (im->spd_index_by_spd_id, spd_id);
119 pool_free (spd->policies);
120 vec_free (spd->ipv4_outbound_policies);
121 vec_free (spd->ipv6_outbound_policies);
122 vec_free (spd->ipv4_inbound_protect_policy_indices);
123 vec_free (spd->ipv4_inbound_policy_discard_and_bypass_indices);
124 pool_put (im->spds, spd);
125 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700126 else /* create new SPD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 {
128 pool_get (im->spds, spd);
Dave Barachb7b92992018-10-17 10:38:51 -0400129 clib_memset (spd, 0, sizeof (*spd));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 spd_index = spd - im->spds;
131 spd->id = spd_id;
132 hash_set (im->spd_index_by_spd_id, spd_id, spd_index);
133 }
134 return 0;
135}
136
137static int
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700138ipsec_spd_entry_sort (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700140 u32 *id1 = a1;
141 u32 *id2 = a2;
Klement Sekeraee52d872018-06-07 19:36:07 +0200142 ipsec_spd_t *spd = ipsec_main.spd_to_sort;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700143 ipsec_policy_t *p1, *p2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
Klement Sekeraee52d872018-06-07 19:36:07 +0200145 p1 = pool_elt_at_index (spd->policies, *id1);
146 p2 = pool_elt_at_index (spd->policies, *id2);
147 if (p1 && p2)
148 return p2->priority - p1->priority;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
150 return 0;
151}
152
153int
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700154ipsec_add_del_policy (vlib_main_t * vm, ipsec_policy_t * policy, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155{
156 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700157 ipsec_spd_t *spd = 0;
158 ipsec_policy_t *vp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 uword *p;
160 u32 spd_index;
161
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700162 clib_warning ("policy-id %u priority %d is_outbound %u", policy->id,
163 policy->priority, policy->is_outbound);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
165 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
166 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700167 p = hash_get (im->sa_index_by_sa_id, policy->sa_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 if (!p)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700169 return VNET_API_ERROR_SYSCALL_ERROR_1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 policy->sa_index = p[0];
171 }
172
173 p = hash_get (im->spd_index_by_spd_id, policy->id);
174
175 if (!p)
176 return VNET_API_ERROR_SYSCALL_ERROR_1;
177
178 spd_index = p[0];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700179 spd = pool_elt_at_index (im->spds, spd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180 if (!spd)
181 return VNET_API_ERROR_SYSCALL_ERROR_1;
182
183 if (is_add)
184 {
185 u32 policy_index;
186
187 pool_get (spd->policies, vp);
Damjan Marionf1213b82016-03-13 02:22:06 +0100188 clib_memcpy (vp, policy, sizeof (*vp));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 policy_index = vp - spd->policies;
190
Klement Sekeraee52d872018-06-07 19:36:07 +0200191 ipsec_main.spd_to_sort = spd;
192
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 if (policy->is_outbound)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700194 {
195 if (policy->is_ipv6)
196 {
197 vec_add1 (spd->ipv6_outbound_policies, policy_index);
198 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
199 vec_sort_with_function (spd->ipv6_outbound_policies,
200 ipsec_spd_entry_sort);
201 }
202 else
203 {
204 vec_add1 (spd->ipv4_outbound_policies, policy_index);
205 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
206 vec_sort_with_function (spd->ipv4_outbound_policies,
207 ipsec_spd_entry_sort);
208 }
209 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 else
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700211 {
212 if (policy->is_ipv6)
213 {
214 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
215 {
216 vec_add1 (spd->ipv6_inbound_protect_policy_indices,
217 policy_index);
218 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
Ed Warnicke853e7202016-08-12 11:42:26 -0700219 vec_sort_with_function
220 (spd->ipv6_inbound_protect_policy_indices,
221 ipsec_spd_entry_sort);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700222 }
223 else
224 {
Ed Warnicke853e7202016-08-12 11:42:26 -0700225 vec_add1
226 (spd->ipv6_inbound_policy_discard_and_bypass_indices,
227 policy_index);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700228 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
Ed Warnicke853e7202016-08-12 11:42:26 -0700229 vec_sort_with_function
230 (spd->ipv6_inbound_policy_discard_and_bypass_indices,
231 ipsec_spd_entry_sort);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700232 }
233 }
234 else
235 {
236 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
237 {
238 vec_add1 (spd->ipv4_inbound_protect_policy_indices,
239 policy_index);
240 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
Ed Warnicke853e7202016-08-12 11:42:26 -0700241 vec_sort_with_function
242 (spd->ipv4_inbound_protect_policy_indices,
243 ipsec_spd_entry_sort);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700244 }
245 else
246 {
Ed Warnicke853e7202016-08-12 11:42:26 -0700247 vec_add1
248 (spd->ipv4_inbound_policy_discard_and_bypass_indices,
249 policy_index);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700250 clib_memcpy (vp, policy, sizeof (ipsec_policy_t));
Ed Warnicke853e7202016-08-12 11:42:26 -0700251 vec_sort_with_function
252 (spd->ipv4_inbound_policy_discard_and_bypass_indices,
253 ipsec_spd_entry_sort);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700254 }
255 }
256 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
Klement Sekeraee52d872018-06-07 19:36:07 +0200258 ipsec_main.spd_to_sort = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 }
260 else
261 {
262 u32 i, j;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700263 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 pool_foreach_index(i, spd->policies, ({
Damjan Marion607de1a2016-08-16 22:53:54 +0200265 vp = pool_elt_at_index(spd->policies, i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 if (vp->priority != policy->priority)
267 continue;
268 if (vp->is_outbound != policy->is_outbound)
269 continue;
270 if (vp->policy != policy->policy)
271 continue;
272 if (vp->sa_id != policy->sa_id)
273 continue;
274 if (vp->protocol != policy->protocol)
275 continue;
276 if (vp->lport.start != policy->lport.start)
277 continue;
278 if (vp->lport.stop != policy->lport.stop)
279 continue;
280 if (vp->rport.start != policy->rport.start)
281 continue;
282 if (vp->rport.stop != policy->rport.stop)
283 continue;
284 if (vp->is_ipv6 != policy->is_ipv6)
285 continue;
286 if (policy->is_ipv6)
287 {
288 if (vp->laddr.start.ip6.as_u64[0] != policy->laddr.start.ip6.as_u64[0])
289 continue;
290 if (vp->laddr.start.ip6.as_u64[1] != policy->laddr.start.ip6.as_u64[1])
291 continue;
292 if (vp->laddr.stop.ip6.as_u64[0] != policy->laddr.stop.ip6.as_u64[0])
293 continue;
294 if (vp->laddr.stop.ip6.as_u64[1] != policy->laddr.stop.ip6.as_u64[1])
295 continue;
296 if (vp->raddr.start.ip6.as_u64[0] != policy->raddr.start.ip6.as_u64[0])
297 continue;
298 if (vp->raddr.start.ip6.as_u64[1] != policy->raddr.start.ip6.as_u64[1])
299 continue;
300 if (vp->raddr.stop.ip6.as_u64[0] != policy->raddr.stop.ip6.as_u64[0])
301 continue;
302 if (vp->laddr.stop.ip6.as_u64[1] != policy->laddr.stop.ip6.as_u64[1])
303 continue;
304 if (policy->is_outbound)
305 {
306 vec_foreach_index(j, spd->ipv6_outbound_policies) {
307 if (vec_elt(spd->ipv6_outbound_policies, j) == i) {
308 vec_del1 (spd->ipv6_outbound_policies, j);
309 break;
310 }
311 }
312 }
313 else
314 {
315 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
316 {
317 vec_foreach_index(j, spd->ipv6_inbound_protect_policy_indices) {
318 if (vec_elt(spd->ipv6_inbound_protect_policy_indices, j) == i) {
319 vec_del1 (spd->ipv6_inbound_protect_policy_indices, j);
320 break;
321 }
322 }
323 }
324 else
325 {
326 vec_foreach_index(j, spd->ipv6_inbound_policy_discard_and_bypass_indices) {
327 if (vec_elt(spd->ipv6_inbound_policy_discard_and_bypass_indices, j) == i) {
328 vec_del1 (spd->ipv6_inbound_policy_discard_and_bypass_indices, j);
329 break;
330 }
331 }
332 }
333 }
334 }
335 else
336 {
337 if (vp->laddr.start.ip4.as_u32 != policy->laddr.start.ip4.as_u32)
338 continue;
339 if (vp->laddr.stop.ip4.as_u32 != policy->laddr.stop.ip4.as_u32)
340 continue;
341 if (vp->raddr.start.ip4.as_u32 != policy->raddr.start.ip4.as_u32)
342 continue;
343 if (vp->raddr.stop.ip4.as_u32 != policy->raddr.stop.ip4.as_u32)
344 continue;
345 if (policy->is_outbound)
346 {
347 vec_foreach_index(j, spd->ipv4_outbound_policies) {
348 if (vec_elt(spd->ipv4_outbound_policies, j) == i) {
349 vec_del1 (spd->ipv4_outbound_policies, j);
350 break;
351 }
Damjan Marion607de1a2016-08-16 22:53:54 +0200352 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 }
354 else
355 {
356 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
357 {
358 vec_foreach_index(j, spd->ipv4_inbound_protect_policy_indices) {
359 if (vec_elt(spd->ipv4_inbound_protect_policy_indices, j) == i) {
360 vec_del1 (spd->ipv4_inbound_protect_policy_indices, j);
361 break;
362 }
363 }
364 }
365 else
366 {
367 vec_foreach_index(j, spd->ipv4_inbound_policy_discard_and_bypass_indices) {
368 if (vec_elt(spd->ipv4_inbound_policy_discard_and_bypass_indices, j) == i) {
369 vec_del1 (spd->ipv4_inbound_policy_discard_and_bypass_indices, j);
370 break;
Matus Fabiance8805c2018-03-16 05:44:24 -0700371 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 }
373 }
374 }
375 }
376 pool_put (spd->policies, vp);
377 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 }));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700379 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 }
381
382 return 0;
383}
384
Matthew Smithca514fd2017-10-12 12:06:59 -0500385u8
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700386ipsec_is_sa_used (u32 sa_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700388 ipsec_main_t *im = &ipsec_main;
389 ipsec_spd_t *spd;
390 ipsec_policy_t *p;
Matus Fabian694265d2016-08-10 01:55:36 -0700391 ipsec_tunnel_if_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700393 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 pool_foreach(spd, im->spds, ({
395 pool_foreach(p, spd->policies, ({
396 if (p->policy == IPSEC_POLICY_ACTION_PROTECT)
397 {
398 if (p->sa_index == sa_index)
399 return 1;
400 }
401 }));
402 }));
Matus Fabian694265d2016-08-10 01:55:36 -0700403
404 pool_foreach(t, im->tunnel_interfaces, ({
405 if (t->input_sa_index == sa_index)
406 return 1;
407 if (t->output_sa_index == sa_index)
408 return 1;
409 }));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700410 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
412 return 0;
413}
414
415int
Radu Nicolau717de092018-08-03 10:37:24 +0100416ipsec_add_del_sa (vlib_main_t * vm, ipsec_sa_t * new_sa, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417{
418 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700419 ipsec_sa_t *sa = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 uword *p;
421 u32 sa_index;
Sergio Gonzalez Monroy20960632017-10-12 11:43:41 +0100422 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700424 clib_warning ("id %u spi %u", new_sa->id, new_sa->spi);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425
426 p = hash_get (im->sa_index_by_sa_id, new_sa->id);
427 if (p && is_add)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700428 return VNET_API_ERROR_SYSCALL_ERROR_1; /* already exists */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 if (!p && !is_add)
430 return VNET_API_ERROR_SYSCALL_ERROR_1;
431
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700432 if (!is_add) /* delete */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 {
434 sa_index = p[0];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700435 sa = pool_elt_at_index (im->sad, sa_index);
436 if (ipsec_is_sa_used (sa_index))
437 {
438 clib_warning ("sa_id %u used in policy", sa->id);
439 return VNET_API_ERROR_SYSCALL_ERROR_1; /* sa used in policy */
440 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 hash_unset (im->sa_index_by_sa_id, sa->id);
Sergio Gonzalez Monroy20960632017-10-12 11:43:41 +0100442 if (im->cb.add_del_sa_sess_cb)
443 {
444 err = im->cb.add_del_sa_sess_cb (sa_index, 0);
445 if (err)
446 return VNET_API_ERROR_SYSCALL_ERROR_1;
447 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 pool_put (im->sad, sa);
449 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700450 else /* create new SA */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451 {
452 pool_get (im->sad, sa);
Damjan Marionf1213b82016-03-13 02:22:06 +0100453 clib_memcpy (sa, new_sa, sizeof (*sa));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454 sa_index = sa - im->sad;
455 hash_set (im->sa_index_by_sa_id, sa->id, sa_index);
Sergio Gonzalez Monroy20960632017-10-12 11:43:41 +0100456 if (im->cb.add_del_sa_sess_cb)
457 {
458 err = im->cb.add_del_sa_sess_cb (sa_index, 1);
459 if (err)
460 return VNET_API_ERROR_SYSCALL_ERROR_1;
461 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 }
463 return 0;
464}
465
466int
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700467ipsec_set_sa_key (vlib_main_t * vm, ipsec_sa_t * sa_update)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468{
469 ipsec_main_t *im = &ipsec_main;
470 uword *p;
471 u32 sa_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700472 ipsec_sa_t *sa = 0;
Sergio Gonzalez Monroy20960632017-10-12 11:43:41 +0100473 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
475 p = hash_get (im->sa_index_by_sa_id, sa_update->id);
476 if (!p)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700477 return VNET_API_ERROR_SYSCALL_ERROR_1; /* no such sa-id */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
479 sa_index = p[0];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700480 sa = pool_elt_at_index (im->sad, sa_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
482 /* new crypto key */
483 if (0 < sa_update->crypto_key_len)
484 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700485 clib_memcpy (sa->crypto_key, sa_update->crypto_key,
486 sa_update->crypto_key_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 sa->crypto_key_len = sa_update->crypto_key_len;
488 }
489
490 /* new integ key */
491 if (0 < sa_update->integ_key_len)
492 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700493 clib_memcpy (sa->integ_key, sa_update->integ_key,
494 sa_update->integ_key_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 sa->integ_key_len = sa_update->integ_key_len;
496 }
497
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100498 if (0 < sa_update->crypto_key_len || 0 < sa_update->integ_key_len)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000499 {
Sergio Gonzalez Monroy20960632017-10-12 11:43:41 +0100500 if (im->cb.add_del_sa_sess_cb)
501 {
502 err = im->cb.add_del_sa_sess_cb (sa_index, 0);
503 if (err)
504 return VNET_API_ERROR_SYSCALL_ERROR_1;
505 }
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000506 }
507
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 return 0;
509}
510
511static void
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700512ipsec_rand_seed (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700514 struct
515 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 time_t time;
517 pid_t pid;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700518 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 } seed_data;
520
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700521 seed_data.time = time (NULL);
522 seed_data.pid = getpid ();
523 seed_data.p = (void *) &seed_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700525 RAND_seed ((const void *) &seed_data, sizeof (seed_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526}
527
528static clib_error_t *
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000529ipsec_check_support (ipsec_sa_t * sa)
530{
531 if (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128)
532 return clib_error_return (0, "unsupported aes-gcm-128 crypto-alg");
533 if (sa->integ_alg == IPSEC_INTEG_ALG_NONE)
534 return clib_error_return (0, "unsupported none integ-alg");
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000535
536 return 0;
537}
538
539static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540ipsec_init (vlib_main_t * vm)
541{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700542 clib_error_t *error;
543 ipsec_main_t *im = &ipsec_main;
544 vlib_thread_main_t *tm = vlib_get_thread_main ();
545 vlib_node_t *node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700547 ipsec_rand_seed ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
Dave Barachb7b92992018-10-17 10:38:51 -0400549 clib_memset (im, 0, sizeof (im[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700551 im->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 im->vlib_main = vm;
553
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700554 im->spd_index_by_spd_id = hash_create (0, sizeof (uword));
555 im->sa_index_by_sa_id = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 im->spd_index_by_sw_if_index = hash_create (0, sizeof (uword));
557
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700558 vec_validate_aligned (im->empty_buffers, tm->n_vlib_mains - 1,
559 CLIB_CACHE_LINE_BYTES);
Matthew Smith29d85102016-05-01 14:52:08 -0500560
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700562 ASSERT (node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 im->error_drop_node_index = node->index;
564
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200565 node = vlib_get_node_by_name (vm, (u8 *) "esp4-encrypt");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700566 ASSERT (node);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200567 im->esp4_encrypt_node_index = node->index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200569 node = vlib_get_node_by_name (vm, (u8 *) "esp4-decrypt");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700570 ASSERT (node);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200571 im->esp4_decrypt_node_index = node->index;
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000572
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200573 node = vlib_get_node_by_name (vm, (u8 *) "ah4-encrypt");
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800574 ASSERT (node);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200575 im->ah4_encrypt_node_index = node->index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800576
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200577 node = vlib_get_node_by_name (vm, (u8 *) "ah4-decrypt");
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800578 ASSERT (node);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200579 im->ah4_decrypt_node_index = node->index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800580
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200581 im->esp4_encrypt_next_index = IPSEC_OUTPUT_NEXT_ESP4_ENCRYPT;
582 im->esp4_decrypt_next_index = IPSEC_INPUT_NEXT_ESP4_DECRYPT;
583 im->ah4_encrypt_next_index = IPSEC_OUTPUT_NEXT_AH4_ENCRYPT;
584 im->ah4_decrypt_next_index = IPSEC_INPUT_NEXT_AH4_DECRYPT;
585
586 node = vlib_get_node_by_name (vm, (u8 *) "esp6-encrypt");
587 ASSERT (node);
588 im->esp6_encrypt_node_index = node->index;
589
590 node = vlib_get_node_by_name (vm, (u8 *) "esp6-decrypt");
591 ASSERT (node);
592 im->esp6_decrypt_node_index = node->index;
593
594 node = vlib_get_node_by_name (vm, (u8 *) "ah6-encrypt");
595 ASSERT (node);
596 im->ah6_encrypt_node_index = node->index;
597
598 node = vlib_get_node_by_name (vm, (u8 *) "ah6-decrypt");
599 ASSERT (node);
600 im->ah6_decrypt_node_index = node->index;
601
602 im->esp6_encrypt_next_index = IPSEC_OUTPUT_NEXT_ESP6_ENCRYPT;
603 im->esp6_decrypt_next_index = IPSEC_INPUT_NEXT_ESP6_DECRYPT;
604 im->ah6_encrypt_next_index = IPSEC_OUTPUT_NEXT_AH6_ENCRYPT;
605 im->ah6_decrypt_next_index = IPSEC_INPUT_NEXT_AH6_DECRYPT;
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000606
607 im->cb.check_support_cb = ipsec_check_support;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 if ((error = vlib_call_init_function (vm, ipsec_cli_init)))
610 return error;
611
612 if ((error = vlib_call_init_function (vm, ipsec_tunnel_if_init)))
613 return error;
614
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800615 ipsec_proto_init ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616
617 if ((error = ikev2_init (vm)))
618 return error;
619
620 return 0;
621}
622
623VLIB_INIT_FUNCTION (ipsec_init);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700624
625/*
626 * fd.io coding-style-patch-verification: ON
627 *
628 * Local Variables:
629 * eval: (c-set-style "gnu")
630 * End:
631 */