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"))
111 if (sa.
crypto_alg < IPSEC_CRYPTO_ALG_AES_CBC_128 ||
126 if (sa.
integ_alg < IPSEC_INTEG_ALG_SHA1_96 ||
135 else if (
unformat (line_input,
"tunnel-src %U",
138 else if (
unformat (line_input,
"tunnel-dst %U",
141 else if (
unformat (line_input,
"tunnel-src %U",
147 else if (
unformat (line_input,
"tunnel-dst %U",
193 "ipsec sa [add|del]",
215 else if (
unformat (line_input,
"del"))
217 else if (
unformat (line_input,
"%u", &spd_id))
245 "ipsec spd [add|del] <id>",
263 memset (&p, 0,
sizeof (p));
276 else if (
unformat (line_input,
"del"))
278 else if (
unformat (line_input,
"spd %u", &p.
id))
280 else if (
unformat (line_input,
"inbound"))
282 else if (
unformat (line_input,
"outbound"))
286 else if (
unformat (line_input,
"protocol %u", &tmp))
293 if (p.
policy == IPSEC_POLICY_ACTION_RESOLVE)
301 else if (
unformat (line_input,
"local-ip-range %U - %U",
305 else if (
unformat (line_input,
"remote-ip-range %U - %U",
309 else if (
unformat (line_input,
"local-ip-range %U - %U",
316 else if (
unformat (line_input,
"remote-ip-range %U - %U",
323 else if (
unformat (line_input,
"local-port-range %u - %u", &tmp, &tmp2))
329 if (
unformat (line_input,
"remote-port-range %u - %u", &tmp, &tmp2))
357 .path =
"ipsec policy",
359 "ipsec policy [add|del] spd <id> priority <n> ",
374 memset (&sa, 0,
sizeof (sa));
419 .path =
"set ipsec sa",
421 "set ipsec sa <id> crypto-key <key> integ-key <key>",
441 vlib_cli_output(vm,
"sa %u spi %u mode %s protocol %s", sa->id, sa->spi,
442 sa->is_tunnel ?
"tunnel" :
"transport",
443 sa->protocol ?
"esp" :
"ah");
444 if (sa->protocol == IPSEC_PROTOCOL_ESP) {
445 vlib_cli_output(vm,
" crypto alg %U%s%U integrity alg %U%s%U",
446 format_ipsec_crypto_alg, sa->crypto_alg,
447 sa->crypto_alg ?
" key " :
"",
448 format_hex_bytes, sa->crypto_key, sa->crypto_key_len,
449 format_ipsec_integ_alg, sa->integ_alg,
450 sa->integ_alg ?
" key " :
"",
451 format_hex_bytes, sa->integ_key, sa->integ_key_len);
453 if (sa->is_tunnel && sa->is_tunnel_ip6) {
454 vlib_cli_output(vm,
" tunnel src %U dst %U",
455 format_ip6_address, &sa->tunnel_src_addr.ip6,
456 format_ip6_address, &sa->tunnel_dst_addr.ip6);
457 } else if (sa->is_tunnel) {
458 vlib_cli_output(vm,
" tunnel src %U dst %U",
459 format_ip4_address, &sa->tunnel_src_addr.ip4,
460 format_ip4_address, &sa->tunnel_dst_addr.ip4);
468 vlib_cli_output(vm,
"spd %u", spd->id);
470 vlib_cli_output(vm,
" outbound policies");
471 vec_foreach(i, spd->ipv4_outbound_policies)
473 p = pool_elt_at_index(spd->policies, *i);
474 vlib_cli_output(vm,
" priority %d action %U protocol %s%s",
476 format_ipsec_policy_action, p->policy,
478 format(0,
"%U", format_ip_protocol, p->protocol) :
480 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
481 format(0,
" sa %u", p->sa_id) :
483 vlib_cli_output(vm,
" local addr range %U - %U port range %u - %u",
484 format_ip4_address, &p->laddr.start.ip4,
485 format_ip4_address, &p->laddr.stop.ip4,
486 p->lport.start, p->lport.stop);
487 vlib_cli_output(vm,
" remte addr range %U - %U port range %u - %u",
488 format_ip4_address, &p->raddr.start.ip4,
489 format_ip4_address, &p->raddr.stop.ip4,
490 p->rport.start, p->rport.stop);
491 vlib_cli_output(vm,
" packets %u bytes %u", p->counter.packets,
496 p = pool_elt_at_index(spd->policies, *i);
497 vlib_cli_output(vm,
" priority %d action %U protocol %s%s",
499 format_ipsec_policy_action, p->policy,
501 format(0,
"%U", format_ip_protocol, p->protocol) :
503 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
504 format(0,
" sa %u", p->sa_id) :
506 vlib_cli_output(vm,
" local addr range %U - %U port range %u - %u",
507 format_ip6_address, &p->laddr.start.ip6,
508 format_ip6_address, &p->laddr.stop.ip6,
509 p->lport.start, p->lport.stop);
510 vlib_cli_output(vm,
" remote addr range %U - %U port range %u - %u",
511 format_ip6_address, &p->raddr.start.ip6,
512 format_ip6_address, &p->raddr.stop.ip6,
513 p->rport.start, p->rport.stop);
514 vlib_cli_output(vm,
" packets %u bytes %u", p->counter.packets,
518 vec_foreach(
i, spd->ipv4_inbound_protect_policy_indices)
527 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
528 format(0,
" sa %u", p->sa_id) :
533 p->lport.start, p->lport.stop);
537 p->rport.start, p->rport.stop);
541 vec_foreach(
i, spd->ipv4_inbound_policy_discard_and_bypass_indices)
550 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
551 format(0,
" sa %u", p->sa_id) :
556 p->lport.start, p->lport.stop);
560 p->rport.start, p->rport.stop);
564 vec_foreach(
i, spd->ipv6_inbound_protect_policy_indices)
573 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
574 format(0,
" sa %u", p->sa_id) :
579 p->lport.start, p->lport.stop);
583 p->rport.start, p->rport.stop);
587 vec_foreach(
i, spd->ipv6_inbound_policy_discard_and_bypass_indices)
596 p->policy == IPSEC_POLICY_ACTION_PROTECT ?
597 format(0,
" sa %u", p->sa_id) :
602 p->lport.start, p->lport.stop);
606 p->rport.start, p->rport.stop);
616 if (t->hw_if_index == ~0)
618 hi = vnet_get_hw_interface (im->vnet_main, t->hw_if_index);
619 vlib_cli_output(vm,
" %s seq", hi->name);
620 sa = pool_elt_at_index(im->sad, t->output_sa_index);
621 vlib_cli_output(vm,
" seq %u seq-hi %u esn %u anti-replay %u",
622 sa->seq, sa->seq_hi, sa->use_esn, sa->use_anti_replay);
623 vlib_cli_output(vm,
" local-spi %u local-ip %U", sa->spi,
624 format_ip4_address, &sa->tunnel_src_addr.ip4);
625 vlib_cli_output(vm,
" local-crypto %U %U",
626 format_ipsec_crypto_alg, sa->crypto_alg,
627 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
628 vlib_cli_output(vm,
" local-integrity %U %U",
629 format_ipsec_integ_alg, sa->integ_alg,
630 format_hex_bytes, sa->integ_key, sa->integ_key_len);
631 sa = pool_elt_at_index(im->sad, t->input_sa_index);
632 vlib_cli_output(vm,
" last-seq %u last-seq-hi %u esn %u anti-replay %u window %U",
633 sa->last_seq, sa->last_seq_hi, sa->use_esn,
635 format_ipsec_replay_window, sa->replay_window);
636 vlib_cli_output(vm,
" remote-spi %u remote-ip %U", sa->spi,
637 format_ip4_address, &sa->tunnel_src_addr.ip4);
638 vlib_cli_output(vm,
" remote-crypto %U %U",
639 format_ipsec_crypto_alg, sa->crypto_alg,
640 format_hex_bytes, sa->crypto_key, sa->crypto_key_len);
641 vlib_cli_output(vm,
" remote-integrity %U %U",
642 format_ipsec_integ_alg, sa->integ_alg,
643 format_hex_bytes, sa->integ_key, sa->integ_key_len);
651 .path =
"show ipsec",
652 .short_help =
"show ipsec",
668 pool_foreach(p, spd->policies, ({
669 p->counter.packets = p->counter.bytes = 0;
679 .path =
"clear ipsec counters",
680 .short_help =
"clear ipsec counters",
696 memset (&a, 0,
sizeof (a));
716 else if (
unformat (line_input,
"del"))
738 case VNET_API_ERROR_INVALID_VALUE:
741 "IPSec tunnel interface already exists...");
759 .path =
"create ipsec tunnel",
760 .short_help =
"create ipsec tunnel local-ip <addr> local-spi <spi> remote-ip <addr> remote-spi <spi>",
773 u32 hw_if_index = (
u32) ~ 0;
818 if (alg > 0 &&
vec_len (key) == 0)
824 if (hw_if_index == (
u32) ~ 0)
841 .path =
"set interface ipsec key",
843 "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)
sll srl srl sll sra u16x4 i
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)
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)
int ipsec_add_del_sa(vlib_main_t *vm, ipsec_sa_t *new_sa, int is_add)
clib_error_t * ipsec_cli_init(vlib_main_t *vm)
#define vec_free(V)
Free vector's memory (no header).
int ipsec_set_sa_key(vlib_main_t *vm, ipsec_sa_t *sa_update)
#define VLIB_CLI_COMMAND(x,...)
ip46_address_range_t raddr
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)