blob: f9c1d77a37dd174f12d45c8323fede7b958d618e [file] [log] [blame]
Neale Rannsdd4ccf22020-06-30 07:47:14 +00001/*
2 * ipsec_itf.c: IPSec dedicated interface type
3 *
4 * Copyright (c) 2020 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/ip/ip.h>
19#include <vnet/ipsec/ipsec_itf.h>
20#include <vnet/ipsec/ipsec_tun.h>
21#include <vnet/ipsec/ipsec.h>
22#include <vnet/adj/adj_midchain.h>
Neale Rannse4031132020-10-26 13:00:06 +000023#include <vnet/ethernet/mac_address.h>
Neale Ranns49378f22022-01-10 10:38:43 +000024#include <vnet/mpls/mpls.h>
Neale Rannsdd4ccf22020-06-30 07:47:14 +000025
26/* bitmap of Allocated IPSEC_ITF instances */
27static uword *ipsec_itf_instances;
28
29/* pool of interfaces */
30static ipsec_itf_t *ipsec_itf_pool;
31
32static u32 *ipsec_itf_index_by_sw_if_index;
33
Neale Ranns6ba4e412020-10-19 09:59:41 +000034ipsec_itf_t *
35ipsec_itf_get (index_t ii)
36{
37 return (pool_elt_at_index (ipsec_itf_pool, ii));
38}
39
Neale Ranns6fdcc3d2021-10-08 07:30:47 +000040u32
41ipsec_itf_count (void)
42{
43 return (pool_elts (ipsec_itf_pool));
44}
45
Neale Rannsdd4ccf22020-06-30 07:47:14 +000046static ipsec_itf_t *
47ipsec_itf_find_by_sw_if_index (u32 sw_if_index)
48{
49 if (vec_len (ipsec_itf_index_by_sw_if_index) <= sw_if_index)
50 return NULL;
51 u32 ti = ipsec_itf_index_by_sw_if_index[sw_if_index];
52 if (ti == ~0)
53 return NULL;
54 return pool_elt_at_index (ipsec_itf_pool, ti);
55}
56
57static u8 *
58format_ipsec_itf_name (u8 * s, va_list * args)
59{
60 u32 dev_instance = va_arg (*args, u32);
61 return format (s, "ipsec%d", dev_instance);
62}
63
64void
65ipsec_itf_adj_unstack (adj_index_t ai)
66{
67 adj_midchain_delegate_unstack (ai);
68}
69
70void
71ipsec_itf_adj_stack (adj_index_t ai, u32 sai)
72{
73 const vnet_hw_interface_t *hw;
74
75 hw = vnet_get_sup_hw_interface (vnet_get_main (), adj_get_sw_if_index (ai));
76
77 if (hw->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)
78 {
79 const ipsec_sa_t *sa;
Neale Ranns9ec846c2021-02-09 14:04:02 +000080 fib_prefix_t dst;
Neale Rannsdd4ccf22020-06-30 07:47:14 +000081
82 sa = ipsec_sa_get (sai);
Neale Ranns9ec846c2021-02-09 14:04:02 +000083 ip_address_to_fib_prefix (&sa->tunnel.t_dst, &dst);
84 adj_midchain_delegate_stack (ai, sa->tunnel.t_fib_index, &dst);
Neale Rannsdd4ccf22020-06-30 07:47:14 +000085 }
86 else
87 adj_midchain_delegate_unstack (ai);
88}
89
90static adj_walk_rc_t
91ipsec_itf_adj_stack_cb (adj_index_t ai, void *arg)
92{
93 ipsec_tun_protect_t *itp = arg;
94
95 ipsec_itf_adj_stack (ai, itp->itp_out_sa);
96
97 return (ADJ_WALK_RC_CONTINUE);
98}
99
100static void
101ipsec_itf_restack (index_t itpi, const ipsec_itf_t * itf)
102{
103 ipsec_tun_protect_t *itp;
104 fib_protocol_t proto;
105
106 itp = ipsec_tun_protect_get (itpi);
107
108 /*
109 * walk all the adjacencies on the interface and restack them
110 */
111 FOR_EACH_FIB_IP_PROTOCOL (proto)
112 {
113 adj_nbr_walk (itf->ii_sw_if_index, proto, ipsec_itf_adj_stack_cb, itp);
114 }
115}
116
117static walk_rc_t
118ipsec_tun_protect_walk_state_change (index_t itpi, void *arg)
119{
120 const ipsec_itf_t *itf = arg;
121
122 ipsec_itf_restack (itpi, itf);
123
124 return (WALK_CONTINUE);
125}
126
127static clib_error_t *
128ipsec_itf_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
129{
130 vnet_hw_interface_t *hi;
131 ipsec_itf_t *itf;
132 u32 hw_flags;
133
134 hi = vnet_get_hw_interface (vnm, hw_if_index);
135 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP ?
136 VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
137 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
138
139 itf = ipsec_itf_find_by_sw_if_index (hi->sw_if_index);
140
141 if (itf)
142 ipsec_tun_protect_walk_itf (itf->ii_sw_if_index,
143 ipsec_tun_protect_walk_state_change, itf);
144
145 return (NULL);
146}
147
148static int
149ipsec_itf_tunnel_desc (u32 sw_if_index,
150 ip46_address_t * src, ip46_address_t * dst, u8 * is_l2)
151{
152 ip46_address_reset (src);
153 ip46_address_reset (dst);
154 *is_l2 = 0;
155
156 return (0);
157}
158
159static u8 *
160ipsec_itf_build_rewrite (void)
161{
162 /*
163 * passing the adj code a NULL rewrite means 'i don't have one cos
164 * t'other end is unresolved'. That's not the case here. For the ipsec
165 * tunnel there are just no bytes of encap to apply in the adj.
166 * So return a zero length rewrite. Encap will be added by a tunnel mode SA.
167 */
168 u8 *rewrite = NULL;
169
170 vec_validate (rewrite, 0);
171 vec_reset_length (rewrite);
172
173 return (rewrite);
174}
175
176static u8 *
177ipsec_itf_build_rewrite_i (vnet_main_t * vnm,
178 u32 sw_if_index,
179 vnet_link_t link_type, const void *dst_address)
180{
181 return (ipsec_itf_build_rewrite ());
182}
183
184void
185ipsec_itf_update_adj (vnet_main_t * vnm, u32 sw_if_index, adj_index_t ai)
186{
187 adj_nbr_midchain_update_rewrite
188 (ai, NULL, NULL, ADJ_FLAG_MIDCHAIN_IP_STACK, ipsec_itf_build_rewrite ());
189}
190
191/* *INDENT-OFF* */
192VNET_DEVICE_CLASS (ipsec_itf_device_class) = {
193 .name = "IPSEC Tunnel",
194 .format_device_name = format_ipsec_itf_name,
195 .admin_up_down_function = ipsec_itf_admin_up_down,
196 .ip_tun_desc = ipsec_itf_tunnel_desc,
197};
198
199VNET_HW_INTERFACE_CLASS(ipsec_hw_interface_class) = {
200 .name = "IPSec",
201 .build_rewrite = ipsec_itf_build_rewrite_i,
202 .update_adjacency = ipsec_itf_update_adj,
203 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
204};
Neale Ranns6ba4e412020-10-19 09:59:41 +0000205VNET_HW_INTERFACE_CLASS(ipsec_p2mp_hw_interface_class) = {
206 .name = "IPSec",
207 .build_rewrite = ipsec_itf_build_rewrite_i,
208 .update_adjacency = ipsec_itf_update_adj,
Neale Rannscfe949d2020-11-25 19:35:38 +0000209 .flags = VNET_HW_INTERFACE_CLASS_FLAG_NBMA,
Neale Ranns6ba4e412020-10-19 09:59:41 +0000210};
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000211/* *INDENT-ON* */
212
213/*
214 * Maintain a bitmap of allocated ipsec_itf instance numbers.
215 */
216#define IPSEC_ITF_MAX_INSTANCE (16 * 1024)
217
218static u32
219ipsec_itf_instance_alloc (u32 want)
220{
221 /*
222 * Check for dynamically allocated instance number.
223 */
224 if (~0 == want)
225 {
226 u32 bit;
227
228 bit = clib_bitmap_first_clear (ipsec_itf_instances);
229 if (bit >= IPSEC_ITF_MAX_INSTANCE)
230 {
231 return ~0;
232 }
233 ipsec_itf_instances = clib_bitmap_set (ipsec_itf_instances, bit, 1);
234 return bit;
235 }
236
237 /*
238 * In range?
239 */
240 if (want >= IPSEC_ITF_MAX_INSTANCE)
241 {
242 return ~0;
243 }
244
245 /*
246 * Already in use?
247 */
248 if (clib_bitmap_get (ipsec_itf_instances, want))
249 {
250 return ~0;
251 }
252
253 /*
254 * Grant allocation request.
255 */
256 ipsec_itf_instances = clib_bitmap_set (ipsec_itf_instances, want, 1);
257
258 return want;
259}
260
261static int
262ipsec_itf_instance_free (u32 instance)
263{
264 if (instance >= IPSEC_ITF_MAX_INSTANCE)
265 {
266 return -1;
267 }
268
269 if (clib_bitmap_get (ipsec_itf_instances, instance) == 0)
270 {
271 return -1;
272 }
273
274 ipsec_itf_instances = clib_bitmap_set (ipsec_itf_instances, instance, 0);
275 return 0;
276}
277
Neale Ranns49378f22022-01-10 10:38:43 +0000278void
279ipsec_itf_reset_tx_nodes (u32 sw_if_index)
280{
281 vnet_feature_modify_end_node (
282 ip4_main.lookup_main.output_feature_arc_index, sw_if_index,
283 vlib_get_node_by_name (vlib_get_main (), (u8 *) "ip4-drop")->index);
284 vnet_feature_modify_end_node (
285 ip6_main.lookup_main.output_feature_arc_index, sw_if_index,
286 vlib_get_node_by_name (vlib_get_main (), (u8 *) "ip6-drop")->index);
287 vnet_feature_modify_end_node (
288 mpls_main.output_feature_arc_index, sw_if_index,
289 vlib_get_node_by_name (vlib_get_main (), (u8 *) "mpls-drop")->index);
290}
291
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000292int
293ipsec_itf_create (u32 user_instance, tunnel_mode_t mode, u32 * sw_if_indexp)
294{
295 vnet_main_t *vnm = vnet_get_main ();
296 u32 instance, hw_if_index;
297 vnet_hw_interface_t *hi;
298 ipsec_itf_t *ipsec_itf;
299
300 ASSERT (sw_if_indexp);
301
302 *sw_if_indexp = (u32) ~ 0;
303
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000304 /*
305 * Allocate a ipsec_itf instance. Either select on dynamically
306 * or try to use the desired user_instance number.
307 */
308 instance = ipsec_itf_instance_alloc (user_instance);
309 if (instance == ~0)
310 return VNET_API_ERROR_INVALID_REGISTRATION;
311
312 pool_get (ipsec_itf_pool, ipsec_itf);
313
314 /* tunnel index (or instance) */
315 u32 t_idx = ipsec_itf - ipsec_itf_pool;
316
317 ipsec_itf->ii_mode = mode;
318 ipsec_itf->ii_user_instance = instance;
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000319
320 hw_if_index = vnet_register_interface (vnm,
321 ipsec_itf_device_class.index,
Eric Kinzie609d5792020-10-13 20:02:11 -0400322 ipsec_itf->ii_user_instance,
Neale Ranns6ba4e412020-10-19 09:59:41 +0000323 (mode == TUNNEL_MODE_P2P ?
324 ipsec_hw_interface_class.index :
325 ipsec_p2mp_hw_interface_class.index),
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000326 t_idx);
327
328 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns5606c822021-05-20 16:03:59 +0000329 vnet_sw_interface_set_mtu (vnm, hi->sw_if_index, 9000);
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000330
331 vec_validate_init_empty (ipsec_itf_index_by_sw_if_index, hi->sw_if_index,
332 INDEX_INVALID);
333 ipsec_itf_index_by_sw_if_index[hi->sw_if_index] = t_idx;
334
335 ipsec_itf->ii_sw_if_index = *sw_if_indexp = hi->sw_if_index;
Neale Ranns49378f22022-01-10 10:38:43 +0000336 ipsec_itf_reset_tx_nodes (hi->sw_if_index);
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000337
338 return 0;
339}
340
341int
342ipsec_itf_delete (u32 sw_if_index)
343{
344 vnet_main_t *vnm = vnet_get_main ();
345
346 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
347 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
348
349 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
350 if (hw == 0 || hw->dev_class_index != ipsec_itf_device_class.index)
351 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
352
353 ipsec_itf_t *ipsec_itf;
354 ipsec_itf = ipsec_itf_find_by_sw_if_index (sw_if_index);
355 if (NULL == ipsec_itf)
356 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
357
358 if (ipsec_itf_instance_free (hw->dev_instance) < 0)
359 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
360
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000361 vnet_reset_interface_l3_output_node (vnm->vlib_main, sw_if_index);
362
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000363 vnet_delete_hw_interface (vnm, hw->hw_if_index);
364 pool_put (ipsec_itf_pool, ipsec_itf);
365
366 return 0;
367}
368
Neale Ranns89d939e2021-06-07 09:34:07 +0000369void
370ipsec_itf_walk (ipsec_itf_walk_cb_t cb, void *ctx)
371{
372 ipsec_itf_t *itf;
373
374 pool_foreach (itf, ipsec_itf_pool)
375 {
376 if (WALK_CONTINUE != cb (itf, ctx))
377 break;
378 }
379}
380
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000381static clib_error_t *
382ipsec_itf_create_cli (vlib_main_t * vm,
383 unformat_input_t * input, vlib_cli_command_t * cmd)
384{
385 unformat_input_t _line_input, *line_input = &_line_input;
386 u32 instance, sw_if_index;
387 clib_error_t *error;
388 mac_address_t mac;
389 int rv;
390
391 error = NULL;
392 instance = sw_if_index = ~0;
393 mac_address_set_zero (&mac);
394
395 if (unformat_user (input, unformat_line_input, line_input))
396 {
397 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
398 {
399 if (unformat (line_input, "instance %d", &instance))
400 ;
401 else
402 {
403 error = clib_error_return (0, "unknown input: %U",
404 format_unformat_error, line_input);
405 break;
406 }
407 }
408
409 unformat_free (line_input);
410
411 if (error)
412 return error;
413 }
414
415 rv = ipsec_itf_create (instance, TUNNEL_MODE_P2P, &sw_if_index);
416
417 if (rv)
418 return clib_error_return (0, "iPSec interface create failed");
419
420 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
421 sw_if_index);
422 return 0;
423}
424
425/*?
426 * Create a IPSec interface.
427 *
428 * @cliexpar
429 * The following two command syntaxes are equivalent:
430 * @cliexcmd{ipsec itf create [instance <instance>]}
431 * Example of how to create a ipsec interface:
432 * @cliexcmd{ipsec itf create}
433?*/
434/* *INDENT-OFF* */
435VLIB_CLI_COMMAND (ipsec_itf_create_command, static) = {
436 .path = "ipsec itf create",
437 .short_help = "ipsec itf create [instance <instance>]",
438 .function = ipsec_itf_create_cli,
439};
440/* *INDENT-ON* */
441
442static clib_error_t *
443ipsec_itf_delete_cli (vlib_main_t * vm,
444 unformat_input_t * input, vlib_cli_command_t * cmd)
445{
446 vnet_main_t *vnm;
447 u32 sw_if_index;
448 int rv;
449
450 vnm = vnet_get_main ();
451 sw_if_index = ~0;
452
453 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
454 {
455 if (unformat
456 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
457 ;
458 else
459 break;
460 }
461
462 if (~0 != sw_if_index)
463 {
464 rv = ipsec_itf_delete (sw_if_index);
465
466 if (rv)
467 return clib_error_return (0, "ipsec interface delete failed");
468 }
469 else
470 return clib_error_return (0, "no such interface: %U",
471 format_unformat_error, input);
472
473 return 0;
474}
475
476/*?
477 * Delete a IPSEC_ITF interface.
478 *
479 * @cliexpar
480 * The following two command syntaxes are equivalent:
481 * @cliexcmd{ipsec itf delete <interface>}
482 * Example of how to create a ipsec_itf interface:
483 * @cliexcmd{ipsec itf delete ipsec0}
484?*/
485/* *INDENT-OFF* */
486VLIB_CLI_COMMAND (ipsec_itf_delete_command, static) = {
487 .path = "ipsec itf delete",
488 .short_help = "ipsec itf delete <interface>",
489 .function = ipsec_itf_delete_cli,
490};
491/* *INDENT-ON* */
492
Neale Ranns6ba4e412020-10-19 09:59:41 +0000493static clib_error_t *
494ipsec_interface_show (vlib_main_t * vm,
495 unformat_input_t * input, vlib_cli_command_t * cmd)
496{
497 index_t ii;
498
499 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100500 pool_foreach_index (ii, ipsec_itf_pool)
501 {
Neale Ranns6ba4e412020-10-19 09:59:41 +0000502 vlib_cli_output (vm, "%U", format_ipsec_itf, ii);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100503 }
Neale Ranns6ba4e412020-10-19 09:59:41 +0000504 /* *INDENT-ON* */
505
506 return NULL;
507}
508
509/**
510 * show IPSEC tunnel protection hash tables
511 */
512/* *INDENT-OFF* */
513VLIB_CLI_COMMAND (ipsec_interface_show_node, static) =
514{
515 .path = "show ipsec interface",
516 .function = ipsec_interface_show,
517 .short_help = "show ipsec interface",
518};
519/* *INDENT-ON* */
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000520
521/*
522 * fd.io coding-style-patch-verification: ON
523 *
524 * Local Variables:
525 * eval: (c-set-style "gnu")
526 * End:
527 */