blob: ce93f32b429017b49a6391fd14d8c70e3f9dbc1f [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Neale Ranns999c8ee2019-02-01 03:31:24 -08002 * ipsec.c : IPSEC module functions
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 *
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>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000025#include <vnet/ipsec/esp.h>
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080026#include <vnet/ipsec/ah.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000027
Dave Wallace71612d62017-10-24 01:32:41 -040028ipsec_main_t ipsec_main;
Kingwel Xie561d1ca2019-03-05 22:56:17 -050029ipsec_proto_main_t ipsec_proto_main;
Dave Wallace71612d62017-10-24 01:32:41 -040030
Ed Warnickecb9cada2015-12-08 15:45:58 -070031static void
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070032ipsec_rand_seed (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -070033{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070034 struct
35 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070036 time_t time;
37 pid_t pid;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070038 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 } seed_data;
40
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070041 seed_data.time = time (NULL);
42 seed_data.pid = getpid ();
43 seed_data.p = (void *) &seed_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070045 RAND_seed ((const void *) &seed_data, sizeof (seed_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070046}
47
48static clib_error_t *
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010049ipsec_check_ah_support (ipsec_sa_t * sa)
50{
51 if (sa->integ_alg == IPSEC_INTEG_ALG_NONE)
52 return clib_error_return (0, "unsupported none integ-alg");
53 return 0;
54}
55
56static clib_error_t *
57ipsec_check_esp_support (ipsec_sa_t * sa)
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000058{
59 if (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128)
60 return clib_error_return (0, "unsupported aes-gcm-128 crypto-alg");
Klement Sekera4fd5a9d2019-01-30 11:11:23 +010061 if (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_192)
62 return clib_error_return (0, "unsupported aes-gcm-192 crypto-alg");
63 if (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_256)
64 return clib_error_return (0, "unsupported aes-gcm-256 crypto-alg");
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000065
66 return 0;
67}
68
Klement Sekerab4d30532018-11-08 13:00:02 +010069clib_error_t *
70ipsec_add_del_sa_sess_cb (ipsec_main_t * im, u32 sa_index, u8 is_add)
71{
72 ipsec_ah_backend_t *ah =
73 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
74 if (ah->add_del_sa_sess_cb)
75 {
76 clib_error_t *err = ah->add_del_sa_sess_cb (sa_index, is_add);
77 if (err)
78 return err;
79 }
80 ipsec_esp_backend_t *esp =
81 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
82 if (esp->add_del_sa_sess_cb)
83 {
84 clib_error_t *err = esp->add_del_sa_sess_cb (sa_index, is_add);
85 if (err)
86 return err;
87 }
88 return 0;
89}
90
91clib_error_t *
92ipsec_check_support_cb (ipsec_main_t * im, ipsec_sa_t * sa)
93{
94 clib_error_t *error = 0;
Matthew Smith461caa52018-12-21 11:53:16 -060095
96 if (PREDICT_FALSE (sa->protocol == IPSEC_PROTOCOL_AH))
97 {
98 ipsec_ah_backend_t *ah =
99 pool_elt_at_index (im->ah_backends, im->ah_current_backend);
100 ASSERT (ah->check_support_cb);
101 error = ah->check_support_cb (sa);
102 }
103 else
104 {
105 ipsec_esp_backend_t *esp =
106 pool_elt_at_index (im->esp_backends, im->esp_current_backend);
107 ASSERT (esp->check_support_cb);
108 error = esp->check_support_cb (sa);
109 }
Klement Sekerab4d30532018-11-08 13:00:02 +0100110 return error;
111}
112
113
114static void
115ipsec_add_node (vlib_main_t * vm, const char *node_name,
116 const char *prev_node_name, u32 * out_node_index,
117 u32 * out_next_index)
118{
119 vlib_node_t *prev_node, *node;
120 prev_node = vlib_get_node_by_name (vm, (u8 *) prev_node_name);
121 ASSERT (prev_node);
122 node = vlib_get_node_by_name (vm, (u8 *) node_name);
123 ASSERT (node);
124 *out_node_index = node->index;
125 *out_next_index = vlib_node_add_next (vm, prev_node->index, node->index);
126}
127
128u32
129ipsec_register_ah_backend (vlib_main_t * vm, ipsec_main_t * im,
130 const char *name,
131 const char *ah4_encrypt_node_name,
132 const char *ah4_decrypt_node_name,
133 const char *ah6_encrypt_node_name,
134 const char *ah6_decrypt_node_name,
135 check_support_cb_t ah_check_support_cb,
136 add_del_sa_sess_cb_t ah_add_del_sa_sess_cb)
137{
138 ipsec_ah_backend_t *b;
139 pool_get (im->ah_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500140 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100141
Pierre Pfister057b3562018-12-10 17:01:01 +0100142 ipsec_add_node (vm, ah4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100143 &b->ah4_encrypt_node_index, &b->ah4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100144 ipsec_add_node (vm, ah4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100145 &b->ah4_decrypt_node_index, &b->ah4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100146 ipsec_add_node (vm, ah6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100147 &b->ah6_encrypt_node_index, &b->ah6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100148 ipsec_add_node (vm, ah6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100149 &b->ah6_decrypt_node_index, &b->ah6_decrypt_next_index);
150
151 b->check_support_cb = ah_check_support_cb;
152 b->add_del_sa_sess_cb = ah_add_del_sa_sess_cb;
153 return b - im->ah_backends;
154}
155
156u32
157ipsec_register_esp_backend (vlib_main_t * vm, ipsec_main_t * im,
158 const char *name,
159 const char *esp4_encrypt_node_name,
160 const char *esp4_decrypt_node_name,
161 const char *esp6_encrypt_node_name,
162 const char *esp6_decrypt_node_name,
163 check_support_cb_t esp_check_support_cb,
164 add_del_sa_sess_cb_t esp_add_del_sa_sess_cb)
165{
166 ipsec_esp_backend_t *b;
167 pool_get (im->esp_backends, b);
Kingwel Xie561d1ca2019-03-05 22:56:17 -0500168 b->name = format (0, "%s%c", name, 0);
Klement Sekerab4d30532018-11-08 13:00:02 +0100169
Pierre Pfister057b3562018-12-10 17:01:01 +0100170 ipsec_add_node (vm, esp4_encrypt_node_name, "ipsec4-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100171 &b->esp4_encrypt_node_index, &b->esp4_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100172 ipsec_add_node (vm, esp4_decrypt_node_name, "ipsec4-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100173 &b->esp4_decrypt_node_index, &b->esp4_decrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100174 ipsec_add_node (vm, esp6_encrypt_node_name, "ipsec6-output-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100175 &b->esp6_encrypt_node_index, &b->esp6_encrypt_next_index);
Pierre Pfister057b3562018-12-10 17:01:01 +0100176 ipsec_add_node (vm, esp6_decrypt_node_name, "ipsec6-input-feature",
Klement Sekerab4d30532018-11-08 13:00:02 +0100177 &b->esp6_decrypt_node_index, &b->esp6_decrypt_next_index);
178
179 b->check_support_cb = esp_check_support_cb;
180 b->add_del_sa_sess_cb = esp_add_del_sa_sess_cb;
181 return b - im->esp_backends;
182}
183
Neale Rannsb4cfd552019-02-13 02:08:06 -0800184static walk_rc_t
185ipsec_sa_restack (ipsec_sa_t * sa, void *ctx)
186{
187 ipsec_sa_stack (sa);
188
189 return (WALK_CONTINUE);
190}
191
Klement Sekerab4d30532018-11-08 13:00:02 +0100192int
193ipsec_select_ah_backend (ipsec_main_t * im, u32 backend_idx)
194{
195 if (pool_elts (im->sad) > 0
196 || pool_is_free_index (im->ah_backends, backend_idx))
197 {
198 return -1;
199 }
200 ipsec_ah_backend_t *b = pool_elt_at_index (im->ah_backends, backend_idx);
201 im->ah_current_backend = backend_idx;
202 im->ah4_encrypt_node_index = b->ah4_encrypt_node_index;
203 im->ah4_decrypt_node_index = b->ah4_decrypt_node_index;
204 im->ah4_encrypt_next_index = b->ah4_encrypt_next_index;
205 im->ah4_decrypt_next_index = b->ah4_decrypt_next_index;
206 im->ah6_encrypt_node_index = b->ah6_encrypt_node_index;
207 im->ah6_decrypt_node_index = b->ah6_decrypt_node_index;
208 im->ah6_encrypt_next_index = b->ah6_encrypt_next_index;
209 im->ah6_decrypt_next_index = b->ah6_decrypt_next_index;
Neale Rannsb4cfd552019-02-13 02:08:06 -0800210
211 ipsec_sa_walk (ipsec_sa_restack, NULL);
Klement Sekerab4d30532018-11-08 13:00:02 +0100212 return 0;
213}
214
215int
216ipsec_select_esp_backend (ipsec_main_t * im, u32 backend_idx)
217{
218 if (pool_elts (im->sad) > 0
219 || pool_is_free_index (im->esp_backends, backend_idx))
220 {
221 return -1;
222 }
223 ipsec_esp_backend_t *b = pool_elt_at_index (im->esp_backends, backend_idx);
224 im->esp_current_backend = backend_idx;
225 im->esp4_encrypt_node_index = b->esp4_encrypt_node_index;
226 im->esp4_decrypt_node_index = b->esp4_decrypt_node_index;
227 im->esp4_encrypt_next_index = b->esp4_encrypt_next_index;
228 im->esp4_decrypt_next_index = b->esp4_decrypt_next_index;
229 im->esp6_encrypt_node_index = b->esp6_encrypt_node_index;
230 im->esp6_decrypt_node_index = b->esp6_decrypt_node_index;
231 im->esp6_encrypt_next_index = b->esp6_encrypt_next_index;
232 im->esp6_decrypt_next_index = b->esp6_decrypt_next_index;
Neale Rannsb4cfd552019-02-13 02:08:06 -0800233
234 ipsec_sa_walk (ipsec_sa_restack, NULL);
Klement Sekerab4d30532018-11-08 13:00:02 +0100235 return 0;
236}
237
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000238static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239ipsec_init (vlib_main_t * vm)
240{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700241 clib_error_t *error;
242 ipsec_main_t *im = &ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700244 ipsec_rand_seed ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Dave Barachb7b92992018-10-17 10:38:51 -0400246 clib_memset (im, 0, sizeof (im[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700248 im->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 im->vlib_main = vm;
250
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700251 im->spd_index_by_spd_id = hash_create (0, sizeof (uword));
252 im->sa_index_by_sa_id = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 im->spd_index_by_sw_if_index = hash_create (0, sizeof (uword));
254
Klement Sekerab4d30532018-11-08 13:00:02 +0100255 vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700256 ASSERT (node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 im->error_drop_node_index = node->index;
258
Klement Sekerab4d30532018-11-08 13:00:02 +0100259 u32 idx = ipsec_register_ah_backend (vm, im, "default openssl backend",
260 "ah4-encrypt",
261 "ah4-decrypt",
262 "ah6-encrypt",
263 "ah6-decrypt",
Klement Sekera4fd5a9d2019-01-30 11:11:23 +0100264 ipsec_check_ah_support,
Klement Sekerab4d30532018-11-08 13:00:02 +0100265 NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
Klement Sekerab4d30532018-11-08 13:00:02 +0100267 im->ah_default_backend = idx;
268 int rv = ipsec_select_ah_backend (im, idx);
269 ASSERT (0 == rv);
270 (void) (rv); // avoid warning
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000271
Klement Sekerab4d30532018-11-08 13:00:02 +0100272 idx = ipsec_register_esp_backend (vm, im, "default openssl backend",
273 "esp4-encrypt",
274 "esp4-decrypt",
275 "esp6-encrypt",
276 "esp6-decrypt",
Klement Sekera4fd5a9d2019-01-30 11:11:23 +0100277 ipsec_check_esp_support, NULL);
Klement Sekerab4d30532018-11-08 13:00:02 +0100278 im->esp_default_backend = idx;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800279
Klement Sekerab4d30532018-11-08 13:00:02 +0100280 rv = ipsec_select_esp_backend (im, idx);
281 ASSERT (0 == rv);
282 (void) (rv); // avoid warning
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 if ((error = vlib_call_init_function (vm, ipsec_cli_init)))
285 return error;
286
287 if ((error = vlib_call_init_function (vm, ipsec_tunnel_if_init)))
288 return error;
289
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800290 ipsec_proto_init ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 return 0;
293}
294
295VLIB_INIT_FUNCTION (ipsec_init);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700296
297/*
298 * fd.io coding-style-patch-verification: ON
299 *
300 * Local Variables:
301 * eval: (c-set-style "gnu")
302 * End:
303 */