32 u32 sw_if_index = (
u32) ~ 0;
42 &sw_if_index, &spd_id))
44 else if (
unformat (line_input,
"del"))
63 .path =
"set interface ipsec spd",
65 "set interface ipsec spd <int> <id>",
82 memset (&sa, 0,
sizeof (sa));
91 else if (
unformat (line_input,
"del %u", &sa.
id))
95 else if (
unformat (line_input,
"esp"))
97 else if (
unformat (line_input,
"ah"))
124 if (sa.
integ_alg < IPSEC_INTEG_ALG_NONE ||
133 else if (
unformat (line_input,
"tunnel-src %U",
136 else if (
unformat (line_input,
"tunnel-dst %U",
139 else if (
unformat (line_input,
"tunnel-src %U",
145 else if (
unformat (line_input,
"tunnel-dst %U",
191 "ipsec sa [add|del]",
213 else if (
unformat (line_input,
"del"))
215 else if (
unformat (line_input,
"%u", &spd_id))
243 "ipsec spd [add|del] <id>",
261 memset (&p, 0,
sizeof (p));
274 else if (
unformat (line_input,
"del"))
276 else if (
unformat (line_input,
"spd %u", &p.
id))
278 else if (
unformat (line_input,
"inbound"))
280 else if (
unformat (line_input,
"outbound"))
284 else if (
unformat (line_input,
"protocol %u", &tmp))
291 if (p.
policy == IPSEC_POLICY_ACTION_RESOLVE)
299 else if (
unformat (line_input,
"local-ip-range %U - %U",
303 else if (
unformat (line_input,
"remote-ip-range %U - %U",
307 else if (
unformat (line_input,
"local-ip-range %U - %U",
314 else if (
unformat (line_input,
"remote-ip-range %U - %U",
321 else if (
unformat (line_input,
"local-port-range %u - %u", &tmp, &tmp2))
327 if (
unformat (line_input,
"remote-port-range %u - %u", &tmp, &tmp2))
376 .path =
"ipsec policy",
378 "ipsec policy [add|del] spd <id> priority <n> ",
393 memset (&sa, 0,
sizeof (sa));
438 .path =
"set ipsec sa",
440 "set ipsec sa <id> crypto-key <key> integ-key <key>",
462 vlib_cli_output(vm,
"sa %u spi %u mode %s protocol %s%s", sa->id, sa->spi,
463 sa->is_tunnel ?
"tunnel" :
"transport",
464 sa->protocol ?
"esp" :
"ah",
465 sa->udp_encap ?
" udp-encap-enabled" :
"");
466 if (sa->protocol == IPSEC_PROTOCOL_ESP) {
467 vlib_cli_output(vm,
" crypto alg %U%s%U integrity alg %U%s%U",
468 format_ipsec_crypto_alg, sa->crypto_alg,
469 sa->crypto_alg ?
" key " :
"",
470 format_hex_bytes, sa->crypto_key, sa->crypto_key_len,
471 format_ipsec_integ_alg, sa->integ_alg,
472 sa->integ_alg ?
" key " :
"",
473 format_hex_bytes, sa->integ_key, sa->integ_key_len);
475 if (sa->is_tunnel && sa->is_tunnel_ip6) {
476 vlib_cli_output(vm,
" tunnel src %U dst %U",
477 format_ip6_address, &sa->tunnel_src_addr.ip6,
478 format_ip6_address, &sa->tunnel_dst_addr.ip6);
479 } else if (sa->is_tunnel) {
480 vlib_cli_output(vm,
" tunnel src %U dst %U",
481 format_ip4_address, &sa->tunnel_src_addr.ip4,
482 format_ip4_address, &sa->tunnel_dst_addr.ip4);
490 vlib_cli_output(vm,
"spd %u", spd->id);
492 vlib_cli_output(vm,
" outbound policies");
493 vec_foreach(i, spd->ipv4_outbound_policies)
495 p = pool_elt_at_index(spd->policies, *i);
496 vec_reset_length(protocol);
497 vec_reset_length(policy);
499 protocol = format(protocol,
"%U", format_ip_protocol, p->protocol);
501 protocol = format(protocol,
"any");
503 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
504 policy = format(policy,
" sa %u", p->sa_id);
507 vlib_cli_output(vm,
" priority %d action %U protocol %v%v",
508 p->priority, format_ipsec_policy_action, p->policy,
510 vlib_cli_output(vm,
" local addr range %U - %U port range %u - %u",
511 format_ip4_address, &p->laddr.start.ip4,
512 format_ip4_address, &p->laddr.stop.ip4,
513 p->lport.start, p->lport.stop);
514 vlib_cli_output(vm,
" remte addr range %U - %U port range %u - %u",
515 format_ip4_address, &p->raddr.start.ip4,
516 format_ip4_address, &p->raddr.stop.ip4,
517 p->rport.start, p->rport.stop);
518 vlib_cli_output(vm,
" packets %u bytes %u", p->counter.packets,
523 p = pool_elt_at_index(spd->policies, *i);
524 vec_reset_length(protocol);
525 vec_reset_length(policy);
527 protocol = format(protocol,
"%U", format_ip_protocol, p->protocol);
529 protocol = format(protocol,
"any");
531 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
532 policy = format(policy,
" sa %u", p->sa_id);
540 p->lport.start, p->lport.stop);
544 p->rport.start, p->rport.stop);
549 vec_foreach(
i, spd->ipv4_inbound_protect_policy_indices)
557 protocol =
format(protocol,
"any");
559 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
560 policy =
format(policy,
" sa %u", p->sa_id);
568 p->lport.start, p->lport.stop);
572 p->rport.start, p->rport.stop);
576 vec_foreach(
i, spd->ipv4_inbound_policy_discard_and_bypass_indices)
584 protocol =
format(protocol,
"any");
586 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
587 policy =
format(policy,
" sa %u", p->sa_id);
595 p->lport.start, p->lport.stop);
599 p->rport.start, p->rport.stop);
603 vec_foreach(
i, spd->ipv6_inbound_protect_policy_indices)
611 protocol =
format(protocol,
"any");
613 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
614 policy =
format(policy,
" sa %u", p->sa_id);
622 p->lport.start, p->lport.stop);
626 p->rport.start, p->rport.stop);
630 vec_foreach(
i, spd->ipv6_inbound_policy_discard_and_bypass_indices)
638 protocol =
format(protocol,
"any");
640 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
641 policy =
format(policy,
" sa %u", p->sa_id);
649 p->lport.start, p->lport.stop);
653 p->rport.start, p->rport.stop);
663 if (t->hw_if_index == ~0)
665 hi = vnet_get_hw_interface (im->vnet_main, t->hw_if_index);
666 vlib_cli_output(vm,
" %s seq", hi->name);
667 sa = pool_elt_at_index(im->sad, t->output_sa_index);
668 vlib_cli_output(vm,
" seq %u seq-hi %u esn %u anti-replay %u",
669 sa->seq, sa->seq_hi, sa->use_esn, sa->use_anti_replay);
670 vlib_cli_output(vm,
" local-spi %u local-ip %U", sa->spi,
671 format_ip4_address, &sa->tunnel_src_addr.ip4);
672 vlib_cli_output(vm,
" local-crypto %U %U",
673 format_ipsec_crypto_alg, sa->crypto_alg,
674 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
675 vlib_cli_output(vm,
" local-integrity %U %U",
676 format_ipsec_integ_alg, sa->integ_alg,
677 format_hex_bytes, sa->integ_key, sa->integ_key_len);
678 sa = pool_elt_at_index(im->sad, t->input_sa_index);
679 vlib_cli_output(vm,
" last-seq %u last-seq-hi %u esn %u anti-replay %u window %U",
680 sa->last_seq, sa->last_seq_hi, sa->use_esn,
682 format_ipsec_replay_window, sa->replay_window);
683 vlib_cli_output(vm,
" remote-spi %u remote-ip %U", sa->spi,
684 format_ip4_address, &sa->tunnel_src_addr.ip4);
685 vlib_cli_output(vm,
" remote-crypto %U %U",
686 format_ipsec_crypto_alg, sa->crypto_alg,
687 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
688 vlib_cli_output(vm,
" remote-integrity %U %U",
689 format_ipsec_integ_alg, sa->integ_alg,
690 format_hex_bytes, sa->integ_key, sa->integ_key_len);
700 .path =
"show ipsec",
701 .short_help =
"show ipsec",
717 pool_foreach(p, spd->policies, ({
718 p->counter.packets = p->counter.bytes = 0;
728 .path =
"clear ipsec counters",
729 .short_help =
"clear ipsec counters",
745 memset (&a, 0,
sizeof (a));
767 else if (
unformat (line_input,
"del"))
789 case VNET_API_ERROR_INVALID_VALUE:
792 "IPSec tunnel interface already exists...");
810 .path =
"create ipsec tunnel",
811 .short_help =
"create ipsec tunnel local-ip <addr> local-spi <spi> remote-ip <addr> remote-spi <spi> [instance <inst_num>]",
824 u32 hw_if_index = (
u32) ~ 0;
869 if (alg > 0 &&
vec_len (key) == 0)
875 if (hw_if_index == (
u32) ~ 0)
892 .path =
"set interface ipsec key",
894 "set interface ipsec key <int> <local|remote> <crypto|integ> <key type> <key>",
unformat_function_t unformat_vnet_hw_interface
int ipsec_set_interface_key(vnet_main_t *vnm, u32 hw_if_index, ipsec_if_set_key_type_t type, u8 alg, u8 *key)
int ipsec_add_del_policy(vlib_main_t *vm, ipsec_policy_t *policy, int is_add)
ip46_address_t tunnel_src_addr
static clib_error_t * set_ipsec_sa_key_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
int ipsec_set_interface_spd(vlib_main_t *vm, u32 sw_if_index, u32 spd_id, int is_add)
ipsec_integ_alg_t integ_alg
static clib_error_t * create_ipsec_tunnel_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static clib_error_t * set_interface_key_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
unformat_function_t unformat_vnet_sw_interface
static vlib_cli_command_t set_interface_key_command
(constructor) VLIB_CLI_COMMAND (set_interface_key_command)
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
int ipsec_add_del_spd(vlib_main_t *vm, u32 spd_id, int is_add)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
static vlib_cli_command_t show_ipsec_command
(constructor) VLIB_CLI_COMMAND (show_ipsec_command)
#define VLIB_INIT_FUNCTION(x)
uword unformat_ipsec_integ_alg(unformat_input_t *input, va_list *args)
#define clib_error_return(e, args...)
ipsec_main_callbacks_t cb
u8 * format_ipsec_crypto_alg(u8 *s, va_list *args)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static vlib_cli_command_t create_ipsec_tunnel_command
(constructor) VLIB_CLI_COMMAND (create_ipsec_tunnel_command)
static clib_error_t * ipsec_policy_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t *(* check_support_cb)(ipsec_sa_t *sa)
static clib_error_t * set_interface_spd_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
uword unformat_ipsec_crypto_alg(unformat_input_t *input, va_list *args)
ip46_address_range_t laddr
ip46_address_t tunnel_dst_addr
static clib_error_t * clear_ipsec_counters_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t * ipsec_cli_init(vlib_main_t *vm)
#define vec_free(V)
Free vector's memory (no header).
uword * sa_index_by_sa_id
int ipsec_set_sa_key(vlib_main_t *vm, ipsec_sa_t *sa_update)
#define VLIB_CLI_COMMAND(x,...)
ip46_address_range_t raddr
int ipsec_add_del_sa(vlib_main_t *vm, ipsec_sa_t *new_sa, int is_add, u8 udp_encap)
ipsec_protocol_t protocol
uword unformat_ipsec_policy_action(unformat_input_t *input, va_list *args)
u8 * format_ipsec_integ_alg(u8 *s, va_list *args)
u8 * format_ipsec_policy_action(u8 *s, va_list *args)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static clib_error_t * ipsec_sa_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
ipsec_crypto_alg_t crypto_alg
static clib_error_t * show_ipsec_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define vec_foreach(var, vec)
Vector iterator.
int ipsec_add_del_tunnel_if(ipsec_add_del_tunnel_args_t *args)
static clib_error_t * ipsec_spd_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static vlib_cli_command_t clear_ipsec_counters_command
(constructor) VLIB_CLI_COMMAND (clear_ipsec_counters_command)