blob: 58f9efefdc4bc991a69c40b5c88db05f2e2459f2 [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;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400144 u32 next;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800145
Neale Ranns4a58e492020-12-21 13:19:10 +0000146 if (!(itp->itp_flags & IPSEC_PROTECT_ITF))
147 {
148 if (ip46_address_is_ip4 (&itp->itp_tun.src))
149 linkt = VNET_LINK_IP4;
150 else
151 linkt = VNET_LINK_IP6;
152 }
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000153
Neale Ranns4ec36c52020-03-31 09:21:29 -0400154 sa = ipsec_sa_get (itp->itp_out_sa);
155 im = &ipsec_main;
Neale Ranns4a58e492020-12-21 13:19:10 +0000156 next = 0;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400157
Neale Ranns970187b2020-10-07 13:58:56 +0000158 if ((sa->crypto_alg == IPSEC_CRYPTO_ALG_NONE &&
159 sa->integ_alg == IPSEC_INTEG_ALG_NONE) &&
160 !(itp->itp_flags & IPSEC_PROTECT_ITF))
Neale Ranns4a58e492020-12-21 13:19:10 +0000161 next = (VNET_LINK_IP4 == linkt ? im->esp4_no_crypto_tun_node_index :
162 im->esp6_no_crypto_tun_node_index);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400163 else if (itp->itp_flags & IPSEC_PROTECT_L2)
Neale Ranns4a58e492020-12-21 13:19:10 +0000164 next = (VNET_LINK_IP4 == linkt ? im->esp4_encrypt_l2_tun_node_index :
165 im->esp6_encrypt_l2_tun_node_index);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400166 else
Neale Ranns4a58e492020-12-21 13:19:10 +0000167 {
168 switch (linkt)
169 {
170 case VNET_LINK_IP4:
171 next = im->esp4_encrypt_tun_node_index;
172 break;
173 case VNET_LINK_IP6:
174 next = im->esp6_encrypt_tun_node_index;
175 break;
176 case VNET_LINK_MPLS:
177 next = im->esp_mpls_encrypt_tun_node_index;
178 break;
179 case VNET_LINK_ARP:
180 case VNET_LINK_NSH:
181 case VNET_LINK_ETHERNET:
182 ASSERT (0);
183 break;
184 }
185 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400186 return (next);
187}
188
189static void
190ipsec_tun_protect_add_adj (adj_index_t ai, const ipsec_tun_protect_t * itp)
191{
192 vec_validate_init_empty (ipsec_tun_protect_sa_by_adj_index, ai,
193 INDEX_INVALID);
194
195 if (NULL == itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800196 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400197 ipsec_tun_protect_sa_by_adj_index[ai] = INDEX_INVALID;
198 adj_nbr_midchain_reset_next_node (ai);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800199 }
200 else
201 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400202 ipsec_tun_protect_sa_by_adj_index[ai] = itp->itp_out_sa;
203 adj_nbr_midchain_update_next_node
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000204 (ai, ipsec_tun_protect_get_adj_next (adj_get_link_type (ai), itp));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800205 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800206}
207
Neale Ranns28287212019-12-16 00:53:11 +0000208static index_t
209ipsec_tun_protect_find (u32 sw_if_index, const ip_address_t * nh)
210{
211 ipsec_tun_protect_itf_db_t *idi;
212 uword *p;
213
214 if (vec_len (itp_db.id_itf) <= sw_if_index)
215 return INDEX_INVALID;
216
217 if (vnet_sw_interface_is_p2p (vnet_get_main (), sw_if_index))
218 return (itp_db.id_itf[sw_if_index].id_itp);
219
220 idi = &itp_db.id_itf[sw_if_index];
221 p = hash_get_mem (idi->id_hash, nh);
222
223 if (NULL == p)
224 {
225 return INDEX_INVALID;
226 }
227 return (p[0]);
228}
229
Neale Rannsc87b66c2019-02-07 07:26:12 -0800230static void
Neale Ranns28287212019-12-16 00:53:11 +0000231ipsec_tun_protect_rx_db_add (ipsec_main_t * im,
232 const ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800233{
234 const ipsec_sa_t *sa;
235 u32 sai;
236
Neale Ranns28287212019-12-16 00:53:11 +0000237 if (ip46_address_is_zero (&itp->itp_crypto.dst))
238 return;
239
Neale Rannsc87b66c2019-02-07 07:26:12 -0800240 /* *INDENT-OFF* */
241 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
242 ({
243 sa = ipsec_sa_get (sai);
244
245 ipsec_tun_lkup_result_t res = {
Neale Ranns28287212019-12-16 00:53:11 +0000246 .tun_index = itp - ipsec_tun_protect_pool,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800247 .sa_index = sai,
Neale Ranns302b25a2020-10-19 13:23:33 +0000248 .flags = itp->itp_flags,
249 .sw_if_index = itp->itp_sw_if_index,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800250 };
251
252 /*
253 * The key is formed from the tunnel's destination
254 * as the packet lookup is done from the packet's source
255 */
256 if (ip46_address_is_ip4 (&itp->itp_crypto.dst))
257 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000258 ipsec4_tunnel_kv_t key = {
259 .value = res,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800260 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000261 clib_bihash_kv_8_16_t *bkey = (clib_bihash_kv_8_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000262
263 ipsec4_tunnel_mk_key(&key, &itp->itp_crypto.dst.ip4,
264 clib_host_to_net_u32 (sa->spi));
265
Neale Ranns0ebbbfc2021-02-08 09:53:10 +0000266 if (!clib_bihash_is_initialised_8_16 (&im->tun4_protect_by_key))
267 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
268 "IPSec IPv4 tunnels",
269 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
270 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000271
Neale Ranns0ebbbfc2021-02-08 09:53:10 +0000272 clib_bihash_add_del_8_16 (&im->tun4_protect_by_key, bkey, 1);
273 ipsec_tun_register_nodes (AF_IP4);
274 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800275 else
276 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000277 ipsec6_tunnel_kv_t key = {
278 .key = {
279 .remote_ip = itp->itp_crypto.dst.ip6,
280 .spi = clib_host_to_net_u32 (sa->spi),
281 },
282 .value = res,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800283 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000284 clib_bihash_kv_24_16_t *bkey = (clib_bihash_kv_24_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000285
Neale Ranns0ebbbfc2021-02-08 09:53:10 +0000286 if (!clib_bihash_is_initialised_24_16 (&im->tun6_protect_by_key))
287 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
288 "IPSec IPv6 tunnels",
289 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
290 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
291 clib_bihash_add_del_24_16 (&im->tun6_protect_by_key, bkey, 1);
292 ipsec_tun_register_nodes (AF_IP6);
293 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800294 }))
295 /* *INDENT-ON* */
296}
297
Neale Ranns28287212019-12-16 00:53:11 +0000298static adj_walk_rc_t
299ipsec_tun_protect_adj_add (adj_index_t ai, void *arg)
300{
301 ipsec_tun_protect_t *itp = arg;
302 adj_delegate_add (adj_get (ai), ipsec_tun_adj_delegate_type,
303 itp - ipsec_tun_protect_pool);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400304 ipsec_tun_protect_add_adj (ai, itp);
Neale Ranns28287212019-12-16 00:53:11 +0000305
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000306 if (itp->itp_flags & IPSEC_PROTECT_ITF)
307 ipsec_itf_adj_stack (ai, itp->itp_out_sa);
308
Neale Ranns28287212019-12-16 00:53:11 +0000309 return (ADJ_WALK_RC_CONTINUE);
310}
311
Neale Rannsc87b66c2019-02-07 07:26:12 -0800312static void
Neale Ranns28287212019-12-16 00:53:11 +0000313ipsec_tun_protect_tx_db_add (ipsec_tun_protect_t * itp)
314{
315 /*
316 * add the delegate to the adj
317 */
318 ipsec_tun_protect_itf_db_t *idi;
319 fib_protocol_t nh_proto;
320 ip46_address_t nh;
321
322 vec_validate_init_empty (itp_db.id_itf,
323 itp->itp_sw_if_index,
324 IPSEC_TUN_PROTECT_DEFAULT_DB_ENTRY);
325
326 idi = &itp_db.id_itf[itp->itp_sw_if_index];
327
328 if (vnet_sw_interface_is_p2p (vnet_get_main (), itp->itp_sw_if_index))
329 {
330 if (INDEX_INVALID == idi->id_itp)
331 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400332 // ipsec_tun_protect_feature_set (itp, 1);
Neale Ranns28287212019-12-16 00:53:11 +0000333 }
334 idi->id_itp = itp - ipsec_tun_protect_pool;
335
336 FOR_EACH_FIB_IP_PROTOCOL (nh_proto)
337 adj_nbr_walk (itp->itp_sw_if_index,
338 nh_proto, ipsec_tun_protect_adj_add, itp);
339 }
340 else
341 {
342 if (NULL == idi->id_hash)
343 {
344 idi->id_hash =
345 hash_create_mem (0, sizeof (ip_address_t), sizeof (uword));
346 /*
347 * enable the encrypt feature for egress if this is the first addition
348 * on this interface
349 */
Neale Ranns4ec36c52020-03-31 09:21:29 -0400350 // ipsec_tun_protect_feature_set (itp, 1);
Neale Ranns28287212019-12-16 00:53:11 +0000351 }
352
353 hash_set_mem (idi->id_hash, itp->itp_key, itp - ipsec_tun_protect_pool);
354
355 /*
356 * walk all the adjs with the same nh on this interface
357 * to associate them with this protection
358 */
359 nh_proto = ip_address_to_46 (itp->itp_key, &nh);
360
361 adj_nbr_walk_nh (itp->itp_sw_if_index,
362 nh_proto, &nh, ipsec_tun_protect_adj_add, itp);
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000363
364 ipsec_tun_register_nodes (FIB_PROTOCOL_IP6 == nh_proto ?
365 AF_IP6 : AF_IP4);
Neale Ranns28287212019-12-16 00:53:11 +0000366 }
367}
368
369static void
370ipsec_tun_protect_rx_db_remove (ipsec_main_t * im,
371 const ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800372{
373 const ipsec_sa_t *sa;
374
375 /* *INDENT-OFF* */
376 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
377 ({
Neale Ranns4ec36c52020-03-31 09:21:29 -0400378 if (ip46_address_is_ip4 (&itp->itp_crypto.dst))
379 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000380 ipsec4_tunnel_kv_t key;
Neale Ranns302b25a2020-10-19 13:23:33 +0000381 clib_bihash_kv_8_16_t res, *bkey = (clib_bihash_kv_8_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000382
383 ipsec4_tunnel_mk_key(&key, &itp->itp_crypto.dst.ip4,
384 clib_host_to_net_u32 (sa->spi));
385
Neale Ranns302b25a2020-10-19 13:23:33 +0000386 if (!clib_bihash_search_8_16 (&im->tun4_protect_by_key, bkey, &res))
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000387 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000388 clib_bihash_add_del_8_16 (&im->tun4_protect_by_key, bkey, 0);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000389 ipsec_tun_unregister_nodes(AF_IP4);
390 }
Neale Ranns4ec36c52020-03-31 09:21:29 -0400391 }
392 else
393 {
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000394 ipsec6_tunnel_kv_t key = {
395 .key = {
396 .remote_ip = itp->itp_crypto.dst.ip6,
397 .spi = clib_host_to_net_u32 (sa->spi),
398 },
Neale Ranns4ec36c52020-03-31 09:21:29 -0400399 };
Neale Ranns302b25a2020-10-19 13:23:33 +0000400 clib_bihash_kv_24_16_t res, *bkey = (clib_bihash_kv_24_16_t*)&key;
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000401
Neale Ranns302b25a2020-10-19 13:23:33 +0000402 if (!clib_bihash_search_24_16 (&im->tun6_protect_by_key, bkey, &res))
Neale Ranns4ec36c52020-03-31 09:21:29 -0400403 {
Neale Ranns302b25a2020-10-19 13:23:33 +0000404 clib_bihash_add_del_24_16 (&im->tun6_protect_by_key, bkey, 0);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400405 ipsec_tun_unregister_nodes(AF_IP6);
406 }
407 }
408 }));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800409 /* *INDENT-ON* */
410}
411
Neale Ranns28287212019-12-16 00:53:11 +0000412static adj_walk_rc_t
413ipsec_tun_protect_adj_remove (adj_index_t ai, void *arg)
414{
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000415 ipsec_tun_protect_t *itp = arg;
416
Neale Ranns28287212019-12-16 00:53:11 +0000417 adj_delegate_remove (ai, ipsec_tun_adj_delegate_type);
Neale Ranns4ec36c52020-03-31 09:21:29 -0400418 ipsec_tun_protect_add_adj (ai, NULL);
Neale Ranns28287212019-12-16 00:53:11 +0000419
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000420 if (itp->itp_flags & IPSEC_PROTECT_ITF)
421 ipsec_itf_adj_unstack (ai);
422
Neale Ranns28287212019-12-16 00:53:11 +0000423 return (ADJ_WALK_RC_CONTINUE);
424}
425
Neale Rannsc87b66c2019-02-07 07:26:12 -0800426static void
Neale Ranns28287212019-12-16 00:53:11 +0000427ipsec_tun_protect_tx_db_remove (ipsec_tun_protect_t * itp)
428{
429 ipsec_tun_protect_itf_db_t *idi;
430 fib_protocol_t nh_proto;
431 ip46_address_t nh;
432
433 nh_proto = ip_address_to_46 (itp->itp_key, &nh);
434 idi = &itp_db.id_itf[itp->itp_sw_if_index];
435
436 if (vnet_sw_interface_is_p2p (vnet_get_main (), itp->itp_sw_if_index))
437 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400438 // ipsec_tun_protect_feature_set (itp, 0);
Neale Ranns28287212019-12-16 00:53:11 +0000439 idi->id_itp = INDEX_INVALID;
440
441 FOR_EACH_FIB_IP_PROTOCOL (nh_proto)
442 adj_nbr_walk (itp->itp_sw_if_index,
443 nh_proto, ipsec_tun_protect_adj_remove, itp);
444 }
445 else
446 {
447 adj_nbr_walk_nh (itp->itp_sw_if_index,
448 nh_proto, &nh, ipsec_tun_protect_adj_remove, itp);
449
450 hash_unset_mem (idi->id_hash, itp->itp_key);
451
452 if (0 == hash_elts (idi->id_hash))
453 {
Neale Ranns4ec36c52020-03-31 09:21:29 -0400454 // ipsec_tun_protect_feature_set (itp, 0);
Neale Ranns28287212019-12-16 00:53:11 +0000455 hash_free (idi->id_hash);
456 idi->id_hash = NULL;
457 }
Neale Ranns8d6d74c2020-02-20 09:45:16 +0000458 ipsec_tun_unregister_nodes (FIB_PROTOCOL_IP6 == nh_proto ?
459 AF_IP6 : AF_IP4);
Neale Ranns28287212019-12-16 00:53:11 +0000460 }
461}
462
463static void
464ipsec_tun_protect_set_crypto_addr (ipsec_tun_protect_t * itp)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800465{
466 ipsec_sa_t *sa;
Neale Ranns12989b52019-09-26 16:20:19 +0000467
Neale Rannsc87b66c2019-02-07 07:26:12 -0800468 /* *INDENT-OFF* */
469 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
470 ({
471 if (ipsec_sa_is_set_IS_TUNNEL (sa))
472 {
Neale Ranns9ec846c2021-02-09 14:04:02 +0000473 itp->itp_crypto.src = ip_addr_46 (&sa->tunnel.t_dst);
474 itp->itp_crypto.dst = ip_addr_46 (&sa->tunnel.t_src);
475 if (!(itp->itp_flags & IPSEC_PROTECT_ITF))
476 {
477 ipsec_sa_set_IS_PROTECT (sa);
478 itp->itp_flags |= IPSEC_PROTECT_ENCAPED;
479 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800480 }
481 else
482 {
483 itp->itp_crypto.src = itp->itp_tun.src;
484 itp->itp_crypto.dst = itp->itp_tun.dst;
485 itp->itp_flags &= ~IPSEC_PROTECT_ENCAPED;
486 }
487 }));
488 /* *INDENT-ON* */
Neale Ranns28287212019-12-16 00:53:11 +0000489}
490
491static void
492ipsec_tun_protect_config (ipsec_main_t * im,
493 ipsec_tun_protect_t * itp, u32 sa_out, u32 * sas_in)
494{
495 index_t sai;
496 u32 ii;
497
498 itp->itp_n_sa_in = vec_len (sas_in);
499 for (ii = 0; ii < itp->itp_n_sa_in; ii++)
500 itp->itp_in_sas[ii] = sas_in[ii];
501 itp->itp_out_sa = sa_out;
502
503 ipsec_sa_lock (itp->itp_out_sa);
504
505 /* *INDENT-OFF* */
506 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
507 ({
508 ipsec_sa_lock(sai);
509 }));
510 ipsec_tun_protect_set_crypto_addr(itp);
511 /* *INDENT-ON* */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800512
513 /*
514 * add to the DB against each SA
515 */
Neale Ranns28287212019-12-16 00:53:11 +0000516 ipsec_tun_protect_rx_db_add (im, itp);
517 ipsec_tun_protect_tx_db_add (itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800518
Neale Ranns28287212019-12-16 00:53:11 +0000519 ITP_DBG (itp, "configured");
Neale Rannsc87b66c2019-02-07 07:26:12 -0800520}
521
522static void
523ipsec_tun_protect_unconfig (ipsec_main_t * im, ipsec_tun_protect_t * itp)
524{
525 ipsec_sa_t *sa;
Neale Ranns495d7ff2019-07-12 09:15:26 +0000526 index_t sai;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800527
Neale Rannsc87b66c2019-02-07 07:26:12 -0800528 /* *INDENT-OFF* */
529 FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
530 ({
531 ipsec_sa_unset_IS_PROTECT (sa);
532 }));
Neale Rannsc87b66c2019-02-07 07:26:12 -0800533
Neale Ranns28287212019-12-16 00:53:11 +0000534 ipsec_tun_protect_rx_db_remove (im, itp);
535 ipsec_tun_protect_tx_db_remove (itp);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000536
537 ipsec_sa_unlock(itp->itp_out_sa);
538
539 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
540 ({
541 ipsec_sa_unlock(sai);
542 }));
543 /* *INDENT-ON* */
Neale Ranns28287212019-12-16 00:53:11 +0000544 ITP_DBG (itp, "unconfigured");
Neale Rannsc87b66c2019-02-07 07:26:12 -0800545}
546
Neale Ranns28287212019-12-16 00:53:11 +0000547static void
548ipsec_tun_protect_update_from_teib (ipsec_tun_protect_t * itp,
549 const teib_entry_t * ne)
550{
551 if (NULL != ne)
552 {
553 const fib_prefix_t *pfx;
554
555 pfx = teib_entry_get_nh (ne);
556
557 ip46_address_copy (&itp->itp_tun.dst, &pfx->fp_addr);
558 }
559 else
560 ip46_address_reset (&itp->itp_tun.dst);
561}
562
Neale Ranns12989b52019-09-26 16:20:19 +0000563int
Neale Ranns28287212019-12-16 00:53:11 +0000564ipsec_tun_protect_update (u32 sw_if_index,
565 const ip_address_t * nh, u32 sa_out, u32 * sas_in)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800566{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800567 ipsec_tun_protect_t *itp;
Neale Ranns12989b52019-09-26 16:20:19 +0000568 u32 itpi, ii, *saip;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800569 ipsec_main_t *im;
570 int rv;
571
Neale Ranns28287212019-12-16 00:53:11 +0000572 ITP_DBG2 ("update: %U/%U",
573 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
574 format_ip_address, nh);
575
Matthew Smithdc3e9662020-04-10 20:27:33 -0500576 if (vec_len (sas_in) > ITP_MAX_N_SA_IN)
577 {
578 rv = VNET_API_ERROR_LIMIT_EXCEEDED;
579 goto out;
580 }
581
Neale Rannsc87b66c2019-02-07 07:26:12 -0800582 rv = 0;
583 im = &ipsec_main;
Neale Ranns28287212019-12-16 00:53:11 +0000584 if (NULL == nh)
585 nh = &IP_ADDR_ALL_0;
586 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800587
588 vec_foreach_index (ii, sas_in)
589 {
Neale Ranns495d7ff2019-07-12 09:15:26 +0000590 sas_in[ii] = ipsec_sa_find_and_lock (sas_in[ii]);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800591 if (~0 == sas_in[ii])
592 {
593 rv = VNET_API_ERROR_INVALID_VALUE;
594 goto out;
595 }
596 }
597
Neale Ranns495d7ff2019-07-12 09:15:26 +0000598 sa_out = ipsec_sa_find_and_lock (sa_out);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800599
600 if (~0 == sa_out)
601 {
602 rv = VNET_API_ERROR_INVALID_VALUE;
603 goto out;
604 }
605
606 if (INDEX_INVALID == itpi)
607 {
608 vnet_device_class_t *dev_class;
609 vnet_hw_interface_t *hi;
610 vnet_main_t *vnm;
611 u8 is_l2;
612
613 vnm = vnet_get_main ();
614 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
615 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
616
617 if (NULL == dev_class->ip_tun_desc)
618 {
619 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
620 goto out;
621 }
622
Neale Ranns28287212019-12-16 00:53:11 +0000623 pool_get_zero (ipsec_tun_protect_pool, itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800624
625 itp->itp_sw_if_index = sw_if_index;
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000626 itp->itp_ai = ADJ_INDEX_INVALID;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800627
628 itp->itp_n_sa_in = vec_len (sas_in);
629 for (ii = 0; ii < itp->itp_n_sa_in; ii++)
630 itp->itp_in_sas[ii] = sas_in[ii];
631 itp->itp_out_sa = sa_out;
632
Neale Ranns28287212019-12-16 00:53:11 +0000633 itp->itp_key = clib_mem_alloc (sizeof (*itp->itp_key));
634 ip_address_copy (itp->itp_key, nh);
635
Neale Rannsc87b66c2019-02-07 07:26:12 -0800636 rv = dev_class->ip_tun_desc (sw_if_index,
637 &itp->itp_tun.src,
638 &itp->itp_tun.dst, &is_l2);
639
640 if (rv)
641 goto out;
642
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000643 if (ip46_address_is_zero (&itp->itp_tun.src))
644 {
Neale Ranns6ba4e412020-10-19 09:59:41 +0000645 /*
646 * must be one of those pesky ipsec interfaces that has no encap.
647 * the encap then MUST come from the tunnel mode SA.
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000648 */
649 ipsec_sa_t *sa;
650
651 sa = ipsec_sa_get (itp->itp_out_sa);
652
653 if (!ipsec_sa_is_set_IS_TUNNEL (sa))
654 {
655 rv = VNET_API_ERROR_INVALID_DST_ADDRESS;
656 goto out;
657 }
658
659 itp->itp_flags |= IPSEC_PROTECT_ITF;
660 }
661 else if (ip46_address_is_zero (&itp->itp_tun.dst))
Neale Ranns28287212019-12-16 00:53:11 +0000662 {
663 /* tunnel has no destination address, presumably because it's p2mp
664 in which case we use the nh that this is protection for */
Neale Ranns28287212019-12-16 00:53:11 +0000665 ipsec_tun_protect_update_from_teib
Neale Rannse6b83052020-09-17 12:56:47 +0000666 (itp, teib_entry_find (sw_if_index, nh));
Neale Ranns28287212019-12-16 00:53:11 +0000667 }
668
Neale Rannsc87b66c2019-02-07 07:26:12 -0800669 if (is_l2)
670 itp->itp_flags |= IPSEC_PROTECT_L2;
671
672 /*
673 * add to the tunnel DB for ingress
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000674 * - if the SA is in trasnport mode, then the packates will arrive
Neale Rannsc87b66c2019-02-07 07:26:12 -0800675 * with the IP src,dst of the protected tunnel, in which case we can
676 * simply strip the IP header and hand the payload to the protocol
677 * appropriate input handler
678 * - if the SA is in tunnel mode then there are two IP headers present
679 * one for the crytpo tunnel endpoints (described in the SA) and one
680 * for the tunnel endpoints. The outer IP headers in the srriving
681 * packets will have the crypto endpoints. So the DB needs to contain
682 * the crpto endpoint. Once the crypto header is stripped, revealing,
683 * the tunnel-IP we have 2 choices:
684 * 1) do a tunnel lookup based on the revealed header
685 * 2) skip the tunnel lookup and assume that the packet matches the
686 * one that is protected here.
687 * If we did 1) then we would allow our peer to use the SA for tunnel
688 * X to inject traffic onto tunnel Y, this is not good. If we do 2)
689 * then we don't verify that the peer is indeed using SA for tunnel
690 * X and addressing tunnel X. So we take a compromise, once the SA
691 * matches to tunnel X we veriy that the inner IP matches the value
692 * of the tunnel we are protecting, else it's dropped.
693 */
694 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800695 }
696 else
697 {
698 /* updating SAs only */
Neale Ranns28287212019-12-16 00:53:11 +0000699 itp = pool_elt_at_index (ipsec_tun_protect_pool, itpi);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800700
701 ipsec_tun_protect_unconfig (im, itp);
702 ipsec_tun_protect_config (im, itp, sa_out, sas_in);
703 }
704
Neale Ranns12989b52019-09-26 16:20:19 +0000705 ipsec_sa_unlock (sa_out);
706 vec_foreach (saip, sas_in) ipsec_sa_unlock (*saip);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800707 vec_free (sas_in);
Neale Ranns12989b52019-09-26 16:20:19 +0000708
Neale Rannsc87b66c2019-02-07 07:26:12 -0800709out:
710 return (rv);
711}
712
713int
Neale Ranns28287212019-12-16 00:53:11 +0000714ipsec_tun_protect_del (u32 sw_if_index, const ip_address_t * nh)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800715{
716 ipsec_tun_protect_t *itp;
717 ipsec_main_t *im;
718 index_t itpi;
719
Neale Ranns28287212019-12-16 00:53:11 +0000720 ITP_DBG2 ("delete: %U/%U",
721 format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index,
722 format_ip_address, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800723
Neale Ranns28287212019-12-16 00:53:11 +0000724 im = &ipsec_main;
725 if (NULL == nh)
726 nh = &IP_ADDR_ALL_0;
727
728 itpi = ipsec_tun_protect_find (sw_if_index, nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800729
730 if (INDEX_INVALID == itpi)
731 return (VNET_API_ERROR_NO_SUCH_ENTRY);
732
733 itp = ipsec_tun_protect_get (itpi);
734 ipsec_tun_protect_unconfig (im, itp);
735
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000736 if (ADJ_INDEX_INVALID != itp->itp_ai)
737 adj_unlock (itp->itp_ai);
738
Neale Ranns28287212019-12-16 00:53:11 +0000739 clib_mem_free (itp->itp_key);
740 pool_put (ipsec_tun_protect_pool, itp);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800741
Neale Rannsc87b66c2019-02-07 07:26:12 -0800742 return (0);
743}
744
745void
746ipsec_tun_protect_walk (ipsec_tun_protect_walk_cb_t fn, void *ctx)
747{
748 index_t itpi;
749
750 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100751 pool_foreach_index (itpi, ipsec_tun_protect_pool)
752 {
Neale Rannsc87b66c2019-02-07 07:26:12 -0800753 fn (itpi, ctx);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100754 }
Neale Rannsc87b66c2019-02-07 07:26:12 -0800755 /* *INDENT-ON* */
756}
757
Neale Ranns28287212019-12-16 00:53:11 +0000758void
759ipsec_tun_protect_walk_itf (u32 sw_if_index,
760 ipsec_tun_protect_walk_cb_t fn, void *ctx)
761{
762 ipsec_tun_protect_itf_db_t *idi;
763 ip_address_t *key;
764 index_t itpi;
765
766 if (vec_len (itp_db.id_itf) <= sw_if_index)
767 return;
768
769 idi = &itp_db.id_itf[sw_if_index];
770
771 /* *INDENT-OFF* */
772 hash_foreach(key, itpi, idi->id_hash,
773 ({
774 fn (itpi, ctx);
775 }));
776 /* *INDENT-ON* */
777 if (INDEX_INVALID != idi->id_itp)
778 fn (idi->id_itp, ctx);
779}
780
781static void
Brian Russell7a29a2d2021-02-22 18:42:24 +0000782ipsec_tun_feature_update (u32 sw_if_index, u8 arc_index, u8 is_enable,
783 void *data)
784{
785 ipsec_tun_protect_t *itp;
786 index_t itpi;
787
788 if (arc_index != feature_main.device_input_feature_arc_index)
789 return;
790
791 /* Only p2p tunnels supported */
792 itpi = ipsec_tun_protect_find (sw_if_index, &IP_ADDR_ALL_0);
793 if (itpi == INDEX_INVALID)
794 return;
795
796 itp = ipsec_tun_protect_get (itpi);
797
798 if (is_enable)
799 {
800 u32 decrypt_tun = ip46_address_is_ip4 (&itp->itp_crypto.dst) ?
801 ipsec_main.esp4_decrypt_tun_node_index :
802 ipsec_main.esp6_decrypt_tun_node_index;
803
804 vnet_feature_modify_end_node (
805 feature_main.device_input_feature_arc_index, sw_if_index, decrypt_tun);
806 itp->itp_flags |= IPSEC_PROTECT_FEAT;
807 }
808 else
809 {
810 u32 eth_in =
811 vlib_get_node_by_name (vlib_get_main (), (u8 *) "ethernet-input")
812 ->index;
813
814 vnet_feature_modify_end_node (
815 feature_main.device_input_feature_arc_index, sw_if_index, eth_in);
816 itp->itp_flags &= ~IPSEC_PROTECT_FEAT;
817 }
818
819 /* Propagate flag change into lookup entries */
820 ipsec_tun_protect_rx_db_remove (&ipsec_main, itp);
821 ipsec_tun_protect_rx_db_add (&ipsec_main, itp);
822}
823
824static void
Neale Ranns28287212019-12-16 00:53:11 +0000825ipsec_tun_protect_adj_delegate_adj_deleted (adj_delegate_t * ad)
826{
827 /* remove our delegate */
Neale Ranns4ec36c52020-03-31 09:21:29 -0400828 ipsec_tun_protect_add_adj (ad->ad_adj_index, NULL);
Benoît Ganneea9bc282020-04-16 12:40:04 +0200829 adj_delegate_remove (ad->ad_adj_index, ipsec_tun_adj_delegate_type);
Neale Ranns28287212019-12-16 00:53:11 +0000830}
831
832static void
Neale Ranns4ec36c52020-03-31 09:21:29 -0400833ipsec_tun_protect_adj_delegate_adj_modified (adj_delegate_t * ad)
834{
835 ipsec_tun_protect_add_adj (ad->ad_adj_index,
836 ipsec_tun_protect_get (ad->ad_index));
837}
838
839static void
Neale Ranns28287212019-12-16 00:53:11 +0000840ipsec_tun_protect_adj_delegate_adj_created (adj_index_t ai)
841{
842 /* add our delegate if there is protection for this neighbour */
843 ip_address_t ip = IP_ADDRESS_V4_ALL_0S;
844 ip_adjacency_t *adj;
845 index_t itpi;
846
Neale Ranns4ec36c52020-03-31 09:21:29 -0400847 if (!adj_is_midchain (ai))
Neale Ranns28287212019-12-16 00:53:11 +0000848 return;
849
Neale Ranns4ec36c52020-03-31 09:21:29 -0400850 adj = adj_get (ai);
851
Neale Ranns28287212019-12-16 00:53:11 +0000852 ip_address_from_46 (&adj->sub_type.midchain.next_hop,
853 adj->ia_nh_proto, &ip);
854
855 itpi = ipsec_tun_protect_find (adj->rewrite_header.sw_if_index, &ip);
856
857 if (INDEX_INVALID != itpi)
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000858 ipsec_tun_protect_adj_add (ai, ipsec_tun_protect_get (itpi));
Neale Ranns28287212019-12-16 00:53:11 +0000859}
860
861static u8 *
862ipsec_tun_protect_adj_delegate_format (const adj_delegate_t * aed, u8 * s)
863{
864 const ipsec_tun_protect_t *itp;
865
866 itp = ipsec_tun_protect_from_const_base (aed);
867 s = format (s, "ipsec-tun-protect:\n%U", format_ipsec_tun_protect, itp);
868
869 return (s);
870}
871
872static void
873ipsec_tun_teib_entry_added (const teib_entry_t * ne)
874{
Neale Ranns28287212019-12-16 00:53:11 +0000875 ipsec_tun_protect_t *itp;
Neale Ranns28287212019-12-16 00:53:11 +0000876 index_t itpi;
877
Neale Rannse6b83052020-09-17 12:56:47 +0000878 itpi = ipsec_tun_protect_find (teib_entry_get_sw_if_index (ne),
879 teib_entry_get_peer (ne));
Neale Ranns28287212019-12-16 00:53:11 +0000880
881 if (INDEX_INVALID == itpi)
882 return;
883
884 itp = ipsec_tun_protect_get (itpi);
885 ipsec_tun_protect_rx_db_remove (&ipsec_main, itp);
886 ipsec_tun_protect_update_from_teib (itp, ne);
887 ipsec_tun_protect_set_crypto_addr (itp);
888 ipsec_tun_protect_rx_db_add (&ipsec_main, itp);
889
890 ITP_DBG (itp, "teib-added");
891}
892
893static void
894ipsec_tun_teib_entry_deleted (const teib_entry_t * ne)
895{
Neale Ranns28287212019-12-16 00:53:11 +0000896 ipsec_tun_protect_t *itp;
Neale Ranns28287212019-12-16 00:53:11 +0000897 index_t itpi;
898
Neale Rannse6b83052020-09-17 12:56:47 +0000899 itpi = ipsec_tun_protect_find (teib_entry_get_sw_if_index (ne),
900 teib_entry_get_peer (ne));
Neale Ranns28287212019-12-16 00:53:11 +0000901
902 if (INDEX_INVALID == itpi)
903 return;
904
905 itp = ipsec_tun_protect_get (itpi);
906 ipsec_tun_protect_rx_db_remove (&ipsec_main, itp);
907 ipsec_tun_protect_update_from_teib (itp, NULL);
908 ipsec_tun_protect_set_crypto_addr (itp);
909
910 ITP_DBG (itp, "teib-removed");
911}
912
913/**
914 * VFT registered with the adjacency delegate
915 */
916const static adj_delegate_vft_t ipsec_tun_adj_delegate_vft = {
917 .adv_adj_deleted = ipsec_tun_protect_adj_delegate_adj_deleted,
918 .adv_adj_created = ipsec_tun_protect_adj_delegate_adj_created,
Neale Ranns4ec36c52020-03-31 09:21:29 -0400919 .adv_adj_modified = ipsec_tun_protect_adj_delegate_adj_modified,
Neale Ranns28287212019-12-16 00:53:11 +0000920 .adv_format = ipsec_tun_protect_adj_delegate_format,
921};
922
923const static teib_vft_t ipsec_tun_teib_vft = {
924 .nv_added = ipsec_tun_teib_entry_added,
925 .nv_deleted = ipsec_tun_teib_entry_deleted,
926};
927
Zachary Leafb2d36782021-07-27 05:18:47 -0500928void
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000929ipsec_tun_table_init (ip_address_family_t af, uword table_size, u32 n_buckets)
930{
931 ipsec_main_t *im;
932
933 im = &ipsec_main;
934
935 if (AF_IP4 == af)
Neale Ranns302b25a2020-10-19 13:23:33 +0000936 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
937 "IPSec IPv4 tunnels", n_buckets, table_size);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000938 else
Neale Ranns302b25a2020-10-19 13:23:33 +0000939 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
940 "IPSec IPv6 tunnels", n_buckets, table_size);
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000941}
Neale Ranns4ec36c52020-03-31 09:21:29 -0400942
Neale Rannsa9e27742020-12-23 16:22:28 +0000943static clib_error_t *
944ipsec_tunnel_protect_init (vlib_main_t *vm)
Neale Rannsc87b66c2019-02-07 07:26:12 -0800945{
946 ipsec_main_t *im;
947
948 im = &ipsec_main;
Neale Ranns302b25a2020-10-19 13:23:33 +0000949 clib_bihash_init_24_16 (&im->tun6_protect_by_key,
950 "IPSec IPv6 tunnels",
951 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
952 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
953 clib_bihash_init_8_16 (&im->tun4_protect_by_key,
954 "IPSec IPv4 tunnels",
Neale Ranns7b4e52f2020-05-24 16:17:50 +0000955 IPSEC_TUN_DEFAULT_HASH_NUM_BUCKETS,
956 IPSEC_TUN_DEFAULT_HASH_MEMORY_SIZE);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800957
Neale Ranns02950402019-12-20 00:54:57 +0000958 /* set up feature nodes to drop outbound packets with no crypto alg set */
Neale Ranns4ec36c52020-03-31 09:21:29 -0400959 im->esp4_no_crypto_tun_node_index =
960 vlib_get_node_by_name (vm, (u8 *) "esp4-no-crypto")->index;
961 im->esp6_no_crypto_tun_node_index =
962 vlib_get_node_by_name (vm, (u8 *) "esp6-no-crypto")->index;
963 im->esp6_encrypt_l2_tun_node_index =
964 vlib_get_node_by_name (vm, (u8 *) "esp6-encrypt-tun")->index;
965 im->esp4_encrypt_l2_tun_node_index =
966 vlib_get_node_by_name (vm, (u8 *) "esp4-encrypt-tun")->index;
Neale Ranns02950402019-12-20 00:54:57 +0000967
Neale Ranns28287212019-12-16 00:53:11 +0000968 ipsec_tun_adj_delegate_type =
969 adj_delegate_register_new_type (&ipsec_tun_adj_delegate_vft);
970
971 ipsec_tun_protect_logger = vlib_log_register_class ("ipsec", "tun");
972
973 teib_register (&ipsec_tun_teib_vft);
974
Brian Russell7a29a2d2021-02-22 18:42:24 +0000975 vnet_feature_register (ipsec_tun_feature_update, NULL);
976
Neale Rannsc87b66c2019-02-07 07:26:12 -0800977 return 0;
978}
979
980VLIB_INIT_FUNCTION (ipsec_tunnel_protect_init);
981
Neale Rannsc87b66c2019-02-07 07:26:12 -0800982/*
983 * fd.io coding-style-patch-verification: ON
984 *
985 * Local Variables:
986 * eval: (c-set-style "gnu")
987 * End:
988 */