summaryrefslogtreecommitdiffstats
path: root/src/vppinfra/test_serialize.c
blob: 5c931b760231ccbe32a8b0be9f55a71477e0676c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2005 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include <vppinfra/format.h>
#include <vppinfra/random.h>
#include <vppinfra/serialize.h>
#include <vppinfra/os.h>

#define foreach_my_vector_type			\
  _ (u8, a8)					\
  _ (u16, a16)					\
  _ (u32, a32)

typedef struct
{
#define _(t,f) t f;
  foreach_my_vector_type
#undef _
} my_vector_type_t;

static void
serialize_my_vector_type_single (serialize_main_t * m, va_list * va)
{
  my_vector_type_t *v = va_arg (*va, my_vector_type_t *);
  u32 n = va_arg (*va, u32);
  u32 i;

  for (i = 0; i < n; i++)
    {
#define _(t,f) serialize_integer (m, v[i].f, sizeof (v[i].f));
      foreach_my_vector_type;
    }
#undef _
}

static void
unserialize_my_vector_type_single (serialize_main_t * m, va_list * va)
{
  my_vector_type_t *v = va_arg (*va, my_vector_type_t *);
  u32 n = va_arg (*va, u32);
  u32 i;

  for (i = 0; i < n; i++)
    {
#define _(t,f) { u32 tmp; unserialize_integer (m, &tmp, sizeof (v[i].f)); v[i].f = tmp; }
      foreach_my_vector_type;
#undef _
    }
}

static void
serialize_my_vector_type_multiple (serialize_main_t * m, va_list * va)
{
  my_vector_type_t *v = va_arg (*va, my_vector_type_t *);
  u32 n = va_arg (*va, u32);

#define _(t,f)					\
  serialize_multiple				\
    (m,						\
     &v[0].f,					\
     STRUCT_SIZE_OF (my_vector_type_t, f),	\
     STRUCT_STRIDE_OF (my_vector_type_t, f),	\
     n);

  foreach_my_vector_type;

#undef _
}

static void
unserialize_my_vector_type_multiple (serialize_main_t * m, va_list * va)
{
  my_vector_type_t *v = va_arg (*va, my_vector_type_t *);
  u32 n = va_arg (*va, u32);

#define _(t,f)					\
  unserialize_multiple				\
    (m,						\
     &v[0].f,					\
     STRUCT_SIZE_OF (my_vector_type_t, f),	\
     STRUCT_STRIDE_OF (my_vector_type_t, f),	\
     n);

  foreach_my_vector_type;

#undef _
}

typedef struct
{
  u32 n_iter;
  u32 seed;
  u32 verbose;
  u32 multiple;
  u32 max_len;

  my_vector_type_t **test_vectors;

  char *dump_file;

  serialize_main_t serialize_main;
  serialize_main_t unserialize_main;
} test_serialize_main_t;

int
test_serialize_main (unformat_input_t * input)
{
  clib_error_t *error = 0;
  test_serialize_main_t _tm, *tm = &_tm;
  serialize_main_t *sm = &tm->serialize_main;
  serialize_main_t *um = &tm->unserialize_main;
  uword i;

  clib_memset (tm, 0, sizeof (tm[0]));
  tm->n_iter = 100;
  tm->seed = 1;
  tm->max_len = 128;
  tm->verbose = 0;
  tm->multiple = 1;

  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
    {
      if (unformat (input, "iter %d", &tm->n_iter))
	;
      else if (unformat (input, "seed %d", &tm->seed))
	;
      else if (unformat (input, "file %s", &tm->dump_file))
	;
      else if (unformat (input, "max-len %d", &tm->max_len))
	;
      else if (unformat (input, "multiple %=", &tm->multiple, 1))
	;
      else if (unformat (input, "single %=", &tm->multiple, 0))
	;
      else if (unformat (input, "verbose %=", &tm->verbose, 1))
	;
      else
	{
	  error = clib_error_create ("unknown input `%U'\n",
				     format_unformat_error, input);
	  goto done;
	}
    }

  if (tm->seed == 0)
    tm->seed = random_default_seed ();

  clib_warning ("iter %d seed %d max-len %d", tm->n_iter, tm->seed,
		tm->max_len);

#ifdef CLIB_UNIX
  if (tm->dump_file)
    serialize_open_clib_file (sm, tm->dump_file);
  else
#endif
    serialize_open_vector (sm, 0);

  vec_resize (tm->test_vectors, tm->n_iter);
  for (i = 0; i < tm->n_iter; i++)
    {
      uword l = 1 + (random_u32 (&tm->seed) % tm->max_len);
      my_vector_type_t *mv;

      vec_resize (tm->test_vectors[i], l);
      vec_foreach (mv, tm->test_vectors[i])
      {
#define _(t,f) mv->f = random_u32 (&tm->seed) & pow2_mask (31);
	foreach_my_vector_type;
#undef _
      }

      vec_serialize (sm, tm->test_vectors[i],
		     tm->multiple ? serialize_my_vector_type_multiple :
		     serialize_my_vector_type_single);
    }

  if (tm->verbose)
    clib_warning ("overflow vector max bytes %d",
		  vec_max_len (sm->stream.overflow_buffer));

  serialize_close (sm);

#ifdef CLIB_UNIX
  if (tm->dump_file)
    {
      if ((error = unserialize_open_clib_file (um, tm->dump_file)))
	goto done;
    }
  else
#endif
    {
      u8 *v = serialize_close_vector (sm);
      unserialize_open_data (um, v, vec_len (v));
    }

  for (i = 0; i < tm->n_iter; i++)
    {
      my_vector_type_t *mv0;
      my_vector_type_t *mv1;

      vec_unserialize (um, &mv0,
		       tm->multiple ? unserialize_my_vector_type_multiple :
		       unserialize_my_vector_type_single);
      mv1 = tm->test_vectors[i];

      if (vec_len (mv0) != vec_len (mv1))
	os_panic ();
      if (memcmp (mv0, mv1, vec_len (mv0) * sizeof (mv0[0])))
	os_panic ();

      vec_free (mv0);
    }

done:
  if (error)
    clib_error_report (error);
  return 0;
}

#ifdef CLIB_UNIX
int
main (int argc, char *argv[])
{
  unformat_input_t i;
  int r;

  clib_mem_init (0, 64ULL << 20);

  unformat_init_command_line (&i, argv);
  r = test_serialize_main (&i);
  unformat_free (&i);
  return r;
}
#endif

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
pan class="o">*child = va_arg (*va, ikev2_child_sa_t *); u32 index = va_arg (*va, u32); ikev2_ts_t *ts; ikev2_sa_transform_t *tr; u8 *c = 0; u32 indent = format_get_indent (s); indent += 1; s = format (s, "child sa %u:", index); tr = ikev2_sa_get_td_for_type (child->r_proposals, IKEV2_TRANSFORM_TYPE_ENCR); c = format (c, "%U ", format_ikev2_sa_transform, tr); tr = ikev2_sa_get_td_for_type (child->r_proposals, IKEV2_TRANSFORM_TYPE_INTEG); c = format (c, "%U ", format_ikev2_sa_transform, tr); tr = ikev2_sa_get_td_for_type (child->r_proposals, IKEV2_TRANSFORM_TYPE_ESN); c = format (c, "%U ", format_ikev2_sa_transform, tr); s = format (s, "%v\n", c); vec_free (c); s = format (s, "%Uspi(i) %lx spi(r) %lx\n", format_white_space, indent, child->i_proposals ? child->i_proposals[0].spi : 0, child->r_proposals ? child->r_proposals[0].spi : 0); s = format (s, "%USK_e i:%U\n%Ur:%U\n", format_white_space, indent, format_hex_bytes, child->sk_ei, vec_len (child->sk_ei), format_white_space, indent + 6, format_hex_bytes, child->sk_er, vec_len (child->sk_er)); if (child->sk_ai) { s = format (s, "%USK_a i:%U\n%Ur:%U\n", format_white_space, indent, format_hex_bytes, child->sk_ai, vec_len (child->sk_ai), format_white_space, indent + 6, format_hex_bytes, child->sk_ar, vec_len (child->sk_ar)); } s = format (s, "%Utraffic selectors (i):", format_white_space, indent); vec_foreach (ts, child->tsi) s = format (s, "%U", format_ikev2_traffic_selector, ts, ts - child->tsi); s = format (s, "%Utraffic selectors (r):", format_white_space, indent); vec_foreach (ts, child->tsr) s = format (s, "%U", format_ikev2_traffic_selector, ts, ts - child->tsr); return s; } static u8 * format_ikev2_sa (u8 * s, va_list * va) { ikev2_sa_t *sa = va_arg (*va, ikev2_sa_t *); int details = va_arg (*va, int); ikev2_sa_transform_t *tr; ikev2_child_sa_t *child; u32 indent = 1; s = format (s, "iip %U ispi %lx rip %U rspi %lx", format_ip_address, &sa->iaddr, sa->ispi, format_ip_address, &sa->raddr, sa->rspi); if (!details) return s; s = format (s, "\n%U", format_white_space, indent); tr = ikev2_sa_get_td_for_type (sa->r_proposals, IKEV2_TRANSFORM_TYPE_ENCR); s = format (s, "%U ", format_ikev2_sa_transform, tr); tr = ikev2_sa_get_td_for_type (sa->r_proposals, IKEV2_TRANSFORM_TYPE_PRF); s = format (s, "%U ", format_ikev2_sa_transform, tr); tr = ikev2_sa_get_td_for_type (sa->r_proposals, IKEV2_TRANSFORM_TYPE_INTEG); s = format (s, "%U ", format_ikev2_sa_transform, tr); tr = ikev2_sa_get_td_for_type (sa->r_proposals, IKEV2_TRANSFORM_TYPE_DH); s = format (s, "%U", format_ikev2_sa_transform, tr); s = format (s, "\n%U", format_white_space, indent); s = format (s, "nonce i:%U\n%Ur:%U\n", format_hex_bytes, sa->i_nonce, vec_len (sa->i_nonce), format_white_space, indent + 6, format_hex_bytes, sa->r_nonce, vec_len (sa->r_nonce)); s = format (s, "%USK_d %U\n", format_white_space, indent, format_hex_bytes, sa->sk_d, vec_len (sa->sk_d)); if (sa->sk_ai) { s = format (s, "%USK_a i:%U\n%Ur:%U\n", format_white_space, indent, format_hex_bytes, sa->sk_ai, vec_len (sa->sk_ai), format_white_space, indent + 6, format_hex_bytes, sa->sk_ar, vec_len (sa->sk_ar)); } s = format (s, "%USK_e i:%U\n%Ur:%U\n", format_white_space, indent, format_hex_bytes, sa->sk_ei, vec_len (sa->sk_ei), format_white_space, indent + 6, format_hex_bytes, sa->sk_er, vec_len (sa->sk_er)); s = format (s, "%USK_p i:%U\n%Ur:%U\n", format_white_space, indent, format_hex_bytes, sa->sk_pi, vec_len (sa->sk_pi), format_white_space, indent + 6, format_hex_bytes, sa->sk_pr, vec_len (sa->sk_pr)); s = format (s, "%Uidentifier (i) %U\n", format_white_space, indent, format_ikev2_id_type_and_data, &sa->i_id); s = format (s, "%Uidentifier (r) %U\n", format_white_space, indent, format_ikev2_id_type_and_data, &sa->r_id); vec_foreach (child, sa->childs) { s = format (s, "%U%U", format_white_space, indent + 2, format_ikev2_child_sa, child, child - sa->childs); } s = format (s, "Stats:\n"); s = format (s, " keepalives :%u\n", sa->stats.n_keepalives); s = format (s, " rekey :%u\n", sa->stats.n_rekey_req); s = format (s, " SA init :%u (retransmit: %u)\n", sa->stats.n_sa_init_req, sa->stats.n_init_retransmit); s = format (s, " retransmit: %u\n", sa->stats.n_retransmit); s = format (s, " SA auth :%u\n", sa->stats.n_sa_auth_req); return s; } static clib_error_t * show_ikev2_sa_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; ikev2_main_t *km = &ikev2_main; ikev2_main_per_thread_data_t *tkm; ikev2_sa_t *sa; u64 rspi; u8 *s = 0; int details = 0, show_one = 0; if (unformat_user (input, unformat_line_input, line_input)) { while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "rspi %lx", &rspi)) { show_one = 1; } else if (unformat (line_input, "details")) details = 1; else break; } unformat_free (line_input); } vec_foreach (tkm, km->per_thread_data) { /* *INDENT-OFF* */ pool_foreach (sa, tkm->sas) { if (show_one) { if (sa->rspi == rspi) { s = format (s, "%U\n", format_ikev2_sa, sa, 1); break; } } else s = format (s, "%U\n", format_ikev2_sa, sa, details); } /* *INDENT-ON* */ } vlib_cli_output (vm, "%v", s); vec_free (s); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_ikev2_sa_command, static) = { .path = "show ikev2 sa", .short_help = "show ikev2 sa [rspi <rspi>] [details]", .function = show_ikev2_sa_command_fn, }; /* *INDENT-ON* */ static clib_error_t * ikev2_disable_dpd_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { ikev2_disable_dpd (); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (ikev2_cli_disable_dpd_command, static) = { .path = "ikev2 dpd disable", .short_help = "ikev2 dpd disable", .function = ikev2_disable_dpd_command_fn, }; /* *INDENT-ON* */ static uword unformat_ikev2_token (unformat_input_t * input, va_list * va) { u8 **string_return = va_arg (*va, u8 **); const char *token_chars = "a-zA-Z0-9_"; if (*string_return) { /* if string_return was already allocated (eg. because of a previous * partial match with a successful unformat_token()), we must free it * before reusing the pointer, otherwise we'll be leaking memory */ vec_free (*string_return); *string_return = 0; } return unformat_user (input, unformat_token, token_chars, string_return); } static clib_error_t * ikev2_profile_add_del_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); unformat_input_t _line_input, *line_input = &_line_input; u8 *name = 0; clib_error_t *r = 0; u32 id_type; u8 *data = 0; u32 tmp1, tmp2, tmp3; u64 tmp4, tmp5; ip_address_t ip, end_addr; u32 responder_sw_if_index = (u32) ~ 0; u32 tun_sw_if_index = (u32) ~ 0; ikev2_transform_encr_type_t crypto_alg; ikev2_transform_integ_type_t integ_alg; ikev2_transform_dh_type_t dh_type; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "add %U", unformat_ikev2_token, &name)) { r = ikev2_add_del_profile (vm, name, 1); goto done; } else if (unformat (line_input, "del %U", unformat_ikev2_token, &name)) { r = ikev2_add_del_profile (vm, name, 0); goto done; } else if (unformat (line_input, "set %U auth shared-key-mic string %v", unformat_ikev2_token, &name, &data)) { r = ikev2_set_profile_auth (vm, name, IKEV2_AUTH_METHOD_SHARED_KEY_MIC, data, 0); goto done; } else if (unformat (line_input, "set %U auth shared-key-mic hex %U", unformat_ikev2_token, &name, unformat_hex_string, &data)) { r = ikev2_set_profile_auth (vm, name, IKEV2_AUTH_METHOD_SHARED_KEY_MIC, data, 1); goto done; } else if (unformat (line_input, "set %U auth rsa-sig cert-file %v", unformat_ikev2_token, &name, &data)) { r = ikev2_set_profile_auth (vm, name, IKEV2_AUTH_METHOD_RSA_SIG, data, 0); goto done; } else if (unformat (line_input, "set %U id local %U %U", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, unformat_ip_address, &ip)) { data = vec_new (u8, ip_address_size (&ip)); clib_memcpy (data, ip_addr_bytes (&ip), ip_address_size (&ip)); r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*local */ 1); goto done; } else if (unformat (line_input, "set %U id local %U 0x%U", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, unformat_hex_string, &data)) { r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*local */ 1); goto done; } else if (unformat (line_input, "set %U id local %U %v", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, &data)) { r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*local */ 1); goto done; } else if (unformat (line_input, "set %U id remote %U %U", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, unformat_ip_address, &ip)) { data = vec_new (u8, ip_address_size (&ip)); clib_memcpy (data, ip_addr_bytes (&ip), ip_address_size (&ip)); r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*remote */ 0); goto done; } else if (unformat (line_input, "set %U id remote %U 0x%U", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, unformat_hex_string, &data)) { r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*remote */ 0); goto done; } else if (unformat (line_input, "set %U id remote %U %v", unformat_ikev2_token, &name, unformat_ikev2_id_type, &id_type, &data)) { r = ikev2_set_profile_id (vm, name, (u8) id_type, data, /*remote */ 0); goto done; } else if (unformat (line_input, "set %U traffic-selector local " "ip-range %U - %U port-range %u - %u protocol %u", unformat_ikev2_token, &name, unformat_ip_address, &ip, unformat_ip_address, &end_addr, &tmp1, &tmp2, &tmp3)) { r = ikev2_set_profile_ts (vm, name, (u8) tmp3, (u16) tmp1, (u16) tmp2, ip, end_addr, /*local */ 1); goto done; } else if (unformat (line_input, "set %U traffic-selector remote " "ip-range %U - %U port-range %u - %u protocol %u", unformat_ikev2_token, &name, unformat_ip_address, &ip, unformat_ip_address, &end_addr, &tmp1, &tmp2, &tmp3)) { r = ikev2_set_profile_ts (vm, name, (u8) tmp3, (u16) tmp1, (u16) tmp2, ip, end_addr, /*remote */ 0); goto done; } else if (unformat (line_input, "set %U responder %U %U", unformat_ikev2_token, &name, unformat_vnet_sw_interface, vnm, &responder_sw_if_index, unformat_ip_address, &ip)) { r = ikev2_set_profile_responder (vm, name, responder_sw_if_index, ip); goto done; } else if (unformat (line_input, "set %U responder %U %v", unformat_ikev2_token, &name, unformat_vnet_sw_interface, vnm, &responder_sw_if_index, &data)) { r = ikev2_set_profile_responder_hostname (vm, name, data, responder_sw_if_index); goto done; } else if (unformat (line_input, "set %U tunnel %U", unformat_ikev2_token, &name, unformat_vnet_sw_interface, vnm, &tun_sw_if_index)) { r = ikev2_set_profile_tunnel_interface (vm, name, tun_sw_if_index); goto done; } else if (unformat (line_input, "set %U ike-crypto-alg %U %u ike-integ-alg %U ike-dh %U", unformat_ikev2_token, &name, unformat_ikev2_transform_encr_type, &crypto_alg, &tmp1, unformat_ikev2_transform_integ_type, &integ_alg, unformat_ikev2_transform_dh_type, &dh_type)) { r = ikev2_set_profile_ike_transforms (vm, name, crypto_alg, integ_alg, dh_type, tmp1); goto done; } else if (unformat (line_input, "set %U ike-crypto-alg %U %u ike-dh %U", unformat_ikev2_token, &name, unformat_ikev2_transform_encr_type, &crypto_alg, &tmp1, unformat_ikev2_transform_dh_type, &dh_type)) { r = ikev2_set_profile_ike_transforms (vm, name, crypto_alg, IKEV2_TRANSFORM_INTEG_TYPE_NONE, dh_type, tmp1); goto done; } else if (unformat (line_input, "set %U esp-crypto-alg %U %u esp-integ-alg %U", unformat_ikev2_token, &name, unformat_ikev2_transform_encr_type, &crypto_alg, &tmp1, unformat_ikev2_transform_integ_type, &integ_alg)) { r = ikev2_set_profile_esp_transforms (vm, name, crypto_alg, integ_alg, tmp1); goto done; } else if (unformat (line_input, "set %U esp-crypto-alg %U %u", unformat_ikev2_token, &name, unformat_ikev2_transform_encr_type, &crypto_alg, &tmp1)) { r = ikev2_set_profile_esp_transforms (vm, name, crypto_alg, 0, tmp1); goto done; } else if (unformat (line_input, "set %U sa-lifetime %lu %u %u %lu", unformat_ikev2_token, &name, &tmp4, &tmp1, &tmp2, &tmp5)) { r = ikev2_set_profile_sa_lifetime (vm, name, tmp4, tmp1, tmp2, tmp5); goto done; } else if (unformat (line_input, "set %U udp-encap", unformat_ikev2_token, &name)) { r = ikev2_set_profile_udp_encap (vm, name); goto done; } else if (unformat (line_input, "set %U ipsec-over-udp port %u", unformat_ikev2_token, &name, &tmp1)) { int rv = ikev2_set_profile_ipsec_udp_port (vm, name, tmp1, 1); if (rv) r = clib_error_return (0, "Error: %U", format_vnet_api_errno, rv); goto done; } else if (unformat (line_input, "set %U disable natt", unformat_ikev2_token, &name)) { r = ikev2_profile_natt_disable (name); goto done; } else break; } r = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); done: vec_free (name); vec_free (data); unformat_free (line_input); return r; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (ikev2_profile_add_del_command, static) = { .path = "ikev2 profile", .short_help = "ikev2 profile [add|del] <id>\n" "ikev2 profile set <id> auth [rsa-sig|shared-key-mic] [cert-file|string|hex]" " <data>\n" "ikev2 profile set <id> id <local|remote> <type> <data>\n" "ikev2 profile set <id> tunnel <interface>\n" "ikev2 profile set <id> udp-encap\n" "ikev2 profile set <id> traffic-selector <local|remote> ip-range " "<start-addr> - <end-addr> port-range <start-port> - <end-port> " "protocol <protocol-number>\n" "ikev2 profile set <id> responder <interface> <addr>\n" "ikev2 profile set <id> ike-crypto-alg <crypto alg> <key size> ike-integ-alg <integ alg> ike-dh <dh type>\n" "ikev2 profile set <id> esp-crypto-alg <crypto alg> <key size> " "[esp-integ-alg <integ alg>]\n" "ikev2 profile set <id> sa-lifetime <seconds> <jitter> <handover> <max bytes>" "ikev2 profile set <id> disable natt\n", .function = ikev2_profile_add_del_command_fn, }; /* *INDENT-ON* */ static clib_error_t * show_ikev2_profile_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { ikev2_main_t *km = &ikev2_main; ikev2_profile_t *p; /* *INDENT-OFF* */ pool_foreach (p, km->profiles) { vlib_cli_output(vm, "profile %v", p->name); if (p->auth.data) { if (p->auth.hex) vlib_cli_output(vm, " auth-method %U auth data 0x%U", format_ikev2_auth_method, p->auth.method, format_hex_bytes, p->auth.data, vec_len(p->auth.data)); else vlib_cli_output(vm, " auth-method %U auth data %v", format_ikev2_auth_method, p->auth.method, p->auth.data); } if (p->loc_id.data) vlib_cli_output(vm, " local %U", format_ikev2_id_type_and_data, &p->loc_id); if (p->rem_id.data) vlib_cli_output(vm, " remote %U", format_ikev2_id_type_and_data, &p->rem_id); if (!ip_address_is_zero (&p->loc_ts.start_addr)) vlib_cli_output(vm, " local traffic-selector addr %U - %U port %u - %u" " protocol %u", format_ip_address, &p->loc_ts.start_addr, format_ip_address, &p->loc_ts.end_addr, p->loc_ts.start_port, p->loc_ts.end_port, p->loc_ts.protocol_id); if (!ip_address_is_zero (&p->rem_ts.start_addr)) vlib_cli_output(vm, " remote traffic-selector addr %U - %U port %u - %u" " protocol %u", format_ip_address, &p->rem_ts.start_addr, format_ip_address, &p->rem_ts.end_addr, p->rem_ts.start_port, p->rem_ts.end_port, p->rem_ts.protocol_id); if (~0 != p->tun_itf) vlib_cli_output(vm, " protected tunnel %U", format_vnet_sw_if_index_name, vnet_get_main(), p->tun_itf); if (~0 != p->responder.sw_if_index) vlib_cli_output (vm, " responder %U %U %v", format_vnet_sw_if_index_name, vnet_get_main (), p->responder.sw_if_index, format_ip_address, &p->responder.addr, p->responder.hostname); if (p->udp_encap) vlib_cli_output(vm, " udp-encap"); if (p->natt_disabled) vlib_cli_output(vm, " NAT-T disabled"); if (p->ipsec_over_udp_port != IPSEC_UDP_PORT_NONE) vlib_cli_output(vm, " ipsec-over-udp port %d", p->ipsec_over_udp_port); if (p->ike_ts.crypto_alg || p->ike_ts.integ_alg || p->ike_ts.dh_type || p->ike_ts.crypto_key_size) vlib_cli_output(vm, " ike-crypto-alg %U %u ike-integ-alg %U ike-dh %U", format_ikev2_transform_encr_type, p->ike_ts.crypto_alg, p->ike_ts.crypto_key_size, format_ikev2_transform_integ_type, p->ike_ts.integ_alg, format_ikev2_transform_dh_type, p->ike_ts.dh_type); if (p->esp_ts.crypto_alg || p->esp_ts.integ_alg || p->esp_ts.dh_type) vlib_cli_output(vm, " esp-crypto-alg %U %u esp-integ-alg %U", format_ikev2_transform_encr_type, p->esp_ts.crypto_alg, p->esp_ts.crypto_key_size, format_ikev2_transform_integ_type, p->esp_ts.integ_alg); vlib_cli_output(vm, " lifetime %d jitter %d handover %d maxdata %d", p->lifetime, p->lifetime_jitter, p->handover, p->lifetime_maxdata); } /* *INDENT-ON* */ return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_ikev2_profile_command, static) = { .path = "show ikev2 profile", .short_help = "show ikev2 profile", .function = show_ikev2_profile_command_fn, }; /* *INDENT-ON* */ static clib_error_t * set_ikev2_liveness_period_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; clib_error_t *r = 0; u32 period = 0, max_retries = 0; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "%d %d", &period, &max_retries)) { r = ikev2_set_liveness_params (period, max_retries); goto done; } else break; } r = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); done: unformat_free (line_input); return r; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_ikev2_liveness_command, static) = { .path = "ikev2 set liveness", .short_help = "ikev2 set liveness <period> <max-retires>", .function = set_ikev2_liveness_period_fn, }; /* *INDENT-ON* */ static clib_error_t * set_ikev2_local_key_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; clib_error_t *r = 0; u8 *data = 0; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "%s", &data)) { r = ikev2_set_local_key (vm, data); goto done; } else break; } r = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); done: vec_free (data); unformat_free (line_input); return r; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_ikev2_local_key_command, static) = { .path = "set ikev2 local key", .short_help = "set ikev2 local key <file>", .function = set_ikev2_local_key_command_fn, }; /* *INDENT-ON* */ static clib_error_t * ikev2_initiate_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; clib_error_t *r = 0; u8 *name = 0; u32 tmp1; u64 tmp2; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "sa-init %U", unformat_ikev2_token, &name)) { r = ikev2_initiate_sa_init (vm, name); goto done; } else if (unformat (line_input, "del-child-sa %x", &tmp1)) { r = ikev2_initiate_delete_child_sa (vm, tmp1); goto done; } else if (unformat (line_input, "del-sa %lx", &tmp2)) { r = ikev2_initiate_delete_ike_sa (vm, tmp2); goto done; } else if (unformat (line_input, "rekey-child-sa %x", &tmp1)) { r = ikev2_initiate_rekey_child_sa (vm, tmp1); goto done; } else break; } r = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); done: vec_free (name); unformat_free (line_input); return r; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (ikev2_initiate_command, static) = { .path = "ikev2 initiate", .short_help = "ikev2 initiate sa-init <profile id>\n" "ikev2 initiate del-child-sa <child sa ispi>\n" "ikev2 initiate del-sa <sa ispi>\n" "ikev2 initiate rekey-child-sa <child sa ispi>\n", .function = ikev2_initiate_command_fn, }; /* *INDENT-ON* */ static clib_error_t * ikev2_set_log_level_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { unformat_input_t _line_input, *line_input = &_line_input; u32 log_level = IKEV2_LOG_NONE; clib_error_t *error = 0; /* Get a line of input. */ if (!unformat_user (input, unformat_line_input, line_input)) return 0; if (!unformat (line_input, "%d", &log_level)) { error = clib_error_return (0, "unknown input '%U'", format_unformat_error, line_input); goto done; } int rc = ikev2_set_log_level (log_level); if (rc < 0) error = clib_error_return (0, "setting log level failed!"); done: unformat_free (line_input); return error; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (ikev2_set_log_level_command, static) = { .path = "ikev2 set logging level", .function = ikev2_set_log_level_command_fn, .short_help = "ikev2 set logging level <0-5>", }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */