blob: 70d755b985c74d948837de7a508f4855fc1f1573 [file] [log] [blame]
Filip Tehlar694396d2017-02-17 14:29:11 +01001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/lisp-cp/control.h>
17#include <vnet/lisp-gpe/lisp_gpe.h>
18
19static clib_error_t *
20lisp_show_adjacencies_command_fn (vlib_main_t * vm,
21 unformat_input_t * input,
22 vlib_cli_command_t * cmd)
23{
24 lisp_adjacency_t *adjs, *adj;
25 vlib_cli_output (vm, "%s %40s\n", "leid", "reid");
26 unformat_input_t _line_input, *line_input = &_line_input;
27 u32 vni = ~0;
28
29 /* Get a line of input. */
30 if (!unformat_user (input, unformat_line_input, line_input))
31 return 0;
32
33 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
34 {
35 if (unformat (line_input, "vni %d", &vni))
36 ;
37 else
38 {
39 vlib_cli_output (vm, "parse error: '%U'",
40 format_unformat_error, line_input);
Billy McFall614c1312017-03-01 17:01:06 -050041 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +010042 return 0;
43 }
44 }
Billy McFall614c1312017-03-01 17:01:06 -050045 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +010046
47 if (~0 == vni)
48 {
49 vlib_cli_output (vm, "error: no vni specified!");
50 return 0;
51 }
52
53 adjs = vnet_lisp_adjacencies_get_by_vni (vni);
54
55 vec_foreach (adj, adjs)
56 {
57 vlib_cli_output (vm, "%U %40U\n", format_gid_address, &adj->leid,
58 format_gid_address, &adj->reid);
59 }
60 vec_free (adjs);
61
62 return 0;
63}
64
65/* *INDENT-OFF* */
66VLIB_CLI_COMMAND (one_show_adjacencies_command) = {
67 .path = "show one adjacencies",
68 .short_help = "show one adjacencies",
69 .function = lisp_show_adjacencies_command_fn,
70};
71/* *INDENT-ON* */
72
73static clib_error_t *
74lisp_add_del_map_server_command_fn (vlib_main_t * vm,
75 unformat_input_t * input,
76 vlib_cli_command_t * cmd)
77{
78 int rv = 0;
79 u8 is_add = 1, ip_set = 0;
80 ip_address_t ip;
81 unformat_input_t _line_input, *line_input = &_line_input;
82
83 /* Get a line of input. */
84 if (!unformat_user (input, unformat_line_input, line_input))
85 return 0;
86
87 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
88 {
89 if (unformat (line_input, "add"))
90 is_add = 1;
91 else if (unformat (line_input, "del"))
92 is_add = 0;
93 else if (unformat (line_input, "%U", unformat_ip_address, &ip))
94 ip_set = 1;
95 else
96 {
97 vlib_cli_output (vm, "parse error: '%U'",
98 format_unformat_error, line_input);
Billy McFall614c1312017-03-01 17:01:06 -050099 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +0100100 return 0;
101 }
102 }
Billy McFall614c1312017-03-01 17:01:06 -0500103 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +0100104
105 if (!ip_set)
106 {
107 vlib_cli_output (vm, "map-server ip address not set!");
108 return 0;
109 }
110
111 rv = vnet_lisp_add_del_map_server (&ip, is_add);
112 if (!rv)
113 vlib_cli_output (vm, "failed to %s map-server!",
114 is_add ? "add" : "delete");
115
116 return 0;
117}
118
119/* *INDENT-OFF* */
120VLIB_CLI_COMMAND (one_add_del_map_server_command) = {
121 .path = "one map-server",
122 .short_help = "one map-server add|del <ip>",
123 .function = lisp_add_del_map_server_command_fn,
124};
125/* *INDENT-ON* */
126
127
128static clib_error_t *
129lisp_add_del_local_eid_command_fn (vlib_main_t * vm, unformat_input_t * input,
130 vlib_cli_command_t * cmd)
131{
132 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
133 unformat_input_t _line_input, *line_input = &_line_input;
134 u8 is_add = 1;
135 gid_address_t eid;
136 gid_address_t *eids = 0;
137 clib_error_t *error = 0;
138 u8 *locator_set_name = 0;
139 u32 locator_set_index = 0, map_index = 0;
140 uword *p;
141 vnet_lisp_add_del_mapping_args_t _a, *a = &_a;
142 int rv = 0;
143 u32 vni = 0;
144 u8 *key = 0;
145 u32 key_id = 0;
146
Dave Barachb7b92992018-10-17 10:38:51 -0400147 clib_memset (&eid, 0, sizeof (eid));
148 clib_memset (a, 0, sizeof (*a));
Filip Tehlar694396d2017-02-17 14:29:11 +0100149
150 /* Get a line of input. */
151 if (!unformat_user (input, unformat_line_input, line_input))
152 return 0;
153
154 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
155 {
156 if (unformat (line_input, "add"))
157 is_add = 1;
158 else if (unformat (line_input, "del"))
159 is_add = 0;
160 else if (unformat (line_input, "eid %U", unformat_gid_address, &eid))
161 ;
162 else if (unformat (line_input, "vni %d", &vni))
163 gid_address_vni (&eid) = vni;
164 else if (unformat (line_input, "secret-key %_%v%_", &key))
165 ;
166 else if (unformat (line_input, "key-id %U", unformat_hmac_key_id,
167 &key_id))
168 ;
169 else if (unformat (line_input, "locator-set %_%v%_", &locator_set_name))
170 {
Filip Tehlar9d286a42017-10-26 23:57:09 -0700171 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100172 p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
173 if (!p)
174 {
175 error = clib_error_return (0, "locator-set %s doesn't exist",
176 locator_set_name);
177 goto done;
178 }
179 locator_set_index = p[0];
180 }
Florin Corase51a7a02019-01-21 17:36:28 -0800181 else if (unformat (line_input, "authoritative"))
182 a->authoritative = 1;
Filip Tehlar694396d2017-02-17 14:29:11 +0100183 else
184 {
185 error = unformat_parse_error (line_input);
186 goto done;
187 }
188 }
189 /* XXX treat batch configuration */
190
191 if (GID_ADDR_SRC_DST == gid_address_type (&eid))
192 {
193 error =
194 clib_error_return (0, "src/dst is not supported for local EIDs!");
195 goto done;
196 }
197
198 if (key && (0 == key_id))
199 {
200 vlib_cli_output (vm, "invalid key_id!");
Billy McFall614c1312017-03-01 17:01:06 -0500201 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +0100202 }
203
204 gid_address_copy (&a->eid, &eid);
205 a->is_add = is_add;
206 a->locator_set_index = locator_set_index;
207 a->local = 1;
208 a->key = key;
209 a->key_id = key_id;
210
211 rv = vnet_lisp_add_del_local_mapping (a, &map_index);
212 if (0 != rv)
213 {
214 error = clib_error_return (0, "failed to %s local mapping!",
215 is_add ? "add" : "delete");
216 }
217done:
218 vec_free (eids);
219 if (locator_set_name)
220 vec_free (locator_set_name);
221 gid_address_free (&a->eid);
222 vec_free (a->key);
Billy McFall614c1312017-03-01 17:01:06 -0500223 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +0100224 return error;
225}
226
227/* *INDENT-OFF* */
228VLIB_CLI_COMMAND (one_add_del_local_eid_command) = {
229 .path = "one eid-table",
230 .short_help = "one eid-table add/del [vni <vni>] eid <eid> "
231 "locator-set <locator-set> [key <secret-key> key-id sha1|sha256 ]",
232 .function = lisp_add_del_local_eid_command_fn,
233};
234/* *INDENT-ON* */
235
236static clib_error_t *
237lisp_eid_table_map_command_fn (vlib_main_t * vm,
238 unformat_input_t * input,
239 vlib_cli_command_t * cmd)
240{
241 u8 is_add = 1, is_l2 = 0;
242 u32 vni = 0, dp_id = 0;
243 unformat_input_t _line_input, *line_input = &_line_input;
Billy McFall614c1312017-03-01 17:01:06 -0500244 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +0100245
246 /* Get a line of input. */
247 if (!unformat_user (input, unformat_line_input, line_input))
248 return 0;
249
250 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
251 {
252 if (unformat (line_input, "del"))
253 is_add = 0;
254 else if (unformat (line_input, "vni %d", &vni))
255 ;
256 else if (unformat (line_input, "vrf %d", &dp_id))
257 ;
258 else if (unformat (line_input, "bd %d", &dp_id))
259 is_l2 = 1;
260 else
261 {
Billy McFall614c1312017-03-01 17:01:06 -0500262 error = unformat_parse_error (line_input);
263 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +0100264 }
265 }
266 vnet_lisp_eid_table_map (vni, dp_id, is_l2, is_add);
Billy McFall614c1312017-03-01 17:01:06 -0500267
268done:
269 unformat_free (line_input);
270
271 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +0100272}
273
274/* *INDENT-OFF* */
275VLIB_CLI_COMMAND (one_eid_table_map_command) = {
276 .path = "one eid-table map",
277 .short_help = "one eid-table map [del] vni <vni> vrf <vrf> | bd <bdi>",
278 .function = lisp_eid_table_map_command_fn,
279};
280/* *INDENT-ON* */
281
Filip Tehlard5a65db2017-05-17 17:21:10 +0200282static clib_error_t *
Filip Tehlar64929642017-09-20 08:41:23 +0200283lisp_add_del_ndp_entry_command_fn (vlib_main_t * vm,
284 unformat_input_t * input,
285 vlib_cli_command_t * cmd)
286{
287 unformat_input_t _line_input, *line_input = &_line_input;
288 clib_error_t *error = NULL;
289 int rc = 0;
290 u8 hw_addr[6], bd = 0;
291 ip6_address_t ip6;
292 u32 hw_addr_set = 0, ip_set = 0, is_add = 1;
293 gid_address_t _g, *g = &_g;
294
Dave Barachb7b92992018-10-17 10:38:51 -0400295 clib_memset (&ip6, 0, sizeof (ip6));
296 clib_memset (hw_addr, 0, sizeof (hw_addr));
297 clib_memset (g, 0, sizeof (*g));
Filip Tehlar64929642017-09-20 08:41:23 +0200298
299 if (!unformat_user (input, unformat_line_input, line_input))
300 return 0;
301
302 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
303 {
304 if (unformat (line_input, "mac %U", unformat_mac_address, hw_addr))
305 hw_addr_set = 1;
306 else if (unformat (line_input, "ip %U", unformat_ip6_address, &ip6))
307 ip_set = 1;
308 else if (unformat (line_input, "del"))
309 is_add = 0;
310 else if (unformat (line_input, "bd %d", &bd))
311 ;
312 else
313 {
314 error = clib_error_return (0, "parse error");
315 goto done;
316 }
317 }
318
319 if (!ip_set || (!hw_addr_set && is_add))
320 {
321 vlib_cli_output (vm, "expected IP and MAC addresses!");
322 return 0;
323 }
324
325 /* build GID address */
326 ip_address_set (&gid_address_arp_ndp_ip (g), &ip6, IP6);
327 gid_address_ndp_bd (g) = bd;
328 gid_address_type (g) = GID_ADDR_NDP;
329 rc = vnet_lisp_add_del_l2_arp_ndp_entry (g, hw_addr, is_add);
330 if (rc)
331 clib_warning ("Failed to %s ndp entry!", is_add ? "add" : "delete");
332
333done:
334 unformat_free (line_input);
335 return error;
336}
337
338/* *INDENT-OFF* */
339VLIB_CLI_COMMAND (one_add_del_ndp_entry_command) = {
340 .path = "one ndp",
341 .short_help = "one ndp [del] bd <bd> mac <mac> ip <ipv6>",
342 .function = lisp_add_del_ndp_entry_command_fn,
343};
344/* *INDENT-ON* */
345
346static clib_error_t *
Filip Tehlard5a65db2017-05-17 17:21:10 +0200347lisp_add_del_l2_arp_entry_command_fn (vlib_main_t * vm,
348 unformat_input_t * input,
349 vlib_cli_command_t * cmd)
350{
351 unformat_input_t _line_input, *line_input = &_line_input;
352 clib_error_t *error = NULL;
353 int rc = 0;
354 u8 hw_addr[6], bd = 0;
355 ip4_address_t ip4;
356 u32 hw_addr_set = 0, ip_set = 0, is_add = 1;
357 gid_address_t _arp, *arp = &_arp;
358
Dave Barachb7b92992018-10-17 10:38:51 -0400359 clib_memset (&ip4, 0, sizeof (ip4));
360 clib_memset (hw_addr, 0, sizeof (hw_addr));
361 clib_memset (arp, 0, sizeof (*arp));
Filip Tehlard5a65db2017-05-17 17:21:10 +0200362
363 if (!unformat_user (input, unformat_line_input, line_input))
364 return 0;
365
366 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
367 {
368 if (unformat (line_input, "mac %U", unformat_mac_address, hw_addr))
369 hw_addr_set = 1;
370 else if (unformat (line_input, "ip %U", unformat_ip4_address, &ip4))
371 ip_set = 1;
372 else if (unformat (line_input, "del"))
373 is_add = 0;
374 else if (unformat (line_input, "bd %d", &bd))
375 ;
376 else
377 {
378 error = clib_error_return (0, "parse error");
379 goto done;
380 }
381 }
382
383 if (!ip_set || (!hw_addr_set && is_add))
384 {
385 vlib_cli_output (vm, "expected IP and MAC addresses!");
386 return 0;
387 }
388
389 /* build GID address */
390 gid_address_arp_ip4 (arp) = ip4;
391 gid_address_arp_bd (arp) = bd;
392 gid_address_type (arp) = GID_ADDR_ARP;
Filip Tehlar64929642017-09-20 08:41:23 +0200393 rc = vnet_lisp_add_del_l2_arp_ndp_entry (arp, hw_addr, is_add);
Filip Tehlard5a65db2017-05-17 17:21:10 +0200394 if (rc)
395 clib_warning ("Failed to %s l2 arp entry!", is_add ? "add" : "delete");
396
397done:
398 unformat_free (line_input);
399 return error;
400}
401
402/* *INDENT-OFF* */
403VLIB_CLI_COMMAND (one_add_del_l2_arp_entry_command) = {
404 .path = "one l2 arp",
405 .short_help = "one l2 arp [del] bd <bd> mac <mac> ip <ipv4>",
406 .function = lisp_add_del_l2_arp_entry_command_fn,
407};
408/* *INDENT-ON* */
409
410static clib_error_t *
411lisp_show_l2_arp_entries_command_fn (vlib_main_t * vm,
412 unformat_input_t * input,
413 vlib_cli_command_t * cmd)
414{
415 u32 *ht = vnet_lisp_l2_arp_bds_get ();
416 lisp_api_l2_arp_entry_t *entries, *e;
417 hash_pair_t *p;
418
419 /* *INDENT-OFF* */
420 hash_foreach_pair (p, ht,
421 ({
422 entries = vnet_lisp_l2_arp_entries_get_by_bd (p->key);
423 vlib_cli_output (vm, "Table: %d", p->key);
424
425 vec_foreach (e, entries)
426 {
427 vlib_cli_output (vm, "\t%U -> %U", format_ip4_address, &e->ip4,
428 format_mac_address, e->mac);
429 }
430 vec_free (entries);
431 }));
432 /* *INDENT-ON* */
433
434 hash_free (ht);
435 return 0;
436}
437
438/* *INDENT-OFF* */
439VLIB_CLI_COMMAND (one_show_l2_arp_entries_command) = {
440 .path = "show one l2 arp entries",
441 .short_help = "Show ONE L2 ARP entries",
442 .function = lisp_show_l2_arp_entries_command_fn,
443};
444/* *INDENT-ON* */
445
Filip Tehlar05879992017-09-05 15:46:09 +0200446static clib_error_t *
447lisp_show_ndp_entries_command_fn (vlib_main_t * vm,
448 unformat_input_t * input,
449 vlib_cli_command_t * cmd)
450{
451 u32 *ht = vnet_lisp_ndp_bds_get ();
452 lisp_api_ndp_entry_t *entries, *e;
453 hash_pair_t *p;
454
455 /* *INDENT-OFF* */
456 hash_foreach_pair (p, ht,
457 ({
458 entries = vnet_lisp_ndp_entries_get_by_bd (p->key);
459 vlib_cli_output (vm, "Table: %d", p->key);
460
461 vec_foreach (e, entries)
462 {
463 vlib_cli_output (vm, "\t%U -> %U", format_ip6_address, &e->ip6,
464 format_mac_address, e->mac);
465 }
466 vec_free (entries);
467 }));
468 /* *INDENT-ON* */
469
470 hash_free (ht);
471 return 0;
472}
473
474/* *INDENT-OFF* */
475VLIB_CLI_COMMAND (one_show_ndp_entries_command) = {
476 .path = "show one ndp entries",
477 .short_help = "Show ONE NDP entries",
478 .function = lisp_show_ndp_entries_command_fn,
479};
480/* *INDENT-ON* */
481
Filip Tehlar694396d2017-02-17 14:29:11 +0100482/**
483 * Handler for add/del remote mapping CLI.
484 *
485 * @param vm vlib context
486 * @param input input from user
487 * @param cmd cmd
488 * @return pointer to clib error structure
489 */
490static clib_error_t *
491lisp_add_del_remote_mapping_command_fn (vlib_main_t * vm,
492 unformat_input_t * input,
493 vlib_cli_command_t * cmd)
494{
495 clib_error_t *error = 0;
496 unformat_input_t _line_input, *line_input = &_line_input;
497 u8 is_add = 1, del_all = 0;
498 locator_t rloc, *rlocs = 0, *curr_rloc = 0;
499 gid_address_t eid;
500 u8 eid_set = 0;
501 u32 vni, action = ~0, p, w;
502 int rv;
503
504 /* Get a line of input. */
505 if (!unformat_user (input, unformat_line_input, line_input))
506 return 0;
507
Dave Barachb7b92992018-10-17 10:38:51 -0400508 clib_memset (&eid, 0, sizeof (eid));
509 clib_memset (&rloc, 0, sizeof (rloc));
Filip Tehlar694396d2017-02-17 14:29:11 +0100510
511 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
512 {
513 if (unformat (line_input, "del-all"))
514 del_all = 1;
515 else if (unformat (line_input, "del"))
516 is_add = 0;
517 else if (unformat (line_input, "add"))
518 ;
519 else if (unformat (line_input, "eid %U", unformat_gid_address, &eid))
520 eid_set = 1;
521 else if (unformat (line_input, "vni %u", &vni))
522 {
523 gid_address_vni (&eid) = vni;
524 }
525 else if (unformat (line_input, "p %d w %d", &p, &w))
526 {
527 if (!curr_rloc)
528 {
529 clib_warning
530 ("No RLOC configured for setting priority/weight!");
531 goto done;
532 }
533 curr_rloc->priority = p;
534 curr_rloc->weight = w;
535 }
536 else if (unformat (line_input, "rloc %U", unformat_ip_address,
537 &gid_address_ip (&rloc.address)))
538 {
539 /* since rloc is stored in ip prefix we need to set prefix length */
540 ip_prefix_t *pref = &gid_address_ippref (&rloc.address);
541
542 u8 version = gid_address_ip_version (&rloc.address);
543 ip_prefix_len (pref) = ip_address_max_len (version);
544
545 vec_add1 (rlocs, rloc);
546 curr_rloc = &rlocs[vec_len (rlocs) - 1];
547 }
548 else if (unformat (line_input, "action %U",
549 unformat_negative_mapping_action, &action))
550 ;
551 else
552 {
553 clib_warning ("parse error");
554 goto done;
555 }
556 }
557
Filip Tehlar4868ff62017-03-09 16:48:39 +0100558 if (!del_all && !eid_set)
Filip Tehlar694396d2017-02-17 14:29:11 +0100559 {
560 clib_warning ("missing eid!");
561 goto done;
562 }
563
564 if (!del_all)
565 {
566 if (is_add && (~0 == action) && 0 == vec_len (rlocs))
567 {
568 clib_warning ("no action set for negative map-reply!");
569 goto done;
570 }
571 }
572 else
573 {
574 vnet_lisp_clear_all_remote_adjacencies ();
575 goto done;
576 }
577
Filip Tehlar694396d2017-02-17 14:29:11 +0100578 /* if it's a delete, clean forwarding */
579 if (!is_add)
580 {
581 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
Dave Barachb7b92992018-10-17 10:38:51 -0400582 clib_memset (a, 0, sizeof (a[0]));
Filip Tehlar694396d2017-02-17 14:29:11 +0100583 gid_address_copy (&a->reid, &eid);
584 if (vnet_lisp_add_del_adjacency (a))
585 {
586 clib_warning ("failed to delete adjacency!");
587 goto done;
588 }
589 }
590
591 /* add as static remote mapping, i.e., not authoritative and infinite
592 * ttl */
Filip Tehlar809bc742017-08-14 19:15:36 +0200593 if (is_add)
594 {
595 vnet_lisp_add_del_mapping_args_t _map_args, *map_args = &_map_args;
Dave Barachb7b92992018-10-17 10:38:51 -0400596 clib_memset (map_args, 0, sizeof (map_args[0]));
Filip Tehlar809bc742017-08-14 19:15:36 +0200597 gid_address_copy (&map_args->eid, &eid);
598 map_args->action = action;
599 map_args->is_static = 1;
600 map_args->authoritative = 0;
601 map_args->ttl = ~0;
602 rv = vnet_lisp_add_mapping (map_args, rlocs, NULL, NULL);
603 }
604 else
605 rv = vnet_lisp_del_mapping (&eid, NULL);
Filip Tehlar694396d2017-02-17 14:29:11 +0100606
607 if (rv)
608 clib_warning ("failed to %s remote mapping!", is_add ? "add" : "delete");
609
610done:
611 vec_free (rlocs);
612 unformat_free (line_input);
613 return error;
614}
615
616/* *INDENT-OFF* */
617VLIB_CLI_COMMAND (one_add_del_remote_mapping_command) = {
618 .path = "one remote-mapping",
619 .short_help =
620 "one remote-mapping add|del [del-all] vni <vni> "
621 "eid <est-eid> [action <no-action|natively-forward|"
622 "send-map-request|drop>] rloc <dst-locator> p <prio> w <weight> "
623 "[rloc <dst-locator> ... ]",
624 .function = lisp_add_del_remote_mapping_command_fn,
625};
626/* *INDENT-ON* */
627
628/**
629 * Handler for add/del adjacency CLI.
630 */
631static clib_error_t *
632lisp_add_del_adjacency_command_fn (vlib_main_t * vm, unformat_input_t * input,
633 vlib_cli_command_t * cmd)
634{
635 clib_error_t *error = 0;
636 unformat_input_t _line_input, *line_input = &_line_input;
637 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
638 u8 is_add = 1;
639 ip_prefix_t *reid_ippref, *leid_ippref;
640 gid_address_t leid, reid;
641 u8 *dmac = gid_address_mac (&reid);
642 u8 *smac = gid_address_mac (&leid);
643 u8 reid_set = 0, leid_set = 0;
644 u32 vni;
645
646 /* Get a line of input. */
647 if (!unformat_user (input, unformat_line_input, line_input))
648 return 0;
649
Dave Barachb7b92992018-10-17 10:38:51 -0400650 clib_memset (&reid, 0, sizeof (reid));
651 clib_memset (&leid, 0, sizeof (leid));
Filip Tehlar694396d2017-02-17 14:29:11 +0100652
653 leid_ippref = &gid_address_ippref (&leid);
654 reid_ippref = &gid_address_ippref (&reid);
655
656 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
657 {
658 if (unformat (line_input, "del"))
659 is_add = 0;
660 else if (unformat (line_input, "add"))
661 ;
662 else if (unformat (line_input, "reid %U",
663 unformat_ip_prefix, reid_ippref))
664 {
665 gid_address_type (&reid) = GID_ADDR_IP_PREFIX;
666 reid_set = 1;
667 }
668 else if (unformat (line_input, "reid %U", unformat_mac_address, dmac))
669 {
670 gid_address_type (&reid) = GID_ADDR_MAC;
671 reid_set = 1;
672 }
673 else if (unformat (line_input, "vni %u", &vni))
674 {
675 gid_address_vni (&leid) = vni;
676 gid_address_vni (&reid) = vni;
677 }
678 else if (unformat (line_input, "leid %U",
679 unformat_ip_prefix, leid_ippref))
680 {
681 gid_address_type (&leid) = GID_ADDR_IP_PREFIX;
682 leid_set = 1;
683 }
684 else if (unformat (line_input, "leid %U", unformat_mac_address, smac))
685 {
686 gid_address_type (&leid) = GID_ADDR_MAC;
687 leid_set = 1;
688 }
689 else
690 {
691 clib_warning ("parse error");
692 goto done;
693 }
694 }
695
696 if (!reid_set || !leid_set)
697 {
698 clib_warning ("missing remote or local eid!");
699 goto done;
700 }
701
702 if ((gid_address_type (&leid) != gid_address_type (&reid))
703 || (gid_address_type (&reid) == GID_ADDR_IP_PREFIX
704 && ip_prefix_version (reid_ippref)
705 != ip_prefix_version (leid_ippref)))
706 {
707 clib_warning ("remote and local EIDs are of different types!");
Billy McFall614c1312017-03-01 17:01:06 -0500708 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +0100709 }
710
Dave Barachb7b92992018-10-17 10:38:51 -0400711 clib_memset (a, 0, sizeof (a[0]));
Filip Tehlar694396d2017-02-17 14:29:11 +0100712 gid_address_copy (&a->leid, &leid);
713 gid_address_copy (&a->reid, &reid);
714 a->is_add = is_add;
715
716 if (vnet_lisp_add_del_adjacency (a))
717 clib_warning ("failed to %s adjacency!", is_add ? "add" : "delete");
718
719done:
720 unformat_free (line_input);
721 return error;
722}
723
724/* *INDENT-OFF* */
725VLIB_CLI_COMMAND (one_add_del_adjacency_command) = {
726 .path = "one adjacency",
727 .short_help = "one adjacency add|del vni <vni> reid <remote-eid> "
728 "leid <local-eid>",
729 .function = lisp_add_del_adjacency_command_fn,
730};
731/* *INDENT-ON* */
732
733
734static clib_error_t *
735lisp_map_request_mode_command_fn (vlib_main_t * vm,
736 unformat_input_t * input,
737 vlib_cli_command_t * cmd)
738{
739 unformat_input_t _i, *i = &_i;
740 map_request_mode_t mr_mode = _MR_MODE_MAX;
741
742 /* Get a line of input. */
743 if (!unformat_user (input, unformat_line_input, i))
744 return 0;
745
746 while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
747 {
748 if (unformat (i, "dst-only"))
749 mr_mode = MR_MODE_DST_ONLY;
750 else if (unformat (i, "src-dst"))
751 mr_mode = MR_MODE_SRC_DST;
752 else
753 {
754 clib_warning ("parse error '%U'", format_unformat_error, i);
755 goto done;
756 }
757 }
758
759 if (_MR_MODE_MAX == mr_mode)
760 {
761 clib_warning ("No map request mode entered!");
Billy McFall614c1312017-03-01 17:01:06 -0500762 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +0100763 }
764
765 vnet_lisp_set_map_request_mode (mr_mode);
Billy McFall614c1312017-03-01 17:01:06 -0500766
Filip Tehlar694396d2017-02-17 14:29:11 +0100767done:
Billy McFall614c1312017-03-01 17:01:06 -0500768 unformat_free (i);
769
Filip Tehlar694396d2017-02-17 14:29:11 +0100770 return 0;
771}
772
773/* *INDENT-OFF* */
774VLIB_CLI_COMMAND (one_map_request_mode_command) = {
775 .path = "one map-request mode",
776 .short_help = "one map-request mode dst-only|src-dst",
777 .function = lisp_map_request_mode_command_fn,
778};
779/* *INDENT-ON* */
780
781
782static u8 *
783format_lisp_map_request_mode (u8 * s, va_list * args)
784{
785 u32 mode = va_arg (*args, u32);
786
787 switch (mode)
788 {
789 case 0:
790 return format (0, "dst-only");
791 case 1:
792 return format (0, "src-dst");
793 }
794 return 0;
795}
796
797static clib_error_t *
798lisp_show_map_request_mode_command_fn (vlib_main_t * vm,
799 unformat_input_t * input,
800 vlib_cli_command_t * cmd)
801{
802 vlib_cli_output (vm, "map-request mode: %U", format_lisp_map_request_mode,
803 vnet_lisp_get_map_request_mode ());
804 return 0;
805}
806
807/* *INDENT-OFF* */
808VLIB_CLI_COMMAND (one_show_map_request_mode_command) = {
809 .path = "show one map-request mode",
810 .short_help = "show one map-request mode",
811 .function = lisp_show_map_request_mode_command_fn,
812};
813/* *INDENT-ON* */
814
815static clib_error_t *
816lisp_show_map_resolvers_command_fn (vlib_main_t * vm,
817 unformat_input_t * input,
818 vlib_cli_command_t * cmd)
819{
820 lisp_msmr_t *mr;
821 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
822
823 vec_foreach (mr, lcm->map_resolvers)
824 {
825 vlib_cli_output (vm, "%U", format_ip_address, &mr->address);
826 }
827 return 0;
828}
829
830/* *INDENT-OFF* */
831VLIB_CLI_COMMAND (one_show_map_resolvers_command) = {
832 .path = "show one map-resolvers",
833 .short_help = "show one map-resolvers",
834 .function = lisp_show_map_resolvers_command_fn,
835};
836/* *INDENT-ON* */
837
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200838static clib_error_t *
839lisp_nsh_set_locator_set_command_fn (vlib_main_t * vm,
840 unformat_input_t * input,
841 vlib_cli_command_t * cmd)
842{
843 u8 locator_name_set = 0;
844 u8 *locator_set_name = 0;
845 u8 is_add = 1;
846 unformat_input_t _line_input, *line_input = &_line_input;
847 clib_error_t *error = 0;
848 int rv = 0;
849
850 /* Get a line of input. */
851 if (!unformat_user (input, unformat_line_input, line_input))
852 return 0;
853
854 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
855 {
856 if (unformat (line_input, "ls %_%v%_", &locator_set_name))
857 locator_name_set = 1;
858 else if (unformat (line_input, "disable"))
859 is_add = 0;
860 else
861 {
862 error = clib_error_return (0, "parse error");
863 goto done;
864 }
865 }
866
867 if (!locator_name_set)
868 {
869 clib_warning ("No locator set specified!");
870 goto done;
871 }
872
Filip Tehlar9d286a42017-10-26 23:57:09 -0700873 vec_terminate_c_string (locator_set_name);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200874 rv = vnet_lisp_nsh_set_locator_set (locator_set_name, is_add);
875 if (0 != rv)
876 {
877 error = clib_error_return (0, "failed to %s NSH mapping!",
878 is_add ? "add" : "delete");
879 }
880
881done:
882 vec_free (locator_set_name);
883 unformat_free (line_input);
884 return error;
885}
886
887/* *INDENT-OFF* */
888VLIB_CLI_COMMAND (one_nsh_set_locator_set_command) = {
889 .path = "one nsh-mapping",
890 .short_help = "one nsh-mapping [del] ls <locator-set-name>",
891 .function = lisp_nsh_set_locator_set_command_fn,
892};
893/* *INDENT-ON* */
894
Filip Tehlar7048ff12017-07-27 08:09:14 +0200895static clib_error_t *
896lisp_map_register_fallback_threshold_show_command_fn (vlib_main_t * vm,
897 unformat_input_t *
898 input,
899 vlib_cli_command_t *
900 cmd)
901{
902 u32 val = vnet_lisp_map_register_fallback_threshold_get ();
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700903 vlib_cli_output (vm, "map register fallback threshold value: %d", val);
Filip Tehlar7048ff12017-07-27 08:09:14 +0200904 return 0;
905}
906
907/* *INDENT-OFF* */
908VLIB_CLI_COMMAND (one_map_register_fallback_threshold_show_command) = {
909 .path = "show one map-register fallback-threshold",
910 .short_help = "show one map-register fallback-threshold",
911 .function = lisp_map_register_fallback_threshold_show_command_fn,
912};
913
914/* *INDENT-ON* */
915
916static clib_error_t *
917lisp_map_register_fallback_threshold_command_fn (vlib_main_t * vm,
918 unformat_input_t * input,
919 vlib_cli_command_t * cmd)
920{
921 unformat_input_t _line_input, *line_input = &_line_input;
922 clib_error_t *error = 0;
923 u32 val = 0;
924 int rv = 0;
925
926 /* Get a line of input. */
927 if (!unformat_user (input, unformat_line_input, line_input))
928 return 0;
929
930 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
931 {
932 if (unformat (line_input, "%d", &val))
933 ;
934 else
935 {
936 error = clib_error_return (0, "parse error");
937 goto done;
938 }
939 }
940
941 rv = vnet_lisp_map_register_fallback_threshold_set (val);
942 if (rv)
943 {
944 error = clib_error_return (0, "setting fallback threshold failed!");
945 }
946
947done:
948 unformat_free (line_input);
949 return error;
950}
951
952/* *INDENT-OFF* */
953VLIB_CLI_COMMAND (one_map_register_fallback_threshold_command) = {
954 .path = "one map-register fallback-threshold",
955 .short_help = "one map-register fallback-threshold <count>",
956 .function = lisp_map_register_fallback_threshold_command_fn,
957};
958/* *INDENT-ON* */
Filip Tehlar694396d2017-02-17 14:29:11 +0100959
960static clib_error_t *
961lisp_pitr_set_locator_set_command_fn (vlib_main_t * vm,
962 unformat_input_t * input,
963 vlib_cli_command_t * cmd)
964{
965 u8 locator_name_set = 0;
966 u8 *locator_set_name = 0;
967 u8 is_add = 1;
968 unformat_input_t _line_input, *line_input = &_line_input;
969 clib_error_t *error = 0;
970 int rv = 0;
971
972 /* Get a line of input. */
973 if (!unformat_user (input, unformat_line_input, line_input))
974 return 0;
975
976 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
977 {
978 if (unformat (line_input, "ls %_%v%_", &locator_set_name))
979 locator_name_set = 1;
980 else if (unformat (line_input, "disable"))
981 is_add = 0;
982 else
Billy McFall614c1312017-03-01 17:01:06 -0500983 {
984 error = clib_error_return (0, "parse error");
985 goto done;
986 }
Filip Tehlar694396d2017-02-17 14:29:11 +0100987 }
988
989 if (!locator_name_set)
990 {
991 clib_warning ("No locator set specified!");
992 goto done;
993 }
Filip Tehlar9d286a42017-10-26 23:57:09 -0700994 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100995 rv = vnet_lisp_pitr_set_locator_set (locator_set_name, is_add);
996 if (0 != rv)
997 {
998 error = clib_error_return (0, "failed to %s pitr!",
999 is_add ? "add" : "delete");
1000 }
1001
1002done:
1003 if (locator_set_name)
1004 vec_free (locator_set_name);
Billy McFall614c1312017-03-01 17:01:06 -05001005 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01001006 return error;
1007}
1008
1009/* *INDENT-OFF* */
1010VLIB_CLI_COMMAND (one_pitr_set_locator_set_command) = {
1011 .path = "one pitr",
1012 .short_help = "one pitr [disable] ls <locator-set-name>",
1013 .function = lisp_pitr_set_locator_set_command_fn,
1014};
1015/* *INDENT-ON* */
1016
1017static clib_error_t *
1018lisp_show_pitr_command_fn (vlib_main_t * vm,
1019 unformat_input_t * input, vlib_cli_command_t * cmd)
1020{
1021 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1022 mapping_t *m;
1023 locator_set_t *ls;
1024 u8 *tmp_str = 0;
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001025 u8 status = lcm->flags & LISP_FLAG_PITR_MODE;
Filip Tehlar694396d2017-02-17 14:29:11 +01001026
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001027 vlib_cli_output (vm, "%=20s%=16s", "pitr", status ? "locator-set" : "");
Filip Tehlar694396d2017-02-17 14:29:11 +01001028
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001029 if (!status)
Filip Tehlar694396d2017-02-17 14:29:11 +01001030 {
1031 vlib_cli_output (vm, "%=20s", "disable");
1032 return 0;
1033 }
1034
1035 if (~0 == lcm->pitr_map_index)
1036 {
1037 tmp_str = format (0, "N/A");
1038 }
1039 else
1040 {
1041 m = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
1042 if (~0 != m->locator_set_index)
1043 {
1044 ls =
1045 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1046 tmp_str = format (0, "%s", ls->name);
1047 }
1048 else
1049 {
1050 tmp_str = format (0, "N/A");
1051 }
1052 }
1053 vec_add1 (tmp_str, 0);
1054
1055 vlib_cli_output (vm, "%=20s%=16s", "enable", tmp_str);
1056
1057 vec_free (tmp_str);
1058
1059 return 0;
1060}
1061
1062/* *INDENT-OFF* */
1063VLIB_CLI_COMMAND (one_show_pitr_command) = {
1064 .path = "show one pitr",
1065 .short_help = "Show pitr",
1066 .function = lisp_show_pitr_command_fn,
1067};
1068/* *INDENT-ON* */
1069
1070static u8 *
1071format_eid_entry (u8 * s, va_list * args)
1072{
1073 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
1074 lisp_cp_main_t *lcm = va_arg (*args, lisp_cp_main_t *);
1075 mapping_t *mapit = va_arg (*args, mapping_t *);
1076 locator_set_t *ls = va_arg (*args, locator_set_t *);
1077 gid_address_t *gid = &mapit->eid;
1078 u32 ttl = mapit->ttl;
1079 u8 aut = mapit->authoritative;
1080 u32 *loc_index;
1081 u8 first_line = 1;
1082 u8 *loc;
1083
1084 u8 *type = ls->local ? format (0, "local(%s)", ls->name)
1085 : format (0, "remote");
1086
1087 if (vec_len (ls->locator_indices) == 0)
1088 {
Filip Tehlard89b6042017-04-11 14:00:58 +02001089 s = format (s, "%-35U%-20saction:%-30U%-20u%-u", format_gid_address,
1090 gid, type, format_negative_mapping_action, mapit->action,
1091 ttl, aut);
Filip Tehlar694396d2017-02-17 14:29:11 +01001092 }
1093 else
1094 {
1095 vec_foreach (loc_index, ls->locator_indices)
1096 {
1097 locator_t *l = pool_elt_at_index (lcm->locator_pool, loc_index[0]);
1098 if (l->local)
1099 loc = format (0, "%U", format_vnet_sw_if_index_name, vnm,
1100 l->sw_if_index);
1101 else
1102 loc = format (0, "%U", format_ip_address,
1103 &gid_address_ip (&l->address));
1104
1105 if (first_line)
1106 {
1107 s = format (s, "%-35U%-20s%-30v%-20u%-u\n", format_gid_address,
1108 gid, type, loc, ttl, aut);
1109 first_line = 0;
1110 }
1111 else
1112 s = format (s, "%55s%v\n", "", loc);
1113 }
1114 }
1115 return s;
1116}
1117
1118static clib_error_t *
1119lisp_show_eid_table_command_fn (vlib_main_t * vm,
1120 unformat_input_t * input,
1121 vlib_cli_command_t * cmd)
1122{
1123 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1124 mapping_t *mapit;
1125 unformat_input_t _line_input, *line_input = &_line_input;
1126 u32 mi;
1127 gid_address_t eid;
1128 u8 print_all = 1;
1129 u8 filter = 0;
Billy McFall614c1312017-03-01 17:01:06 -05001130 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +01001131
Dave Barachb7b92992018-10-17 10:38:51 -04001132 clib_memset (&eid, 0, sizeof (eid));
Filip Tehlar694396d2017-02-17 14:29:11 +01001133
1134 /* Get a line of input. */
1135 if (!unformat_user (input, unformat_line_input, line_input))
1136 return 0;
1137
1138 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1139 {
1140 if (unformat (line_input, "eid %U", unformat_gid_address, &eid))
1141 print_all = 0;
1142 else if (unformat (line_input, "local"))
1143 filter = 1;
1144 else if (unformat (line_input, "remote"))
1145 filter = 2;
1146 else
Billy McFall614c1312017-03-01 17:01:06 -05001147 {
1148 error = clib_error_return (0, "parse error: '%U'",
1149 format_unformat_error, line_input);
1150 goto done;
1151 }
Filip Tehlar694396d2017-02-17 14:29:11 +01001152 }
1153
1154 vlib_cli_output (vm, "%-35s%-20s%-30s%-20s%-s",
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001155 "EID", "type", "locators", "ttl", "authoritative");
Filip Tehlar694396d2017-02-17 14:29:11 +01001156
1157 if (print_all)
1158 {
1159 /* *INDENT-OFF* */
1160 pool_foreach (mapit, lcm->mapping_pool,
1161 ({
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001162 if (mapit->pitr_set || mapit->nsh_set)
Filip Tehlar1e8d01f2017-03-30 15:17:01 +02001163 continue;
1164
Filip Tehlar694396d2017-02-17 14:29:11 +01001165 locator_set_t * ls = pool_elt_at_index (lcm->locator_set_pool,
1166 mapit->locator_set_index);
1167 if (filter && !((1 == filter && ls->local) ||
1168 (2 == filter && !ls->local)))
1169 {
1170 continue;
1171 }
1172 vlib_cli_output (vm, "%U", format_eid_entry, lcm->vnet_main,
1173 lcm, mapit, ls);
1174 }));
1175 /* *INDENT-ON* */
1176 }
1177 else
1178 {
1179 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &eid);
1180 if ((u32) ~ 0 == mi)
Billy McFall614c1312017-03-01 17:01:06 -05001181 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001182
1183 mapit = pool_elt_at_index (lcm->mapping_pool, mi);
1184 locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool,
1185 mapit->locator_set_index);
1186
1187 if (filter && !((1 == filter && ls->local) ||
1188 (2 == filter && !ls->local)))
1189 {
Billy McFall614c1312017-03-01 17:01:06 -05001190 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001191 }
1192
1193 vlib_cli_output (vm, "%U,", format_eid_entry, lcm->vnet_main,
1194 lcm, mapit, ls);
1195 }
1196
Billy McFall614c1312017-03-01 17:01:06 -05001197done:
1198 unformat_free (line_input);
1199
1200 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +01001201}
1202
1203/* *INDENT-OFF* */
1204VLIB_CLI_COMMAND (one_cp_show_eid_table_command) = {
1205 .path = "show one eid-table",
1206 .short_help = "Shows EID table",
1207 .function = lisp_show_eid_table_command_fn,
1208};
1209/* *INDENT-ON* */
1210
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001211static clib_error_t *
1212lisp_enable_disable_pitr_mode_command_fn (vlib_main_t * vm,
1213 unformat_input_t * input,
1214 vlib_cli_command_t * cmd)
1215{
1216 unformat_input_t _line_input, *line_input = &_line_input;
1217 u8 is_enabled = 0;
1218 u8 is_set = 0;
1219 clib_error_t *error = NULL;
1220
1221 /* Get a line of input. */
1222 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301223 return clib_error_return (0, "expected enable | disable");
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001224
1225 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1226 {
1227 if (unformat (line_input, "enable"))
1228 {
1229 is_set = 1;
1230 is_enabled = 1;
1231 }
1232 else if (unformat (line_input, "disable"))
1233 is_set = 1;
1234 else
1235 {
1236 error = clib_error_return (0, "parse error: '%U'",
1237 format_unformat_error, line_input);
1238 goto done;
1239 }
1240 }
1241
1242 if (!is_set)
1243 {
1244 error = clib_error_return (0, "state not set");
1245 goto done;
1246 }
1247
1248 vnet_lisp_enable_disable_pitr_mode (is_enabled);
1249
1250done:
1251 unformat_free (line_input);
1252
1253 return error;
1254}
1255
1256/* *INDENT-OFF* */
1257VLIB_CLI_COMMAND (one_cp_enable_disable_pitr_mode_command) = {
1258 .path = "one pitr mode",
1259 .short_help = "one pitr mode [enable|disable]",
1260 .function = lisp_enable_disable_pitr_mode_command_fn,
1261};
1262/* *INDENT-ON* */
1263
1264
1265static clib_error_t *
1266lisp_enable_disable_petr_mode_command_fn (vlib_main_t * vm,
1267 unformat_input_t * input,
1268 vlib_cli_command_t * cmd)
1269{
1270 unformat_input_t _line_input, *line_input = &_line_input;
1271 u8 is_enabled = 0;
1272 u8 is_set = 0;
1273 clib_error_t *error = NULL;
1274
1275 /* Get a line of input. */
1276 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301277 return clib_error_return (0, "expected enable | disable");
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001278
1279 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1280 {
1281 if (unformat (line_input, "enable"))
1282 {
1283 is_set = 1;
1284 is_enabled = 1;
1285 }
1286 else if (unformat (line_input, "disable"))
1287 is_set = 1;
1288 else
1289 {
1290 error = clib_error_return (0, "parse error: '%U'",
1291 format_unformat_error, line_input);
1292 goto done;
1293 }
1294 }
1295
1296 if (!is_set)
1297 {
1298 error = clib_error_return (0, "state not set");
1299 goto done;
1300 }
1301
1302 vnet_lisp_enable_disable_petr_mode (is_enabled);
1303
1304done:
1305 unformat_free (line_input);
1306
1307 return error;
1308}
1309
1310/* *INDENT-OFF* */
1311VLIB_CLI_COMMAND (one_cp_enable_disable_petr_mode_command) = {
1312 .path = "one petr mode",
1313 .short_help = "one petr mode [enable|disable]",
1314 .function = lisp_enable_disable_petr_mode_command_fn,
1315};
1316/* *INDENT-ON* */
1317
1318static clib_error_t *
1319lisp_enable_disable_xtr_mode_command_fn (vlib_main_t * vm,
1320 unformat_input_t * input,
1321 vlib_cli_command_t * cmd)
1322{
1323 unformat_input_t _line_input, *line_input = &_line_input;
1324 u8 is_enabled = 0;
1325 u8 is_set = 0;
1326 clib_error_t *error = NULL;
1327
1328 /* Get a line of input. */
1329 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301330 return clib_error_return (0, "expected enable | disable");
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001331
1332 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1333 {
1334 if (unformat (line_input, "enable"))
1335 {
1336 is_set = 1;
1337 is_enabled = 1;
1338 }
1339 else if (unformat (line_input, "disable"))
1340 is_set = 1;
1341 else
1342 {
1343 error = clib_error_return (0, "parse error: '%U'",
1344 format_unformat_error, line_input);
1345 goto done;
1346 }
1347 }
1348
1349 if (!is_set)
1350 {
1351 error = clib_error_return (0, "state not set");
1352 goto done;
1353 }
1354
1355 vnet_lisp_enable_disable_xtr_mode (is_enabled);
1356
1357done:
1358 unformat_free (line_input);
1359
1360 return error;
1361}
1362
1363/* *INDENT-OFF* */
1364VLIB_CLI_COMMAND (one_cp_enable_disable_xtr_mode_command) = {
1365 .path = "one xtr mode",
1366 .short_help = "one xtr mode [enable|disable]",
1367 .function = lisp_enable_disable_xtr_mode_command_fn,
1368};
1369/* *INDENT-ON* */
Filip Tehlar694396d2017-02-17 14:29:11 +01001370
1371static clib_error_t *
1372lisp_enable_disable_command_fn (vlib_main_t * vm, unformat_input_t * input,
1373 vlib_cli_command_t * cmd)
1374{
1375 unformat_input_t _line_input, *line_input = &_line_input;
1376 u8 is_enabled = 0;
1377 u8 is_set = 0;
Billy McFall614c1312017-03-01 17:01:06 -05001378 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +01001379
1380 /* Get a line of input. */
1381 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301382 return clib_error_return (0, "expected enable | disable");
Filip Tehlar694396d2017-02-17 14:29:11 +01001383
1384 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1385 {
1386 if (unformat (line_input, "enable"))
1387 {
1388 is_set = 1;
1389 is_enabled = 1;
1390 }
1391 else if (unformat (line_input, "disable"))
1392 is_set = 1;
1393 else
1394 {
Billy McFall614c1312017-03-01 17:01:06 -05001395 error = clib_error_return (0, "parse error: '%U'",
1396 format_unformat_error, line_input);
1397 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001398 }
1399 }
1400
1401 if (!is_set)
Billy McFall614c1312017-03-01 17:01:06 -05001402 {
1403 error = clib_error_return (0, "state not set");
1404 goto done;
1405 }
Filip Tehlar694396d2017-02-17 14:29:11 +01001406
1407 vnet_lisp_enable_disable (is_enabled);
Billy McFall614c1312017-03-01 17:01:06 -05001408
1409done:
1410 unformat_free (line_input);
1411
1412 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +01001413}
1414
1415/* *INDENT-OFF* */
1416VLIB_CLI_COMMAND (one_cp_enable_disable_command) = {
1417 .path = "one",
1418 .short_help = "one [enable|disable]",
1419 .function = lisp_enable_disable_command_fn,
1420};
1421/* *INDENT-ON* */
1422
1423static clib_error_t *
Filip Tehlar1e553a02017-08-02 12:45:07 +02001424lisp_map_register_set_ttl_command_fn (vlib_main_t * vm,
1425 unformat_input_t * input,
1426 vlib_cli_command_t * cmd)
1427{
1428 unformat_input_t _line_input, *line_input = &_line_input;
1429 u32 ttl = 0;
1430 u8 is_set = 0;
1431 clib_error_t *error = NULL;
1432
1433 /* Get a line of input. */
1434 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301435 return clib_error_return (0, "expected enable | disable");
Filip Tehlar1e553a02017-08-02 12:45:07 +02001436
1437 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1438 {
1439 if (unformat (line_input, "%u", &ttl))
1440 is_set = 1;
1441 else
1442 {
1443 vlib_cli_output (vm, "parse error: '%U'", format_unformat_error,
1444 line_input);
1445 goto done;
1446 }
1447 }
1448
1449 if (!is_set)
1450 {
1451 vlib_cli_output (vm, "expected integer value for TTL!");
1452 goto done;
1453 }
1454
1455 vnet_lisp_map_register_set_ttl (ttl);
1456
1457done:
1458 unformat_free (line_input);
1459 return error;
1460}
1461
1462/* *INDENT-OFF* */
1463VLIB_CLI_COMMAND (one_map_register_set_ttl_command) = {
1464 .path = "one map-register ttl",
1465 .short_help = "one map-register ttl",
1466 .function = lisp_map_register_set_ttl_command_fn,
1467};
1468/* *INDENT-ON* */
1469
1470static clib_error_t *
1471lisp_map_register_show_ttl_command_fn (vlib_main_t * vm,
1472 unformat_input_t * input,
1473 vlib_cli_command_t * cmd)
1474{
1475 u32 ttl = vnet_lisp_map_register_get_ttl ();
1476
1477 vlib_cli_output (vm, "map-register TTL: %u", ttl);
1478 return 0;
1479}
1480
1481/* *INDENT-OFF* */
1482VLIB_CLI_COMMAND (one_map_register_show_ttl_command) = {
1483 .path = "show one map-register ttl",
1484 .short_help = "show one map-register ttl",
1485 .function = lisp_map_register_show_ttl_command_fn,
1486};
1487
1488/* *INDENT-ON* */
1489
1490static clib_error_t *
Filip Tehlar694396d2017-02-17 14:29:11 +01001491lisp_map_register_enable_disable_command_fn (vlib_main_t * vm,
1492 unformat_input_t * input,
1493 vlib_cli_command_t * cmd)
1494{
1495 unformat_input_t _line_input, *line_input = &_line_input;
1496 u8 is_enabled = 0;
1497 u8 is_set = 0;
Billy McFall614c1312017-03-01 17:01:06 -05001498 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +01001499
1500 /* Get a line of input. */
1501 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301502 return clib_error_return (0, "expected enable | disable");
Filip Tehlar694396d2017-02-17 14:29:11 +01001503
1504 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1505 {
1506 if (unformat (line_input, "enable"))
1507 {
1508 is_set = 1;
1509 is_enabled = 1;
1510 }
1511 else if (unformat (line_input, "disable"))
1512 is_set = 1;
1513 else
1514 {
1515 vlib_cli_output (vm, "parse error: '%U'", format_unformat_error,
1516 line_input);
Billy McFall614c1312017-03-01 17:01:06 -05001517 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001518 }
1519 }
1520
1521 if (!is_set)
1522 {
1523 vlib_cli_output (vm, "state not set!");
Billy McFall614c1312017-03-01 17:01:06 -05001524 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001525 }
1526
1527 vnet_lisp_map_register_enable_disable (is_enabled);
Billy McFall614c1312017-03-01 17:01:06 -05001528
1529done:
1530 unformat_free (line_input);
1531
1532 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +01001533}
1534
1535/* *INDENT-OFF* */
1536VLIB_CLI_COMMAND (one_map_register_enable_disable_command) = {
1537 .path = "one map-register",
1538 .short_help = "one map-register [enable|disable]",
1539 .function = lisp_map_register_enable_disable_command_fn,
1540};
1541/* *INDENT-ON* */
1542
1543static clib_error_t *
1544lisp_rloc_probe_enable_disable_command_fn (vlib_main_t * vm,
1545 unformat_input_t * input,
1546 vlib_cli_command_t * cmd)
1547{
1548 unformat_input_t _line_input, *line_input = &_line_input;
1549 u8 is_enabled = 0;
1550 u8 is_set = 0;
Billy McFall614c1312017-03-01 17:01:06 -05001551 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +01001552
1553 /* Get a line of input. */
1554 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05301555 return clib_error_return (0, "expected enable | disable");
Filip Tehlar694396d2017-02-17 14:29:11 +01001556
1557 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1558 {
1559 if (unformat (line_input, "enable"))
1560 {
1561 is_set = 1;
1562 is_enabled = 1;
1563 }
1564 else if (unformat (line_input, "disable"))
1565 is_set = 1;
1566 else
1567 {
1568 vlib_cli_output (vm, "parse error: '%U'", format_unformat_error,
1569 line_input);
Billy McFall614c1312017-03-01 17:01:06 -05001570 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001571 }
1572 }
1573
1574 if (!is_set)
1575 {
1576 vlib_cli_output (vm, "state not set!");
Billy McFall614c1312017-03-01 17:01:06 -05001577 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001578 }
1579
1580 vnet_lisp_rloc_probe_enable_disable (is_enabled);
Billy McFall614c1312017-03-01 17:01:06 -05001581
1582done:
1583 unformat_free (line_input);
1584
1585 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +01001586}
1587
1588/* *INDENT-OFF* */
1589VLIB_CLI_COMMAND (one_rloc_probe_enable_disable_command) = {
1590 .path = "one rloc-probe",
1591 .short_help = "one rloc-probe [enable|disable]",
1592 .function = lisp_rloc_probe_enable_disable_command_fn,
1593};
1594/* *INDENT-ON* */
1595
1596static u8 *
1597format_lisp_status (u8 * s, va_list * args)
1598{
1599 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1600 return format (s, "%s", lcm->is_enabled ? "enabled" : "disabled");
1601}
1602
1603static clib_error_t *
1604lisp_show_status_command_fn (vlib_main_t * vm, unformat_input_t * input,
1605 vlib_cli_command_t * cmd)
1606{
1607 u8 *msg = 0;
1608 msg = format (msg, "feature: %U\ngpe: %U\n",
1609 format_lisp_status, format_vnet_lisp_gpe_status);
1610 vlib_cli_output (vm, "%v", msg);
1611 vec_free (msg);
1612 return 0;
1613}
1614
1615/* *INDENT-OFF* */
1616VLIB_CLI_COMMAND (one_show_status_command) = {
1617 .path = "show one status",
1618 .short_help = "show one status",
1619 .function = lisp_show_status_command_fn,
1620};
1621/* *INDENT-ON* */
1622
1623static clib_error_t *
1624lisp_show_eid_table_map_command_fn (vlib_main_t * vm,
1625 unformat_input_t * input,
1626 vlib_cli_command_t * cmd)
1627{
1628 hash_pair_t *p;
1629 unformat_input_t _line_input, *line_input = &_line_input;
1630 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1631 uword *vni_table = 0;
1632 u8 is_l2 = 0;
Billy McFall614c1312017-03-01 17:01:06 -05001633 clib_error_t *error = NULL;
Filip Tehlar694396d2017-02-17 14:29:11 +01001634
1635 /* Get a line of input. */
1636 if (!unformat_user (input, unformat_line_input, line_input))
1637 return 0;
1638
1639 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1640 {
1641 if (unformat (line_input, "l2"))
1642 {
1643 vni_table = lcm->bd_id_by_vni;
1644 is_l2 = 1;
1645 }
1646 else if (unformat (line_input, "l3"))
1647 {
1648 vni_table = lcm->table_id_by_vni;
1649 is_l2 = 0;
1650 }
1651 else
Billy McFall614c1312017-03-01 17:01:06 -05001652 {
1653 error = clib_error_return (0, "parse error: '%U'",
1654 format_unformat_error, line_input);
1655 goto done;
1656 }
Filip Tehlar694396d2017-02-17 14:29:11 +01001657 }
1658
1659 if (!vni_table)
1660 {
1661 vlib_cli_output (vm, "Error: expected l2|l3 param!\n");
Billy McFall614c1312017-03-01 17:01:06 -05001662 goto done;
Filip Tehlar694396d2017-02-17 14:29:11 +01001663 }
1664
1665 vlib_cli_output (vm, "%=10s%=10s", "VNI", is_l2 ? "BD" : "VRF");
1666
1667 /* *INDENT-OFF* */
1668 hash_foreach_pair (p, vni_table,
1669 ({
1670 vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]);
1671 }));
1672 /* *INDENT-ON* */
1673
Billy McFall614c1312017-03-01 17:01:06 -05001674done:
1675 unformat_free (line_input);
1676
1677 return error;
Filip Tehlar694396d2017-02-17 14:29:11 +01001678}
1679
1680/* *INDENT-OFF* */
1681VLIB_CLI_COMMAND (one_show_eid_table_map_command) = {
1682 .path = "show one eid-table map",
1683 .short_help = "show one eid-table l2|l3",
1684 .function = lisp_show_eid_table_map_command_fn,
1685};
1686/* *INDENT-ON* */
1687
1688
1689static clib_error_t *
1690lisp_add_del_locator_set_command_fn (vlib_main_t * vm,
1691 unformat_input_t * input,
1692 vlib_cli_command_t * cmd)
1693{
1694 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1695 vnet_main_t *vnm = lgm->vnet_main;
1696 unformat_input_t _line_input, *line_input = &_line_input;
1697 u8 is_add = 1;
1698 clib_error_t *error = 0;
1699 u8 *locator_set_name = 0;
1700 locator_t locator, *locators = 0;
1701 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
1702 u32 ls_index = 0;
1703 int rv = 0;
1704
Dave Barachb7b92992018-10-17 10:38:51 -04001705 clib_memset (&locator, 0, sizeof (locator));
1706 clib_memset (a, 0, sizeof (a[0]));
Filip Tehlar694396d2017-02-17 14:29:11 +01001707
1708 /* Get a line of input. */
1709 if (!unformat_user (input, unformat_line_input, line_input))
1710 return 0;
1711
1712 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1713 {
1714 if (unformat (line_input, "add %_%v%_", &locator_set_name))
1715 is_add = 1;
1716 else if (unformat (line_input, "del %_%v%_", &locator_set_name))
1717 is_add = 0;
1718 else if (unformat (line_input, "iface %U p %d w %d",
1719 unformat_vnet_sw_interface, vnm,
1720 &locator.sw_if_index, &locator.priority,
1721 &locator.weight))
1722 {
1723 locator.local = 1;
1724 vec_add1 (locators, locator);
1725 }
1726 else
1727 {
1728 error = unformat_parse_error (line_input);
1729 goto done;
1730 }
1731 }
1732
Filip Tehlar9d286a42017-10-26 23:57:09 -07001733 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +01001734 a->name = locator_set_name;
1735 a->locators = locators;
1736 a->is_add = is_add;
1737 a->local = 1;
1738
1739 rv = vnet_lisp_add_del_locator_set (a, &ls_index);
1740 if (0 != rv)
1741 {
1742 error = clib_error_return (0, "failed to %s locator-set!",
1743 is_add ? "add" : "delete");
1744 }
1745
1746done:
1747 vec_free (locators);
1748 if (locator_set_name)
1749 vec_free (locator_set_name);
Billy McFall614c1312017-03-01 17:01:06 -05001750 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01001751 return error;
1752}
1753
1754/* *INDENT-OFF* */
1755VLIB_CLI_COMMAND (one_cp_add_del_locator_set_command) = {
1756 .path = "one locator-set",
1757 .short_help = "one locator-set add/del <name> [iface <iface-name> "
1758 "p <priority> w <weight>]",
1759 .function = lisp_add_del_locator_set_command_fn,
1760};
1761/* *INDENT-ON* */
1762
1763static clib_error_t *
1764lisp_add_del_locator_in_set_command_fn (vlib_main_t * vm,
1765 unformat_input_t * input,
1766 vlib_cli_command_t * cmd)
1767{
1768 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1769 vnet_main_t *vnm = lgm->vnet_main;
1770 unformat_input_t _line_input, *line_input = &_line_input;
1771 u8 is_add = 1;
1772 clib_error_t *error = 0;
1773 u8 *locator_set_name = 0;
1774 u8 locator_set_name_set = 0;
1775 locator_t locator, *locators = 0;
1776 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
1777 u32 ls_index = 0;
1778
Dave Barachb7b92992018-10-17 10:38:51 -04001779 clib_memset (&locator, 0, sizeof (locator));
1780 clib_memset (a, 0, sizeof (a[0]));
Filip Tehlar694396d2017-02-17 14:29:11 +01001781
1782 /* Get a line of input. */
1783 if (!unformat_user (input, unformat_line_input, line_input))
1784 return 0;
1785
1786 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1787 {
1788 if (unformat (line_input, "add"))
1789 is_add = 1;
1790 else if (unformat (line_input, "del"))
1791 is_add = 0;
1792 else if (unformat (line_input, "locator-set %_%v%_", &locator_set_name))
1793 locator_set_name_set = 1;
1794 else if (unformat (line_input, "iface %U p %d w %d",
1795 unformat_vnet_sw_interface, vnm,
1796 &locator.sw_if_index, &locator.priority,
1797 &locator.weight))
1798 {
1799 locator.local = 1;
1800 vec_add1 (locators, locator);
1801 }
1802 else
1803 {
1804 error = unformat_parse_error (line_input);
1805 goto done;
1806 }
1807 }
1808
1809 if (!locator_set_name_set)
1810 {
1811 error = clib_error_return (0, "locator_set name not set!");
1812 goto done;
1813 }
1814
Filip Tehlar9d286a42017-10-26 23:57:09 -07001815 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +01001816 a->name = locator_set_name;
1817 a->locators = locators;
1818 a->is_add = is_add;
1819 a->local = 1;
1820
1821 vnet_lisp_add_del_locator (a, 0, &ls_index);
1822
1823done:
1824 vec_free (locators);
1825 vec_free (locator_set_name);
Billy McFall614c1312017-03-01 17:01:06 -05001826 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01001827 return error;
1828}
1829
1830/* *INDENT-OFF* */
1831VLIB_CLI_COMMAND (one_cp_add_del_locator_in_set_command) = {
1832 .path = "one locator",
1833 .short_help = "one locator add/del locator-set <name> iface <iface-name> "
1834 "p <priority> w <weight>",
1835 .function = lisp_add_del_locator_in_set_command_fn,
1836};
1837/* *INDENT-ON* */
1838
1839static clib_error_t *
1840lisp_cp_show_locator_sets_command_fn (vlib_main_t * vm,
1841 unformat_input_t * input,
1842 vlib_cli_command_t * cmd)
1843{
1844 locator_set_t *lsit;
1845 locator_t *loc;
1846 u32 *locit;
1847 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1848
1849 vlib_cli_output (vm, "%s%=16s%=16s%=16s", "Locator-set", "Locator",
1850 "Priority", "Weight");
1851
1852 /* *INDENT-OFF* */
1853 pool_foreach (lsit, lcm->locator_set_pool,
1854 ({
1855 u8 * msg = 0;
1856 int next_line = 0;
1857 if (lsit->local)
1858 {
Filip Tehlar9d286a42017-10-26 23:57:09 -07001859 msg = format (msg, "%s", lsit->name);
Filip Tehlar694396d2017-02-17 14:29:11 +01001860 }
1861 else
1862 {
1863 msg = format (msg, "<%s-%d>", "remote", lsit - lcm->locator_set_pool);
1864 }
1865 vec_foreach (locit, lsit->locator_indices)
1866 {
1867 if (next_line)
1868 {
1869 msg = format (msg, "%16s", " ");
1870 }
1871 loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1872 if (loc->local)
1873 msg = format (msg, "%16d%16d%16d\n", loc->sw_if_index, loc->priority,
1874 loc->weight);
1875 else
1876 msg = format (msg, "%16U%16d%16d\n", format_ip_address,
1877 &gid_address_ip(&loc->address), loc->priority,
1878 loc->weight);
1879 next_line = 1;
1880 }
1881 vlib_cli_output (vm, "%v", msg);
1882 vec_free (msg);
1883 }));
1884 /* *INDENT-ON* */
1885 return 0;
1886}
1887
1888/* *INDENT-OFF* */
1889VLIB_CLI_COMMAND (one_cp_show_locator_sets_command) = {
1890 .path = "show one locator-set",
1891 .short_help = "Shows locator-sets",
1892 .function = lisp_cp_show_locator_sets_command_fn,
1893};
1894/* *INDENT-ON* */
1895
1896
1897static clib_error_t *
1898lisp_add_del_map_resolver_command_fn (vlib_main_t * vm,
1899 unformat_input_t * input,
1900 vlib_cli_command_t * cmd)
1901{
1902 unformat_input_t _line_input, *line_input = &_line_input;
1903 u8 is_add = 1, addr_set = 0;
1904 ip_address_t ip_addr;
1905 clib_error_t *error = 0;
1906 int rv = 0;
1907 vnet_lisp_add_del_map_resolver_args_t _a, *a = &_a;
1908
1909 /* Get a line of input. */
1910 if (!unformat_user (input, unformat_line_input, line_input))
1911 return 0;
1912
1913 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1914 {
1915 if (unformat (line_input, "add"))
1916 is_add = 1;
1917 else if (unformat (line_input, "del"))
1918 is_add = 0;
1919 else if (unformat (line_input, "%U", unformat_ip_address, &ip_addr))
1920 addr_set = 1;
1921 else
1922 {
1923 error = unformat_parse_error (line_input);
1924 goto done;
1925 }
1926 }
1927
1928 if (!addr_set)
1929 {
1930 error = clib_error_return (0, "Map-resolver address must be set!");
1931 goto done;
1932 }
1933
1934 a->is_add = is_add;
1935 a->address = ip_addr;
1936 rv = vnet_lisp_add_del_map_resolver (a);
1937 if (0 != rv)
1938 {
1939 error = clib_error_return (0, "failed to %s map-resolver!",
1940 is_add ? "add" : "delete");
1941 }
1942
1943done:
Billy McFall614c1312017-03-01 17:01:06 -05001944 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01001945 return error;
1946}
1947
1948/* *INDENT-OFF* */
1949VLIB_CLI_COMMAND (one_add_del_map_resolver_command) = {
1950 .path = "one map-resolver",
1951 .short_help = "one map-resolver add/del <ip_address>",
1952 .function = lisp_add_del_map_resolver_command_fn,
1953};
1954/* *INDENT-ON* */
1955
1956
1957static clib_error_t *
1958lisp_add_del_mreq_itr_rlocs_command_fn (vlib_main_t * vm,
1959 unformat_input_t * input,
1960 vlib_cli_command_t * cmd)
1961{
1962 unformat_input_t _line_input, *line_input = &_line_input;
1963 u8 is_add = 1;
1964 u8 *locator_set_name = 0;
1965 clib_error_t *error = 0;
1966 int rv = 0;
1967 vnet_lisp_add_del_mreq_itr_rloc_args_t _a, *a = &_a;
1968
1969 /* Get a line of input. */
1970 if (!unformat_user (input, unformat_line_input, line_input))
1971 return 0;
1972
1973 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1974 {
1975 if (unformat (line_input, "del"))
1976 is_add = 0;
1977 else if (unformat (line_input, "add %_%v%_", &locator_set_name))
1978 is_add = 1;
1979 else
1980 {
1981 error = unformat_parse_error (line_input);
1982 goto done;
1983 }
1984 }
1985
Filip Tehlar9d286a42017-10-26 23:57:09 -07001986 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +01001987 a->is_add = is_add;
1988 a->locator_set_name = locator_set_name;
1989 rv = vnet_lisp_add_del_mreq_itr_rlocs (a);
1990 if (0 != rv)
1991 {
1992 error = clib_error_return (0, "failed to %s map-request itr-rlocs!",
1993 is_add ? "add" : "delete");
1994 }
1995
Filip Tehlar694396d2017-02-17 14:29:11 +01001996done:
Billy McFall614c1312017-03-01 17:01:06 -05001997 vec_free (locator_set_name);
1998 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01001999 return error;
2000
2001}
2002
2003/* *INDENT-OFF* */
2004VLIB_CLI_COMMAND (one_add_del_map_request_command) = {
2005 .path = "one map-request itr-rlocs",
2006 .short_help = "one map-request itr-rlocs add/del <locator_set_name>",
2007 .function = lisp_add_del_mreq_itr_rlocs_command_fn,
2008};
2009/* *INDENT-ON* */
2010
2011static clib_error_t *
2012lisp_show_mreq_itr_rlocs_command_fn (vlib_main_t * vm,
2013 unformat_input_t * input,
2014 vlib_cli_command_t * cmd)
2015{
2016 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2017 locator_set_t *loc_set;
2018
2019 vlib_cli_output (vm, "%=20s", "itr-rlocs");
2020
2021 if (~0 == lcm->mreq_itr_rlocs)
2022 {
2023 return 0;
2024 }
2025
2026 loc_set = pool_elt_at_index (lcm->locator_set_pool, lcm->mreq_itr_rlocs);
2027
2028 vlib_cli_output (vm, "%=20s", loc_set->name);
2029
2030 return 0;
2031}
2032
2033/* *INDENT-OFF* */
2034VLIB_CLI_COMMAND (one_show_map_request_command) = {
2035 .path = "show one map-request itr-rlocs",
2036 .short_help = "Shows map-request itr-rlocs",
2037 .function = lisp_show_mreq_itr_rlocs_command_fn,
2038};
2039/* *INDENT-ON* */
2040
2041static clib_error_t *
2042lisp_use_petr_set_locator_set_command_fn (vlib_main_t * vm,
2043 unformat_input_t * input,
2044 vlib_cli_command_t * cmd)
2045{
2046 u8 is_add = 1, ip_set = 0;
2047 unformat_input_t _line_input, *line_input = &_line_input;
2048 clib_error_t *error = 0;
2049 ip_address_t ip;
2050
2051 /* Get a line of input. */
2052 if (!unformat_user (input, unformat_line_input, line_input))
2053 return 0;
2054
2055 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2056 {
2057 if (unformat (line_input, "%U", unformat_ip_address, &ip))
2058 ip_set = 1;
2059 else if (unformat (line_input, "disable"))
2060 is_add = 0;
2061 else
Billy McFall614c1312017-03-01 17:01:06 -05002062 {
2063 error = clib_error_return (0, "parse error");
2064 goto done;
2065 }
Filip Tehlar694396d2017-02-17 14:29:11 +01002066 }
2067
2068 if (!ip_set)
2069 {
2070 clib_warning ("No petr IP specified!");
2071 goto done;
2072 }
2073
2074 if (vnet_lisp_use_petr (&ip, is_add))
2075 {
2076 error = clib_error_return (0, "failed to %s petr!",
2077 is_add ? "add" : "delete");
2078 }
2079
2080done:
Billy McFall614c1312017-03-01 17:01:06 -05002081 unformat_free (line_input);
Filip Tehlar694396d2017-02-17 14:29:11 +01002082 return error;
2083}
2084
2085/* *INDENT-OFF* */
2086VLIB_CLI_COMMAND (one_use_petr_set_locator_set_command) = {
2087 .path = "one use-petr",
2088 .short_help = "one use-petr [disable] <petr-ip>",
2089 .function = lisp_use_petr_set_locator_set_command_fn,
2090};
2091
2092static clib_error_t *
2093lisp_show_petr_command_fn (vlib_main_t * vm,
2094 unformat_input_t * input, vlib_cli_command_t * cmd)
2095{
2096 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2097 mapping_t *m;
2098 locator_set_t *ls;
2099 locator_t *loc;
2100 u8 *tmp_str = 0;
2101 u8 use_petr = lcm->flags & LISP_FLAG_USE_PETR;
2102 vlib_cli_output (vm, "%=20s%=16s", "petr", use_petr ? "ip" : "");
2103
2104 if (!use_petr)
2105 {
2106 vlib_cli_output (vm, "%=20s", "disable");
2107 return 0;
2108 }
2109
2110 if (~0 == lcm->petr_map_index)
2111 {
2112 tmp_str = format (0, "N/A");
2113 }
2114 else
2115 {
2116 m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
2117 if (~0 != m->locator_set_index)
2118 {
2119 ls = pool_elt_at_index(lcm->locator_set_pool, m->locator_set_index);
2120 loc = pool_elt_at_index (lcm->locator_pool, ls->locator_indices[0]);
2121 tmp_str = format (0, "%U", format_ip_address, &loc->address);
2122 }
2123 else
2124 {
2125 tmp_str = format (0, "N/A");
2126 }
2127 }
2128 vec_add1 (tmp_str, 0);
2129
2130 vlib_cli_output (vm, "%=20s%=16s", "enable", tmp_str);
2131
2132 vec_free (tmp_str);
2133
2134 return 0;
2135}
2136
2137/* *INDENT-OFF* */
2138VLIB_CLI_COMMAND (one_show_petr_command) = {
2139 .path = "show one petr",
2140 .short_help = "Show petr",
2141 .function = lisp_show_petr_command_fn,
2142};
2143/* *INDENT-ON* */
2144
2145static clib_error_t *
2146lisp_show_map_servers_command_fn (vlib_main_t * vm,
2147 unformat_input_t * input,
2148 vlib_cli_command_t * cmd)
2149{
2150 lisp_msmr_t *ms;
2151 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2152
2153 vec_foreach (ms, lcm->map_servers)
2154 {
2155 vlib_cli_output (vm, "%U", format_ip_address, &ms->address);
2156 }
2157 return 0;
2158}
2159
2160/* *INDENT-OFF* */
2161VLIB_CLI_COMMAND (one_show_map_servers_command) = {
2162 .path = "show one map-servers",
2163 .short_help = "show one map servers",
2164 .function = lisp_show_map_servers_command_fn,
2165};
2166/* *INDENT-ON* */
2167
2168static clib_error_t *
2169lisp_show_map_register_state_command_fn (vlib_main_t * vm,
2170 unformat_input_t * input,
2171 vlib_cli_command_t * cmd)
2172{
2173 u8 *msg = 0;
2174 u8 is_enabled = vnet_lisp_map_register_state_get ();
2175
2176 msg = format (msg, "%s\n", is_enabled ? "enabled" : "disabled");
2177 vlib_cli_output (vm, "%v", msg);
2178 vec_free (msg);
2179 return 0;
2180}
2181
2182/* *INDENT-OFF* */
2183VLIB_CLI_COMMAND (one_show_map_register_state_command) = {
2184 .path = "show one map-register state",
2185 .short_help = "show one map-register state",
2186 .function = lisp_show_map_register_state_command_fn,
2187};
2188/* *INDENT-ON* */
2189
2190static clib_error_t *
2191lisp_show_rloc_probe_state_command_fn (vlib_main_t * vm,
2192 unformat_input_t * input,
2193 vlib_cli_command_t * cmd)
2194{
2195 u8 *msg = 0;
2196 u8 is_enabled = vnet_lisp_rloc_probe_state_get ();
2197
2198 msg = format (msg, "%s\n", is_enabled ? "enabled" : "disabled");
2199 vlib_cli_output (vm, "%v", msg);
2200 vec_free (msg);
2201 return 0;
2202}
2203
2204/* *INDENT-OFF* */
2205VLIB_CLI_COMMAND (one_show_rloc_probe_state_command) = {
2206 .path = "show one rloc state",
2207 .short_help = "show one RLOC state",
2208 .function = lisp_show_rloc_probe_state_command_fn,
2209};
2210/* *INDENT-ON* */
2211
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01002212static clib_error_t *
2213lisp_show_stats_command_fn (vlib_main_t * vm,
2214 unformat_input_t * input,
2215 vlib_cli_command_t * cmd)
2216{
2217 u8 is_enabled = vnet_lisp_stats_enable_disable_state ();
2218 vlib_cli_output (vm, "%s\n", is_enabled ? "enabled" : "disabled");
2219 return 0;
2220}
2221
2222/* *INDENT-OFF* */
2223VLIB_CLI_COMMAND (one_show_stats_command) = {
Filip Tehlar4868ff62017-03-09 16:48:39 +01002224 .path = "show one statistics status",
2225 .short_help = "show ONE statistics enable/disable status",
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01002226 .function = lisp_show_stats_command_fn,
2227};
2228/* *INDENT-ON* */
2229
2230static clib_error_t *
Filip Tehlar4868ff62017-03-09 16:48:39 +01002231lisp_show_stats_details_command_fn (vlib_main_t * vm,
2232 unformat_input_t * input,
2233 vlib_cli_command_t * cmd)
2234{
2235 lisp_api_stats_t *stat, *stats = vnet_lisp_get_stats ();
2236
2237 if (vec_len (stats) > 0)
2238 vlib_cli_output (vm,
2239 "[src-EID, dst-EID] [loc-rloc, rmt-rloc] count bytes\n");
2240 else
2241 vlib_cli_output (vm, "No statistics found.\n");
2242
2243 vec_foreach (stat, stats)
2244 {
2245 vlib_cli_output (vm, "[%U, %U] [%U, %U] %7u %7u\n",
2246 format_fid_address, &stat->seid,
2247 format_fid_address, &stat->deid,
2248 format_ip_address, &stat->loc_rloc,
2249 format_ip_address, &stat->rmt_rloc,
Filip Tehlar21511912017-04-07 10:41:42 +02002250 stat->counters.packets, stat->counters.bytes);
Filip Tehlar4868ff62017-03-09 16:48:39 +01002251 }
2252 vec_free (stats);
2253 return 0;
2254}
2255
2256/* *INDENT-OFF* */
2257VLIB_CLI_COMMAND (one_show_stats_details_command) = {
2258 .path = "show one statistics details",
2259 .short_help = "show ONE statistics",
2260 .function = lisp_show_stats_details_command_fn,
2261};
2262/* *INDENT-ON* */
2263
2264static clib_error_t *
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01002265lisp_stats_enable_disable_command_fn (vlib_main_t * vm,
2266 unformat_input_t * input,
2267 vlib_cli_command_t * cmd)
2268{
2269 unformat_input_t _line_input, *line_input = &_line_input;
2270 u8 enable = 0;
2271
2272 /* Get a line of input. */
2273 if (!unformat_user (input, unformat_line_input, line_input))
Swarup Nayak82d8ec22017-12-04 11:54:43 +05302274 return clib_error_return (0, "expected enable | disable");
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01002275
2276 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2277 {
2278 if (unformat (line_input, "enable"))
2279 enable = 1;
2280 else if (unformat (line_input, "disable"))
2281 enable = 0;
2282 else
2283 {
2284 clib_warning ("Error: expected enable/disable!");
2285 goto done;
2286 }
2287 }
2288 vnet_lisp_stats_enable_disable (enable);
2289done:
2290 unformat_free (line_input);
2291 return 0;
2292}
2293
2294/* *INDENT-OFF* */
2295VLIB_CLI_COMMAND (one_stats_enable_disable_command) = {
Filip Tehlar4868ff62017-03-09 16:48:39 +01002296 .path = "one statistics",
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01002297 .short_help = "enable/disable ONE statistics collecting",
2298 .function = lisp_stats_enable_disable_command_fn,
2299};
2300/* *INDENT-ON* */
2301
Filip Tehlar4868ff62017-03-09 16:48:39 +01002302static clib_error_t *
2303lisp_stats_flush_command_fn (vlib_main_t * vm,
2304 unformat_input_t * input,
2305 vlib_cli_command_t * cmd)
2306{
2307 vnet_lisp_flush_stats ();
2308 return 0;
2309}
2310
2311/* *INDENT-OFF* */
2312VLIB_CLI_COMMAND (one_stats_flush_command) = {
2313 .path = "one statistics flush",
2314 .short_help = "Flush ONE statistics",
2315 .function = lisp_stats_flush_command_fn,
2316};
2317/* *INDENT-ON* */
2318
Filip Tehlar0a8840d2017-10-16 05:48:23 -07002319static clib_error_t *
2320lisp_show_one_modes_command_fn (vlib_main_t * vm,
2321 unformat_input_t * input,
2322 vlib_cli_command_t * cmd)
2323{
2324 u8 pitr_mode = vnet_lisp_get_pitr_mode ();
2325 u8 petr_mode = vnet_lisp_get_petr_mode ();
2326 u8 xtr_mode = vnet_lisp_get_xtr_mode ();
2327
2328 vlib_cli_output (vm, "xTR: %s\n", xtr_mode ? "enabled" : "disabled");
2329 vlib_cli_output (vm, "P-ITR: %s\n", pitr_mode ? "enabled" : "disabled");
2330 vlib_cli_output (vm, "P-ETR: %s\n", petr_mode ? "enabled" : "disabled");
2331
2332 return 0;
2333}
2334
2335/* *INDENT-OFF* */
2336VLIB_CLI_COMMAND (one_cp_show_one_modes_modes_command) = {
2337 .path = "show one modes",
2338 .short_help = "show one modes",
2339 .function = lisp_show_one_modes_command_fn,
2340};
2341/* *INDENT-ON* */
2342
Filip Tehlar694396d2017-02-17 14:29:11 +01002343/*
2344 * fd.io coding-style-patch-verification: ON
2345 *
2346 * Local Variables:
2347 * eval: (c-set-style "gnu")
2348 * End:
2349 */