blob: 9116df5d7e347418c7baf047f87f61e9737899aa [file] [log] [blame]
Neale Rannsc87b66c2019-02-07 07:26:12 -08001/*
2 * ipsec_tun.h : IPSEC tunnel protection
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/ipsec/ipsec_tun.h>
Neale Rannsdd4ccf22020-06-30 07:47:14 +000019#include <vnet/ipsec/ipsec_itf.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080020#include <vnet/ipsec/esp.h>
Florin Corasb040f982020-10-20 14:59:43 -070021#include <vnet/udp/udp_local.h>
Neale Ranns28287212019-12-16 00:53:11 +000022#include <vnet/adj/adj_delegate.h>
Neale Ranns4ec36c52020-03-31 09:21:29 -040023#include <vnet/adj/adj_midchain.h>
Neale Ranns28287212019-12-16 00:53:11 +000024#include <vnet/teib/teib.h>
25
Neale Ranns302b25a2020-10-19 13:23:33 +000026/* instantiate the bihash functions */
27#include <vppinfra/bihash_8_16.h>
28#include <vppinfra/bihash_template.c>
29#include <vppinfra/bihash_24_16.h>
30#include <vppinfra/bihash_template.c>
31
Neale Ranns7b4e52f2020-05-24 16:17:50 +000032#define IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
33#define IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE 512 << 20
34
Neale Ranns28287212019-12-16 00:53:11 +000035/**
36 * The logger
37 */
38vlib_log_class_t ipsec_tun_protect_logger;
Neale Rannsc87b66c2019-02-07 07:26:12 -080039
40/**
41 * Pool of tunnel protection objects
42 */
Neale Ranns28287212019-12-16 00:53:11 +000043ipsec_tun_protect_t *ipsec_tun_protect_pool;
Neale Rannsc87b66c2019-02-07 07:26:12 -080044
45/**
Neale Ranns28287212019-12-16 00:53:11 +000046 * Adj delegate registered type
Neale Rannsc87b66c2019-02-07 07:26:12 -080047 */
Neale Ranns28287212019-12-16 00:53:11 +000048static adj_delegate_type_t ipsec_tun_adj_delegate_type;
Neale Rannsc87b66c2019-02-07 07:26:12 -080049
Neale Ranns28287212019-12-16 00:53:11 +000050/**
51 * Adj index to TX SA mapping
52 */
53index_t *ipsec_tun_protect_sa_by_adj_index;
54
55const ip_address_t IP_ADDR_ALL_0 = IP_ADDRESS_V4_ALL_0S;
56
57/**
58 * The DB of all added per-nh tunnel protectiond
59 */
60typedef struct ipsec_tun_protect_itf_db_t_
61{
62 /** A hash table key'd on IP (4 or 6) address */
63 uword *id_hash;
64 /** If the interface is P2P then there is only one protect
65 * object associated with the auto-adj for each NH proto */
66 index_t id_itp;
67} ipsec_tun_protect_itf_db_t;
68
69typedef struct ipsec_tun_protect_db_t_
70{
71 /** Per-interface vector */
72 ipsec_tun_protect_itf_db_t *id_itf;
73} ipsec_tun_protect_db_t;
74
75static ipsec_tun_protect_db_t itp_db;
76
77const static ipsec_tun_protect_itf_db_t IPSEC_TUN_PROTECT_DEFAULT_DB_ENTRY = {
78 .id_itp = INDEX_INVALID,
79};
80
81#define ITP_DBG(_itp, _fmt, _args...) \
82{ \
83 vlib_log_debug(ipsec_tun_protect_logger, \
84 "[%U]: " _fmt, \
85 format_ipsec_tun_protect, \
86 _itp, ##_args); \
87}
88
89#define ITP_DBG2(_fmt, _args...) \
90{ \
91 vlib_log_debug(ipsec_tun_protect_logger, \
92 _fmt, ##_args); \
93}
94
Neale Ranns8d6d74c2020-02-20 09:45:16 +000095static u32 ipsec_tun_node_regs[N_AF];
96
97void
98ipsec_tun_register_nodes (ip_address_family_t af)
99{
100 if (0 == ipsec_tun_node_regs[af]++)
101 {
102 if (AF_IP4 == af)
103 {
Neale Rannsabc56602020-04-01 09:45:23 +0000104 ipsec_register_udp_port (UDP_DST_PORT_ipsec);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000105 ip4_register_protocol (IP_PROTOCOL_IPSEC_ESP,
106 ipsec4_tun_input_node.index);
107 }
108 else
109 ip6_register_protocol (IP_PROTOCOL_IPSEC_ESP,
110 ipsec6_tun_input_node.index);
111 }
112}
113
114void
115ipsec_tun_unregister_nodes (ip_address_family_t af)
116{
117 ASSERT (0 != ipsec_tun_node_regs[af]);
118 if (0 == --ipsec_tun_node_regs[af])
119 {
120 if (AF_IP4 == af)
121 {
Neale Rannsabc56602020-04-01 09:45:23 +0000122 ipsec_unregister_udp_port (UDP_DST_PORT_ipsec);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000123 ip4_unregister_protocol (IP_PROTOCOL_IPSEC_ESP);
124 }
125 else
126 ip6_unregister_protocol (IP_PROTOCOL_IPSEC_ESP);
127 }
128}
129
Neale Ranns28287212019-12-16 00:53:11 +0000130static inline const ipsec_tun_protect_t *
131ipsec_tun_protect_from_const_base (const adj_delegate_t * ad)
132{
133 if (ad == NULL)
134 return (NULL);
135 return (pool_elt_at_index (ipsec_tun_protect_pool, ad->ad_index));
136}
Neale Rannsc87b66c2019-02-07 07:26:12 -0800137
Neale Ranns4ec36c52020-03-31 09:21:29 -0400138static u32
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000139ipsec_tun_protect_get_adj_next (vnet_link_t linkt,
140 const ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800141{
Neale Ranns4ec36c52020-03-31 09:21:29 -0400142 ipsec_main_t *im;
143 ipsec_sa_t *sa;
144 bool is_ip4;
145 u32 next;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800146
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000147
148 if (itp->itp_flags & IPSEC_PROTECT_ITF)
149 is_ip4 = linkt == VNET_LINK_IP4;
150 else
151 is_ip4 = ip46_address_is_ip4 (&itp->itp_tun.src);
152
Neale Ranns4ec36c52020-03-31 09:21:29 -0400153 sa = ipsec_sa_get (itp->itp_out_sa);
154 im = &ipsec_main;
155
Neale Ranns970187b2020-10-07 13:58:56 +0000156 if ((sa->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
157 sa->integ_alg == IPSEC_INTEG_ALG_NONE) &&
158 !(itp->itp_flags & IPSEC_PROTECT_ITF))
Neale Ranns4ec36c52020-03-31 09:21:29 -0400159 next = (is_ip4 ?
160 im->esp4_no_crypto_tun_node_index :
161 im->esp6_no_crypto_tun_node_index);
162 else if (itp->itp_flags & IPSEC_PROTECT_L2)
163 next = (is_ip4 ?
164 im->esp4_encrypt_l2_tun_node_index :
165 im->esp6_encrypt_l2_tun_node_index);
166 else
167 next = (is_ip4 ?
168 im->esp4_encrypt_tun_node_index :
169 im->esp6_encrypt_tun_node_index);
170
171 return (next);
172}
173
174static void
175ipsec_tun_protect_add_adj (adj_index_t ai, const ipsec_tun_protect_t * itp)
176{
177 vec_validate_init_empty (ipsec_tun_protect_sa_by_adj_index, ai,
178 INDEX_INVALID);
179
180 if (NULL == itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800181 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400182 ipsec_tun_protect_sa_by_adj_index[ai] = INDEX_INVALID;
183 adj_nbr_midchain_reset_next_node (ai);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800184 }
185 else
186 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400187 ipsec_tun_protect_sa_by_adj_index[ai] = itp->itp_out_sa;
188 adj_nbr_midchain_update_next_node
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000189 (ai, ipsec_tun_protect_get_adj_next (adj_get_link_type (ai), itp));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800190 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800191}
192
Neale Ranns28287212019-12-16 00:53:11 +0000193static index_t
194ipsec_tun_protect_find (u32 sw_if_index, const ip_address_t * nh)
195{
196 ipsec_tun_protect_itf_db_t *idi;
197 uword *p;
198
199 if (vec_len (itp_db.id_itf) <= sw_if_index)
200 return INDEX_INVALID;
201
202 if (vnet_sw_interface_is_p2p (vnet_get_main (), sw_if_index))
203 return (itp_db.id_itf[sw_if_index].id_itp);
204
205 idi = &itp_db.id_itf[sw_if_index];
206 p = hash_get_mem (idi->id_hash, nh);
207
208 if (NULL == p)
209 {
210 return INDEX_INVALID;
211 }
212 return (p[0]);
213}
214
Neale Rannsc87b66c2019-02-07 07:26:12 -0800215static void
Neale Ranns28287212019-12-16 00:53:11 +0000216ipsec_tun_protect_rx_db_add (ipsec_main_t * im,
217 const ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800218{
219 const ipsec_sa_t *sa;
220 u32 sai;
221
Neale Ranns28287212019-12-16 00:53:11 +0000222 if (ip46_address_is_zero (&itp->itp_crypto.dst))
223 return;
224
Neale Rannsc87b66c2019-02-07 07:26:12 -0800225 /* *INDENT-OFF* */
226 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
227 ({
228 sa = ipsec_sa_get (sai);
229
230 ipsec_tun_lkup_result_t res = {
Neale Ranns28287212019-12-16 00:53:11 +0000231 .tun_index = itp - ipsec_tun_protect_pool,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800232 .sa_index = sai,
Neale Ranns302b25a2020-10-19 13:23:33 +0000233 .flags = itp->itp_flags,
234 .sw_if_index = itp->itp_sw_if_index,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800235 };
236
237 /*
238 * The key is formed from the tunnel's destination
239 * as the packet lookup is done from the packet's source
240 */
241 if (ip46_address_is_ip4 (&itp->itp_crypto.dst))
242 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000243 ipsec4_tunnel_kv_t key = {
244 .value = res,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800245 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000246 clib_bihash_kv_8_16_t *bkey = (clib_bihash_kv_8_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000247
248 ipsec4_tunnel_mk_key(&key, &itp->itp_crypto.dst.ip4,
249 clib_host_to_net_u32 (sa->spi));
250
251 if (!im->tun4_protect_by_key.nbuckets)
Neale Ranns302b25a2020-10-19 13:23:33 +0000252 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000253 "IPSec IPv4 tunnels",
254 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
255 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
256
Neale Ranns302b25a2020-10-19 13:23:33 +0000257 clib_bihash_add_del_8_16 (&im->tun4_protect_by_key, bkey, 1);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000258 ipsec_tun_register_nodes(AF_IP4);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800259 }
260 else
261 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000262 ipsec6_tunnel_kv_t key = {
263 .key = {
264 .remote_ip = itp->itp_crypto.dst.ip6,
265 .spi = clib_host_to_net_u32 (sa->spi),
266 },
267 .value = res,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800268 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000269 clib_bihash_kv_24_16_t *bkey = (clib_bihash_kv_24_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000270
271 if (!im->tun4_protect_by_key.nbuckets)
Neale Ranns302b25a2020-10-19 13:23:33 +0000272 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000273 "IPSec IPv6 tunnels",
274 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
275 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
Neale Ranns302b25a2020-10-19 13:23:33 +0000276 clib_bihash_add_del_24_16 (&im->tun6_protect_by_key, bkey, 1);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000277 ipsec_tun_register_nodes(AF_IP6);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800278 }
279 }))
280 /* *INDENT-ON* */
281}
282
Neale Ranns28287212019-12-16 00:53:11 +0000283static adj_walk_rc_t
284ipsec_tun_protect_adj_add (adj_index_t ai, void *arg)
285{
286 ipsec_tun_protect_t *itp = arg;
287 adj_delegate_add (adj_get (ai), ipsec_tun_adj_delegate_type,
288 itp - ipsec_tun_protect_pool);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400289 ipsec_tun_protect_add_adj (ai, itp);
Neale Ranns28287212019-12-16 00:53:11 +0000290
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000291 if (itp->itp_flags & IPSEC_PROTECT_ITF)
292 ipsec_itf_adj_stack (ai, itp->itp_out_sa);
293
Neale Ranns28287212019-12-16 00:53:11 +0000294 return (ADJ_WALK_RC_CONTINUE);
295}
296
Neale Rannsc87b66c2019-02-07 07:26:12 -0800297static void
Neale Ranns28287212019-12-16 00:53:11 +0000298ipsec_tun_protect_tx_db_add (ipsec_tun_protect_t * itp)
299{
300 /*
301 * add the delegate to the adj
302 */
303 ipsec_tun_protect_itf_db_t *idi;
304 fib_protocol_t nh_proto;
305 ip46_address_t nh;
306
307 vec_validate_init_empty (itp_db.id_itf,
308 itp->itp_sw_if_index,
309 IPSEC_TUN_PROTECT_DEFAULT_DB_ENTRY);
310
311 idi = &itp_db.id_itf[itp->itp_sw_if_index];
312
313 if (vnet_sw_interface_is_p2p (vnet_get_main (), itp->itp_sw_if_index))
314 {
315 if (INDEX_INVALID == idi->id_itp)
316 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400317 // ipsec_tun_protect_feature_set (itp, 1);
Neale Ranns28287212019-12-16 00:53:11 +0000318 }
319 idi->id_itp = itp - ipsec_tun_protect_pool;
320
321 FOR_EACH_FIB_IP_PROTOCOL (nh_proto)
322 adj_nbr_walk (itp->itp_sw_if_index,
323 nh_proto, ipsec_tun_protect_adj_add, itp);
324 }
325 else
326 {
327 if (NULL == idi->id_hash)
328 {
329 idi->id_hash =
330 hash_create_mem (0, sizeof (ip_address_t), sizeof (uword));
331 /*
332 * enable the encrypt feature for egress if this is the first addition
333 * on this interface
334 */
Neale Ranns4ec36c52020-03-31 09:21:29 -0400335 // ipsec_tun_protect_feature_set (itp, 1);
Neale Ranns28287212019-12-16 00:53:11 +0000336 }
337
338 hash_set_mem (idi->id_hash, itp->itp_key, itp - ipsec_tun_protect_pool);
339
340 /*
341 * walk all the adjs with the same nh on this interface
342 * to associate them with this protection
343 */
344 nh_proto = ip_address_to_46 (itp->itp_key, &nh);
345
346 adj_nbr_walk_nh (itp->itp_sw_if_index,
347 nh_proto, &nh, ipsec_tun_protect_adj_add, itp);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000348
349 ipsec_tun_register_nodes (FIB_PROTOCOL_IP6 == nh_proto ?
350 AF_IP6 : AF_IP4);
Neale Ranns28287212019-12-16 00:53:11 +0000351 }
352}
353
354static void
355ipsec_tun_protect_rx_db_remove (ipsec_main_t * im,
356 const ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800357{
358 const ipsec_sa_t *sa;
359
360 /* *INDENT-OFF* */
361 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
362 ({
Neale Ranns4ec36c52020-03-31 09:21:29 -0400363 if (ip46_address_is_ip4 (&itp->itp_crypto.dst))
364 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000365 ipsec4_tunnel_kv_t key;
Neale Ranns302b25a2020-10-19 13:23:33 +0000366 clib_bihash_kv_8_16_t res, *bkey = (clib_bihash_kv_8_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000367
368 ipsec4_tunnel_mk_key(&key, &itp->itp_crypto.dst.ip4,
369 clib_host_to_net_u32 (sa->spi));
370
Neale Ranns302b25a2020-10-19 13:23:33 +0000371 if (!clib_bihash_search_8_16 (&im->tun4_protect_by_key, bkey, &res))
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000372 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000373 clib_bihash_add_del_8_16 (&im->tun4_protect_by_key, bkey, 0);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000374 ipsec_tun_unregister_nodes(AF_IP4);
375 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400376 }
377 else
378 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000379 ipsec6_tunnel_kv_t key = {
380 .key = {
381 .remote_ip = itp->itp_crypto.dst.ip6,
382 .spi = clib_host_to_net_u32 (sa->spi),
383 },
Neale Ranns4ec36c52020-03-31 09:21:29 -0400384 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000385 clib_bihash_kv_24_16_t res, *bkey = (clib_bihash_kv_24_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000386
Neale Ranns302b25a2020-10-19 13:23:33 +0000387 if (!clib_bihash_search_24_16 (&im->tun6_protect_by_key, bkey, &res))
Neale Ranns4ec36c52020-03-31 09:21:29 -0400388 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000389 clib_bihash_add_del_24_16 (&im->tun6_protect_by_key, bkey, 0);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400390 ipsec_tun_unregister_nodes(AF_IP6);
391 }
392 }
393 }));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800394 /* *INDENT-ON* */
395}
396
Neale Ranns28287212019-12-16 00:53:11 +0000397static adj_walk_rc_t
398ipsec_tun_protect_adj_remove (adj_index_t ai, void *arg)
399{
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000400 ipsec_tun_protect_t *itp = arg;
401
Neale Ranns28287212019-12-16 00:53:11 +0000402 adj_delegate_remove (ai, ipsec_tun_adj_delegate_type);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400403 ipsec_tun_protect_add_adj (ai, NULL);
Neale Ranns28287212019-12-16 00:53:11 +0000404
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000405 if (itp->itp_flags & IPSEC_PROTECT_ITF)
406 ipsec_itf_adj_unstack (ai);
407
Neale Ranns28287212019-12-16 00:53:11 +0000408 return (ADJ_WALK_RC_CONTINUE);
409}
410
Neale Rannsc87b66c2019-02-07 07:26:12 -0800411static void
Neale Ranns28287212019-12-16 00:53:11 +0000412ipsec_tun_protect_tx_db_remove (ipsec_tun_protect_t * itp)
413{
414 ipsec_tun_protect_itf_db_t *idi;
415 fib_protocol_t nh_proto;
416 ip46_address_t nh;
417
418 nh_proto = ip_address_to_46 (itp->itp_key, &nh);
419 idi = &itp_db.id_itf[itp->itp_sw_if_index];
420
421 if (vnet_sw_interface_is_p2p (vnet_get_main (), itp->itp_sw_if_index))
422 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400423 // ipsec_tun_protect_feature_set (itp, 0);
Neale Ranns28287212019-12-16 00:53:11 +0000424 idi->id_itp = INDEX_INVALID;
425
426 FOR_EACH_FIB_IP_PROTOCOL (nh_proto)
427 adj_nbr_walk (itp->itp_sw_if_index,
428 nh_proto, ipsec_tun_protect_adj_remove, itp);
429 }
430 else
431 {
432 adj_nbr_walk_nh (itp->itp_sw_if_index,
433 nh_proto, &nh, ipsec_tun_protect_adj_remove, itp);
434
435 hash_unset_mem (idi->id_hash, itp->itp_key);
436
437 if (0 == hash_elts (idi->id_hash))
438 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400439 // ipsec_tun_protect_feature_set (itp, 0);
Neale Ranns28287212019-12-16 00:53:11 +0000440 hash_free (idi->id_hash);
441 idi->id_hash = NULL;
442 }
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000443 ipsec_tun_unregister_nodes (FIB_PROTOCOL_IP6 == nh_proto ?
444 AF_IP6 : AF_IP4);
Neale Ranns28287212019-12-16 00:53:11 +0000445 }
446}
447
448static void
449ipsec_tun_protect_set_crypto_addr (ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800450{
451 ipsec_sa_t *sa;
Neale Ranns12989b52019-09-26 16:20:19 +0000452
Neale Rannsc87b66c2019-02-07 07:26:12 -0800453 /* *INDENT-OFF* */
454 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
455 ({
456 if (ipsec_sa_is_set_IS_TUNNEL (sa))
457 {
458 itp->itp_crypto.src = sa->tunnel_dst_addr;
459 itp->itp_crypto.dst = sa->tunnel_src_addr;
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000460 if (!(itp->itp_flags & IPSEC_PROTECT_ITF))
461 {
462 ipsec_sa_set_IS_PROTECT (sa);
463 itp->itp_flags |= IPSEC_PROTECT_ENCAPED;
464 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800465 }
466 else
467 {
468 itp->itp_crypto.src = itp->itp_tun.src;
469 itp->itp_crypto.dst = itp->itp_tun.dst;
470 itp->itp_flags &= ~IPSEC_PROTECT_ENCAPED;
471 }
472 }));
473 /* *INDENT-ON* */
Neale Ranns28287212019-12-16 00:53:11 +0000474}
475
476static void
477ipsec_tun_protect_config (ipsec_main_t * im,
478 ipsec_tun_protect_t * itp, u32 sa_out, u32 * sas_in)
479{
480 index_t sai;
481 u32 ii;
482
483 itp->itp_n_sa_in = vec_len (sas_in);
484 for (ii = 0; ii < itp->itp_n_sa_in; ii++)
485 itp->itp_in_sas[ii] = sas_in[ii];
486 itp->itp_out_sa = sa_out;
487
488 ipsec_sa_lock (itp->itp_out_sa);
489
490 /* *INDENT-OFF* */
491 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
492 ({
493 ipsec_sa_lock(sai);
494 }));
495 ipsec_tun_protect_set_crypto_addr(itp);
496 /* *INDENT-ON* */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800497
498 /*
499 * add to the DB against each SA
500 */
Neale Ranns28287212019-12-16 00:53:11 +0000501 ipsec_tun_protect_rx_db_add (im, itp);
502 ipsec_tun_protect_tx_db_add (itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800503
Neale Ranns28287212019-12-16 00:53:11 +0000504 ITP_DBG (itp, "configured");
Neale Rannsc87b66c2019-02-07 07:26:12 -0800505}
506
507static void
508ipsec_tun_protect_unconfig (ipsec_main_t * im, ipsec_tun_protect_t * itp)
509{
510 ipsec_sa_t *sa;
Neale Ranns495d7ff2019-07-12 09:15:26 +0000511 index_t sai;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800512
Neale Rannsc87b66c2019-02-07 07:26:12 -0800513 /* *INDENT-OFF* */
514 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
515 ({
516 ipsec_sa_unset_IS_PROTECT (sa);
517 }));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800518
Neale Ranns28287212019-12-16 00:53:11 +0000519 ipsec_tun_protect_rx_db_remove (im, itp);
520 ipsec_tun_protect_tx_db_remove (itp);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000521
522 ipsec_sa_unlock(itp->itp_out_sa);
523
524 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
525 ({
526 ipsec_sa_unlock(sai);
527 }));
528 /* *INDENT-ON* */
Neale Ranns28287212019-12-16 00:53:11 +0000529 ITP_DBG (itp, "unconfigured");
Neale Rannsc87b66c2019-02-07 07:26:12 -0800530}
531
532int
Neale Ranns28287212019-12-16 00:53:11 +0000533ipsec_tun_protect_update_one (u32 sw_if_index,
534 const ip_address_t * nh, u32 sa_out, u32 sa_in)
Neale Ranns12989b52019-09-26 16:20:19 +0000535{
536 u32 *sas_in = NULL;
537 int rv;
538
539 vec_add1 (sas_in, sa_in);
Neale Ranns28287212019-12-16 00:53:11 +0000540 rv = ipsec_tun_protect_update (sw_if_index, nh, sa_out, sas_in);
Neale Ranns12989b52019-09-26 16:20:19 +0000541
542 return (rv);
543}
544
545int
Neale Ranns28287212019-12-16 00:53:11 +0000546ipsec_tun_protect_update_out (u32 sw_if_index,
547 const ip_address_t * nh, u32 sa_out)
Neale Ranns12989b52019-09-26 16:20:19 +0000548{
549 u32 itpi, *sas_in, sai, *saip;
550 ipsec_tun_protect_t *itp;
551 ipsec_main_t *im;
552 int rv;
553
554 sas_in = NULL;
555 rv = 0;
556 im = &ipsec_main;
Neale Ranns28287212019-12-16 00:53:11 +0000557
558 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Ranns12989b52019-09-26 16:20:19 +0000559
560 if (INDEX_INVALID == itpi)
561 {
562 return (VNET_API_ERROR_INVALID_INTERFACE);
563 }
564
Neale Ranns28287212019-12-16 00:53:11 +0000565 itp = pool_elt_at_index (ipsec_tun_protect_pool, itpi);
Neale Ranns12989b52019-09-26 16:20:19 +0000566
Neale Ranns28287212019-12-16 00:53:11 +0000567 /* *INDENT-OFF* */
568 FOR_EACH_IPSEC_PROTECT_INPUT_SAI (itp, sai,
569 ({
570 ipsec_sa_lock (sai);
571 vec_add1 (sas_in, sai);
572 }));
Neale Ranns12989b52019-09-26 16:20:19 +0000573 /* *INDENT-ON* */
574
575 sa_out = ipsec_sa_find_and_lock (sa_out);
576
577 if (~0 == sa_out)
578 {
579 rv = VNET_API_ERROR_INVALID_VALUE;
580 goto out;
581 }
582
583 ipsec_tun_protect_unconfig (im, itp);
584 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
585
586 ipsec_sa_unlock (sa_out);
587 vec_foreach (saip, sas_in) ipsec_sa_unlock (*saip);
588
589out:
590 vec_free (sas_in);
591 return (rv);
592}
593
594int
Neale Ranns28287212019-12-16 00:53:11 +0000595ipsec_tun_protect_update_in (u32 sw_if_index,
596 const ip_address_t * nh, u32 sa_in)
Neale Ranns12989b52019-09-26 16:20:19 +0000597{
598 u32 itpi, *sas_in, sa_out;
599 ipsec_tun_protect_t *itp;
600 ipsec_main_t *im;
601 int rv;
602
603 sas_in = NULL;
604 rv = 0;
605 im = &ipsec_main;
Neale Ranns28287212019-12-16 00:53:11 +0000606 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Ranns12989b52019-09-26 16:20:19 +0000607
608 if (INDEX_INVALID == itpi)
609 {
610 return (VNET_API_ERROR_INVALID_INTERFACE);
611 }
612
613 sa_in = ipsec_sa_find_and_lock (sa_in);
614
615 if (~0 == sa_in)
616 {
617 rv = VNET_API_ERROR_INVALID_VALUE;
618 goto out;
619 }
620 vec_add1 (sas_in, sa_in);
621
Neale Ranns28287212019-12-16 00:53:11 +0000622 itp = pool_elt_at_index (ipsec_tun_protect_pool, itpi);
Neale Ranns12989b52019-09-26 16:20:19 +0000623 sa_out = itp->itp_out_sa;
624
625 ipsec_sa_lock (sa_out);
626
627 ipsec_tun_protect_unconfig (im, itp);
628 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
629
630 ipsec_sa_unlock (sa_out);
631 ipsec_sa_unlock (sa_in);
632out:
633 vec_free (sas_in);
634 return (rv);
635}
636
Neale Ranns28287212019-12-16 00:53:11 +0000637static void
638ipsec_tun_protect_update_from_teib (ipsec_tun_protect_t * itp,
639 const teib_entry_t * ne)
640{
641 if (NULL != ne)
642 {
643 const fib_prefix_t *pfx;
644
645 pfx = teib_entry_get_nh (ne);
646
647 ip46_address_copy (&itp->itp_tun.dst, &pfx->fp_addr);
648 }
649 else
650 ip46_address_reset (&itp->itp_tun.dst);
651}
652
Neale Ranns12989b52019-09-26 16:20:19 +0000653int
Neale Ranns28287212019-12-16 00:53:11 +0000654ipsec_tun_protect_update (u32 sw_if_index,
655 const ip_address_t * nh, u32 sa_out, u32 * sas_in)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800656{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800657 ipsec_tun_protect_t *itp;
Neale Ranns12989b52019-09-26 16:20:19 +0000658 u32 itpi, ii, *saip;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800659 ipsec_main_t *im;
660 int rv;
661
Neale Ranns28287212019-12-16 00:53:11 +0000662 ITP_DBG2 ("update: %U/%U",
663 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
664 format_ip_address, nh);
665
Matthew Smithdc3e9662020-04-10 20:27:33 -0500666 if (vec_len (sas_in) > ITP_MAX_N_SA_IN)
667 {
668 rv = VNET_API_ERROR_LIMIT_EXCEEDED;
669 goto out;
670 }
671
Neale Rannsc87b66c2019-02-07 07:26:12 -0800672 rv = 0;
673 im = &ipsec_main;
Neale Ranns28287212019-12-16 00:53:11 +0000674 if (NULL == nh)
675 nh = &IP_ADDR_ALL_0;
676 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800677
678 vec_foreach_index (ii, sas_in)
679 {
Neale Ranns495d7ff2019-07-12 09:15:26 +0000680 sas_in[ii] = ipsec_sa_find_and_lock (sas_in[ii]);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800681 if (~0 == sas_in[ii])
682 {
683 rv = VNET_API_ERROR_INVALID_VALUE;
684 goto out;
685 }
686 }
687
Neale Ranns495d7ff2019-07-12 09:15:26 +0000688 sa_out = ipsec_sa_find_and_lock (sa_out);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800689
690 if (~0 == sa_out)
691 {
692 rv = VNET_API_ERROR_INVALID_VALUE;
693 goto out;
694 }
695
696 if (INDEX_INVALID == itpi)
697 {
698 vnet_device_class_t *dev_class;
699 vnet_hw_interface_t *hi;
700 vnet_main_t *vnm;
701 u8 is_l2;
702
703 vnm = vnet_get_main ();
704 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
705 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
706
707 if (NULL == dev_class->ip_tun_desc)
708 {
709 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
710 goto out;
711 }
712
Neale Ranns28287212019-12-16 00:53:11 +0000713 pool_get_zero (ipsec_tun_protect_pool, itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800714
715 itp->itp_sw_if_index = sw_if_index;
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000716 itp->itp_ai = ADJ_INDEX_INVALID;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800717
718 itp->itp_n_sa_in = vec_len (sas_in);
719 for (ii = 0; ii < itp->itp_n_sa_in; ii++)
720 itp->itp_in_sas[ii] = sas_in[ii];
721 itp->itp_out_sa = sa_out;
722
Neale Ranns28287212019-12-16 00:53:11 +0000723 itp->itp_key = clib_mem_alloc (sizeof (*itp->itp_key));
724 ip_address_copy (itp->itp_key, nh);
725
Neale Rannsc87b66c2019-02-07 07:26:12 -0800726 rv = dev_class->ip_tun_desc (sw_if_index,
727 &itp->itp_tun.src,
728 &itp->itp_tun.dst, &is_l2);
729
730 if (rv)
731 goto out;
732
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000733 if (ip46_address_is_zero (&itp->itp_tun.src))
734 {
Neale Ranns6ba4e412020-10-19 09:59:41 +0000735 /*
736 * must be one of those pesky ipsec interfaces that has no encap.
737 * the encap then MUST come from the tunnel mode SA.
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000738 */
739 ipsec_sa_t *sa;
740
741 sa = ipsec_sa_get (itp->itp_out_sa);
742
743 if (!ipsec_sa_is_set_IS_TUNNEL (sa))
744 {
745 rv = VNET_API_ERROR_INVALID_DST_ADDRESS;
746 goto out;
747 }
748
749 itp->itp_flags |= IPSEC_PROTECT_ITF;
750 }
751 else if (ip46_address_is_zero (&itp->itp_tun.dst))
Neale Ranns28287212019-12-16 00:53:11 +0000752 {
753 /* tunnel has no destination address, presumably because it's p2mp
754 in which case we use the nh that this is protection for */
Neale Ranns28287212019-12-16 00:53:11 +0000755 ipsec_tun_protect_update_from_teib
Neale Rannse6b83052020-09-17 12:56:47 +0000756 (itp, teib_entry_find (sw_if_index, nh));
Neale Ranns28287212019-12-16 00:53:11 +0000757 }
758
Neale Rannsc87b66c2019-02-07 07:26:12 -0800759 if (is_l2)
760 itp->itp_flags |= IPSEC_PROTECT_L2;
761
762 /*
763 * add to the tunnel DB for ingress
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000764 * - if the SA is in trasnport mode, then the packates will arrive
Neale Rannsc87b66c2019-02-07 07:26:12 -0800765 * with the IP src,dst of the protected tunnel, in which case we can
766 * simply strip the IP header and hand the payload to the protocol
767 * appropriate input handler
768 * - if the SA is in tunnel mode then there are two IP headers present
769 * one for the crytpo tunnel endpoints (described in the SA) and one
770 * for the tunnel endpoints. The outer IP headers in the srriving
771 * packets will have the crypto endpoints. So the DB needs to contain
772 * the crpto endpoint. Once the crypto header is stripped, revealing,
773 * the tunnel-IP we have 2 choices:
774 * 1) do a tunnel lookup based on the revealed header
775 * 2) skip the tunnel lookup and assume that the packet matches the
776 * one that is protected here.
777 * If we did 1) then we would allow our peer to use the SA for tunnel
778 * X to inject traffic onto tunnel Y, this is not good. If we do 2)
779 * then we don't verify that the peer is indeed using SA for tunnel
780 * X and addressing tunnel X. So we take a compromise, once the SA
781 * matches to tunnel X we veriy that the inner IP matches the value
782 * of the tunnel we are protecting, else it's dropped.
783 */
784 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800785 }
786 else
787 {
788 /* updating SAs only */
Neale Ranns28287212019-12-16 00:53:11 +0000789 itp = pool_elt_at_index (ipsec_tun_protect_pool, itpi);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800790
791 ipsec_tun_protect_unconfig (im, itp);
792 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
793 }
794
Neale Ranns12989b52019-09-26 16:20:19 +0000795 ipsec_sa_unlock (sa_out);
796 vec_foreach (saip, sas_in) ipsec_sa_unlock (*saip);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800797 vec_free (sas_in);
Neale Ranns12989b52019-09-26 16:20:19 +0000798
Neale Rannsc87b66c2019-02-07 07:26:12 -0800799out:
800 return (rv);
801}
802
803int
Neale Ranns28287212019-12-16 00:53:11 +0000804ipsec_tun_protect_del (u32 sw_if_index, const ip_address_t * nh)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800805{
806 ipsec_tun_protect_t *itp;
807 ipsec_main_t *im;
808 index_t itpi;
809
Neale Ranns28287212019-12-16 00:53:11 +0000810 ITP_DBG2 ("delete: %U/%U",
811 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
812 format_ip_address, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800813
Neale Ranns28287212019-12-16 00:53:11 +0000814 im = &ipsec_main;
815 if (NULL == nh)
816 nh = &IP_ADDR_ALL_0;
817
818 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800819
820 if (INDEX_INVALID == itpi)
821 return (VNET_API_ERROR_NO_SUCH_ENTRY);
822
823 itp = ipsec_tun_protect_get (itpi);
824 ipsec_tun_protect_unconfig (im, itp);
825
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000826 if (ADJ_INDEX_INVALID != itp->itp_ai)
827 adj_unlock (itp->itp_ai);
828
Neale Ranns28287212019-12-16 00:53:11 +0000829 clib_mem_free (itp->itp_key);
830 pool_put (ipsec_tun_protect_pool, itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800831
Neale Rannsc87b66c2019-02-07 07:26:12 -0800832 return (0);
833}
834
835void
836ipsec_tun_protect_walk (ipsec_tun_protect_walk_cb_t fn, void *ctx)
837{
838 index_t itpi;
839
840 /* *INDENT-OFF* */
Neale Ranns28287212019-12-16 00:53:11 +0000841 pool_foreach_index(itpi, ipsec_tun_protect_pool,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800842 ({
843 fn (itpi, ctx);
844 }));
845 /* *INDENT-ON* */
846}
847
Neale Ranns28287212019-12-16 00:53:11 +0000848void
849ipsec_tun_protect_walk_itf (u32 sw_if_index,
850 ipsec_tun_protect_walk_cb_t fn, void *ctx)
851{
852 ipsec_tun_protect_itf_db_t *idi;
853 ip_address_t *key;
854 index_t itpi;
855
856 if (vec_len (itp_db.id_itf) <= sw_if_index)
857 return;
858
859 idi = &itp_db.id_itf[sw_if_index];
860
861 /* *INDENT-OFF* */
862 hash_foreach(key, itpi, idi->id_hash,
863 ({
864 fn (itpi, ctx);
865 }));
866 /* *INDENT-ON* */
867 if (INDEX_INVALID != idi->id_itp)
868 fn (idi->id_itp, ctx);
869}
870
871static void
872ipsec_tun_protect_adj_delegate_adj_deleted (adj_delegate_t * ad)
873{
874 /* remove our delegate */
Neale Ranns4ec36c52020-03-31 09:21:29 -0400875 ipsec_tun_protect_add_adj (ad->ad_adj_index, NULL);
Benoît Ganneea9bc282020-04-16 12:40:04 +0200876 adj_delegate_remove (ad->ad_adj_index, ipsec_tun_adj_delegate_type);
Neale Ranns28287212019-12-16 00:53:11 +0000877}
878
879static void
Neale Ranns4ec36c52020-03-31 09:21:29 -0400880ipsec_tun_protect_adj_delegate_adj_modified (adj_delegate_t * ad)
881{
882 ipsec_tun_protect_add_adj (ad->ad_adj_index,
883 ipsec_tun_protect_get (ad->ad_index));
884}
885
886static void
Neale Ranns28287212019-12-16 00:53:11 +0000887ipsec_tun_protect_adj_delegate_adj_created (adj_index_t ai)
888{
889 /* add our delegate if there is protection for this neighbour */
890 ip_address_t ip = IP_ADDRESS_V4_ALL_0S;
891 ip_adjacency_t *adj;
892 index_t itpi;
893
Neale Ranns4ec36c52020-03-31 09:21:29 -0400894 if (!adj_is_midchain (ai))
Neale Ranns28287212019-12-16 00:53:11 +0000895 return;
896
Neale Ranns4ec36c52020-03-31 09:21:29 -0400897 adj = adj_get (ai);
898
Neale Ranns28287212019-12-16 00:53:11 +0000899 ip_address_from_46 (&adj->sub_type.midchain.next_hop,
900 adj->ia_nh_proto, &ip);
901
902 itpi = ipsec_tun_protect_find (adj->rewrite_header.sw_if_index, &ip);
903
904 if (INDEX_INVALID != itpi)
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000905 ipsec_tun_protect_adj_add (ai, ipsec_tun_protect_get (itpi));
Neale Ranns28287212019-12-16 00:53:11 +0000906}
907
908static u8 *
909ipsec_tun_protect_adj_delegate_format (const adj_delegate_t * aed, u8 * s)
910{
911 const ipsec_tun_protect_t *itp;
912
913 itp = ipsec_tun_protect_from_const_base (aed);
914 s = format (s, "ipsec-tun-protect:\n%U", format_ipsec_tun_protect, itp);
915
916 return (s);
917}
918
919static void
920ipsec_tun_teib_entry_added (const teib_entry_t * ne)
921{
Neale Ranns28287212019-12-16 00:53:11 +0000922 ipsec_tun_protect_t *itp;
Neale Ranns28287212019-12-16 00:53:11 +0000923 index_t itpi;
924
Neale Rannse6b83052020-09-17 12:56:47 +0000925 itpi = ipsec_tun_protect_find (teib_entry_get_sw_if_index (ne),
926 teib_entry_get_peer (ne));
Neale Ranns28287212019-12-16 00:53:11 +0000927
928 if (INDEX_INVALID == itpi)
929 return;
930
931 itp = ipsec_tun_protect_get (itpi);
932 ipsec_tun_protect_rx_db_remove (&ipsec_main, itp);
933 ipsec_tun_protect_update_from_teib (itp, ne);
934 ipsec_tun_protect_set_crypto_addr (itp);
935 ipsec_tun_protect_rx_db_add (&ipsec_main, itp);
936
937 ITP_DBG (itp, "teib-added");
938}
939
940static void
941ipsec_tun_teib_entry_deleted (const teib_entry_t * ne)
942{
Neale Ranns28287212019-12-16 00:53:11 +0000943 ipsec_tun_protect_t *itp;
Neale Ranns28287212019-12-16 00:53:11 +0000944 index_t itpi;
945
Neale Rannse6b83052020-09-17 12:56:47 +0000946 itpi = ipsec_tun_protect_find (teib_entry_get_sw_if_index (ne),
947 teib_entry_get_peer (ne));
Neale Ranns28287212019-12-16 00:53:11 +0000948
949 if (INDEX_INVALID == itpi)
950 return;
951
952 itp = ipsec_tun_protect_get (itpi);
953 ipsec_tun_protect_rx_db_remove (&ipsec_main, itp);
954 ipsec_tun_protect_update_from_teib (itp, NULL);
955 ipsec_tun_protect_set_crypto_addr (itp);
956
957 ITP_DBG (itp, "teib-removed");
958}
959
960/**
961 * VFT registered with the adjacency delegate
962 */
963const static adj_delegate_vft_t ipsec_tun_adj_delegate_vft = {
964 .adv_adj_deleted = ipsec_tun_protect_adj_delegate_adj_deleted,
965 .adv_adj_created = ipsec_tun_protect_adj_delegate_adj_created,
Neale Ranns4ec36c52020-03-31 09:21:29 -0400966 .adv_adj_modified = ipsec_tun_protect_adj_delegate_adj_modified,
Neale Ranns28287212019-12-16 00:53:11 +0000967 .adv_format = ipsec_tun_protect_adj_delegate_format,
968};
969
970const static teib_vft_t ipsec_tun_teib_vft = {
971 .nv_added = ipsec_tun_teib_entry_added,
972 .nv_deleted = ipsec_tun_teib_entry_deleted,
973};
974
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000975void
976ipsec_tun_table_init (ip_address_family_t af, uword table_size, u32 n_buckets)
977{
978 ipsec_main_t *im;
979
980 im = &ipsec_main;
981
982 if (AF_IP4 == af)
Neale Ranns302b25a2020-10-19 13:23:33 +0000983 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
984 "IPSec IPv4 tunnels", n_buckets, table_size);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000985 else
Neale Ranns302b25a2020-10-19 13:23:33 +0000986 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
987 "IPSec IPv6 tunnels", n_buckets, table_size);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000988}
Neale Ranns4ec36c52020-03-31 09:21:29 -0400989
Neale Rannsc87b66c2019-02-07 07:26:12 -0800990clib_error_t *
991ipsec_tunnel_protect_init (vlib_main_t * vm)
992{
993 ipsec_main_t *im;
994
995 im = &ipsec_main;
Neale Ranns302b25a2020-10-19 13:23:33 +0000996 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
997 "IPSec IPv6 tunnels",
998 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
999 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
1000 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
1001 "IPSec IPv4 tunnels",
Neale Ranns7b4e52f2020-05-24 16:17:50 +00001002 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
1003 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
Neale Rannsc87b66c2019-02-07 07:26:12 -08001004
Neale Ranns02950402019-12-20 00:54:57 +00001005 /* set up feature nodes to drop outbound packets with no crypto alg set */
Neale Ranns4ec36c52020-03-31 09:21:29 -04001006 im->esp4_no_crypto_tun_node_index =
1007 vlib_get_node_by_name (vm, (u8 *) "esp4-no-crypto")->index;
1008 im->esp6_no_crypto_tun_node_index =
1009 vlib_get_node_by_name (vm, (u8 *) "esp6-no-crypto")->index;
1010 im->esp6_encrypt_l2_tun_node_index =
1011 vlib_get_node_by_name (vm, (u8 *) "esp6-encrypt-tun")->index;
1012 im->esp4_encrypt_l2_tun_node_index =
1013 vlib_get_node_by_name (vm, (u8 *) "esp4-encrypt-tun")->index;
Neale Ranns02950402019-12-20 00:54:57 +00001014
Neale Ranns28287212019-12-16 00:53:11 +00001015 ipsec_tun_adj_delegate_type =
1016 adj_delegate_register_new_type (&ipsec_tun_adj_delegate_vft);
1017
1018 ipsec_tun_protect_logger = vlib_log_register_class ("ipsec", "tun");
1019
1020 teib_register (&ipsec_tun_teib_vft);
1021
Neale Rannsc87b66c2019-02-07 07:26:12 -08001022 return 0;
1023}
1024
1025VLIB_INIT_FUNCTION (ipsec_tunnel_protect_init);
1026
Neale Ranns7b4e52f2020-05-24 16:17:50 +00001027static clib_error_t *
1028ipsec_config (vlib_main_t * vm, unformat_input_t * input)
1029{
1030 unformat_input_t sub_input;
1031
1032 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1033 {
1034 if (unformat (input, "ip4 %U", unformat_vlib_cli_sub_input, &sub_input))
1035 {
1036 uword table_size = ~0;
1037 u32 n_buckets = ~0;
1038
1039 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
1040 {
1041 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
1042 ;
1043 else
1044 return clib_error_return (0, "unknown input `%U'",
1045 format_unformat_error, &sub_input);
1046 }
1047
1048 ipsec_tun_table_init (AF_IP4, table_size, n_buckets);
1049 }
1050 else if (unformat (input, "ip6 %U", unformat_vlib_cli_sub_input,
1051 &sub_input))
1052 {
1053 uword table_size = ~0;
1054 u32 n_buckets = ~0;
1055
1056 while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
1057 {
1058 if (unformat (&sub_input, "num-buckets %u", &n_buckets))
1059 ;
1060 else
1061 return clib_error_return (0, "unknown input `%U'",
1062 format_unformat_error, &sub_input);
1063 }
1064
1065 ipsec_tun_table_init (AF_IP6, table_size, n_buckets);
1066 }
1067 else
1068 return clib_error_return (0, "unknown input `%U'",
1069 format_unformat_error, input);
1070 }
1071
1072 return 0;
1073}
1074
1075VLIB_CONFIG_FUNCTION (ipsec_config, "ipsec");
Neale Rannsc87b66c2019-02-07 07:26:12 -08001076
1077/*
1078 * fd.io coding-style-patch-verification: ON
1079 *
1080 * Local Variables:
1081 * eval: (c-set-style "gnu")
1082 * End:
1083 */