blob: 7e17bb91fdb97cfa7213fb0e4dc86b61e519773d [file] [log] [blame]
Neale Ranns999c8ee2019-02-01 03:31:24 -08001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/ipsec/ipsec.h>
17
18int
19ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add)
20{
21 ipsec_main_t *im = &ipsec_main;
22 ipsec_spd_t *spd = 0;
23 uword *p;
24 u32 spd_index, k, v;
25
26 p = hash_get (im->spd_index_by_spd_id, spd_id);
27 if (p && is_add)
28 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
29 if (!p && !is_add)
30 return VNET_API_ERROR_NO_SUCH_ENTRY;
31
32 if (!is_add) /* delete */
33 {
34 spd_index = p[0];
35 spd = pool_elt_at_index (im->spds, spd_index);
36 if (!spd)
37 return VNET_API_ERROR_INVALID_VALUE;
38 /* *INDENT-OFF* */
39 hash_foreach (k, v, im->spd_index_by_sw_if_index, ({
40 if (v == spd_index)
41 ipsec_set_interface_spd(vm, k, spd_id, 0);
42 }));
43 /* *INDENT-ON* */
44 hash_unset (im->spd_index_by_spd_id, spd_id);
45 pool_free (spd->policies);
46 vec_free (spd->ipv4_outbound_policies);
47 vec_free (spd->ipv6_outbound_policies);
48 vec_free (spd->ipv4_inbound_protect_policy_indices);
49 vec_free (spd->ipv4_inbound_policy_discard_and_bypass_indices);
50 pool_put (im->spds, spd);
51 }
52 else /* create new SPD */
53 {
54 pool_get (im->spds, spd);
55 clib_memset (spd, 0, sizeof (*spd));
56 spd_index = spd - im->spds;
57 spd->id = spd_id;
58 hash_set (im->spd_index_by_spd_id, spd_id, spd_index);
59 }
60 return 0;
61}
62
63int
64ipsec_set_interface_spd (vlib_main_t * vm, u32 sw_if_index, u32 spd_id,
65 int is_add)
66{
67 ipsec_main_t *im = &ipsec_main;
68 ip4_ipsec_config_t config;
69
70 u32 spd_index;
71 uword *p;
72
73 p = hash_get (im->spd_index_by_spd_id, spd_id);
74 if (!p)
75 return VNET_API_ERROR_SYSCALL_ERROR_1; /* no such spd-id */
76
77 spd_index = p[0];
78
79 p = hash_get (im->spd_index_by_sw_if_index, sw_if_index);
80 if (p && is_add)
81 return VNET_API_ERROR_SYSCALL_ERROR_1; /* spd already assigned */
82
83 if (is_add)
84 {
85 hash_set (im->spd_index_by_sw_if_index, sw_if_index, spd_index);
86 }
87 else
88 {
89 hash_unset (im->spd_index_by_sw_if_index, sw_if_index);
90 }
91
92 clib_warning ("sw_if_index %u spd_id %u spd_index %u",
93 sw_if_index, spd_id, spd_index);
94
95 /* enable IPsec on TX */
96 vnet_feature_enable_disable ("ip4-output", "ipsec4-output-feature",
97 sw_if_index, is_add, 0, 0);
98 vnet_feature_enable_disable ("ip6-output", "ipsec6-output-feature",
99 sw_if_index, is_add, 0, 0);
100
101 config.spd_index = spd_index;
102
103 /* enable IPsec on RX */
104 vnet_feature_enable_disable ("ip4-unicast", "ipsec4-input-feature",
105 sw_if_index, is_add, &config, sizeof (config));
106 vnet_feature_enable_disable ("ip6-unicast", "ipsec6-input-feature",
107 sw_if_index, is_add, &config, sizeof (config));
108
109 return 0;
110}
111
112/*
113 * fd.io coding-style-patch-verification: ON
114 *
115 * Local Variables:
116 * eval: (c-set-style "gnu")
117 * End:
118 */