33 if (id->
type == IKEV2_ID_TYPE_ID_FQDN ||
34 id->
type == IKEV2_ID_TYPE_ID_RFC822_ADDR)
65 vlib_cli_output(vm,
" iip %U ispi %lx rip %U rspi %lx",
66 format_ip4_address, &sa->iaddr, sa->ispi,
67 format_ip4_address, &sa->raddr, sa->rspi);
69 tr = ikev2_sa_get_td_for_type(sa->r_proposals, IKEV2_TRANSFORM_TYPE_ENCR);
70 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
72 tr = ikev2_sa_get_td_for_type(sa->r_proposals, IKEV2_TRANSFORM_TYPE_PRF);
73 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
75 tr = ikev2_sa_get_td_for_type(sa->r_proposals, IKEV2_TRANSFORM_TYPE_INTEG);
76 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
78 tr = ikev2_sa_get_td_for_type(sa->r_proposals, IKEV2_TRANSFORM_TYPE_DH);
79 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
81 vlib_cli_output(vm,
" %v", s);
84 vlib_cli_output(vm,
" nonce i:%U\n r:%U",
85 format_hex_bytes, sa->i_nonce, vec_len(sa->i_nonce),
86 format_hex_bytes, sa->r_nonce, vec_len(sa->r_nonce));
88 vlib_cli_output(vm,
" SK_d %U",
89 format_hex_bytes, sa->sk_d, vec_len(sa->sk_d));
90 vlib_cli_output(vm,
" SK_a i:%U\n r:%U",
91 format_hex_bytes, sa->sk_ai, vec_len(sa->sk_ai),
92 format_hex_bytes, sa->sk_ar, vec_len(sa->sk_ar));
93 vlib_cli_output(vm,
" SK_e i:%U\n r:%U",
94 format_hex_bytes, sa->sk_ei, vec_len(sa->sk_ei),
95 format_hex_bytes, sa->sk_er, vec_len(sa->sk_er));
96 vlib_cli_output(vm,
" SK_p i:%U\n r:%U",
97 format_hex_bytes, sa->sk_pi, vec_len(sa->sk_pi),
98 format_hex_bytes, sa->sk_pr, vec_len(sa->sk_pr));
100 vlib_cli_output(vm,
" identifier (i) %U",
101 format_ikev2_id_type_and_data, &sa->i_id);
102 vlib_cli_output(vm,
" identifier (r) %U",
103 format_ikev2_id_type_and_data, &sa->r_id);
105 vec_foreach(child, sa->childs)
107 vlib_cli_output(vm,
" child sa %u:", child - sa->childs);
109 tr = ikev2_sa_get_td_for_type(child->r_proposals, IKEV2_TRANSFORM_TYPE_ENCR);
110 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
112 tr = ikev2_sa_get_td_for_type(child->r_proposals, IKEV2_TRANSFORM_TYPE_INTEG);
113 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
115 tr = ikev2_sa_get_td_for_type(child->r_proposals, IKEV2_TRANSFORM_TYPE_ESN);
116 s = format(s,
"%U ", format_ikev2_sa_transform, tr);
118 vlib_cli_output(vm,
" %v", s);
121 vlib_cli_output(vm,
" spi(i) %lx spi(r) %lx",
122 child->i_proposals ? child->i_proposals[0].spi : 0,
123 child->r_proposals ? child->r_proposals[0].spi : 0);
125 vlib_cli_output(vm,
" SK_e i:%U\n r:%U",
126 format_hex_bytes, child->sk_ei, vec_len(child->sk_ei),
127 format_hex_bytes, child->sk_er, vec_len(child->sk_er));
128 vlib_cli_output(vm,
" SK_a i:%U\n r:%U",
129 format_hex_bytes, child->sk_ai, vec_len(child->sk_ai),
130 format_hex_bytes, child->sk_ar, vec_len(child->sk_ar));
131 vlib_cli_output(vm,
" traffic selectors (i):");
132 vec_foreach(ts, child->tsi)
134 vlib_cli_output(vm,
" %u type %u protocol_id %u addr " 135 "%U - %U port %u - %u",
137 ts->ts_type, ts->protocol_id,
138 format_ip4_address, &ts->start_addr,
139 format_ip4_address, &ts->end_addr,
140 clib_net_to_host_u16( ts->start_port),
141 clib_net_to_host_u16( ts->end_port));
143 vlib_cli_output(vm,
" traffic selectors (r):");
144 vec_foreach(ts, child->tsr)
146 vlib_cli_output(vm,
" %u type %u protocol_id %u addr " 147 "%U - %U port %u - %u",
149 ts->ts_type, ts->protocol_id,
150 format_ip4_address, &ts->start_addr,
151 format_ip4_address, &ts->end_addr,
152 clib_net_to_host_u16( ts->start_port),
153 clib_net_to_host_u16( ts->end_port));
165 .path =
"show ikev2 sa",
166 .short_help =
"show ikev2 sa",
181 u32 tmp1, tmp2, tmp3;
185 const char *valid_chars =
"a-zA-Z0-9_";
204 else if (
unformat (line_input,
"set %U auth shared-key-mic string %v",
209 IKEV2_AUTH_METHOD_SHARED_KEY_MIC, data,
213 else if (
unformat (line_input,
"set %U auth shared-key-mic hex %U",
219 IKEV2_AUTH_METHOD_SHARED_KEY_MIC, data,
223 else if (
unformat (line_input,
"set %U auth rsa-sig cert-file %v",
231 else if (
unformat (line_input,
"set %U id local %U %U",
242 else if (
unformat (line_input,
"set %U id local %U 0x%U",
251 else if (
unformat (line_input,
"set %U id local %U %v",
259 else if (
unformat (line_input,
"set %U id remote %U %U",
270 else if (
unformat (line_input,
"set %U id remote %U 0x%U",
279 else if (
unformat (line_input,
"set %U id remote %U %v",
287 else if (
unformat (line_input,
"set %U traffic-selector local " 288 "ip-range %U - %U port-range %u - %u protocol %u",
292 &tmp1, &tmp2, &tmp3))
299 else if (
unformat (line_input,
"set %U traffic-selector remote " 300 "ip-range %U - %U port-range %u - %u protocol %u",
304 &tmp1, &tmp2, &tmp3))
327 .path =
"ikev2 profile",
329 "ikev2 profile [add|del] <id>\n" 330 "ikev2 profile set <id> auth [rsa-sig|shared-key-mic] [cert-file|string|hex]" 332 "ikev2 profile set <id> id <local|remote> <type> <data>\n" 333 "ikev2 profile set <id> traffic-selector <local|remote> ip-range " 334 "<start-addr> - <end-addr> port-range <start-port> - <end-port> " 335 "protocol <protocol-number>",
350 vlib_cli_output(vm,
"profile %v", p->name);
355 vlib_cli_output(vm,
" auth-method %U auth data 0x%U",
356 format_ikev2_auth_method, p->auth.method,
357 format_hex_bytes, p->auth.data, vec_len(p->auth.data));
359 vlib_cli_output(vm,
" auth-method %U auth data %v",
360 format_ikev2_auth_method, p->auth.method, p->auth.data);
365 if (p->loc_id.type == IKEV2_ID_TYPE_ID_IPV4_ADDR)
366 vlib_cli_output(vm,
" local id-type %U data %U",
367 format_ikev2_id_type, p->loc_id.type,
368 format_ip4_address, p->loc_id.data);
369 else if (p->loc_id.type == IKEV2_ID_TYPE_ID_KEY_ID)
370 vlib_cli_output(vm,
" local id-type %U data 0x%U",
371 format_ikev2_id_type, p->loc_id.type,
372 format_hex_bytes, p->loc_id.data,
373 vec_len(p->loc_id.data));
375 vlib_cli_output(vm,
" local id-type %U data %v",
376 format_ikev2_id_type, p->loc_id.type, p->loc_id.data);
381 if (p->rem_id.type == IKEV2_ID_TYPE_ID_IPV4_ADDR)
382 vlib_cli_output(vm,
" remote id-type %U data %U",
383 format_ikev2_id_type, p->rem_id.type,
384 format_ip4_address, p->rem_id.data);
385 else if (p->rem_id.type == IKEV2_ID_TYPE_ID_KEY_ID)
386 vlib_cli_output(vm,
" remote id-type %U data 0x%U",
387 format_ikev2_id_type, p->rem_id.type,
388 format_hex_bytes, p->rem_id.data,
389 vec_len(p->rem_id.data));
391 vlib_cli_output(vm,
" remote id-type %U data %v",
392 format_ikev2_id_type, p->rem_id.type, p->rem_id.data);
396 vlib_cli_output(vm,
" local traffic-selector addr %U - %U port %u - %u" 404 vlib_cli_output(vm,
" remote traffic-selector addr %U - %U port %u - %u" 418 .path =
"show ikev2 profile",
419 .short_help =
"show ikev2 profile",
438 if (
unformat (line_input,
"%s", &data))
458 .path =
"set ikev2 local key",
460 "set ikev2 local key <file>",
ikev2_main_per_thread_data_t * per_thread_data
u8 * format_ikev2_id_type_and_data(u8 *s, va_list *args)
clib_error_t * ikev2_add_del_profile(vlib_main_t *vm, u8 *name, int is_add)
ikev2_profile_t * profiles
uword unformat_ikev2_id_type(unformat_input_t *input, va_list *args)
static clib_error_t * show_ikev2_sa_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
#define VLIB_INIT_FUNCTION(x)
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
clib_error_t * ikev2_set_profile_auth(vlib_main_t *vm, u8 *name, u8 auth_method, u8 *auth_data, u8 data_hex_format)
clib_error_t * ikev2_set_profile_id(vlib_main_t *vm, u8 *name, u8 id_type, u8 *data, int is_local)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
clib_error_t * ikev2_set_local_key(vlib_main_t *vm, u8 *file)
clib_error_t * ikev2_set_profile_ts(vlib_main_t *vm, u8 *name, u8 protocol_id, u16 start_port, u16 end_port, ip4_address_t start_addr, ip4_address_t end_addr, int is_local)
#define vec_free(V)
Free vector's memory (no header).
#define clib_memcpy(a, b, c)
#define VLIB_CLI_COMMAND(x,...)
static clib_error_t * show_ikev2_profile_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static clib_error_t * set_ikev2_local_key_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t * ikev2_cli_init(vlib_main_t *vm)
#define vec_foreach(var, vec)
Vector iterator.
#define clib_error_return(e, args...)
static clib_error_t * ikev2_profile_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u8 * format_ikev2_id_type(u8 *s, va_list *args)