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))
370 .path =
"ipsec policy",
372 "ipsec policy [add|del] spd <id> priority <n> ",
387 memset (&sa, 0,
sizeof (sa));
432 .path =
"set ipsec sa",
434 "set ipsec sa <id> crypto-key <key> integ-key <key>",
456 vlib_cli_output(vm,
"sa %u spi %u mode %s protocol %s%s", sa->id, sa->spi,
457 sa->is_tunnel ?
"tunnel" :
"transport",
458 sa->protocol ?
"esp" :
"ah",
459 sa->udp_encap ?
" udp-encap-enabled" :
"");
460 if (sa->protocol == IPSEC_PROTOCOL_ESP) {
461 vlib_cli_output(vm,
" crypto alg %U%s%U integrity alg %U%s%U",
462 format_ipsec_crypto_alg, sa->crypto_alg,
463 sa->crypto_alg ?
" key " :
"",
464 format_hex_bytes, sa->crypto_key, sa->crypto_key_len,
465 format_ipsec_integ_alg, sa->integ_alg,
466 sa->integ_alg ?
" key " :
"",
467 format_hex_bytes, sa->integ_key, sa->integ_key_len);
469 if (sa->is_tunnel && sa->is_tunnel_ip6) {
470 vlib_cli_output(vm,
" tunnel src %U dst %U",
471 format_ip6_address, &sa->tunnel_src_addr.ip6,
472 format_ip6_address, &sa->tunnel_dst_addr.ip6);
473 } else if (sa->is_tunnel) {
474 vlib_cli_output(vm,
" tunnel src %U dst %U",
475 format_ip4_address, &sa->tunnel_src_addr.ip4,
476 format_ip4_address, &sa->tunnel_dst_addr.ip4);
484 vlib_cli_output(vm,
"spd %u", spd->id);
486 vlib_cli_output(vm,
" outbound policies");
487 vec_foreach(i, spd->ipv4_outbound_policies)
489 p = pool_elt_at_index(spd->policies, *i);
490 vec_reset_length(protocol);
491 vec_reset_length(policy);
493 protocol = format(protocol,
"%U", format_ip_protocol, p->protocol);
495 protocol = format(protocol,
"any");
497 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
498 policy = format(policy,
" sa %u", p->sa_id);
501 vlib_cli_output(vm,
" priority %d action %U protocol %v%v",
502 p->priority, format_ipsec_policy_action, p->policy,
504 vlib_cli_output(vm,
" local addr range %U - %U port range %u - %u",
505 format_ip4_address, &p->laddr.start.ip4,
506 format_ip4_address, &p->laddr.stop.ip4,
507 p->lport.start, p->lport.stop);
508 vlib_cli_output(vm,
" remte addr range %U - %U port range %u - %u",
509 format_ip4_address, &p->raddr.start.ip4,
510 format_ip4_address, &p->raddr.stop.ip4,
511 p->rport.start, p->rport.stop);
512 vlib_cli_output(vm,
" packets %u bytes %u", p->counter.packets,
517 p = pool_elt_at_index(spd->policies, *i);
518 vec_reset_length(protocol);
519 vec_reset_length(policy);
521 protocol = format(protocol,
"%U", format_ip_protocol, p->protocol);
523 protocol = format(protocol,
"any");
525 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
526 policy = format(policy,
" sa %u", p->sa_id);
534 p->lport.start, p->lport.stop);
538 p->rport.start, p->rport.stop);
543 vec_foreach(
i, spd->ipv4_inbound_protect_policy_indices)
551 protocol =
format(protocol,
"any");
553 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
554 policy =
format(policy,
" sa %u", p->sa_id);
562 p->lport.start, p->lport.stop);
566 p->rport.start, p->rport.stop);
570 vec_foreach(
i, spd->ipv4_inbound_policy_discard_and_bypass_indices)
578 protocol =
format(protocol,
"any");
580 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
581 policy =
format(policy,
" sa %u", p->sa_id);
589 p->lport.start, p->lport.stop);
593 p->rport.start, p->rport.stop);
597 vec_foreach(
i, spd->ipv6_inbound_protect_policy_indices)
605 protocol =
format(protocol,
"any");
607 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
608 policy =
format(policy,
" sa %u", p->sa_id);
616 p->lport.start, p->lport.stop);
620 p->rport.start, p->rport.stop);
624 vec_foreach(
i, spd->ipv6_inbound_policy_discard_and_bypass_indices)
632 protocol =
format(protocol,
"any");
634 if (p->policy == IPSEC_POLICY_ACTION_PROTECT) {
635 policy =
format(policy,
" sa %u", p->sa_id);
643 p->lport.start, p->lport.stop);
647 p->rport.start, p->rport.stop);
657 if (t->hw_if_index == ~0)
659 hi = vnet_get_hw_interface (im->vnet_main, t->hw_if_index);
660 vlib_cli_output(vm,
" %s seq", hi->name);
661 sa = pool_elt_at_index(im->sad, t->output_sa_index);
662 vlib_cli_output(vm,
" seq %u seq-hi %u esn %u anti-replay %u",
663 sa->seq, sa->seq_hi, sa->use_esn, sa->use_anti_replay);
664 vlib_cli_output(vm,
" local-spi %u local-ip %U", sa->spi,
665 format_ip4_address, &sa->tunnel_src_addr.ip4);
666 vlib_cli_output(vm,
" local-crypto %U %U",
667 format_ipsec_crypto_alg, sa->crypto_alg,
668 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
669 vlib_cli_output(vm,
" local-integrity %U %U",
670 format_ipsec_integ_alg, sa->integ_alg,
671 format_hex_bytes, sa->integ_key, sa->integ_key_len);
672 sa = pool_elt_at_index(im->sad, t->input_sa_index);
673 vlib_cli_output(vm,
" last-seq %u last-seq-hi %u esn %u anti-replay %u window %U",
674 sa->last_seq, sa->last_seq_hi, sa->use_esn,
676 format_ipsec_replay_window, sa->replay_window);
677 vlib_cli_output(vm,
" remote-spi %u remote-ip %U", sa->spi,
678 format_ip4_address, &sa->tunnel_src_addr.ip4);
679 vlib_cli_output(vm,
" remote-crypto %U %U",
680 format_ipsec_crypto_alg, sa->crypto_alg,
681 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
682 vlib_cli_output(vm,
" remote-integrity %U %U",
683 format_ipsec_integ_alg, sa->integ_alg,
684 format_hex_bytes, sa->integ_key, sa->integ_key_len);
694 .path =
"show ipsec",
695 .short_help =
"show ipsec",
711 pool_foreach(p, spd->policies, ({
712 p->counter.packets = p->counter.bytes = 0;
722 .path =
"clear ipsec counters",
723 .short_help =
"clear ipsec counters",
739 memset (&a, 0,
sizeof (a));
761 else if (
unformat (line_input,
"del"))
783 case VNET_API_ERROR_INVALID_VALUE:
786 "IPSec tunnel interface already exists...");
804 .path =
"create ipsec tunnel",
805 .short_help =
"create ipsec tunnel local-ip <addr> local-spi <spi> remote-ip <addr> remote-spi <spi> [instance <inst_num>]",
818 u32 hw_if_index = (
u32) ~ 0;
863 if (alg > 0 &&
vec_len (key) == 0)
869 if (hw_if_index == (
u32) ~ 0)
886 .path =
"set interface ipsec key",
888 "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)