]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_cmd.c
Merge pull request #2335 from donaldsharp/bgp_memory_hooliganism
[mirror_frr.git] / pimd / pim_cmd.c
CommitLineData
12e41d03 1/*
896014f4
DL
2 * PIM for Quagga
3 * Copyright (C) 2008 Everton da Silva Marques
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
12e41d03 19
12e41d03
DL
20#include <zebra.h>
21
9bf3c633 22#include "lib/json.h"
12e41d03
DL
23#include "command.h"
24#include "if.h"
25#include "prefix.h"
26#include "zclient.h"
dfe43e25 27#include "plist.h"
cba44481
CS
28#include "hash.h"
29#include "nexthop.h"
02a16316 30#include "vrf.h"
37664928 31#include "ferr.h"
12e41d03
DL
32
33#include "pimd.h"
9867746a 34#include "pim_mroute.h"
12e41d03
DL
35#include "pim_cmd.h"
36#include "pim_iface.h"
37#include "pim_vty.h"
38#include "pim_mroute.h"
39#include "pim_str.h"
40#include "pim_igmp.h"
41#include "pim_igmpv3.h"
42#include "pim_sock.h"
43#include "pim_time.h"
44#include "pim_util.h"
45#include "pim_oil.h"
46#include "pim_neighbor.h"
47#include "pim_pim.h"
48#include "pim_ifchannel.h"
49#include "pim_hello.h"
50#include "pim_msg.h"
51#include "pim_upstream.h"
52#include "pim_rpf.h"
53#include "pim_macro.h"
54#include "pim_ssmpingd.h"
55#include "pim_zebra.h"
6250610a 56#include "pim_static.h"
a920d6e7 57#include "pim_rp.h"
05b0d0d0 58#include "pim_zlookup.h"
2a333e0f 59#include "pim_msdp.h"
15a5dafe 60#include "pim_ssm.h"
cba44481 61#include "pim_nht.h"
ba4eb1bc
CS
62#include "pim_bfd.h"
63#include "bfd.h"
12e41d03 64
12e41d03 65static struct cmd_node interface_node = {
d62a17ae 66 INTERFACE_NODE, "%s(config-if)# ", 1 /* vtysh ? yes */
12e41d03
DL
67};
68
d62a17ae 69static struct cmd_node debug_node = {DEBUG_NODE, "", 1};
eb7a976a 70
02a16316
DS
71static struct vrf *pim_cmd_lookup_vrf(struct vty *vty, struct cmd_token *argv[],
72 const int argc, int *idx)
73{
74 struct vrf *vrf;
75
76 if (argv_find(argv, argc, "NAME", idx))
77 vrf = vrf_lookup_by_name(argv[*idx]->arg);
78 else
79 vrf = vrf_lookup_by_id(VRF_DEFAULT);
80
81 if (!vrf)
82 vty_out(vty, "Specified VRF: %s does not exist\n",
83 argv[*idx]->arg);
84
85 return vrf;
86}
87
12e41d03
DL
88static void pim_if_membership_clear(struct interface *ifp)
89{
d62a17ae 90 struct pim_interface *pim_ifp;
12e41d03 91
d62a17ae 92 pim_ifp = ifp->info;
93 zassert(pim_ifp);
12e41d03 94
d62a17ae 95 if (PIM_IF_TEST_PIM(pim_ifp->options)
96 && PIM_IF_TEST_IGMP(pim_ifp->options)) {
97 return;
98 }
12e41d03 99
d62a17ae 100 pim_ifchannel_membership_clear(ifp);
12e41d03
DL
101}
102
103/*
104 When PIM is disabled on interface, IGMPv3 local membership
105 information is not injected into PIM interface state.
106
107 The function pim_if_membership_refresh() fetches all IGMPv3 local
108 membership information into PIM. It is intented to be called
109 whenever PIM is enabled on the interface in order to collect missed
110 local membership information.
111 */
112static void pim_if_membership_refresh(struct interface *ifp)
113{
d62a17ae 114 struct pim_interface *pim_ifp;
115 struct listnode *sock_node;
116 struct igmp_sock *igmp;
12e41d03 117
d62a17ae 118 pim_ifp = ifp->info;
119 zassert(pim_ifp);
12e41d03 120
d62a17ae 121 if (!PIM_IF_TEST_PIM(pim_ifp->options))
122 return;
123 if (!PIM_IF_TEST_IGMP(pim_ifp->options))
124 return;
12e41d03 125
d62a17ae 126 /*
127 First clear off membership from all PIM (S,G) entries on the
128 interface
129 */
12e41d03 130
d62a17ae 131 pim_ifchannel_membership_clear(ifp);
12e41d03 132
d62a17ae 133 /*
134 Then restore PIM (S,G) membership from all IGMPv3 (S,G) entries on
135 the interface
136 */
12e41d03 137
d62a17ae 138 /* scan igmp sockets */
139 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node, igmp)) {
140 struct listnode *grpnode;
141 struct igmp_group *grp;
12e41d03 142
d62a17ae 143 /* scan igmp groups */
144 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list, grpnode,
145 grp)) {
146 struct listnode *srcnode;
147 struct igmp_source *src;
69283639 148
d62a17ae 149 /* scan group sources */
150 for (ALL_LIST_ELEMENTS_RO(grp->group_source_list,
151 srcnode, src)) {
152
153 if (IGMP_SOURCE_TEST_FORWARDING(
154 src->source_flags)) {
155 struct prefix_sg sg;
156
157 memset(&sg, 0,
158 sizeof(struct prefix_sg));
159 sg.src = src->source_addr;
160 sg.grp = grp->group_addr;
161 pim_ifchannel_local_membership_add(ifp,
162 &sg);
163 }
12e41d03 164
d62a17ae 165 } /* scan group sources */
166 } /* scan igmp groups */
167 } /* scan igmp sockets */
12e41d03 168
d62a17ae 169 /*
170 Finally delete every PIM (S,G) entry lacking all state info
171 */
12e41d03 172
d62a17ae 173 pim_ifchannel_delete_on_noinfo(ifp);
12e41d03
DL
174}
175
1a8a3da8
DS
176static void pim_show_assert_helper(struct vty *vty,
177 struct pim_interface *pim_ifp,
996c9314 178 struct pim_ifchannel *ch, time_t now)
1a8a3da8
DS
179{
180 char ch_src_str[INET_ADDRSTRLEN];
181 char ch_grp_str[INET_ADDRSTRLEN];
182 char winner_str[INET_ADDRSTRLEN];
183 struct in_addr ifaddr;
184 char uptime[10];
185 char timer[10];
186
187 ifaddr = pim_ifp->primary_address;
188
996c9314
LB
189 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
190 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
1a8a3da8
DS
191 pim_inet4_dump("<assrt_win?>", ch->ifassert_winner, winner_str,
192 sizeof(winner_str));
193
996c9314
LB
194 pim_time_uptime(uptime, sizeof(uptime), now - ch->ifassert_creation);
195 pim_time_timer_to_mmss(timer, sizeof(timer), ch->t_ifassert_timer);
1a8a3da8
DS
196
197 vty_out(vty, "%-9s %-15s %-15s %-15s %-6s %-15s %-8s %-5s\n",
996c9314
LB
198 ch->interface->name, inet_ntoa(ifaddr), ch_src_str, ch_grp_str,
199 pim_ifchannel_ifassert_name(ch->ifassert_state), winner_str,
200 uptime, timer);
1a8a3da8
DS
201}
202
64c86530 203static void pim_show_assert(struct pim_instance *pim, struct vty *vty)
12e41d03 204{
d62a17ae 205 struct pim_interface *pim_ifp;
206 struct pim_ifchannel *ch;
1a8a3da8 207 struct interface *ifp;
d62a17ae 208 time_t now;
209
210 now = pim_time_monotonic_sec();
211
212 vty_out(vty,
213 "Interface Address Source Group State Winner Uptime Timer\n");
214
451fda4f 215 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 216 pim_ifp = ifp->info;
d62a17ae 217 if (!pim_ifp)
218 continue;
219
a2addae8 220 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8
DS
221 pim_show_assert_helper(vty, pim_ifp, ch, now);
222 } /* scan interface channels */
223 }
224}
d62a17ae 225
1a8a3da8
DS
226static void pim_show_assert_internal_helper(struct vty *vty,
227 struct pim_interface *pim_ifp,
228 struct pim_ifchannel *ch)
229{
230 char ch_src_str[INET_ADDRSTRLEN];
231 char ch_grp_str[INET_ADDRSTRLEN];
232 struct in_addr ifaddr;
d62a17ae 233
1a8a3da8
DS
234 ifaddr = pim_ifp->primary_address;
235
996c9314
LB
236 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
237 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
1a8a3da8 238 vty_out(vty, "%-9s %-15s %-15s %-15s %-3s %-3s %-3s %-4s\n",
996c9314 239 ch->interface->name, inet_ntoa(ifaddr), ch_src_str, ch_grp_str,
1a8a3da8
DS
240 PIM_IF_FLAG_TEST_COULD_ASSERT(ch->flags) ? "yes" : "no",
241 pim_macro_ch_could_assert_eval(ch) ? "yes" : "no",
996c9314
LB
242 PIM_IF_FLAG_TEST_ASSERT_TRACKING_DESIRED(ch->flags) ? "yes"
243 : "no",
244 pim_macro_assert_tracking_desired_eval(ch) ? "yes" : "no");
12e41d03
DL
245}
246
64c86530 247static void pim_show_assert_internal(struct pim_instance *pim, struct vty *vty)
12e41d03 248{
d62a17ae 249 struct pim_interface *pim_ifp;
d62a17ae 250 struct pim_ifchannel *ch;
1a8a3da8 251 struct interface *ifp;
d62a17ae 252
253 vty_out(vty,
254 "CA: CouldAssert\n"
255 "ECA: Evaluate CouldAssert\n"
256 "ATD: AssertTrackingDesired\n"
257 "eATD: Evaluate AssertTrackingDesired\n\n");
258
259 vty_out(vty,
260 "Interface Address Source Group CA eCA ATD eATD\n");
451fda4f 261 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 262 pim_ifp = ifp->info;
d62a17ae 263 if (!pim_ifp)
264 continue;
265
a2addae8 266 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8
DS
267 pim_show_assert_internal_helper(vty, pim_ifp, ch);
268 } /* scan interface channels */
269 }
270}
271
272static void pim_show_assert_metric_helper(struct vty *vty,
273 struct pim_interface *pim_ifp,
274 struct pim_ifchannel *ch)
275{
276 char ch_src_str[INET_ADDRSTRLEN];
277 char ch_grp_str[INET_ADDRSTRLEN];
278 char addr_str[INET_ADDRSTRLEN];
279 struct pim_assert_metric am;
280 struct in_addr ifaddr;
281
282 ifaddr = pim_ifp->primary_address;
283
284 am = pim_macro_spt_assert_metric(&ch->upstream->rpf,
285 pim_ifp->primary_address);
d62a17ae 286
996c9314
LB
287 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
288 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
289 pim_inet4_dump("<addr?>", am.ip_address, addr_str, sizeof(addr_str));
1a8a3da8
DS
290
291 vty_out(vty, "%-9s %-15s %-15s %-15s %-3s %4u %6u %-15s\n",
996c9314
LB
292 ch->interface->name, inet_ntoa(ifaddr), ch_src_str, ch_grp_str,
293 am.rpt_bit_flag ? "yes" : "no", am.metric_preference,
294 am.route_metric, addr_str);
12e41d03
DL
295}
296
64c86530 297static void pim_show_assert_metric(struct pim_instance *pim, struct vty *vty)
12e41d03 298{
d62a17ae 299 struct pim_interface *pim_ifp;
d62a17ae 300 struct pim_ifchannel *ch;
1a8a3da8 301 struct interface *ifp;
ea4a71fc 302
d62a17ae 303 vty_out(vty,
304 "Interface Address Source Group RPT Pref Metric Address \n");
12e41d03 305
451fda4f 306 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 307 pim_ifp = ifp->info;
d62a17ae 308 if (!pim_ifp)
309 continue;
12e41d03 310
a2addae8 311 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8
DS
312 pim_show_assert_metric_helper(vty, pim_ifp, ch);
313 } /* scan interface channels */
314 }
315}
12e41d03 316
1a8a3da8
DS
317static void pim_show_assert_winner_metric_helper(struct vty *vty,
318 struct pim_interface *pim_ifp,
319 struct pim_ifchannel *ch)
320{
321 char ch_src_str[INET_ADDRSTRLEN];
322 char ch_grp_str[INET_ADDRSTRLEN];
323 char addr_str[INET_ADDRSTRLEN];
324 struct pim_assert_metric *am;
325 struct in_addr ifaddr;
326 char pref_str[5];
327 char metr_str[7];
328
329 ifaddr = pim_ifp->primary_address;
330
331 am = &ch->ifassert_winner_metric;
332
996c9314
LB
333 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
334 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
335 pim_inet4_dump("<addr?>", am->ip_address, addr_str, sizeof(addr_str));
1a8a3da8
DS
336
337 if (am->metric_preference == PIM_ASSERT_METRIC_PREFERENCE_MAX)
338 snprintf(pref_str, sizeof(pref_str), "INFI");
339 else
340 snprintf(pref_str, sizeof(pref_str), "%4u",
341 am->metric_preference);
342
343 if (am->route_metric == PIM_ASSERT_ROUTE_METRIC_MAX)
344 snprintf(metr_str, sizeof(metr_str), "INFI");
345 else
996c9314 346 snprintf(metr_str, sizeof(metr_str), "%6u", am->route_metric);
1a8a3da8
DS
347
348 vty_out(vty, "%-9s %-15s %-15s %-15s %-3s %-4s %-6s %-15s\n",
996c9314
LB
349 ch->interface->name, inet_ntoa(ifaddr), ch_src_str, ch_grp_str,
350 am->rpt_bit_flag ? "yes" : "no", pref_str, metr_str, addr_str);
12e41d03
DL
351}
352
64c86530
DS
353static void pim_show_assert_winner_metric(struct pim_instance *pim,
354 struct vty *vty)
12e41d03 355{
d62a17ae 356 struct pim_interface *pim_ifp;
d62a17ae 357 struct pim_ifchannel *ch;
1a8a3da8 358 struct interface *ifp;
d62a17ae 359
360 vty_out(vty,
361 "Interface Address Source Group RPT Pref Metric Address \n");
362
451fda4f 363 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 364 pim_ifp = ifp->info;
d62a17ae 365 if (!pim_ifp)
366 continue;
12e41d03 367
a2addae8 368 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8
DS
369 pim_show_assert_winner_metric_helper(vty, pim_ifp, ch);
370 } /* scan interface channels */
371 }
12e41d03
DL
372}
373
d62a17ae 374static void json_object_pim_ifp_add(struct json_object *json,
375 struct interface *ifp)
e775c0a4 376{
d62a17ae 377 struct pim_interface *pim_ifp;
e775c0a4 378
d62a17ae 379 pim_ifp = ifp->info;
380 json_object_string_add(json, "name", ifp->name);
381 json_object_string_add(json, "state", if_is_up(ifp) ? "up" : "down");
382 json_object_string_add(json, "address",
383 inet_ntoa(pim_ifp->primary_address));
384 json_object_int_add(json, "index", ifp->ifindex);
e775c0a4 385
d62a17ae 386 if (if_is_multicast(ifp))
387 json_object_boolean_true_add(json, "flagMulticast");
e775c0a4 388
d62a17ae 389 if (if_is_broadcast(ifp))
390 json_object_boolean_true_add(json, "flagBroadcast");
e775c0a4 391
d62a17ae 392 if (ifp->flags & IFF_ALLMULTI)
393 json_object_boolean_true_add(json, "flagAllMulticast");
e775c0a4 394
d62a17ae 395 if (ifp->flags & IFF_PROMISC)
396 json_object_boolean_true_add(json, "flagPromiscuous");
e775c0a4 397
d62a17ae 398 if (PIM_IF_IS_DELETED(ifp))
399 json_object_boolean_true_add(json, "flagDeleted");
e775c0a4 400
d62a17ae 401 if (pim_if_lan_delay_enabled(ifp))
402 json_object_boolean_true_add(json, "lanDelayEnabled");
e775c0a4
DW
403}
404
1a8a3da8
DS
405static void pim_show_membership_helper(struct vty *vty,
406 struct pim_interface *pim_ifp,
407 struct pim_ifchannel *ch,
408 struct json_object *json)
409{
410 char ch_src_str[INET_ADDRSTRLEN];
411 char ch_grp_str[INET_ADDRSTRLEN];
412 json_object *json_iface = NULL;
413 json_object *json_row = NULL;
414
996c9314
LB
415 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
416 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
1a8a3da8 417
996c9314 418 json_object_object_get_ex(json, ch->interface->name, &json_iface);
1a8a3da8
DS
419 if (!json_iface) {
420 json_iface = json_object_new_object();
421 json_object_pim_ifp_add(json_iface, ch->interface);
996c9314 422 json_object_object_add(json, ch->interface->name, json_iface);
1a8a3da8
DS
423 }
424
425 json_row = json_object_new_object();
426 json_object_string_add(json_row, "source", ch_src_str);
427 json_object_string_add(json_row, "group", ch_grp_str);
996c9314
LB
428 json_object_string_add(json_row, "localMembership",
429 ch->local_ifmembership == PIM_IFMEMBERSHIP_NOINFO
430 ? "NOINFO"
431 : "INCLUDE");
1a8a3da8 432 json_object_object_add(json_iface, ch_grp_str, json_row);
1a8a3da8 433}
64c86530 434static void pim_show_membership(struct pim_instance *pim, struct vty *vty,
d7c0a89a 435 uint8_t uj)
12e41d03 436{
d62a17ae 437 struct pim_interface *pim_ifp;
d62a17ae 438 struct pim_ifchannel *ch;
1a8a3da8 439 struct interface *ifp;
d62a17ae 440 enum json_type type;
441 json_object *json = NULL;
d62a17ae 442 json_object *json_tmp = NULL;
443
444 json = json_object_new_object();
445
451fda4f 446 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 447 pim_ifp = ifp->info;
d62a17ae 448 if (!pim_ifp)
449 continue;
450
a2addae8 451 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8
DS
452 pim_show_membership_helper(vty, pim_ifp, ch, json);
453 } /* scan interface channels */
454 }
d62a17ae 455
456 if (uj) {
9d303b37
DL
457 vty_out(vty, "%s\n", json_object_to_json_string_ext(
458 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 459 } else {
460 vty_out(vty,
461 "Interface Address Source Group Membership\n");
462
463 /*
464 * Example of the json data we are traversing
465 *
466 * {
467 * "swp3":{
468 * "name":"swp3",
469 * "state":"up",
470 * "address":"10.1.20.1",
471 * "index":5,
472 * "flagMulticast":true,
473 * "flagBroadcast":true,
474 * "lanDelayEnabled":true,
475 * "226.10.10.10":{
476 * "source":"*",
477 * "group":"226.10.10.10",
478 * "localMembership":"INCLUDE"
479 * }
480 * }
481 * }
482 */
483
484 /* foreach interface */
485 json_object_object_foreach(json, key, val)
486 {
487
488 /* Find all of the keys where the val is an object. In
489 * the example
490 * above the only one is 226.10.10.10
491 */
492 json_object_object_foreach(val, if_field_key,
493 if_field_val)
494 {
495 type = json_object_get_type(if_field_val);
496
497 if (type == json_type_object) {
498 vty_out(vty, "%-9s ", key);
499
500 json_object_object_get_ex(
501 val, "address", &json_tmp);
502 vty_out(vty, "%-15s ",
503 json_object_get_string(
504 json_tmp));
505
506 json_object_object_get_ex(if_field_val,
507 "source",
508 &json_tmp);
509 vty_out(vty, "%-15s ",
510 json_object_get_string(
511 json_tmp));
512
513 /* Group */
514 vty_out(vty, "%-15s ", if_field_key);
515
516 json_object_object_get_ex(
517 if_field_val, "localMembership",
518 &json_tmp);
519 vty_out(vty, "%-10s\n",
520 json_object_get_string(
521 json_tmp));
522 }
523 }
524 }
525 }
526
527 json_object_free(json);
528}
529
530static void pim_print_ifp_flags(struct vty *vty, struct interface *ifp,
531 int mloop)
532{
533 vty_out(vty, "Flags\n");
534 vty_out(vty, "-----\n");
535 vty_out(vty, "All Multicast : %s\n",
536 (ifp->flags & IFF_ALLMULTI) ? "yes" : "no");
537 vty_out(vty, "Broadcast : %s\n",
538 if_is_broadcast(ifp) ? "yes" : "no");
539 vty_out(vty, "Deleted : %s\n",
540 PIM_IF_IS_DELETED(ifp) ? "yes" : "no");
541 vty_out(vty, "Interface Index : %d\n", ifp->ifindex);
542 vty_out(vty, "Multicast : %s\n",
543 if_is_multicast(ifp) ? "yes" : "no");
544 vty_out(vty, "Multicast Loop : %d\n", mloop);
545 vty_out(vty, "Promiscuous : %s\n",
546 (ifp->flags & IFF_PROMISC) ? "yes" : "no");
547 vty_out(vty, "\n");
548 vty_out(vty, "\n");
a268493f
DW
549}
550
64c86530 551static void igmp_show_interfaces(struct pim_instance *pim, struct vty *vty,
d7c0a89a 552 uint8_t uj)
12e41d03 553{
d62a17ae 554 struct interface *ifp;
555 time_t now;
556 json_object *json = NULL;
557 json_object *json_row = NULL;
558
559 now = pim_time_monotonic_sec();
560
561 if (uj)
562 json = json_object_new_object();
563 else
564 vty_out(vty,
565 "Interface State Address V Querier Query Timer Uptime\n");
566
451fda4f 567 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 568 struct pim_interface *pim_ifp;
569 struct listnode *sock_node;
570 struct igmp_sock *igmp;
571
572 pim_ifp = ifp->info;
573
574 if (!pim_ifp)
575 continue;
576
577 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
578 igmp)) {
579 char uptime[10];
580 char query_hhmmss[10];
581
582 pim_time_uptime(uptime, sizeof(uptime),
583 now - igmp->sock_creation);
584 pim_time_timer_to_hhmmss(query_hhmmss,
585 sizeof(query_hhmmss),
586 igmp->t_igmp_query_timer);
587
588 if (uj) {
589 json_row = json_object_new_object();
590 json_object_pim_ifp_add(json_row, ifp);
591 json_object_string_add(json_row, "upTime",
592 uptime);
593 json_object_int_add(json_row, "version",
594 pim_ifp->igmp_version);
595
596 if (igmp->t_igmp_query_timer) {
597 json_object_boolean_true_add(json_row,
598 "querier");
599 json_object_string_add(json_row,
600 "queryTimer",
601 query_hhmmss);
602 }
603
604 json_object_object_add(json, ifp->name,
605 json_row);
606
f83f3966
MS
607 if (igmp->mtrace_only) {
608 json_object_boolean_true_add(
609 json_row, "mtraceOnly");
610 }
d62a17ae 611 } else {
612 vty_out(vty,
613 "%-9s %5s %15s %d %7s %11s %8s\n",
614 ifp->name,
f83f3966
MS
615 if_is_up(ifp)
616 ? (igmp->mtrace_only ? "mtrc"
617 : "up")
618 : "down",
d62a17ae 619 inet_ntoa(igmp->ifaddr),
620 pim_ifp->igmp_version,
621 igmp->t_igmp_query_timer ? "local"
622 : "other",
623 query_hhmmss, uptime);
624 }
625 }
626 }
627
628 if (uj) {
9d303b37
DL
629 vty_out(vty, "%s\n", json_object_to_json_string_ext(
630 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 631 json_object_free(json);
632 }
633}
634
64c86530
DS
635static void igmp_show_interfaces_single(struct pim_instance *pim,
636 struct vty *vty, const char *ifname,
d7c0a89a 637 uint8_t uj)
d62a17ae 638{
639 struct igmp_sock *igmp;
640 struct interface *ifp;
d62a17ae 641 struct listnode *sock_node;
642 struct pim_interface *pim_ifp;
643 char uptime[10];
644 char query_hhmmss[10];
645 char other_hhmmss[10];
646 int found_ifname = 0;
647 int sqi;
96ceedc7 648 int mloop = 0;
d62a17ae 649 long gmi_msec; /* Group Membership Interval */
650 long lmqt_msec;
651 long ohpi_msec;
652 long oqpi_msec; /* Other Querier Present Interval */
653 long qri_msec;
654 time_t now;
655
656 json_object *json = NULL;
657 json_object *json_row = NULL;
658
659 if (uj)
660 json = json_object_new_object();
661
662 now = pim_time_monotonic_sec();
663
451fda4f 664 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 665 pim_ifp = ifp->info;
666
667 if (!pim_ifp)
668 continue;
669
670 if (strcmp(ifname, "detail") && strcmp(ifname, ifp->name))
671 continue;
672
673 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
674 igmp)) {
675 found_ifname = 1;
676 pim_time_uptime(uptime, sizeof(uptime),
677 now - igmp->sock_creation);
678 pim_time_timer_to_hhmmss(query_hhmmss,
679 sizeof(query_hhmmss),
680 igmp->t_igmp_query_timer);
681 pim_time_timer_to_hhmmss(other_hhmmss,
682 sizeof(other_hhmmss),
683 igmp->t_other_querier_timer);
684
685 gmi_msec = PIM_IGMP_GMI_MSEC(
686 igmp->querier_robustness_variable,
687 igmp->querier_query_interval,
688 pim_ifp->igmp_query_max_response_time_dsec);
689
690 sqi = PIM_IGMP_SQI(
691 pim_ifp->igmp_default_query_interval);
692
693 oqpi_msec = PIM_IGMP_OQPI_MSEC(
694 igmp->querier_robustness_variable,
695 igmp->querier_query_interval,
696 pim_ifp->igmp_query_max_response_time_dsec);
697
698 lmqt_msec = PIM_IGMP_LMQT_MSEC(
699 pim_ifp->igmp_query_max_response_time_dsec,
700 igmp->querier_robustness_variable);
701
702 ohpi_msec =
703 PIM_IGMP_OHPI_DSEC(
704 igmp->querier_robustness_variable,
705 igmp->querier_query_interval,
706 pim_ifp->igmp_query_max_response_time_dsec)
707 * 100;
708
709 qri_msec = pim_ifp->igmp_query_max_response_time_dsec
710 * 100;
96ceedc7
CS
711 if (pim_ifp->pim_sock_fd >= 0)
712 mloop = pim_socket_mcastloop_get(
713 pim_ifp->pim_sock_fd);
714 else
715 mloop = 0;
d62a17ae 716
717 if (uj) {
718 json_row = json_object_new_object();
719 json_object_pim_ifp_add(json_row, ifp);
720 json_object_string_add(json_row, "upTime",
721 uptime);
722 json_object_string_add(json_row, "querier",
723 igmp->t_igmp_query_timer
724 ? "local"
725 : "other");
726 json_object_int_add(json_row, "queryStartCount",
727 igmp->startup_query_count);
728 json_object_string_add(json_row,
729 "queryQueryTimer",
730 query_hhmmss);
731 json_object_string_add(json_row,
732 "queryOtherTimer",
733 other_hhmmss);
734 json_object_int_add(json_row, "version",
735 pim_ifp->igmp_version);
736 json_object_int_add(
737 json_row,
738 "timerGroupMembershipIntervalMsec",
739 gmi_msec);
740 json_object_int_add(json_row,
741 "timerLastMemberQueryMsec",
742 lmqt_msec);
743 json_object_int_add(
744 json_row,
745 "timerOlderHostPresentIntervalMsec",
746 ohpi_msec);
747 json_object_int_add(
748 json_row,
749 "timerOtherQuerierPresentIntervalMsec",
750 oqpi_msec);
751 json_object_int_add(
752 json_row, "timerQueryInterval",
753 igmp->querier_query_interval);
754 json_object_int_add(
755 json_row,
756 "timerQueryResponseIntervalMsec",
757 qri_msec);
758 json_object_int_add(
759 json_row, "timerRobustnessVariable",
760 igmp->querier_robustness_variable);
761 json_object_int_add(json_row,
762 "timerStartupQueryInterval",
763 sqi);
764
765 json_object_object_add(json, ifp->name,
766 json_row);
767
f83f3966
MS
768 if (igmp->mtrace_only) {
769 json_object_boolean_true_add(
770 json_row, "mtraceOnly");
771 }
d62a17ae 772 } else {
773 vty_out(vty, "Interface : %s\n", ifp->name);
774 vty_out(vty, "State : %s\n",
f83f3966
MS
775 if_is_up(ifp)
776 ? (igmp->mtrace_only ? "mtrace"
777 : "up")
778 : "down");
d62a17ae 779 vty_out(vty, "Address : %s\n",
780 inet_ntoa(pim_ifp->primary_address));
781 vty_out(vty, "Uptime : %s\n", uptime);
782 vty_out(vty, "Version : %d\n",
783 pim_ifp->igmp_version);
784 vty_out(vty, "\n");
785 vty_out(vty, "\n");
786
787 vty_out(vty, "Querier\n");
788 vty_out(vty, "-------\n");
789 vty_out(vty, "Querier : %s\n",
790 igmp->t_igmp_query_timer ? "local"
791 : "other");
792 vty_out(vty, "Start Count : %d\n",
793 igmp->startup_query_count);
794 vty_out(vty, "Query Timer : %s\n",
795 query_hhmmss);
796 vty_out(vty, "Other Timer : %s\n",
797 other_hhmmss);
798 vty_out(vty, "\n");
799 vty_out(vty, "\n");
800
801 vty_out(vty, "Timers\n");
802 vty_out(vty, "------\n");
803 vty_out(vty,
804 "Group Membership Interval : %lis\n",
805 gmi_msec / 1000);
806 vty_out(vty,
807 "Last Member Query Time : %lis\n",
808 lmqt_msec / 1000);
809 vty_out(vty,
810 "Older Host Present Interval : %lis\n",
811 ohpi_msec / 1000);
812 vty_out(vty,
813 "Other Querier Present Interval : %lis\n",
814 oqpi_msec / 1000);
815 vty_out(vty,
816 "Query Interval : %ds\n",
817 igmp->querier_query_interval);
818 vty_out(vty,
819 "Query Response Interval : %lis\n",
820 qri_msec / 1000);
821 vty_out(vty,
822 "Robustness Variable : %d\n",
823 igmp->querier_robustness_variable);
824 vty_out(vty,
825 "Startup Query Interval : %ds\n",
826 sqi);
827 vty_out(vty, "\n");
828 vty_out(vty, "\n");
829
830 pim_print_ifp_flags(vty, ifp, mloop);
831 }
832 }
833 }
834
835 if (uj) {
9d303b37
DL
836 vty_out(vty, "%s\n", json_object_to_json_string_ext(
837 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 838 json_object_free(json);
839 } else {
840 if (!found_ifname)
841 vty_out(vty, "%% No such interface\n");
842 }
12e41d03
DL
843}
844
64c86530 845static void igmp_show_interface_join(struct pim_instance *pim, struct vty *vty)
12e41d03 846{
d62a17ae 847 struct interface *ifp;
848 time_t now;
849
850 now = pim_time_monotonic_sec();
851
852 vty_out(vty,
853 "Interface Address Source Group Socket Uptime \n");
854
451fda4f 855 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 856 struct pim_interface *pim_ifp;
857 struct listnode *join_node;
858 struct igmp_join *ij;
859 struct in_addr pri_addr;
860 char pri_addr_str[INET_ADDRSTRLEN];
861
862 pim_ifp = ifp->info;
863
864 if (!pim_ifp)
865 continue;
866
867 if (!pim_ifp->igmp_join_list)
868 continue;
869
870 pri_addr = pim_find_primary_addr(ifp);
871 pim_inet4_dump("<pri?>", pri_addr, pri_addr_str,
872 sizeof(pri_addr_str));
873
874 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_join_list, join_node,
875 ij)) {
876 char group_str[INET_ADDRSTRLEN];
877 char source_str[INET_ADDRSTRLEN];
878 char uptime[10];
879
880 pim_time_uptime(uptime, sizeof(uptime),
881 now - ij->sock_creation);
882 pim_inet4_dump("<grp?>", ij->group_addr, group_str,
883 sizeof(group_str));
884 pim_inet4_dump("<src?>", ij->source_addr, source_str,
885 sizeof(source_str));
886
887 vty_out(vty, "%-9s %-15s %-15s %-15s %6d %8s\n",
888 ifp->name, pri_addr_str, source_str, group_str,
889 ij->sock_fd, uptime);
890 } /* for (pim_ifp->igmp_join_list) */
891
892 } /* for (iflist) */
893}
894
64c86530
DS
895static void pim_show_interfaces_single(struct pim_instance *pim,
896 struct vty *vty, const char *ifname,
d7c0a89a 897 uint8_t uj)
d62a17ae 898{
899 struct in_addr ifaddr;
900 struct interface *ifp;
901 struct listnode *neighnode;
d62a17ae 902 struct listnode *upnode;
903 struct pim_interface *pim_ifp;
904 struct pim_neighbor *neigh;
905 struct pim_upstream *up;
906 time_t now;
907 char dr_str[INET_ADDRSTRLEN];
908 char dr_uptime[10];
909 char expire[10];
910 char grp_str[INET_ADDRSTRLEN];
911 char hello_period[10];
912 char hello_timer[10];
913 char neigh_src_str[INET_ADDRSTRLEN];
914 char src_str[INET_ADDRSTRLEN];
915 char stat_uptime[10];
916 char uptime[10];
96ceedc7 917 int mloop = 0;
d62a17ae 918 int found_ifname = 0;
919 int print_header;
920 json_object *json = NULL;
921 json_object *json_row = NULL;
922 json_object *json_pim_neighbor = NULL;
923 json_object *json_pim_neighbors = NULL;
924 json_object *json_group = NULL;
925 json_object *json_group_source = NULL;
926 json_object *json_fhr_sources = NULL;
927 struct pim_secondary_addr *sec_addr;
928 struct listnode *sec_node;
929
930 now = pim_time_monotonic_sec();
931
932 if (uj)
933 json = json_object_new_object();
934
451fda4f 935 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 936 pim_ifp = ifp->info;
937
938 if (!pim_ifp)
939 continue;
940
d62a17ae 941 if (strcmp(ifname, "detail") && strcmp(ifname, ifp->name))
942 continue;
943
944 found_ifname = 1;
945 ifaddr = pim_ifp->primary_address;
946 pim_inet4_dump("<dr?>", pim_ifp->pim_dr_addr, dr_str,
947 sizeof(dr_str));
948 pim_time_uptime_begin(dr_uptime, sizeof(dr_uptime), now,
949 pim_ifp->pim_dr_election_last);
950 pim_time_timer_to_hhmmss(hello_timer, sizeof(hello_timer),
951 pim_ifp->t_pim_hello_timer);
952 pim_time_mmss(hello_period, sizeof(hello_period),
953 pim_ifp->pim_hello_period);
954 pim_time_uptime(stat_uptime, sizeof(stat_uptime),
955 now - pim_ifp->pim_ifstat_start);
96ceedc7
CS
956 if (pim_ifp->pim_sock_fd >= 0)
957 mloop = pim_socket_mcastloop_get(pim_ifp->pim_sock_fd);
958 else
959 mloop = 0;
d62a17ae 960
961 if (uj) {
962 char pbuf[PREFIX2STR_BUFFER];
963 json_row = json_object_new_object();
964 json_object_pim_ifp_add(json_row, ifp);
965
966 if (pim_ifp->update_source.s_addr != INADDR_ANY) {
967 json_object_string_add(
968 json_row, "useSource",
969 inet_ntoa(pim_ifp->update_source));
970 }
971 if (pim_ifp->sec_addr_list) {
972 json_object *sec_list = NULL;
973
974 sec_list = json_object_new_array();
975 for (ALL_LIST_ELEMENTS_RO(
976 pim_ifp->sec_addr_list, sec_node,
977 sec_addr)) {
978 json_object_array_add(
979 sec_list,
980 json_object_new_string(
981 prefix2str(
982 &sec_addr->addr,
983 pbuf,
984 sizeof(pbuf))));
985 }
986 json_object_object_add(json_row,
987 "secondaryAddressList",
988 sec_list);
989 }
990
991 // PIM neighbors
992 if (pim_ifp->pim_neighbor_list->count) {
993 json_pim_neighbors = json_object_new_object();
994
995 for (ALL_LIST_ELEMENTS_RO(
996 pim_ifp->pim_neighbor_list,
997 neighnode, neigh)) {
998 json_pim_neighbor =
999 json_object_new_object();
1000 pim_inet4_dump("<src?>",
1001 neigh->source_addr,
1002 neigh_src_str,
1003 sizeof(neigh_src_str));
1004 pim_time_uptime(uptime, sizeof(uptime),
1005 now - neigh->creation);
1006 pim_time_timer_to_hhmmss(
1007 expire, sizeof(expire),
1008 neigh->t_expire_timer);
1009
1010 json_object_string_add(
1011 json_pim_neighbor, "address",
1012 neigh_src_str);
1013 json_object_string_add(
1014 json_pim_neighbor, "upTime",
1015 uptime);
1016 json_object_string_add(
1017 json_pim_neighbor, "holdtime",
1018 expire);
1019
1020 json_object_object_add(
1021 json_pim_neighbors,
1022 neigh_src_str,
1023 json_pim_neighbor);
1024 }
1025
1026 json_object_object_add(json_row, "neighbors",
1027 json_pim_neighbors);
1028 }
1029
1030 json_object_string_add(json_row, "drAddress", dr_str);
1031 json_object_int_add(json_row, "drPriority",
1032 pim_ifp->pim_dr_priority);
1033 json_object_string_add(json_row, "drUptime", dr_uptime);
1034 json_object_int_add(json_row, "drElections",
1035 pim_ifp->pim_dr_election_count);
1036 json_object_int_add(json_row, "drChanges",
1037 pim_ifp->pim_dr_election_changes);
1038
1039 // FHR
c68ba0d7 1040 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, upnode,
d62a17ae 1041 up)) {
5fe58e3d
DS
1042 if (ifp != up->rpf.source_nexthop.interface)
1043 continue;
1044
1045 if (!(up->flags & PIM_UPSTREAM_FLAG_MASK_FHR))
1046 continue;
1047
1048 if (!json_fhr_sources)
1049 json_fhr_sources =
1050 json_object_new_object();
1051
996c9314
LB
1052 pim_inet4_dump("<src?>", up->sg.src, src_str,
1053 sizeof(src_str));
1054 pim_inet4_dump("<grp?>", up->sg.grp, grp_str,
1055 sizeof(grp_str));
5fe58e3d
DS
1056 pim_time_uptime(uptime, sizeof(uptime),
1057 now - up->state_transition);
1058
1059 /*
1060 * Does this group live in json_fhr_sources?
1061 * If not create it.
1062 */
1063 json_object_object_get_ex(json_fhr_sources,
996c9314 1064 grp_str, &json_group);
5fe58e3d
DS
1065
1066 if (!json_group) {
1067 json_group = json_object_new_object();
996c9314
LB
1068 json_object_object_add(json_fhr_sources,
1069 grp_str,
1070 json_group);
d62a17ae 1071 }
5fe58e3d
DS
1072
1073 json_group_source = json_object_new_object();
1074 json_object_string_add(json_group_source,
1075 "source", src_str);
1076 json_object_string_add(json_group_source,
1077 "group", grp_str);
1078 json_object_string_add(json_group_source,
1079 "upTime", uptime);
1080 json_object_object_add(json_group, src_str,
1081 json_group_source);
d62a17ae 1082 }
1083
1084 if (json_fhr_sources) {
1085 json_object_object_add(json_row,
1086 "firstHopRouter",
1087 json_fhr_sources);
1088 }
1089
1090 json_object_int_add(json_row, "helloPeriod",
1091 pim_ifp->pim_hello_period);
1092 json_object_string_add(json_row, "helloTimer",
1093 hello_timer);
1094 json_object_string_add(json_row, "helloStatStart",
1095 stat_uptime);
1096 json_object_int_add(json_row, "helloReceived",
1097 pim_ifp->pim_ifstat_hello_recv);
1098 json_object_int_add(json_row, "helloReceivedFailed",
1099 pim_ifp->pim_ifstat_hello_recvfail);
1100 json_object_int_add(json_row, "helloSend",
1101 pim_ifp->pim_ifstat_hello_sent);
1102 json_object_int_add(json_row, "hellosendFailed",
1103 pim_ifp->pim_ifstat_hello_sendfail);
1104 json_object_int_add(json_row, "helloGenerationId",
1105 pim_ifp->pim_generation_id);
1106 json_object_int_add(json_row, "flagMulticastLoop",
1107 mloop);
1108
1109 json_object_int_add(
1110 json_row, "effectivePropagationDelay",
1111 pim_if_effective_propagation_delay_msec(ifp));
1112 json_object_int_add(
1113 json_row, "effectiveOverrideInterval",
1114 pim_if_effective_override_interval_msec(ifp));
1115 json_object_int_add(
1116 json_row, "joinPruneOverrideInterval",
1117 pim_if_jp_override_interval_msec(ifp));
1118
1119 json_object_int_add(
1120 json_row, "propagationDelay",
1121 pim_ifp->pim_propagation_delay_msec);
1122 json_object_int_add(
1123 json_row, "propagationDelayHighest",
1124 pim_ifp->pim_neighbors_highest_propagation_delay_msec);
1125 json_object_int_add(
1126 json_row, "overrideInterval",
1127 pim_ifp->pim_override_interval_msec);
1128 json_object_int_add(
1129 json_row, "overrideIntervalHighest",
1130 pim_ifp->pim_neighbors_highest_override_interval_msec);
1131 json_object_object_add(json, ifp->name, json_row);
1132
1133 } else {
1134 vty_out(vty, "Interface : %s\n", ifp->name);
1135 vty_out(vty, "State : %s\n",
1136 if_is_up(ifp) ? "up" : "down");
1137 if (pim_ifp->update_source.s_addr != INADDR_ANY) {
1138 vty_out(vty, "Use Source : %s\n",
1139 inet_ntoa(pim_ifp->update_source));
1140 }
1141 if (pim_ifp->sec_addr_list) {
1142 char pbuf[PREFIX2STR_BUFFER];
1143 vty_out(vty, "Address : %s (primary)\n",
1144 inet_ntoa(ifaddr));
1145 for (ALL_LIST_ELEMENTS_RO(
1146 pim_ifp->sec_addr_list, sec_node,
1147 sec_addr)) {
1148 vty_out(vty, " %s\n",
1149 prefix2str(&sec_addr->addr,
1150 pbuf, sizeof(pbuf)));
1151 }
1152 } else {
1153 vty_out(vty, "Address : %s\n",
1154 inet_ntoa(ifaddr));
1155 }
1156 vty_out(vty, "\n");
1157
1158 // PIM neighbors
1159 print_header = 1;
1160
1161 for (ALL_LIST_ELEMENTS_RO(pim_ifp->pim_neighbor_list,
1162 neighnode, neigh)) {
1163
1164 if (print_header) {
1165 vty_out(vty, "PIM Neighbors\n");
1166 vty_out(vty, "-------------\n");
1167 print_header = 0;
1168 }
1169
1170 pim_inet4_dump("<src?>", neigh->source_addr,
1171 neigh_src_str,
1172 sizeof(neigh_src_str));
1173 pim_time_uptime(uptime, sizeof(uptime),
1174 now - neigh->creation);
1175 pim_time_timer_to_hhmmss(expire, sizeof(expire),
1176 neigh->t_expire_timer);
1177 vty_out(vty,
1178 "%-15s : up for %s, holdtime expires in %s\n",
1179 neigh_src_str, uptime, expire);
1180 }
1181
1182 if (!print_header) {
1183 vty_out(vty, "\n");
1184 vty_out(vty, "\n");
1185 }
1186
1187 vty_out(vty, "Designated Router\n");
1188 vty_out(vty, "-----------------\n");
1189 vty_out(vty, "Address : %s\n", dr_str);
1190 vty_out(vty, "Priority : %d\n",
1191 pim_ifp->pim_dr_priority);
1192 vty_out(vty, "Uptime : %s\n", dr_uptime);
1193 vty_out(vty, "Elections : %d\n",
1194 pim_ifp->pim_dr_election_count);
1195 vty_out(vty, "Changes : %d\n",
1196 pim_ifp->pim_dr_election_changes);
1197 vty_out(vty, "\n");
1198 vty_out(vty, "\n");
1199
1200 // FHR
1201 print_header = 1;
c68ba0d7 1202 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, upnode,
d62a17ae 1203 up)) {
5fe58e3d
DS
1204
1205 if (strcmp(ifp->name,
996c9314
LB
1206 up->rpf.source_nexthop
1207 .interface->name)
1208 != 0)
5fe58e3d
DS
1209 continue;
1210
1211 if (!(up->flags & PIM_UPSTREAM_FLAG_MASK_FHR))
1212 continue;
1213
1214 if (print_header) {
1215 vty_out(vty,
1216 "FHR - First Hop Router\n");
1217 vty_out(vty,
1218 "----------------------\n");
1219 print_header = 0;
d62a17ae 1220 }
5fe58e3d 1221
996c9314
LB
1222 pim_inet4_dump("<src?>", up->sg.src, src_str,
1223 sizeof(src_str));
1224 pim_inet4_dump("<grp?>", up->sg.grp, grp_str,
1225 sizeof(grp_str));
5fe58e3d
DS
1226 pim_time_uptime(uptime, sizeof(uptime),
1227 now - up->state_transition);
1228 vty_out(vty,
1229 "%s : %s is a source, uptime is %s\n",
996c9314 1230 grp_str, src_str, uptime);
d62a17ae 1231 }
1232
1233 if (!print_header) {
1234 vty_out(vty, "\n");
1235 vty_out(vty, "\n");
1236 }
1237
1238 vty_out(vty, "Hellos\n");
1239 vty_out(vty, "------\n");
1240 vty_out(vty, "Period : %d\n",
1241 pim_ifp->pim_hello_period);
1242 vty_out(vty, "Timer : %s\n", hello_timer);
1243 vty_out(vty, "StatStart : %s\n", stat_uptime);
1244 vty_out(vty, "Receive : %d\n",
1245 pim_ifp->pim_ifstat_hello_recv);
1246 vty_out(vty, "Receive Failed : %d\n",
1247 pim_ifp->pim_ifstat_hello_recvfail);
1248 vty_out(vty, "Send : %d\n",
1249 pim_ifp->pim_ifstat_hello_sent);
1250 vty_out(vty, "Send Failed : %d\n",
1251 pim_ifp->pim_ifstat_hello_sendfail);
1252 vty_out(vty, "Generation ID : %08x\n",
1253 pim_ifp->pim_generation_id);
1254 vty_out(vty, "\n");
1255 vty_out(vty, "\n");
1256
1257 pim_print_ifp_flags(vty, ifp, mloop);
1258
1259 vty_out(vty, "Join Prune Interval\n");
1260 vty_out(vty, "-------------------\n");
1261 vty_out(vty, "LAN Delay : %s\n",
1262 pim_if_lan_delay_enabled(ifp) ? "yes" : "no");
1263 vty_out(vty, "Effective Propagation Delay : %d msec\n",
1264 pim_if_effective_propagation_delay_msec(ifp));
1265 vty_out(vty, "Effective Override Interval : %d msec\n",
1266 pim_if_effective_override_interval_msec(ifp));
1267 vty_out(vty, "Join Prune Override Interval : %d msec\n",
1268 pim_if_jp_override_interval_msec(ifp));
1269 vty_out(vty, "\n");
1270 vty_out(vty, "\n");
1271
1272 vty_out(vty, "LAN Prune Delay\n");
1273 vty_out(vty, "---------------\n");
1274 vty_out(vty, "Propagation Delay : %d msec\n",
1275 pim_ifp->pim_propagation_delay_msec);
1276 vty_out(vty, "Propagation Delay (Highest) : %d msec\n",
1277 pim_ifp->pim_neighbors_highest_propagation_delay_msec);
1278 vty_out(vty, "Override Interval : %d msec\n",
1279 pim_ifp->pim_override_interval_msec);
1280 vty_out(vty, "Override Interval (Highest) : %d msec\n",
1281 pim_ifp->pim_neighbors_highest_override_interval_msec);
1282 vty_out(vty, "\n");
1283 vty_out(vty, "\n");
1284 }
1285 }
1286
1287 if (uj) {
9d303b37
DL
1288 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1289 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1290 json_object_free(json);
1291 } else {
1292 if (!found_ifname)
1293 vty_out(vty, "%% No such interface\n");
1294 }
12e41d03
DL
1295}
1296
21313cbf
MS
1297static void igmp_show_statistics(struct pim_instance *pim, struct vty *vty,
1298 const char *ifname, uint8_t uj)
1299{
1300 struct interface *ifp;
1301 struct igmp_stats rx_stats;
1302
1303 igmp_stats_init(&rx_stats);
1304
1305 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1306 struct pim_interface *pim_ifp;
1307 struct listnode *sock_node;
1308 struct igmp_sock *igmp;
1309
1310 pim_ifp = ifp->info;
1311
1312 if (!pim_ifp)
1313 continue;
1314
1315 if (ifname && strcmp(ifname, ifp->name))
1316 continue;
1317
1318 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
1319 igmp)) {
1320 igmp_stats_add(&rx_stats, &igmp->rx_stats);
1321 }
1322 }
1323 if (uj) {
1324 json_object *json = NULL;
1325 json_object *json_row = NULL;
1326
1327 json = json_object_new_object();
1328 json_row = json_object_new_object();
1329
1330 json_object_string_add(json_row, "name", ifname ? ifname :
1331 "global");
1332 json_object_int_add(json_row, "queryV1", rx_stats.query_v1);
1333 json_object_int_add(json_row, "queryV2", rx_stats.query_v2);
1334 json_object_int_add(json_row, "queryV3", rx_stats.query_v3);
1335 json_object_int_add(json_row, "leaveV3", rx_stats.leave_v2);
1336 json_object_int_add(json_row, "reportV1", rx_stats.report_v1);
1337 json_object_int_add(json_row, "reportV2", rx_stats.report_v2);
1338 json_object_int_add(json_row, "reportV3", rx_stats.report_v3);
1339 json_object_int_add(json_row, "mtraceResponse",
1340 rx_stats.mtrace_rsp);
1341 json_object_int_add(json_row, "mtraceRequest",
1342 rx_stats.mtrace_req);
1343 json_object_int_add(json_row, "unsupported",
1344 rx_stats.unsupported);
1345 json_object_object_add(json, ifname ? ifname : "global",
1346 json_row);
1347 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1348 json, JSON_C_TO_STRING_PRETTY));
1349 json_object_free(json);
1350 } else {
1351 vty_out(vty, "IGMP RX statistics\n");
1352 vty_out(vty, "Interface : %s\n",
1353 ifname ? ifname : "global");
1354 vty_out(vty, "V1 query : %u\n", rx_stats.query_v1);
1355 vty_out(vty, "V2 query : %u\n", rx_stats.query_v2);
1356 vty_out(vty, "V3 query : %u\n", rx_stats.query_v3);
1357 vty_out(vty, "V2 leave : %u\n", rx_stats.leave_v2);
1358 vty_out(vty, "V1 report : %u\n", rx_stats.report_v1);
1359 vty_out(vty, "V2 report : %u\n", rx_stats.report_v2);
1360 vty_out(vty, "V3 report : %u\n", rx_stats.report_v3);
1361 vty_out(vty, "mtrace response : %u\n", rx_stats.mtrace_rsp);
1362 vty_out(vty, "mtrace request : %u\n", rx_stats.mtrace_req);
1363 vty_out(vty, "unsupported : %u\n", rx_stats.unsupported);
1364 }
1365}
1366
64c86530 1367static void pim_show_interfaces(struct pim_instance *pim, struct vty *vty,
d7c0a89a 1368 uint8_t uj)
12e41d03 1369{
d62a17ae 1370 struct interface *ifp;
d62a17ae 1371 struct listnode *upnode;
1372 struct pim_interface *pim_ifp;
1373 struct pim_upstream *up;
1374 int fhr = 0;
1375 int pim_nbrs = 0;
1376 int pim_ifchannels = 0;
1377 json_object *json = NULL;
1378 json_object *json_row = NULL;
1379 json_object *json_tmp;
1380
1381 json = json_object_new_object();
1382
451fda4f 1383 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 1384 pim_ifp = ifp->info;
1385
1386 if (!pim_ifp)
1387 continue;
1388
d62a17ae 1389 pim_nbrs = pim_ifp->pim_neighbor_list->count;
ad7b74c4 1390 pim_ifchannels = pim_if_ifchannel_count(pim_ifp);
d62a17ae 1391 fhr = 0;
1392
c68ba0d7 1393 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, upnode, up))
d62a17ae 1394 if (ifp == up->rpf.source_nexthop.interface)
1395 if (up->flags & PIM_UPSTREAM_FLAG_MASK_FHR)
1396 fhr++;
1397
1398 json_row = json_object_new_object();
1399 json_object_pim_ifp_add(json_row, ifp);
1400 json_object_int_add(json_row, "pimNeighbors", pim_nbrs);
1401 json_object_int_add(json_row, "pimIfChannels", pim_ifchannels);
15507b63 1402 json_object_int_add(json_row, "firstHopRouterCount", fhr);
d62a17ae 1403 json_object_string_add(json_row, "pimDesignatedRouter",
1404 inet_ntoa(pim_ifp->pim_dr_addr));
1405
1406 if (pim_ifp->pim_dr_addr.s_addr
1407 == pim_ifp->primary_address.s_addr)
1408 json_object_boolean_true_add(
1409 json_row, "pimDesignatedRouterLocal");
1410
1411 json_object_object_add(json, ifp->name, json_row);
1412 }
1413
1414 if (uj) {
9d303b37
DL
1415 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1416 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1417 } else {
1418 vty_out(vty,
1419 "Interface State Address PIM Nbrs PIM DR FHR IfChannels\n");
1420
1421 json_object_object_foreach(json, key, val)
1422 {
1423 vty_out(vty, "%-9s ", key);
1424
1425 json_object_object_get_ex(val, "state", &json_tmp);
1426 vty_out(vty, "%5s ", json_object_get_string(json_tmp));
1427
1428 json_object_object_get_ex(val, "address", &json_tmp);
1429 vty_out(vty, "%15s ",
1430 json_object_get_string(json_tmp));
1431
1432 json_object_object_get_ex(val, "pimNeighbors",
1433 &json_tmp);
1434 vty_out(vty, "%8d ", json_object_get_int(json_tmp));
1435
1436 if (json_object_object_get_ex(
1437 val, "pimDesignatedRouterLocal",
1438 &json_tmp)) {
1439 vty_out(vty, "%15s ", "local");
1440 } else {
1441 json_object_object_get_ex(
1442 val, "pimDesignatedRouter", &json_tmp);
1443 vty_out(vty, "%15s ",
1444 json_object_get_string(json_tmp));
1445 }
1446
1447 json_object_object_get_ex(val, "firstHopRouter",
1448 &json_tmp);
1449 vty_out(vty, "%3d ", json_object_get_int(json_tmp));
1450
1451 json_object_object_get_ex(val, "pimIfChannels",
1452 &json_tmp);
1453 vty_out(vty, "%9d\n", json_object_get_int(json_tmp));
1454 }
1455 }
1456
1457 json_object_free(json);
1458}
1459
64c86530 1460static void pim_show_interface_traffic(struct pim_instance *pim,
d7c0a89a 1461 struct vty *vty, uint8_t uj)
d62a17ae 1462{
1463 struct interface *ifp = NULL;
1464 struct pim_interface *pim_ifp = NULL;
d62a17ae 1465 json_object *json = NULL;
1466 json_object *json_row = NULL;
1467
1468 if (uj)
1469 json = json_object_new_object();
1470 else {
1471 vty_out(vty, "\n");
1472 vty_out(vty, "%-12s%-17s%-17s%-17s%-17s%-17s%-17s\n",
1473 "Interface", " HELLO", " JOIN", " PRUNE",
1474 " REGISTER", " REGISTER-STOP", " ASSERT");
1475 vty_out(vty, "%-10s%-18s%-17s%-17s%-17s%-17s%-17s\n", "",
1476 " Rx/Tx", " Rx/Tx", " Rx/Tx", " Rx/Tx",
1477 " Rx/Tx", " Rx/Tx");
1478 vty_out(vty,
1479 "---------------------------------------------------------------------------------------------------------------\n");
1480 }
1481
451fda4f 1482 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 1483 pim_ifp = ifp->info;
1484
1485 if (!pim_ifp)
1486 continue;
1487
1488 if (pim_ifp->pim_sock_fd < 0)
1489 continue;
1490 if (uj) {
1491 json_row = json_object_new_object();
1492 json_object_pim_ifp_add(json_row, ifp);
1493 json_object_int_add(json_row, "helloRx",
1494 pim_ifp->pim_ifstat_hello_recv);
1495 json_object_int_add(json_row, "helloTx",
1496 pim_ifp->pim_ifstat_hello_sent);
1497 json_object_int_add(json_row, "joinRx",
1498 pim_ifp->pim_ifstat_join_recv);
1499 json_object_int_add(json_row, "joinTx",
1500 pim_ifp->pim_ifstat_join_send);
1501 json_object_int_add(json_row, "registerRx",
1502 pim_ifp->pim_ifstat_reg_recv);
1503 json_object_int_add(json_row, "registerTx",
1504 pim_ifp->pim_ifstat_reg_recv);
1505 json_object_int_add(json_row, "registerStopRx",
1506 pim_ifp->pim_ifstat_reg_stop_recv);
1507 json_object_int_add(json_row, "registerStopTx",
1508 pim_ifp->pim_ifstat_reg_stop_send);
1509 json_object_int_add(json_row, "assertRx",
1510 pim_ifp->pim_ifstat_assert_recv);
1511 json_object_int_add(json_row, "assertTx",
1512 pim_ifp->pim_ifstat_assert_send);
1513
1514 json_object_object_add(json, ifp->name, json_row);
1515 } else {
1516 vty_out(vty,
1517 "%-10s %8u/%-8u %7u/%-7u %7u/%-7u %7u/%-7u %7u/%-7u %7u/%-7u \n",
1518 ifp->name, pim_ifp->pim_ifstat_hello_recv,
1519 pim_ifp->pim_ifstat_hello_sent,
1520 pim_ifp->pim_ifstat_join_recv,
1521 pim_ifp->pim_ifstat_join_send,
1522 pim_ifp->pim_ifstat_prune_recv,
1523 pim_ifp->pim_ifstat_prune_send,
1524 pim_ifp->pim_ifstat_reg_recv,
1525 pim_ifp->pim_ifstat_reg_send,
1526 pim_ifp->pim_ifstat_reg_stop_recv,
1527 pim_ifp->pim_ifstat_reg_stop_send,
1528 pim_ifp->pim_ifstat_assert_recv,
1529 pim_ifp->pim_ifstat_assert_send);
1530 }
1531 }
1532 if (uj) {
9d303b37
DL
1533 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1534 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1535 json_object_free(json);
1536 }
1537}
1538
64c86530
DS
1539static void pim_show_interface_traffic_single(struct pim_instance *pim,
1540 struct vty *vty,
d7c0a89a 1541 const char *ifname, uint8_t uj)
d62a17ae 1542{
1543 struct interface *ifp = NULL;
1544 struct pim_interface *pim_ifp = NULL;
d62a17ae 1545 json_object *json = NULL;
1546 json_object *json_row = NULL;
1547 uint8_t found_ifname = 0;
1548
1549 if (uj)
1550 json = json_object_new_object();
1551 else {
1552 vty_out(vty, "\n");
1553 vty_out(vty, "%-12s%-17s%-17s%-17s%-17s%-17s%-17s\n",
1554 "Interface", " HELLO", " JOIN", " PRUNE",
1555 " REGISTER", " REGISTER-STOP", " ASSERT");
1556 vty_out(vty, "%-10s%-18s%-17s%-17s%-17s%-17s%-17s\n", "",
1557 " Rx/Tx", " Rx/Tx", " Rx/Tx", " Rx/Tx",
1558 " Rx/Tx", " Rx/Tx");
1559 vty_out(vty,
1560 "---------------------------------------------------------------------------------------------------------------\n");
1561 }
1562
451fda4f 1563 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 1564 if (strcmp(ifname, ifp->name))
1565 continue;
1566
1567 pim_ifp = ifp->info;
1568
1569 if (!pim_ifp)
1570 continue;
1571
1572 if (pim_ifp->pim_sock_fd < 0)
1573 continue;
1574
1575 found_ifname = 1;
1576 if (uj) {
1577 json_row = json_object_new_object();
1578 json_object_pim_ifp_add(json_row, ifp);
1579 json_object_int_add(json_row, "helloRx",
1580 pim_ifp->pim_ifstat_hello_recv);
1581 json_object_int_add(json_row, "helloTx",
1582 pim_ifp->pim_ifstat_hello_sent);
1583 json_object_int_add(json_row, "joinRx",
1584 pim_ifp->pim_ifstat_join_recv);
1585 json_object_int_add(json_row, "joinTx",
1586 pim_ifp->pim_ifstat_join_send);
1587 json_object_int_add(json_row, "registerRx",
1588 pim_ifp->pim_ifstat_reg_recv);
1589 json_object_int_add(json_row, "registerTx",
1590 pim_ifp->pim_ifstat_reg_recv);
1591 json_object_int_add(json_row, "registerStopRx",
1592 pim_ifp->pim_ifstat_reg_stop_recv);
1593 json_object_int_add(json_row, "registerStopTx",
1594 pim_ifp->pim_ifstat_reg_stop_send);
1595 json_object_int_add(json_row, "assertRx",
1596 pim_ifp->pim_ifstat_assert_recv);
1597 json_object_int_add(json_row, "assertTx",
1598 pim_ifp->pim_ifstat_assert_send);
1599
1600 json_object_object_add(json, ifp->name, json_row);
1601 } else {
1602 vty_out(vty,
1603 "%-10s %8u/%-8u %7u/%-7u %7u/%-7u %7u/%-7u %7u/%-7u %7u/%-7u \n",
1604 ifp->name, pim_ifp->pim_ifstat_hello_recv,
1605 pim_ifp->pim_ifstat_hello_sent,
1606 pim_ifp->pim_ifstat_join_recv,
1607 pim_ifp->pim_ifstat_join_send,
1608 pim_ifp->pim_ifstat_prune_recv,
1609 pim_ifp->pim_ifstat_prune_send,
1610 pim_ifp->pim_ifstat_reg_recv,
1611 pim_ifp->pim_ifstat_reg_send,
1612 pim_ifp->pim_ifstat_reg_stop_recv,
1613 pim_ifp->pim_ifstat_reg_stop_send,
1614 pim_ifp->pim_ifstat_assert_recv,
1615 pim_ifp->pim_ifstat_assert_send);
1616 }
1617 }
1618 if (uj) {
9d303b37
DL
1619 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1620 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1621 json_object_free(json);
1622 } else {
1623 if (!found_ifname)
1624 vty_out(vty, "%% No such interface\n");
1625 }
39438188
CS
1626}
1627
996c9314
LB
1628static void pim_show_join_helper(struct vty *vty, struct pim_interface *pim_ifp,
1629 struct pim_ifchannel *ch, json_object *json,
d7c0a89a 1630 time_t now, uint8_t uj)
1a8a3da8
DS
1631{
1632 char ch_src_str[INET_ADDRSTRLEN];
1633 char ch_grp_str[INET_ADDRSTRLEN];
1634 json_object *json_iface = NULL;
1635 json_object *json_row = NULL;
1636 json_object *json_grp = NULL;
1637 struct in_addr ifaddr;
1638 char uptime[10];
1639 char expire[10];
1640 char prune[10];
1641
1642 ifaddr = pim_ifp->primary_address;
1643
996c9314
LB
1644 pim_inet4_dump("<ch_src?>", ch->sg.src, ch_src_str, sizeof(ch_src_str));
1645 pim_inet4_dump("<ch_grp?>", ch->sg.grp, ch_grp_str, sizeof(ch_grp_str));
1a8a3da8 1646
996c9314 1647 pim_time_uptime_begin(uptime, sizeof(uptime), now, ch->ifjoin_creation);
1a8a3da8
DS
1648 pim_time_timer_to_mmss(expire, sizeof(expire),
1649 ch->t_ifjoin_expiry_timer);
1650 pim_time_timer_to_mmss(prune, sizeof(prune),
1651 ch->t_ifjoin_prune_pending_timer);
1652
1653 if (uj) {
1654 json_object_object_get_ex(json, ch->interface->name,
1655 &json_iface);
1656
1657 if (!json_iface) {
1658 json_iface = json_object_new_object();
996c9314
LB
1659 json_object_pim_ifp_add(json_iface, ch->interface);
1660 json_object_object_add(json, ch->interface->name,
1661 json_iface);
1a8a3da8
DS
1662 }
1663
1664 json_row = json_object_new_object();
1665 json_object_string_add(json_row, "source", ch_src_str);
1666 json_object_string_add(json_row, "group", ch_grp_str);
1667 json_object_string_add(json_row, "upTime", uptime);
1668 json_object_string_add(json_row, "expire", expire);
1669 json_object_string_add(json_row, "prune", prune);
1670 json_object_string_add(
1671 json_row, "channelJoinName",
996c9314 1672 pim_ifchannel_ifjoin_name(ch->ifjoin_state, ch->flags));
1a8a3da8
DS
1673 if (PIM_IF_FLAG_TEST_S_G_RPT(ch->flags))
1674 json_object_int_add(json_row, "SGRpt", 1);
1675
996c9314 1676 json_object_object_get_ex(json_iface, ch_grp_str, &json_grp);
1a8a3da8
DS
1677 if (!json_grp) {
1678 json_grp = json_object_new_object();
996c9314 1679 json_object_object_add(json_grp, ch_src_str, json_row);
1a8a3da8
DS
1680 json_object_object_add(json_iface, ch_grp_str,
1681 json_grp);
1682 } else
996c9314 1683 json_object_object_add(json_grp, ch_src_str, json_row);
1a8a3da8 1684 } else {
996c9314
LB
1685 vty_out(vty, "%-9s %-15s %-15s %-15s %-10s %8s %-6s %5s\n",
1686 ch->interface->name, inet_ntoa(ifaddr), ch_src_str,
1687 ch_grp_str,
1688 pim_ifchannel_ifjoin_name(ch->ifjoin_state, ch->flags),
1a8a3da8
DS
1689 uptime, expire, prune);
1690 }
1691}
1692
d7c0a89a 1693static void pim_show_join(struct pim_instance *pim, struct vty *vty, uint8_t uj)
12e41d03 1694{
d62a17ae 1695 struct pim_interface *pim_ifp;
d62a17ae 1696 struct pim_ifchannel *ch;
1a8a3da8 1697 struct interface *ifp;
d62a17ae 1698 time_t now;
1699 json_object *json = NULL;
d62a17ae 1700
1701 now = pim_time_monotonic_sec();
1702
1703 if (uj)
1704 json = json_object_new_object();
1705 else
1706 vty_out(vty,
c206937b 1707 "Interface Address Source Group State Uptime Expire Prune\n");
d62a17ae 1708
451fda4f 1709 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8 1710 pim_ifp = ifp->info;
d62a17ae 1711 if (!pim_ifp)
1712 continue;
1713
a2addae8
RW
1714 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1715 pim_show_join_helper(vty, pim_ifp, ch, json, now, uj);
1a8a3da8
DS
1716 } /* scan interface channels */
1717 }
d62a17ae 1718
1719 if (uj) {
9d303b37 1720 vty_out(vty, "%s\n", json_object_to_json_string_ext(
996c9314 1721 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1722 json_object_free(json);
1723 }
1724}
1725
64c86530 1726static void pim_show_neighbors_single(struct pim_instance *pim, struct vty *vty,
d7c0a89a 1727 const char *neighbor, uint8_t uj)
d62a17ae 1728{
d62a17ae 1729 struct listnode *neighnode;
1730 struct interface *ifp;
1731 struct pim_interface *pim_ifp;
1732 struct pim_neighbor *neigh;
1733 time_t now;
1734 int found_neighbor = 0;
1735 int option_address_list;
1736 int option_dr_priority;
1737 int option_generation_id;
1738 int option_holdtime;
1739 int option_lan_prune_delay;
1740 int option_t_bit;
1741 char uptime[10];
1742 char expire[10];
1743 char neigh_src_str[INET_ADDRSTRLEN];
1744
1745 json_object *json = NULL;
1746 json_object *json_ifp = NULL;
1747 json_object *json_row = NULL;
1748
1749 now = pim_time_monotonic_sec();
1750
1751 if (uj)
1752 json = json_object_new_object();
1753
451fda4f 1754 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 1755 pim_ifp = ifp->info;
1756
1757 if (!pim_ifp)
1758 continue;
1759
1760 if (pim_ifp->pim_sock_fd < 0)
1761 continue;
1762
1763 for (ALL_LIST_ELEMENTS_RO(pim_ifp->pim_neighbor_list, neighnode,
1764 neigh)) {
1765 pim_inet4_dump("<src?>", neigh->source_addr,
1766 neigh_src_str, sizeof(neigh_src_str));
1767
1768 /*
1769 * The user can specify either the interface name or the
1770 * PIM neighbor IP.
1771 * If this pim_ifp matches neither then skip.
1772 */
1773 if (strcmp(neighbor, "detail")
1774 && strcmp(neighbor, ifp->name)
1775 && strcmp(neighbor, neigh_src_str))
1776 continue;
1777
1778 found_neighbor = 1;
1779 pim_time_uptime(uptime, sizeof(uptime),
1780 now - neigh->creation);
1781 pim_time_timer_to_hhmmss(expire, sizeof(expire),
1782 neigh->t_expire_timer);
1783
1784 option_address_list = 0;
1785 option_dr_priority = 0;
1786 option_generation_id = 0;
1787 option_holdtime = 0;
1788 option_lan_prune_delay = 0;
1789 option_t_bit = 0;
1790
1791 if (PIM_OPTION_IS_SET(neigh->hello_options,
1792 PIM_OPTION_MASK_ADDRESS_LIST))
1793 option_address_list = 1;
1794
1795 if (PIM_OPTION_IS_SET(neigh->hello_options,
1796 PIM_OPTION_MASK_DR_PRIORITY))
1797 option_dr_priority = 1;
1798
1799 if (PIM_OPTION_IS_SET(neigh->hello_options,
1800 PIM_OPTION_MASK_GENERATION_ID))
1801 option_generation_id = 1;
1802
1803 if (PIM_OPTION_IS_SET(neigh->hello_options,
1804 PIM_OPTION_MASK_HOLDTIME))
1805 option_holdtime = 1;
1806
1807 if (PIM_OPTION_IS_SET(neigh->hello_options,
1808 PIM_OPTION_MASK_LAN_PRUNE_DELAY))
1809 option_lan_prune_delay = 1;
1810
1811 if (PIM_OPTION_IS_SET(
1812 neigh->hello_options,
1813 PIM_OPTION_MASK_CAN_DISABLE_JOIN_SUPPRESSION))
1814 option_t_bit = 1;
1815
1816 if (uj) {
1817
1818 /* Does this ifp live in json? If not create
1819 * it. */
1820 json_object_object_get_ex(json, ifp->name,
1821 &json_ifp);
1822
1823 if (!json_ifp) {
1824 json_ifp = json_object_new_object();
1825 json_object_pim_ifp_add(json_ifp, ifp);
1826 json_object_object_add(json, ifp->name,
1827 json_ifp);
1828 }
1829
1830 json_row = json_object_new_object();
1831 json_object_string_add(json_row, "interface",
1832 ifp->name);
1833 json_object_string_add(json_row, "address",
1834 neigh_src_str);
1835 json_object_string_add(json_row, "upTime",
1836 uptime);
1837 json_object_string_add(json_row, "holdtime",
1838 expire);
1839 json_object_int_add(json_row, "drPriority",
1840 neigh->dr_priority);
1841 json_object_int_add(json_row, "generationId",
1842 neigh->generation_id);
1843
1844 if (option_address_list)
1845 json_object_boolean_true_add(
1846 json_row,
1847 "helloOptionAddressList");
1848
1849 if (option_dr_priority)
1850 json_object_boolean_true_add(
1851 json_row,
1852 "helloOptionDrPriority");
1853
1854 if (option_generation_id)
1855 json_object_boolean_true_add(
1856 json_row,
1857 "helloOptionGenerationId");
1858
1859 if (option_holdtime)
1860 json_object_boolean_true_add(
1861 json_row,
1862 "helloOptionHoldtime");
1863
1864 if (option_lan_prune_delay)
1865 json_object_boolean_true_add(
1866 json_row,
1867 "helloOptionLanPruneDelay");
1868
1869 if (option_t_bit)
1870 json_object_boolean_true_add(
1871 json_row, "helloOptionTBit");
1872
1873 json_object_object_add(json_ifp, neigh_src_str,
1874 json_row);
1875
1876 } else {
1877 vty_out(vty, "Interface : %s\n", ifp->name);
1878 vty_out(vty, "Neighbor : %s\n", neigh_src_str);
1879 vty_out(vty,
1880 " Uptime : %s\n",
1881 uptime);
1882 vty_out(vty,
1883 " Holdtime : %s\n",
1884 expire);
1885 vty_out(vty,
1886 " DR Priority : %d\n",
1887 neigh->dr_priority);
1888 vty_out(vty,
1889 " Generation ID : %08x\n",
1890 neigh->generation_id);
1891 vty_out(vty,
1892 " Override Interval (msec) : %d\n",
1893 neigh->override_interval_msec);
1894 vty_out(vty,
1895 " Propagation Delay (msec) : %d\n",
1896 neigh->propagation_delay_msec);
1897 vty_out(vty,
1898 " Hello Option - Address List : %s\n",
1899 option_address_list ? "yes" : "no");
1900 vty_out(vty,
1901 " Hello Option - DR Priority : %s\n",
1902 option_dr_priority ? "yes" : "no");
1903 vty_out(vty,
1904 " Hello Option - Generation ID : %s\n",
1905 option_generation_id ? "yes" : "no");
1906 vty_out(vty,
1907 " Hello Option - Holdtime : %s\n",
1908 option_holdtime ? "yes" : "no");
1909 vty_out(vty,
1910 " Hello Option - LAN Prune Delay : %s\n",
1911 option_lan_prune_delay ? "yes" : "no");
1912 vty_out(vty,
1913 " Hello Option - T-bit : %s\n",
1914 option_t_bit ? "yes" : "no");
1915 pim_bfd_show_info(vty, neigh->bfd_info,
1916 json_ifp, uj, 0);
1917 vty_out(vty, "\n");
1918 }
1919 }
1920 }
1921
1922 if (uj) {
9d303b37
DL
1923 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1924 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 1925 json_object_free(json);
1926 } else {
1927 {
1928 if (!found_neighbor)
1929 vty_out(vty,
1930 "%% No such interface or neighbor\n");
1931 }
1932 }
1933}
1934
64c86530 1935static void pim_show_state(struct pim_instance *pim, struct vty *vty,
7cfc7bcf 1936 const char *src_or_group, const char *group,
d7c0a89a 1937 uint8_t uj)
d62a17ae 1938{
1939 struct channel_oil *c_oil;
1940 struct listnode *node;
1941 json_object *json = NULL;
1942 json_object *json_group = NULL;
1943 json_object *json_ifp_in = NULL;
1944 json_object *json_ifp_out = NULL;
1945 json_object *json_source = NULL;
1946 time_t now;
1947 int first_oif;
1948 now = pim_time_monotonic_sec();
1949
1950 if (uj) {
1951 json = json_object_new_object();
1952 } else {
1953 vty_out(vty,
1954 "Codes: J -> Pim Join, I -> IGMP Report, S -> Source, * -> Inherited from (*,G)");
1955 vty_out(vty,
1956 "\nInstalled Source Group IIF OIL\n");
1957 }
1958
c68ba0d7 1959 for (ALL_LIST_ELEMENTS_RO(pim->channel_oil_list, node, c_oil)) {
d62a17ae 1960 char grp_str[INET_ADDRSTRLEN];
1961 char src_str[INET_ADDRSTRLEN];
1962 char in_ifname[INTERFACE_NAMSIZ + 1];
1963 char out_ifname[INTERFACE_NAMSIZ + 1];
1964 int oif_vif_index;
1965 struct interface *ifp_in;
1966 first_oif = 1;
1967
1968 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp, grp_str,
1969 sizeof(grp_str));
1970 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin, src_str,
1971 sizeof(src_str));
7cfc7bcf 1972 ifp_in = pim_if_find_by_vif_index(pim, c_oil->oil.mfcc_parent);
d62a17ae 1973
1974 if (ifp_in)
1975 strcpy(in_ifname, ifp_in->name);
1976 else
1977 strcpy(in_ifname, "<iif?>");
1978
1979 if (src_or_group) {
1980 if (strcmp(src_or_group, src_str)
1981 && strcmp(src_or_group, grp_str))
1982 continue;
1983
1984 if (group && strcmp(group, grp_str))
1985 continue;
1986 }
1987
1988 if (uj) {
1989
1990 /* Find the group, create it if it doesn't exist */
1991 json_object_object_get_ex(json, grp_str, &json_group);
1992
1993 if (!json_group) {
1994 json_group = json_object_new_object();
1995 json_object_object_add(json, grp_str,
1996 json_group);
1997 }
1998
1999 /* Find the source nested under the group, create it if
2000 * it doesn't exist */
2001 json_object_object_get_ex(json_group, src_str,
2002 &json_source);
2003
2004 if (!json_source) {
2005 json_source = json_object_new_object();
2006 json_object_object_add(json_group, src_str,
2007 json_source);
2008 }
2009
2010 /* Find the inbound interface nested under the source,
2011 * create it if it doesn't exist */
2012 json_object_object_get_ex(json_source, in_ifname,
2013 &json_ifp_in);
2014
2015 if (!json_ifp_in) {
2016 json_ifp_in = json_object_new_object();
2017 json_object_object_add(json_source, in_ifname,
2018 json_ifp_in);
2019 json_object_int_add(json_source, "Installed",
2020 c_oil->installed);
2021 json_object_int_add(json_source, "RefCount",
2022 c_oil->oil_ref_count);
2023 json_object_int_add(json_source, "OilListSize",
2024 c_oil->oil_size);
2025 json_object_int_add(
2026 json_source, "OilRescan",
2027 c_oil->oil_inherited_rescan);
2028 json_object_int_add(json_source, "LastUsed",
2029 c_oil->cc.lastused);
2030 json_object_int_add(json_source, "PacketCount",
2031 c_oil->cc.pktcnt);
2032 json_object_int_add(json_source, "ByteCount",
2033 c_oil->cc.bytecnt);
2034 json_object_int_add(json_source,
2035 "WrongInterface",
2036 c_oil->cc.wrong_if);
2037 }
2038 } else {
2039 vty_out(vty, "%-9d %-15s %-15s %-7s ",
2040 c_oil->installed, src_str, grp_str,
2041 ifp_in->name);
2042 }
2043
2044 for (oif_vif_index = 0; oif_vif_index < MAXVIFS;
2045 ++oif_vif_index) {
2046 struct interface *ifp_out;
2047 char oif_uptime[10];
2048 int ttl;
2049
2050 ttl = c_oil->oil.mfcc_ttls[oif_vif_index];
2051 if (ttl < 1)
2052 continue;
2053
7cfc7bcf 2054 ifp_out = pim_if_find_by_vif_index(pim, oif_vif_index);
d62a17ae 2055 pim_time_uptime(
2056 oif_uptime, sizeof(oif_uptime),
2057 now - c_oil->oif_creation[oif_vif_index]);
2058
2059 if (ifp_out)
2060 strcpy(out_ifname, ifp_out->name);
2061 else
2062 strcpy(out_ifname, "<oif?>");
2063
2064 if (uj) {
2065 json_ifp_out = json_object_new_object();
2066 json_object_string_add(json_ifp_out, "source",
2067 src_str);
2068 json_object_string_add(json_ifp_out, "group",
2069 grp_str);
2070 json_object_string_add(json_ifp_out,
2071 "inboundInterface",
2072 in_ifname);
2073 json_object_string_add(json_ifp_out,
2074 "outboundInterface",
2075 out_ifname);
2076 json_object_int_add(json_ifp_out, "installed",
2077 c_oil->installed);
2078
2079 json_object_object_add(json_ifp_in, out_ifname,
2080 json_ifp_out);
2081 } else {
2082 if (first_oif) {
2083 first_oif = 0;
2084 vty_out(vty, "%s(%c%c%c%c)", out_ifname,
2085 (c_oil->oif_flags[oif_vif_index]
2086 & PIM_OIF_FLAG_PROTO_IGMP)
2087 ? 'I'
2088 : ' ',
2089 (c_oil->oif_flags[oif_vif_index]
2090 & PIM_OIF_FLAG_PROTO_PIM)
2091 ? 'J'
2092 : ' ',
2093 (c_oil->oif_flags[oif_vif_index]
2094 & PIM_OIF_FLAG_PROTO_SOURCE)
2095 ? 'S'
2096 : ' ',
2097 (c_oil->oif_flags[oif_vif_index]
2098 & PIM_OIF_FLAG_PROTO_STAR)
2099 ? '*'
2100 : ' ');
2101 } else
2102 vty_out(vty, ", %s(%c%c%c%c)",
2103 out_ifname,
2104 (c_oil->oif_flags[oif_vif_index]
2105 & PIM_OIF_FLAG_PROTO_IGMP)
2106 ? 'I'
2107 : ' ',
2108 (c_oil->oif_flags[oif_vif_index]
2109 & PIM_OIF_FLAG_PROTO_PIM)
2110 ? 'J'
2111 : ' ',
2112 (c_oil->oif_flags[oif_vif_index]
2113 & PIM_OIF_FLAG_PROTO_SOURCE)
2114 ? 'S'
2115 : ' ',
2116 (c_oil->oif_flags[oif_vif_index]
2117 & PIM_OIF_FLAG_PROTO_STAR)
2118 ? '*'
2119 : ' ');
2120 }
2121 }
2122
2123 if (!uj)
2124 vty_out(vty, "\n");
2125 }
2126
2127
2128 if (uj) {
9d303b37
DL
2129 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2130 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2131 json_object_free(json);
2132 } else {
2133 vty_out(vty, "\n");
2134 }
31a21c9c
DW
2135}
2136
64c86530 2137static void pim_show_neighbors(struct pim_instance *pim, struct vty *vty,
d7c0a89a 2138 uint8_t uj)
12e41d03 2139{
d62a17ae 2140 struct listnode *neighnode;
2141 struct interface *ifp;
2142 struct pim_interface *pim_ifp;
2143 struct pim_neighbor *neigh;
2144 time_t now;
2145 char uptime[10];
2146 char expire[10];
2147 char neigh_src_str[INET_ADDRSTRLEN];
2148 json_object *json = NULL;
2149 json_object *json_ifp_rows = NULL;
2150 json_object *json_row = NULL;
2151
2152 now = pim_time_monotonic_sec();
2153
2154 if (uj) {
2155 json = json_object_new_object();
2156 } else {
2157 vty_out(vty,
2158 "Interface Neighbor Uptime Holdtime DR Pri\n");
2159 }
2160
451fda4f 2161 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 2162 pim_ifp = ifp->info;
2163
2164 if (!pim_ifp)
2165 continue;
2166
2167 if (pim_ifp->pim_sock_fd < 0)
2168 continue;
2169
2170 if (uj)
2171 json_ifp_rows = json_object_new_object();
2172
2173 for (ALL_LIST_ELEMENTS_RO(pim_ifp->pim_neighbor_list, neighnode,
2174 neigh)) {
2175 pim_inet4_dump("<src?>", neigh->source_addr,
2176 neigh_src_str, sizeof(neigh_src_str));
2177 pim_time_uptime(uptime, sizeof(uptime),
2178 now - neigh->creation);
2179 pim_time_timer_to_hhmmss(expire, sizeof(expire),
2180 neigh->t_expire_timer);
2181
2182 if (uj) {
2183 json_row = json_object_new_object();
2184 json_object_string_add(json_row, "interface",
2185 ifp->name);
2186 json_object_string_add(json_row, "neighbor",
2187 neigh_src_str);
2188 json_object_string_add(json_row, "upTime",
2189 uptime);
2190 json_object_string_add(json_row, "holdTime",
2191 expire);
2192 json_object_int_add(json_row, "holdTimeMax",
2193 neigh->holdtime);
2194 json_object_int_add(json_row, "drPriority",
2195 neigh->dr_priority);
2196 json_object_object_add(json_ifp_rows,
2197 neigh_src_str, json_row);
2198
2199 } else {
2200 vty_out(vty, "%-9s %15s %8s %8s %6d\n",
2201 ifp->name, neigh_src_str, uptime,
2202 expire, neigh->dr_priority);
2203 }
2204 }
2205
2206 if (uj) {
2207 json_object_object_add(json, ifp->name, json_ifp_rows);
2208 json_ifp_rows = NULL;
2209 }
2210 }
2211
2212 if (uj) {
9d303b37
DL
2213 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2214 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2215 json_object_free(json);
2216 }
12e41d03
DL
2217}
2218
64c86530
DS
2219static void pim_show_neighbors_secondary(struct pim_instance *pim,
2220 struct vty *vty)
12e41d03 2221{
d62a17ae 2222 struct interface *ifp;
12e41d03 2223
d62a17ae 2224 vty_out(vty,
2225 "Interface Address Neighbor Secondary \n");
12e41d03 2226
451fda4f 2227 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 2228 struct pim_interface *pim_ifp;
2229 struct in_addr ifaddr;
2230 struct listnode *neighnode;
2231 struct pim_neighbor *neigh;
12e41d03 2232
d62a17ae 2233 pim_ifp = ifp->info;
12e41d03 2234
d62a17ae 2235 if (!pim_ifp)
2236 continue;
12e41d03 2237
d62a17ae 2238 if (pim_ifp->pim_sock_fd < 0)
2239 continue;
12e41d03 2240
d62a17ae 2241 ifaddr = pim_ifp->primary_address;
12e41d03 2242
d62a17ae 2243 for (ALL_LIST_ELEMENTS_RO(pim_ifp->pim_neighbor_list, neighnode,
2244 neigh)) {
2245 char neigh_src_str[INET_ADDRSTRLEN];
2246 struct listnode *prefix_node;
2247 struct prefix *p;
12e41d03 2248
d62a17ae 2249 if (!neigh->prefix_list)
2250 continue;
12e41d03 2251
d62a17ae 2252 pim_inet4_dump("<src?>", neigh->source_addr,
2253 neigh_src_str, sizeof(neigh_src_str));
12e41d03 2254
d62a17ae 2255 for (ALL_LIST_ELEMENTS_RO(neigh->prefix_list,
2256 prefix_node, p)) {
2257 char neigh_sec_str[PREFIX2STR_BUFFER];
12e41d03 2258
d62a17ae 2259 prefix2str(p, neigh_sec_str,
2260 sizeof(neigh_sec_str));
2261
2262 vty_out(vty, "%-9s %-15s %-15s %-15s\n",
2263 ifp->name, inet_ntoa(ifaddr),
2264 neigh_src_str, neigh_sec_str);
2265 }
2266 }
2267 }
12e41d03
DL
2268}
2269
d62a17ae 2270static void json_object_pim_upstream_add(json_object *json,
2271 struct pim_upstream *up)
9bf3c633 2272{
d62a17ae 2273 if (up->flags & PIM_UPSTREAM_FLAG_MASK_DR_JOIN_DESIRED)
2274 json_object_boolean_true_add(json, "drJoinDesired");
9bf3c633 2275
d62a17ae 2276 if (up->flags & PIM_UPSTREAM_FLAG_MASK_DR_JOIN_DESIRED_UPDATED)
2277 json_object_boolean_true_add(json, "drJoinDesiredUpdated");
9bf3c633 2278
d62a17ae 2279 if (up->flags & PIM_UPSTREAM_FLAG_MASK_FHR)
2280 json_object_boolean_true_add(json, "firstHopRouter");
9bf3c633 2281
d62a17ae 2282 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_IGMP)
2283 json_object_boolean_true_add(json, "sourceIgmp");
9bf3c633 2284
d62a17ae 2285 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_PIM)
2286 json_object_boolean_true_add(json, "sourcePim");
7667c556 2287
d62a17ae 2288 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_STREAM)
2289 json_object_boolean_true_add(json, "sourceStream");
9bf3c633 2290
d62a17ae 2291 /* XXX: need to print ths flag in the plain text display as well */
2292 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_MSDP)
2293 json_object_boolean_true_add(json, "sourceMsdp");
755210ab 2294}
2295
2296static const char *
d62a17ae 2297pim_upstream_state2brief_str(enum pim_upstream_state join_state,
2298 char *state_str)
2299{
2300 switch (join_state) {
2301 case PIM_UPSTREAM_NOTJOINED:
2302 strcpy(state_str, "NotJ");
2303 break;
2304 case PIM_UPSTREAM_JOINED:
2305 strcpy(state_str, "J");
2306 break;
2307 default:
2308 strcpy(state_str, "Unk");
2309 }
2310 return state_str;
2311}
2312
2313static const char *pim_reg_state2brief_str(enum pim_reg_state reg_state,
2314 char *state_str)
2315{
2316 switch (reg_state) {
2317 case PIM_REG_NOINFO:
2318 strcpy(state_str, "RegNI");
2319 break;
2320 case PIM_REG_JOIN:
2321 strcpy(state_str, "RegJ");
2322 break;
2323 case PIM_REG_JOIN_PENDING:
2324 case PIM_REG_PRUNE:
2325 strcpy(state_str, "RegP");
2326 break;
2327 default:
2328 strcpy(state_str, "Unk");
2329 }
2330 return state_str;
755210ab 2331}
2332
64c86530 2333static void pim_show_upstream(struct pim_instance *pim, struct vty *vty,
d7c0a89a 2334 uint8_t uj)
12e41d03 2335{
d62a17ae 2336 struct listnode *upnode;
2337 struct pim_upstream *up;
2338 time_t now;
2339 json_object *json = NULL;
2340 json_object *json_group = NULL;
2341 json_object *json_row = NULL;
2342
2343 now = pim_time_monotonic_sec();
2344
2345 if (uj)
2346 json = json_object_new_object();
2347 else
2348 vty_out(vty,
2349 "Iif Source Group State Uptime JoinTimer RSTimer KATimer RefCnt\n");
2350
c3169ac7 2351 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, upnode, up)) {
d62a17ae 2352 char src_str[INET_ADDRSTRLEN];
2353 char grp_str[INET_ADDRSTRLEN];
2354 char uptime[10];
2355 char join_timer[10];
2356 char rs_timer[10];
2357 char ka_timer[10];
2358 char msdp_reg_timer[10];
2359 char state_str[PIM_REG_STATE_STR_LEN];
2360
2361 pim_inet4_dump("<src?>", up->sg.src, src_str, sizeof(src_str));
2362 pim_inet4_dump("<grp?>", up->sg.grp, grp_str, sizeof(grp_str));
2363 pim_time_uptime(uptime, sizeof(uptime),
2364 now - up->state_transition);
2365 pim_time_timer_to_hhmmss(join_timer, sizeof(join_timer),
2366 up->t_join_timer);
2367
2368 /*
2369 * If we have a J/P timer for the neighbor display that
2370 */
2371 if (!up->t_join_timer) {
2372 struct pim_neighbor *nbr;
2373
2374 nbr = pim_neighbor_find(
2375 up->rpf.source_nexthop.interface,
2376 up->rpf.rpf_addr.u.prefix4);
2377 if (nbr)
2378 pim_time_timer_to_hhmmss(join_timer,
2379 sizeof(join_timer),
2380 nbr->jp_timer);
2381 }
2382
2383 pim_time_timer_to_hhmmss(rs_timer, sizeof(rs_timer),
2384 up->t_rs_timer);
2385 pim_time_timer_to_hhmmss(ka_timer, sizeof(ka_timer),
2386 up->t_ka_timer);
2387 pim_time_timer_to_hhmmss(msdp_reg_timer, sizeof(msdp_reg_timer),
2388 up->t_msdp_reg_timer);
2389
2390 pim_upstream_state2brief_str(up->join_state, state_str);
2391 if (up->reg_state != PIM_REG_NOINFO) {
2392 char tmp_str[PIM_REG_STATE_STR_LEN];
2393
2394 sprintf(state_str + strlen(state_str), ",%s",
2395 pim_reg_state2brief_str(up->reg_state,
2396 tmp_str));
2397 }
2398
2399 if (uj) {
2400 json_object_object_get_ex(json, grp_str, &json_group);
2401
2402 if (!json_group) {
2403 json_group = json_object_new_object();
2404 json_object_object_add(json, grp_str,
2405 json_group);
2406 }
2407
2408 json_row = json_object_new_object();
2409 json_object_pim_upstream_add(json_row, up);
2410 json_object_string_add(
2411 json_row, "inboundInterface",
2412 up->rpf.source_nexthop.interface->name);
48f41fe8
DS
2413
2414 /*
2415 * The RPF address we use is slightly different
2416 * based upon what we are looking up.
2417 * If we have a S, list that unless
2418 * we are the FHR, else we just put
2419 * the RP as the rpfAddress
2420 */
996c9314
LB
2421 if (up->flags & PIM_UPSTREAM_FLAG_MASK_FHR
2422 || up->sg.src.s_addr == INADDR_ANY) {
48f41fe8
DS
2423 char rpf[PREFIX_STRLEN];
2424 struct pim_rpf *rpg;
2425
2426 rpg = RP(pim, up->sg.grp);
2427 pim_inet4_dump("<rpf?>",
996c9314
LB
2428 rpg->rpf_addr.u.prefix4, rpf,
2429 sizeof(rpf));
2430 json_object_string_add(json_row, "rpfAddress",
2431 rpf);
48f41fe8 2432 } else {
996c9314
LB
2433 json_object_string_add(json_row, "rpfAddress",
2434 src_str);
48f41fe8
DS
2435 }
2436
d62a17ae 2437 json_object_string_add(json_row, "source", src_str);
2438 json_object_string_add(json_row, "group", grp_str);
2439 json_object_string_add(json_row, "state", state_str);
2440 json_object_string_add(
2441 json_row, "joinState",
2442 pim_upstream_state2str(up->join_state));
2443 json_object_string_add(
2444 json_row, "regState",
2445 pim_reg_state2str(up->reg_state, state_str));
2446 json_object_string_add(json_row, "upTime", uptime);
2447 json_object_string_add(json_row, "joinTimer",
2448 join_timer);
2449 json_object_string_add(json_row, "resetTimer",
2450 rs_timer);
2451 json_object_string_add(json_row, "keepaliveTimer",
2452 ka_timer);
2453 json_object_string_add(json_row, "msdpRegTimer",
2454 msdp_reg_timer);
2455 json_object_int_add(json_row, "refCount",
2456 up->ref_count);
2457 json_object_int_add(json_row, "sptBit", up->sptbit);
2458 json_object_object_add(json_group, src_str, json_row);
2459 } else {
2460 vty_out(vty,
2461 "%-10s%-15s %-15s %-11s %-8s %-9s %-9s %-9s %6d\n",
2462 up->rpf.source_nexthop.interface->name, src_str,
2463 grp_str, state_str, uptime, join_timer,
2464 rs_timer, ka_timer, up->ref_count);
2465 }
2466 }
2467
2468 if (uj) {
9d303b37
DL
2469 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2470 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2471 json_object_free(json);
2472 }
12e41d03
DL
2473}
2474
1a8a3da8
DS
2475static void pim_show_join_desired_helper(struct pim_instance *pim,
2476 struct vty *vty,
2477 struct pim_interface *pim_ifp,
2478 struct pim_ifchannel *ch,
d7c0a89a 2479 json_object *json, uint8_t uj)
12e41d03 2480{
1a8a3da8
DS
2481 struct pim_upstream *up = ch->upstream;
2482 json_object *json_group = NULL;
d62a17ae 2483 char src_str[INET_ADDRSTRLEN];
2484 char grp_str[INET_ADDRSTRLEN];
d62a17ae 2485 json_object *json_row = NULL;
2486
1a8a3da8
DS
2487 pim_inet4_dump("<src?>", up->sg.src, src_str, sizeof(src_str));
2488 pim_inet4_dump("<grp?>", up->sg.grp, grp_str, sizeof(grp_str));
d62a17ae 2489
1a8a3da8
DS
2490 if (uj) {
2491 json_object_object_get_ex(json, grp_str, &json_group);
d62a17ae 2492
1a8a3da8
DS
2493 if (!json_group) {
2494 json_group = json_object_new_object();
996c9314 2495 json_object_object_add(json, grp_str, json_group);
1a8a3da8 2496 }
d62a17ae 2497
1a8a3da8
DS
2498 json_row = json_object_new_object();
2499 json_object_pim_upstream_add(json_row, up);
2500 json_object_string_add(json_row, "interface",
2501 ch->interface->name);
2502 json_object_string_add(json_row, "source", src_str);
2503 json_object_string_add(json_row, "group", grp_str);
d62a17ae 2504
1a8a3da8 2505 if (pim_macro_ch_lost_assert(ch))
996c9314 2506 json_object_boolean_true_add(json_row, "lostAssert");
d62a17ae 2507
1a8a3da8
DS
2508 if (pim_macro_chisin_joins(ch))
2509 json_object_boolean_true_add(json_row, "joins");
d62a17ae 2510
1a8a3da8 2511 if (pim_macro_chisin_pim_include(ch))
996c9314 2512 json_object_boolean_true_add(json_row, "pimInclude");
d62a17ae 2513
1a8a3da8 2514 if (pim_upstream_evaluate_join_desired(pim, up))
996c9314
LB
2515 json_object_boolean_true_add(json_row,
2516 "evaluateJoinDesired");
d62a17ae 2517
1a8a3da8 2518 json_object_object_add(json_group, src_str, json_row);
d62a17ae 2519
1a8a3da8 2520 } else {
996c9314 2521 vty_out(vty, "%-9s %-15s %-15s %-10s %-5s %-10s %-11s %-6s\n",
1a8a3da8
DS
2522 ch->interface->name, src_str, grp_str,
2523 pim_macro_ch_lost_assert(ch) ? "yes" : "no",
2524 pim_macro_chisin_joins(ch) ? "yes" : "no",
2525 pim_macro_chisin_pim_include(ch) ? "yes" : "no",
996c9314
LB
2526 PIM_UPSTREAM_FLAG_TEST_DR_JOIN_DESIRED(up->flags)
2527 ? "yes"
2528 : "no",
2529 pim_upstream_evaluate_join_desired(pim, up) ? "yes"
2530 : "no");
1a8a3da8
DS
2531 }
2532}
d62a17ae 2533
1a8a3da8 2534static void pim_show_join_desired(struct pim_instance *pim, struct vty *vty,
d7c0a89a 2535 uint8_t uj)
1a8a3da8 2536{
1a8a3da8
DS
2537 struct pim_interface *pim_ifp;
2538 struct pim_ifchannel *ch;
2539 struct interface *ifp;
d62a17ae 2540
1a8a3da8 2541 json_object *json = NULL;
d62a17ae 2542
1a8a3da8
DS
2543 if (uj)
2544 json = json_object_new_object();
2545 else
2546 vty_out(vty,
2547 "Interface Source Group LostAssert Joins PimInclude JoinDesired EvalJD\n");
2548
2549 /* scan per-interface (S,G) state */
451fda4f 2550 FOR_ALL_INTERFACES (pim->vrf, ifp) {
1a8a3da8
DS
2551 pim_ifp = ifp->info;
2552 if (!pim_ifp)
2553 continue;
2554
ad7b74c4 2555
a2addae8 2556 RB_FOREACH (ch, pim_ifchannel_rb, &pim_ifp->ifchannel_rb) {
1a8a3da8 2557 /* scan all interfaces */
996c9314 2558 pim_show_join_desired_helper(pim, vty, pim_ifp, ch,
1a8a3da8 2559 json, uj);
d62a17ae 2560 }
2561 }
2562
2563 if (uj) {
9d303b37
DL
2564 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2565 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2566 json_object_free(json);
2567 }
12e41d03
DL
2568}
2569
64c86530 2570static void pim_show_upstream_rpf(struct pim_instance *pim, struct vty *vty,
d7c0a89a 2571 uint8_t uj)
12e41d03 2572{
d62a17ae 2573 struct listnode *upnode;
2574 struct pim_upstream *up;
2575 json_object *json = NULL;
2576 json_object *json_group = NULL;
2577 json_object *json_row = NULL;
2578
2579 if (uj)
2580 json = json_object_new_object();
2581 else
2582 vty_out(vty,
2583 "Source Group RpfIface RibNextHop RpfAddress \n");
2584
c68ba0d7 2585 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, upnode, up)) {
d62a17ae 2586 char src_str[INET_ADDRSTRLEN];
2587 char grp_str[INET_ADDRSTRLEN];
2588 char rpf_nexthop_str[PREFIX_STRLEN];
2589 char rpf_addr_str[PREFIX_STRLEN];
2590 struct pim_rpf *rpf;
2591 const char *rpf_ifname;
2592
2593 rpf = &up->rpf;
2594
2595 pim_inet4_dump("<src?>", up->sg.src, src_str, sizeof(src_str));
2596 pim_inet4_dump("<grp?>", up->sg.grp, grp_str, sizeof(grp_str));
2597 pim_addr_dump("<nexthop?>",
2598 &rpf->source_nexthop.mrib_nexthop_addr,
2599 rpf_nexthop_str, sizeof(rpf_nexthop_str));
2600 pim_addr_dump("<rpf?>", &rpf->rpf_addr, rpf_addr_str,
2601 sizeof(rpf_addr_str));
2602
9d303b37 2603 rpf_ifname = rpf->source_nexthop.interface ? rpf->source_nexthop.interface->name : "<ifname?>";
d62a17ae 2604
2605 if (uj) {
2606 json_object_object_get_ex(json, grp_str, &json_group);
2607
2608 if (!json_group) {
2609 json_group = json_object_new_object();
2610 json_object_object_add(json, grp_str,
2611 json_group);
2612 }
2613
2614 json_row = json_object_new_object();
2615 json_object_pim_upstream_add(json_row, up);
2616 json_object_string_add(json_row, "source", src_str);
2617 json_object_string_add(json_row, "group", grp_str);
2618 json_object_string_add(json_row, "rpfInterface",
2619 rpf_ifname);
2620 json_object_string_add(json_row, "ribNexthop",
2621 rpf_nexthop_str);
2622 json_object_string_add(json_row, "rpfAddress",
2623 rpf_addr_str);
2624 json_object_object_add(json_group, src_str, json_row);
2625 } else {
2626 vty_out(vty, "%-15s %-15s %-8s %-15s %-15s\n", src_str,
2627 grp_str, rpf_ifname, rpf_nexthop_str,
2628 rpf_addr_str);
2629 }
2630 }
2631
2632 if (uj) {
9d303b37
DL
2633 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2634 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2635 json_object_free(json);
2636 }
2637}
2638
da11e325
DS
2639static void show_rpf_refresh_stats(struct vty *vty, struct pim_instance *pim,
2640 time_t now, json_object *json)
d62a17ae 2641{
2642 char refresh_uptime[10];
2643
2644 pim_time_uptime_begin(refresh_uptime, sizeof(refresh_uptime), now,
bfc92019 2645 pim->rpf_cache_refresh_last);
d62a17ae 2646
2647 if (json) {
2648 json_object_int_add(json, "rpfCacheRefreshDelayMsecs",
2649 qpim_rpf_cache_refresh_delay_msec);
2650 json_object_int_add(
2651 json, "rpfCacheRefreshTimer",
da11e325 2652 pim_time_timer_remain_msec(pim->rpf_cache_refresher));
d62a17ae 2653 json_object_int_add(json, "rpfCacheRefreshRequests",
bfc92019 2654 pim->rpf_cache_refresh_requests);
d62a17ae 2655 json_object_int_add(json, "rpfCacheRefreshEvents",
bfc92019 2656 pim->rpf_cache_refresh_events);
d62a17ae 2657 json_object_string_add(json, "rpfCacheRefreshLast",
2658 refresh_uptime);
2659 json_object_int_add(json, "nexthopLookups",
bfc92019 2660 pim->nexthop_lookups);
d62a17ae 2661 json_object_int_add(json, "nexthopLookupsAvoided",
bfc92019 2662 pim->nexthop_lookups_avoided);
d62a17ae 2663 } else {
2664 vty_out(vty,
2665 "RPF Cache Refresh Delay: %ld msecs\n"
2666 "RPF Cache Refresh Timer: %ld msecs\n"
2667 "RPF Cache Refresh Requests: %lld\n"
2668 "RPF Cache Refresh Events: %lld\n"
2669 "RPF Cache Refresh Last: %s\n"
2670 "Nexthop Lookups: %lld\n"
2671 "Nexthop Lookups Avoided: %lld\n",
2672 qpim_rpf_cache_refresh_delay_msec,
da11e325 2673 pim_time_timer_remain_msec(pim->rpf_cache_refresher),
bfc92019
DS
2674 (long long)pim->rpf_cache_refresh_requests,
2675 (long long)pim->rpf_cache_refresh_events,
2676 refresh_uptime, (long long)pim->nexthop_lookups,
2677 (long long)pim->nexthop_lookups_avoided);
d62a17ae 2678 }
12e41d03
DL
2679}
2680
64c86530 2681static void show_scan_oil_stats(struct pim_instance *pim, struct vty *vty,
c68ba0d7 2682 time_t now)
12e41d03 2683{
d62a17ae 2684 char uptime_scan_oil[10];
2685 char uptime_mroute_add[10];
2686 char uptime_mroute_del[10];
12e41d03 2687
d62a17ae 2688 pim_time_uptime_begin(uptime_scan_oil, sizeof(uptime_scan_oil), now,
bfc92019 2689 pim->scan_oil_last);
d62a17ae 2690 pim_time_uptime_begin(uptime_mroute_add, sizeof(uptime_mroute_add), now,
c68ba0d7 2691 pim->mroute_add_last);
d62a17ae 2692 pim_time_uptime_begin(uptime_mroute_del, sizeof(uptime_mroute_del), now,
c68ba0d7 2693 pim->mroute_del_last);
12e41d03 2694
d62a17ae 2695 vty_out(vty,
2696 "Scan OIL - Last: %s Events: %lld\n"
2697 "MFC Add - Last: %s Events: %lld\n"
2698 "MFC Del - Last: %s Events: %lld\n",
bfc92019 2699 uptime_scan_oil, (long long)pim->scan_oil_events,
c68ba0d7
DS
2700 uptime_mroute_add, (long long)pim->mroute_add_events,
2701 uptime_mroute_del, (long long)pim->mroute_del_events);
12e41d03
DL
2702}
2703
d7c0a89a 2704static void pim_show_rpf(struct pim_instance *pim, struct vty *vty, uint8_t uj)
12e41d03 2705{
d62a17ae 2706 struct listnode *up_node;
2707 struct pim_upstream *up;
2708 time_t now = pim_time_monotonic_sec();
2709 json_object *json = NULL;
2710 json_object *json_group = NULL;
2711 json_object *json_row = NULL;
2712
2713 if (uj) {
2714 json = json_object_new_object();
da11e325 2715 show_rpf_refresh_stats(vty, pim, now, json);
d62a17ae 2716 } else {
da11e325 2717 show_rpf_refresh_stats(vty, pim, now, json);
d62a17ae 2718 vty_out(vty, "\n");
2719 vty_out(vty,
2720 "Source Group RpfIface RpfAddress RibNextHop Metric Pref\n");
2721 }
cba44481 2722
c68ba0d7 2723 for (ALL_LIST_ELEMENTS_RO(pim->upstream_list, up_node, up)) {
d62a17ae 2724 char src_str[INET_ADDRSTRLEN];
2725 char grp_str[INET_ADDRSTRLEN];
2726 char rpf_addr_str[PREFIX_STRLEN];
2727 char rib_nexthop_str[PREFIX_STRLEN];
2728 const char *rpf_ifname;
2729 struct pim_rpf *rpf = &up->rpf;
2730
2731 pim_inet4_dump("<src?>", up->sg.src, src_str, sizeof(src_str));
2732 pim_inet4_dump("<grp?>", up->sg.grp, grp_str, sizeof(grp_str));
2733 pim_addr_dump("<rpf?>", &rpf->rpf_addr, rpf_addr_str,
2734 sizeof(rpf_addr_str));
2735 pim_addr_dump("<nexthop?>",
2736 &rpf->source_nexthop.mrib_nexthop_addr,
2737 rib_nexthop_str, sizeof(rib_nexthop_str));
2738
9d303b37 2739 rpf_ifname = rpf->source_nexthop.interface ? rpf->source_nexthop.interface->name : "<ifname?>";
d62a17ae 2740
2741 if (uj) {
2742 json_object_object_get_ex(json, grp_str, &json_group);
2743
2744 if (!json_group) {
2745 json_group = json_object_new_object();
2746 json_object_object_add(json, grp_str,
2747 json_group);
2748 }
2749
2750 json_row = json_object_new_object();
2751 json_object_string_add(json_row, "source", src_str);
2752 json_object_string_add(json_row, "group", grp_str);
2753 json_object_string_add(json_row, "rpfInterface",
2754 rpf_ifname);
2755 json_object_string_add(json_row, "rpfAddress",
2756 rpf_addr_str);
2757 json_object_string_add(json_row, "ribNexthop",
2758 rib_nexthop_str);
2759 json_object_int_add(
2760 json_row, "routeMetric",
2761 rpf->source_nexthop.mrib_route_metric);
2762 json_object_int_add(
2763 json_row, "routePreference",
2764 rpf->source_nexthop.mrib_metric_preference);
2765 json_object_object_add(json_group, src_str, json_row);
2766
2767 } else {
2768 vty_out(vty, "%-15s %-15s %-8s %-15s %-15s %6d %4d\n",
2769 src_str, grp_str, rpf_ifname, rpf_addr_str,
2770 rib_nexthop_str,
2771 rpf->source_nexthop.mrib_route_metric,
2772 rpf->source_nexthop.mrib_metric_preference);
2773 }
2774 }
2775
2776 if (uj) {
9d303b37
DL
2777 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2778 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2779 json_object_free(json);
2780 }
cba44481
CS
2781}
2782
c68ba0d7
DS
2783struct pnc_cache_walk_data {
2784 struct vty *vty;
2785 struct pim_instance *pim;
2786};
2787
d62a17ae 2788static int pim_print_pnc_cache_walkcb(struct hash_backet *backet, void *arg)
12e41d03 2789{
d62a17ae 2790 struct pim_nexthop_cache *pnc = backet->data;
c68ba0d7
DS
2791 struct pnc_cache_walk_data *cwd = arg;
2792 struct vty *vty = cwd->vty;
2793 struct pim_instance *pim = cwd->pim;
d62a17ae 2794 struct nexthop *nh_node = NULL;
2795 ifindex_t first_ifindex;
2796 struct interface *ifp = NULL;
2797
2798 if (!pnc)
2799 return CMD_SUCCESS;
2800
2801 for (nh_node = pnc->nexthop; nh_node; nh_node = nh_node->next) {
2802 first_ifindex = nh_node->ifindex;
c68ba0d7 2803 ifp = if_lookup_by_index(first_ifindex, pim->vrf_id);
d62a17ae 2804
2805 vty_out(vty, "%-15s ", inet_ntoa(pnc->rpf.rpf_addr.u.prefix4));
2806 vty_out(vty, "%-14s ", ifp ? ifp->name : "NULL");
2807 vty_out(vty, "%s ", inet_ntoa(nh_node->gate.ipv4));
2808 vty_out(vty, "\n");
2809 }
2810 return CMD_SUCCESS;
2811}
2812
64c86530 2813static void pim_show_nexthop(struct pim_instance *pim, struct vty *vty)
d62a17ae 2814{
c68ba0d7 2815 struct pnc_cache_walk_data cwd;
d62a17ae 2816
c68ba0d7
DS
2817 cwd.vty = vty;
2818 cwd.pim = pim;
2819 vty_out(vty, "Number of registered addresses: %lu\n",
2820 pim->rpf_hash->count);
d62a17ae 2821 vty_out(vty, "Address Interface Nexthop\n");
2822 vty_out(vty, "-------------------------------------------\n");
12e41d03 2823
c68ba0d7 2824 hash_walk(pim->rpf_hash, pim_print_pnc_cache_walkcb, &cwd);
d62a17ae 2825}
2826
64c86530 2827static void igmp_show_groups(struct pim_instance *pim, struct vty *vty,
d7c0a89a 2828 uint8_t uj)
d62a17ae 2829{
d62a17ae 2830 struct interface *ifp;
2831 time_t now;
2832 json_object *json = NULL;
2833 json_object *json_iface = NULL;
2834 json_object *json_row = NULL;
2835
2836 now = pim_time_monotonic_sec();
2837
2838 if (uj)
2839 json = json_object_new_object();
2840 else
2841 vty_out(vty,
2842 "Interface Address Group Mode Timer Srcs V Uptime \n");
2843
2844 /* scan interfaces */
451fda4f 2845 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 2846 struct pim_interface *pim_ifp = ifp->info;
2847 struct listnode *sock_node;
2848 struct igmp_sock *igmp;
2849
2850 if (!pim_ifp)
2851 continue;
2852
2853 /* scan igmp sockets */
2854 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
2855 igmp)) {
2856 char ifaddr_str[INET_ADDRSTRLEN];
2857 struct listnode *grpnode;
2858 struct igmp_group *grp;
2859
2860 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
2861 sizeof(ifaddr_str));
2862
2863 /* scan igmp groups */
2864 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list,
2865 grpnode, grp)) {
2866 char group_str[INET_ADDRSTRLEN];
2867 char hhmmss[10];
2868 char uptime[10];
2869
2870 pim_inet4_dump("<group?>", grp->group_addr,
2871 group_str, sizeof(group_str));
2872 pim_time_timer_to_hhmmss(hhmmss, sizeof(hhmmss),
2873 grp->t_group_timer);
2874 pim_time_uptime(uptime, sizeof(uptime),
2875 now - grp->group_creation);
2876
2877 if (uj) {
2878 json_object_object_get_ex(
2879 json, ifp->name, &json_iface);
2880
2881 if (!json_iface) {
2882 json_iface =
2883 json_object_new_object();
2884 json_object_pim_ifp_add(
2885 json_iface, ifp);
2886 json_object_object_add(
2887 json, ifp->name,
2888 json_iface);
2889 }
2890
2891 json_row = json_object_new_object();
2892 json_object_string_add(
2893 json_row, "source", ifaddr_str);
2894 json_object_string_add(
2895 json_row, "group", group_str);
2896
2897 if (grp->igmp_version == 3)
2898 json_object_string_add(
2899 json_row, "mode",
2900 grp->group_filtermode_isexcl
2901 ? "EXCLUDE"
2902 : "INCLUDE");
2903
2904 json_object_string_add(json_row,
2905 "timer", hhmmss);
2906 json_object_int_add(
2907 json_row, "sourcesCount",
2908 grp->group_source_list
2909 ? listcount(
2910 grp->group_source_list)
2911 : 0);
2912 json_object_int_add(json_row, "version",
2913 grp->igmp_version);
2914 json_object_string_add(
2915 json_row, "uptime", uptime);
2916 json_object_object_add(json_iface,
2917 group_str,
2918 json_row);
2919
2920 } else {
2921 vty_out(vty,
2922 "%-9s %-15s %-15s %4s %8s %4d %d %8s\n",
2923 ifp->name, ifaddr_str,
2924 group_str,
2925 grp->igmp_version == 3
2926 ? (grp->group_filtermode_isexcl
2927 ? "EXCL"
2928 : "INCL")
2929 : "----",
2930 hhmmss,
2931 grp->group_source_list
2932 ? listcount(
2933 grp->group_source_list)
2934 : 0,
2935 grp->igmp_version, uptime);
2936 }
2937 } /* scan igmp groups */
2938 } /* scan igmp sockets */
2939 } /* scan interfaces */
2940
2941 if (uj) {
9d303b37
DL
2942 vty_out(vty, "%s\n", json_object_to_json_string_ext(
2943 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 2944 json_object_free(json);
2945 }
12e41d03
DL
2946}
2947
64c86530
DS
2948static void igmp_show_group_retransmission(struct pim_instance *pim,
2949 struct vty *vty)
12e41d03 2950{
d62a17ae 2951 struct interface *ifp;
2952
2953 vty_out(vty,
2954 "Interface Address Group RetTimer Counter RetSrcs\n");
2955
2956 /* scan interfaces */
451fda4f 2957 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 2958 struct pim_interface *pim_ifp = ifp->info;
2959 struct listnode *sock_node;
2960 struct igmp_sock *igmp;
2961
2962 if (!pim_ifp)
2963 continue;
2964
2965 /* scan igmp sockets */
2966 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
2967 igmp)) {
2968 char ifaddr_str[INET_ADDRSTRLEN];
2969 struct listnode *grpnode;
2970 struct igmp_group *grp;
2971
2972 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
2973 sizeof(ifaddr_str));
2974
2975 /* scan igmp groups */
2976 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list,
2977 grpnode, grp)) {
2978 char group_str[INET_ADDRSTRLEN];
2979 char grp_retr_mmss[10];
2980 struct listnode *src_node;
2981 struct igmp_source *src;
2982 int grp_retr_sources = 0;
2983
2984 pim_inet4_dump("<group?>", grp->group_addr,
2985 group_str, sizeof(group_str));
2986 pim_time_timer_to_mmss(
2987 grp_retr_mmss, sizeof(grp_retr_mmss),
2988 grp->t_group_query_retransmit_timer);
2989
2990
2991 /* count group sources with retransmission state
2992 */
2993 for (ALL_LIST_ELEMENTS_RO(
2994 grp->group_source_list, src_node,
2995 src)) {
2996 if (src->source_query_retransmit_count
2997 > 0) {
2998 ++grp_retr_sources;
2999 }
3000 }
3001
3002 vty_out(vty, "%-9s %-15s %-15s %-8s %7d %7d\n",
3003 ifp->name, ifaddr_str, group_str,
3004 grp_retr_mmss,
3005 grp->group_specific_query_retransmit_count,
3006 grp_retr_sources);
3007
3008 } /* scan igmp groups */
3009 } /* scan igmp sockets */
3010 } /* scan interfaces */
12e41d03
DL
3011}
3012
64c86530 3013static void igmp_show_sources(struct pim_instance *pim, struct vty *vty)
12e41d03 3014{
d62a17ae 3015 struct interface *ifp;
3016 time_t now;
3017
3018 now = pim_time_monotonic_sec();
3019
3020 vty_out(vty,
3021 "Interface Address Group Source Timer Fwd Uptime \n");
3022
3023 /* scan interfaces */
451fda4f 3024 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 3025 struct pim_interface *pim_ifp = ifp->info;
3026 struct listnode *sock_node;
3027 struct igmp_sock *igmp;
3028
3029 if (!pim_ifp)
3030 continue;
3031
3032 /* scan igmp sockets */
3033 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
3034 igmp)) {
3035 char ifaddr_str[INET_ADDRSTRLEN];
3036 struct listnode *grpnode;
3037 struct igmp_group *grp;
3038
3039 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
3040 sizeof(ifaddr_str));
3041
3042 /* scan igmp groups */
3043 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list,
3044 grpnode, grp)) {
3045 char group_str[INET_ADDRSTRLEN];
3046 struct listnode *srcnode;
3047 struct igmp_source *src;
3048
3049 pim_inet4_dump("<group?>", grp->group_addr,
3050 group_str, sizeof(group_str));
3051
3052 /* scan group sources */
3053 for (ALL_LIST_ELEMENTS_RO(
3054 grp->group_source_list, srcnode,
3055 src)) {
3056 char source_str[INET_ADDRSTRLEN];
3057 char mmss[10];
3058 char uptime[10];
3059
3060 pim_inet4_dump(
3061 "<source?>", src->source_addr,
3062 source_str, sizeof(source_str));
3063
3064 pim_time_timer_to_mmss(
3065 mmss, sizeof(mmss),
3066 src->t_source_timer);
3067
3068 pim_time_uptime(
3069 uptime, sizeof(uptime),
3070 now - src->source_creation);
3071
3072 vty_out(vty,
3073 "%-9s %-15s %-15s %-15s %5s %3s %8s\n",
3074 ifp->name, ifaddr_str,
3075 group_str, source_str, mmss,
3076 IGMP_SOURCE_TEST_FORWARDING(
3077 src->source_flags)
3078 ? "Y"
3079 : "N",
3080 uptime);
3081
3082 } /* scan group sources */
3083 } /* scan igmp groups */
3084 } /* scan igmp sockets */
3085 } /* scan interfaces */
12e41d03
DL
3086}
3087
64c86530
DS
3088static void igmp_show_source_retransmission(struct pim_instance *pim,
3089 struct vty *vty)
12e41d03 3090{
d62a17ae 3091 struct interface *ifp;
3092
3093 vty_out(vty,
3094 "Interface Address Group Source Counter\n");
3095
3096 /* scan interfaces */
451fda4f 3097 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 3098 struct pim_interface *pim_ifp = ifp->info;
3099 struct listnode *sock_node;
3100 struct igmp_sock *igmp;
3101
3102 if (!pim_ifp)
3103 continue;
3104
3105 /* scan igmp sockets */
3106 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
3107 igmp)) {
3108 char ifaddr_str[INET_ADDRSTRLEN];
3109 struct listnode *grpnode;
3110 struct igmp_group *grp;
3111
3112 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
3113 sizeof(ifaddr_str));
3114
3115 /* scan igmp groups */
3116 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list,
3117 grpnode, grp)) {
3118 char group_str[INET_ADDRSTRLEN];
3119 struct listnode *srcnode;
3120 struct igmp_source *src;
3121
3122 pim_inet4_dump("<group?>", grp->group_addr,
3123 group_str, sizeof(group_str));
3124
3125 /* scan group sources */
3126 for (ALL_LIST_ELEMENTS_RO(
3127 grp->group_source_list, srcnode,
3128 src)) {
3129 char source_str[INET_ADDRSTRLEN];
3130
3131 pim_inet4_dump(
3132 "<source?>", src->source_addr,
3133 source_str, sizeof(source_str));
3134
3135 vty_out(vty,
3136 "%-9s %-15s %-15s %-15s %7d\n",
3137 ifp->name, ifaddr_str,
3138 group_str, source_str,
3139 src->source_query_retransmit_count);
3140
3141 } /* scan group sources */
3142 } /* scan igmp groups */
3143 } /* scan igmp sockets */
3144 } /* scan interfaces */
12e41d03
DL
3145}
3146
c68ba0d7 3147static void clear_igmp_interfaces(struct pim_instance *pim)
12e41d03 3148{
d62a17ae 3149 struct interface *ifp;
12e41d03 3150
451fda4f 3151 FOR_ALL_INTERFACES (pim->vrf, ifp)
d62a17ae 3152 pim_if_addr_del_all_igmp(ifp);
12e41d03 3153
451fda4f 3154 FOR_ALL_INTERFACES (pim->vrf, ifp)
d62a17ae 3155 pim_if_addr_add_all(ifp);
12e41d03
DL
3156}
3157
c68ba0d7 3158static void clear_pim_interfaces(struct pim_instance *pim)
12e41d03 3159{
d62a17ae 3160 struct interface *ifp;
12e41d03 3161
451fda4f 3162 FOR_ALL_INTERFACES (pim->vrf, ifp) {
d62a17ae 3163 if (ifp->info) {
3164 pim_neighbor_delete_all(ifp, "interface cleared");
3165 }
3166 }
12e41d03
DL
3167}
3168
c68ba0d7 3169static void clear_interfaces(struct pim_instance *pim)
12e41d03 3170{
c68ba0d7
DS
3171 clear_igmp_interfaces(pim);
3172 clear_pim_interfaces(pim);
12e41d03
DL
3173}
3174
996c9314
LB
3175#define PIM_GET_PIM_INTERFACE(pim_ifp, ifp) \
3176 pim_ifp = ifp->info; \
3177 if (!pim_ifp) { \
3178 vty_out(vty, \
21b3e44e 3179 "%% Enable PIM and/or IGMP on this interface first\n"); \
996c9314 3180 return CMD_WARNING_CONFIG_FAILED; \
21b3e44e
QY
3181 }
3182
12e41d03
DL
3183DEFUN (clear_ip_interfaces,
3184 clear_ip_interfaces_cmd,
20a7e5fd 3185 "clear ip interfaces [vrf NAME]",
12e41d03
DL
3186 CLEAR_STR
3187 IP_STR
c68ba0d7
DS
3188 "Reset interfaces\n"
3189 VRF_CMD_HELP_STR)
12e41d03 3190{
c68ba0d7
DS
3191 int idx = 2;
3192 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3193
3194 if (!vrf)
3195 return CMD_WARNING;
3196
3197 clear_interfaces(vrf->info);
12e41d03 3198
d62a17ae 3199 return CMD_SUCCESS;
12e41d03
DL
3200}
3201
3202DEFUN (clear_ip_igmp_interfaces,
3203 clear_ip_igmp_interfaces_cmd,
20a7e5fd 3204 "clear ip igmp [vrf NAME] interfaces",
12e41d03
DL
3205 CLEAR_STR
3206 IP_STR
3207 CLEAR_IP_IGMP_STR
c68ba0d7 3208 VRF_CMD_HELP_STR
12e41d03
DL
3209 "Reset IGMP interfaces\n")
3210{
c68ba0d7
DS
3211 int idx = 2;
3212 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3213
3214 if (!vrf)
3215 return CMD_WARNING;
3216
3217 clear_igmp_interfaces(vrf->info);
12e41d03 3218
d62a17ae 3219 return CMD_SUCCESS;
12e41d03
DL
3220}
3221
c68ba0d7 3222static void mroute_add_all(struct pim_instance *pim)
12e41d03 3223{
d62a17ae 3224 struct listnode *node;
3225 struct channel_oil *c_oil;
3226
c68ba0d7 3227 for (ALL_LIST_ELEMENTS_RO(pim->channel_oil_list, node, c_oil)) {
d62a17ae 3228 if (pim_mroute_add(c_oil, __PRETTY_FUNCTION__)) {
3229 /* just log warning */
3230 char source_str[INET_ADDRSTRLEN];
3231 char group_str[INET_ADDRSTRLEN];
3232 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
3233 source_str, sizeof(source_str));
3234 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
3235 group_str, sizeof(group_str));
3236 zlog_warn("%s %s: (S,G)=(%s,%s) failure writing MFC",
3237 __FILE__, __PRETTY_FUNCTION__, source_str,
3238 group_str);
3239 }
3240 }
12e41d03
DL
3241}
3242
c68ba0d7 3243static void mroute_del_all(struct pim_instance *pim)
12e41d03 3244{
d62a17ae 3245 struct listnode *node;
3246 struct channel_oil *c_oil;
3247
c68ba0d7 3248 for (ALL_LIST_ELEMENTS_RO(pim->channel_oil_list, node, c_oil)) {
d62a17ae 3249 if (pim_mroute_del(c_oil, __PRETTY_FUNCTION__)) {
3250 /* just log warning */
3251 char source_str[INET_ADDRSTRLEN];
3252 char group_str[INET_ADDRSTRLEN];
3253 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
3254 source_str, sizeof(source_str));
3255 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
3256 group_str, sizeof(group_str));
3257 zlog_warn("%s %s: (S,G)=(%s,%s) failure clearing MFC",
3258 __FILE__, __PRETTY_FUNCTION__, source_str,
3259 group_str);
3260 }
3261 }
12e41d03
DL
3262}
3263
3264DEFUN (clear_ip_mroute,
3265 clear_ip_mroute_cmd,
20a7e5fd 3266 "clear ip mroute [vrf NAME]",
12e41d03
DL
3267 CLEAR_STR
3268 IP_STR
c68ba0d7
DS
3269 "Reset multicast routes\n"
3270 VRF_CMD_HELP_STR)
12e41d03 3271{
c68ba0d7
DS
3272 int idx = 2;
3273 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3274
3275 if (!vrf)
3276 return CMD_WARNING;
3277
3278 mroute_del_all(vrf->info);
3279 mroute_add_all(vrf->info);
12e41d03 3280
d62a17ae 3281 return CMD_SUCCESS;
12e41d03
DL
3282}
3283
3284DEFUN (clear_ip_pim_interfaces,
3285 clear_ip_pim_interfaces_cmd,
20a7e5fd 3286 "clear ip pim [vrf NAME] interfaces",
12e41d03
DL
3287 CLEAR_STR
3288 IP_STR
3289 CLEAR_IP_PIM_STR
c68ba0d7 3290 VRF_CMD_HELP_STR
12e41d03
DL
3291 "Reset PIM interfaces\n")
3292{
c68ba0d7
DS
3293 int idx = 2;
3294 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3295
3296 if (!vrf)
3297 return CMD_WARNING;
3298
3299 clear_pim_interfaces(vrf->info);
12e41d03 3300
d62a17ae 3301 return CMD_SUCCESS;
12e41d03
DL
3302}
3303
39438188
CS
3304DEFUN (clear_ip_pim_interface_traffic,
3305 clear_ip_pim_interface_traffic_cmd,
20a7e5fd 3306 "clear ip pim [vrf NAME] interface traffic",
39438188
CS
3307 "Reset functions\n"
3308 "IP information\n"
3309 "PIM clear commands\n"
c68ba0d7 3310 VRF_CMD_HELP_STR
39438188
CS
3311 "Reset PIM interfaces\n"
3312 "Reset Protocol Packet counters\n")
3313{
c68ba0d7
DS
3314 int idx = 2;
3315 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d62a17ae 3316 struct interface *ifp = NULL;
3317 struct pim_interface *pim_ifp = NULL;
3318
c68ba0d7
DS
3319 if (!vrf)
3320 return CMD_WARNING;
3321
451fda4f 3322 FOR_ALL_INTERFACES (vrf, ifp) {
d62a17ae 3323 pim_ifp = ifp->info;
3324
3325 if (!pim_ifp)
3326 continue;
3327
3328 pim_ifp->pim_ifstat_hello_recv = 0;
3329 pim_ifp->pim_ifstat_hello_sent = 0;
3330 pim_ifp->pim_ifstat_join_recv = 0;
3331 pim_ifp->pim_ifstat_join_send = 0;
3332 pim_ifp->pim_ifstat_prune_recv = 0;
3333 pim_ifp->pim_ifstat_prune_send = 0;
3334 pim_ifp->pim_ifstat_reg_recv = 0;
3335 pim_ifp->pim_ifstat_reg_send = 0;
3336 pim_ifp->pim_ifstat_reg_stop_recv = 0;
3337 pim_ifp->pim_ifstat_reg_stop_send = 0;
3338 pim_ifp->pim_ifstat_assert_recv = 0;
3339 pim_ifp->pim_ifstat_assert_send = 0;
3340 }
39438188 3341
d62a17ae 3342 return CMD_SUCCESS;
39438188
CS
3343}
3344
12e41d03
DL
3345DEFUN (clear_ip_pim_oil,
3346 clear_ip_pim_oil_cmd,
20a7e5fd 3347 "clear ip pim [vrf NAME] oil",
12e41d03
DL
3348 CLEAR_STR
3349 IP_STR
3350 CLEAR_IP_PIM_STR
c68ba0d7 3351 VRF_CMD_HELP_STR
12e41d03
DL
3352 "Rescan PIM OIL (output interface list)\n")
3353{
c68ba0d7
DS
3354 int idx = 2;
3355 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3356
3357 if (!vrf)
3358 return CMD_WARNING;
3359
3360 pim_scan_oil(vrf->info);
12e41d03 3361
d62a17ae 3362 return CMD_SUCCESS;
12e41d03
DL
3363}
3364
3365DEFUN (show_ip_igmp_interface,
3366 show_ip_igmp_interface_cmd,
20a7e5fd 3367 "show ip igmp [vrf NAME] interface [detail|WORD] [json]",
12e41d03
DL
3368 SHOW_STR
3369 IP_STR
3370 IGMP_STR
c68ba0d7 3371 VRF_CMD_HELP_STR
a268493f 3372 "IGMP interface information\n"
9b91bb50 3373 "Detailed output\n"
a268493f 3374 "interface name\n"
f5da2cc2 3375 JSON_STR)
12e41d03 3376{
c68ba0d7
DS
3377 int idx = 2;
3378 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3379 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3380
3381 if (!vrf)
3382 return CMD_WARNING;
72e81cf4 3383
d62a17ae 3384 if (argv_find(argv, argc, "detail", &idx)
3385 || argv_find(argv, argc, "WORD", &idx))
64c86530 3386 igmp_show_interfaces_single(vrf->info, vty, argv[idx]->arg, uj);
d62a17ae 3387 else
64c86530 3388 igmp_show_interfaces(vrf->info, vty, uj);
12e41d03 3389
d62a17ae 3390 return CMD_SUCCESS;
12e41d03
DL
3391}
3392
a25de56b
DS
3393DEFUN (show_ip_igmp_interface_vrf_all,
3394 show_ip_igmp_interface_vrf_all_cmd,
3395 "show ip igmp vrf all interface [detail|WORD] [json]",
3396 SHOW_STR
3397 IP_STR
3398 IGMP_STR
3399 VRF_CMD_HELP_STR
3400 "IGMP interface information\n"
3401 "Detailed output\n"
3402 "interface name\n"
f5da2cc2 3403 JSON_STR)
a25de56b
DS
3404{
3405 int idx = 2;
d7c0a89a 3406 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3407 struct vrf *vrf;
3408 bool first = true;
3409
3410 if (uj)
3411 vty_out(vty, "{ ");
a2addae8 3412 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3413 if (uj) {
3414 if (!first)
3415 vty_out(vty, ", ");
3416 vty_out(vty, " \"%s\": ", vrf->name);
3417 first = false;
3418 } else
3419 vty_out(vty, "VRF: %s\n", vrf->name);
3420 if (argv_find(argv, argc, "detail", &idx)
3421 || argv_find(argv, argc, "WORD", &idx))
3422 igmp_show_interfaces_single(vrf->info, vty,
3423 argv[idx]->arg, uj);
3424 else
3425 igmp_show_interfaces(vrf->info, vty, uj);
3426 }
3427 if (uj)
3428 vty_out(vty, "}\n");
3429
3430 return CMD_SUCCESS;
3431}
3432
12e41d03
DL
3433DEFUN (show_ip_igmp_join,
3434 show_ip_igmp_join_cmd,
20a7e5fd 3435 "show ip igmp [vrf NAME] join",
12e41d03
DL
3436 SHOW_STR
3437 IP_STR
3438 IGMP_STR
c68ba0d7 3439 VRF_CMD_HELP_STR
12e41d03
DL
3440 "IGMP static join information\n")
3441{
c68ba0d7
DS
3442 int idx = 2;
3443 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3444
3445 if (!vrf)
3446 return CMD_WARNING;
3447
64c86530 3448 igmp_show_interface_join(vrf->info, vty);
12e41d03 3449
d62a17ae 3450 return CMD_SUCCESS;
12e41d03
DL
3451}
3452
a25de56b
DS
3453DEFUN (show_ip_igmp_join_vrf_all,
3454 show_ip_igmp_join_vrf_all_cmd,
3455 "show ip igmp vrf all join",
3456 SHOW_STR
3457 IP_STR
3458 IGMP_STR
3459 VRF_CMD_HELP_STR
3460 "IGMP static join information\n")
3461{
d7c0a89a 3462 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3463 struct vrf *vrf;
3464 bool first = true;
3465
3466 if (uj)
3467 vty_out(vty, "{ ");
a2addae8 3468 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3469 if (uj) {
3470 if (!first)
3471 vty_out(vty, ", ");
3472 vty_out(vty, " \"%s\": ", vrf->name);
3473 first = false;
3474 } else
3475 vty_out(vty, "VRF: %s\n", vrf->name);
3476 igmp_show_interface_join(vrf->info, vty);
3477 }
3478 if (uj)
3479 vty_out(vty, "}\n");
3480
3481 return CMD_SUCCESS;
3482}
3483
12e41d03
DL
3484DEFUN (show_ip_igmp_groups,
3485 show_ip_igmp_groups_cmd,
20a7e5fd 3486 "show ip igmp [vrf NAME] groups [json]",
12e41d03
DL
3487 SHOW_STR
3488 IP_STR
3489 IGMP_STR
c68ba0d7 3490 VRF_CMD_HELP_STR
9b91bb50 3491 IGMP_GROUP_STR
f5da2cc2 3492 JSON_STR)
12e41d03 3493{
c68ba0d7
DS
3494 int idx = 2;
3495 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3496 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3497
3498 if (!vrf)
3499 return CMD_WARNING;
3500
64c86530 3501 igmp_show_groups(vrf->info, vty, uj);
12e41d03 3502
d62a17ae 3503 return CMD_SUCCESS;
12e41d03
DL
3504}
3505
a25de56b
DS
3506DEFUN (show_ip_igmp_groups_vrf_all,
3507 show_ip_igmp_groups_vrf_all_cmd,
3508 "show ip igmp vrf all groups [json]",
3509 SHOW_STR
3510 IP_STR
3511 IGMP_STR
3512 VRF_CMD_HELP_STR
3513 IGMP_GROUP_STR
f5da2cc2 3514 JSON_STR)
a25de56b 3515{
d7c0a89a 3516 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3517 struct vrf *vrf;
3518 bool first = true;
3519
3520 if (uj)
3521 vty_out(vty, "{ ");
a2addae8 3522 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3523 if (uj) {
3524 if (!first)
3525 vty_out(vty, ", ");
3526 vty_out(vty, " \"%s\": ", vrf->name);
3527 first = false;
3528 } else
3529 vty_out(vty, "VRF: %s\n", vrf->name);
3530 igmp_show_groups(vrf->info, vty, uj);
3531 }
3532 if (uj)
3533 vty_out(vty, "}\n");
3534
3535 return CMD_SUCCESS;
3536}
3537
12e41d03
DL
3538DEFUN (show_ip_igmp_groups_retransmissions,
3539 show_ip_igmp_groups_retransmissions_cmd,
20a7e5fd 3540 "show ip igmp [vrf NAME] groups retransmissions",
12e41d03
DL
3541 SHOW_STR
3542 IP_STR
3543 IGMP_STR
c68ba0d7 3544 VRF_CMD_HELP_STR
12e41d03
DL
3545 IGMP_GROUP_STR
3546 "IGMP group retransmissions\n")
3547{
c68ba0d7
DS
3548 int idx = 2;
3549 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3550
3551 if (!vrf)
3552 return CMD_WARNING;
3553
64c86530 3554 igmp_show_group_retransmission(vrf->info, vty);
12e41d03 3555
d62a17ae 3556 return CMD_SUCCESS;
12e41d03
DL
3557}
3558
12e41d03
DL
3559DEFUN (show_ip_igmp_sources,
3560 show_ip_igmp_sources_cmd,
20a7e5fd 3561 "show ip igmp [vrf NAME] sources",
12e41d03
DL
3562 SHOW_STR
3563 IP_STR
3564 IGMP_STR
c68ba0d7 3565 VRF_CMD_HELP_STR
12e41d03
DL
3566 IGMP_SOURCE_STR)
3567{
c68ba0d7
DS
3568 int idx = 2;
3569 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3570
3571 if (!vrf)
3572 return CMD_WARNING;
3573
64c86530 3574 igmp_show_sources(vrf->info, vty);
12e41d03 3575
d62a17ae 3576 return CMD_SUCCESS;
12e41d03
DL
3577}
3578
3579DEFUN (show_ip_igmp_sources_retransmissions,
3580 show_ip_igmp_sources_retransmissions_cmd,
20a7e5fd 3581 "show ip igmp [vrf NAME] sources retransmissions",
12e41d03
DL
3582 SHOW_STR
3583 IP_STR
3584 IGMP_STR
c68ba0d7 3585 VRF_CMD_HELP_STR
12e41d03
DL
3586 IGMP_SOURCE_STR
3587 "IGMP source retransmissions\n")
3588{
c68ba0d7
DS
3589 int idx = 2;
3590 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3591
3592 if (!vrf)
3593 return CMD_WARNING;
3594
64c86530 3595 igmp_show_source_retransmission(vrf->info, vty);
12e41d03 3596
d62a17ae 3597 return CMD_SUCCESS;
12e41d03
DL
3598}
3599
21313cbf
MS
3600DEFUN (show_ip_igmp_statistics,
3601 show_ip_igmp_statistics_cmd,
3602 "show ip igmp [vrf NAME] statistics [interface WORD] [json]",
3603 SHOW_STR
3604 IP_STR
3605 IGMP_STR
3606 VRF_CMD_HELP_STR
3607 "IGMP statistics\n"
3608 "interface\n"
3609 "IGMP interface\n"
3610 JSON_STR)
3611{
3612 int idx = 2;
3613 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3614 uint8_t uj = use_json(argc, argv);
3615
3616 if (!vrf)
3617 return CMD_WARNING;
3618
3619 if (argv_find(argv, argc, "WORD", &idx))
3620 igmp_show_statistics(vrf->info, vty, argv[idx]->arg, uj);
3621 else
3622 igmp_show_statistics(vrf->info, vty, NULL, uj);
3623
3624 return CMD_SUCCESS;
3625}
3626
12e41d03
DL
3627DEFUN (show_ip_pim_assert,
3628 show_ip_pim_assert_cmd,
20a7e5fd 3629 "show ip pim [vrf NAME] assert",
12e41d03
DL
3630 SHOW_STR
3631 IP_STR
3632 PIM_STR
c68ba0d7 3633 VRF_CMD_HELP_STR
12e41d03
DL
3634 "PIM interface assert\n")
3635{
c68ba0d7
DS
3636 int idx = 2;
3637 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3638
3639 if (!vrf)
3640 return CMD_WARNING;
3641
64c86530 3642 pim_show_assert(vrf->info, vty);
12e41d03 3643
d62a17ae 3644 return CMD_SUCCESS;
12e41d03
DL
3645}
3646
3647DEFUN (show_ip_pim_assert_internal,
3648 show_ip_pim_assert_internal_cmd,
20a7e5fd 3649 "show ip pim [vrf NAME] assert-internal",
12e41d03
DL
3650 SHOW_STR
3651 IP_STR
3652 PIM_STR
c68ba0d7 3653 VRF_CMD_HELP_STR
12e41d03
DL
3654 "PIM interface internal assert state\n")
3655{
c68ba0d7
DS
3656 int idx = 2;
3657 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3658
3659 if (!vrf)
3660 return CMD_WARNING;
3661
64c86530 3662 pim_show_assert_internal(vrf->info, vty);
12e41d03 3663
d62a17ae 3664 return CMD_SUCCESS;
12e41d03
DL
3665}
3666
3667DEFUN (show_ip_pim_assert_metric,
3668 show_ip_pim_assert_metric_cmd,
20a7e5fd 3669 "show ip pim [vrf NAME] assert-metric",
12e41d03
DL
3670 SHOW_STR
3671 IP_STR
3672 PIM_STR
c68ba0d7 3673 VRF_CMD_HELP_STR
12e41d03
DL
3674 "PIM interface assert metric\n")
3675{
c68ba0d7
DS
3676 int idx = 2;
3677 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3678
3679 if (!vrf)
3680 return CMD_WARNING;
3681
64c86530 3682 pim_show_assert_metric(vrf->info, vty);
12e41d03 3683
d62a17ae 3684 return CMD_SUCCESS;
12e41d03
DL
3685}
3686
3687DEFUN (show_ip_pim_assert_winner_metric,
3688 show_ip_pim_assert_winner_metric_cmd,
20a7e5fd 3689 "show ip pim [vrf NAME] assert-winner-metric",
12e41d03
DL
3690 SHOW_STR
3691 IP_STR
3692 PIM_STR
c68ba0d7 3693 VRF_CMD_HELP_STR
12e41d03
DL
3694 "PIM interface assert winner metric\n")
3695{
c68ba0d7
DS
3696 int idx = 2;
3697 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3698
3699 if (!vrf)
3700 return CMD_WARNING;
3701
64c86530 3702 pim_show_assert_winner_metric(vrf->info, vty);
12e41d03 3703
d62a17ae 3704 return CMD_SUCCESS;
12e41d03
DL
3705}
3706
12e41d03
DL
3707DEFUN (show_ip_pim_interface,
3708 show_ip_pim_interface_cmd,
20a7e5fd 3709 "show ip pim [vrf NAME] interface [detail|WORD] [json]",
12e41d03
DL
3710 SHOW_STR
3711 IP_STR
3712 PIM_STR
c68ba0d7 3713 VRF_CMD_HELP_STR
a268493f 3714 "PIM interface information\n"
9b91bb50 3715 "Detailed output\n"
a268493f 3716 "interface name\n"
f5da2cc2 3717 JSON_STR)
12e41d03 3718{
c68ba0d7
DS
3719 int idx = 2;
3720 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3721 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3722
3723 if (!vrf)
3724 return CMD_WARNING;
72e81cf4 3725
d62a17ae 3726 if (argv_find(argv, argc, "WORD", &idx)
3727 || argv_find(argv, argc, "detail", &idx))
64c86530 3728 pim_show_interfaces_single(vrf->info, vty, argv[idx]->arg, uj);
d62a17ae 3729 else
64c86530 3730 pim_show_interfaces(vrf->info, vty, uj);
12e41d03 3731
d62a17ae 3732 return CMD_SUCCESS;
12e41d03
DL
3733}
3734
a25de56b
DS
3735DEFUN (show_ip_pim_interface_vrf_all,
3736 show_ip_pim_interface_vrf_all_cmd,
3737 "show ip pim vrf all interface [detail|WORD] [json]",
3738 SHOW_STR
3739 IP_STR
3740 PIM_STR
3741 VRF_CMD_HELP_STR
3742 "PIM interface information\n"
3743 "Detailed output\n"
3744 "interface name\n"
f5da2cc2 3745 JSON_STR)
a25de56b
DS
3746{
3747 int idx = 6;
d7c0a89a 3748 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3749 struct vrf *vrf;
3750 bool first = true;
3751
3752 if (uj)
3753 vty_out(vty, "{ ");
a2addae8 3754 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3755 if (uj) {
3756 if (!first)
3757 vty_out(vty, ", ");
3758 vty_out(vty, " \"%s\": ", vrf->name);
3759 first = false;
3760 } else
3761 vty_out(vty, "VRF: %s\n", vrf->name);
3762 if (argv_find(argv, argc, "WORD", &idx)
3763 || argv_find(argv, argc, "detail", &idx))
3764 pim_show_interfaces_single(vrf->info, vty,
3765 argv[idx]->arg, uj);
3766 else
3767 pim_show_interfaces(vrf->info, vty, uj);
3768 }
3769 if (uj)
3770 vty_out(vty, "}\n");
3771
3772 return CMD_SUCCESS;
3773}
3774
12e41d03
DL
3775DEFUN (show_ip_pim_join,
3776 show_ip_pim_join_cmd,
20a7e5fd 3777 "show ip pim [vrf NAME] join [json]",
12e41d03
DL
3778 SHOW_STR
3779 IP_STR
3780 PIM_STR
c68ba0d7 3781 VRF_CMD_HELP_STR
a957a05b
DS
3782 "PIM interface join information\n"
3783 JSON_STR)
12e41d03 3784{
c68ba0d7
DS
3785 int idx = 2;
3786 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3787 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3788
3789 if (!vrf)
3790 return CMD_WARNING;
3791
64c86530 3792 pim_show_join(vrf->info, vty, uj);
12e41d03 3793
d62a17ae 3794 return CMD_SUCCESS;
12e41d03
DL
3795}
3796
a25de56b
DS
3797DEFUN (show_ip_pim_join_vrf_all,
3798 show_ip_pim_join_vrf_all_cmd,
3799 "show ip pim vrf all join [json]",
3800 SHOW_STR
3801 IP_STR
3802 PIM_STR
3803 VRF_CMD_HELP_STR
3804 "PIM interface join information\n"
3805 JSON_STR)
3806{
d7c0a89a 3807 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3808 struct vrf *vrf;
3809 bool first = true;
3810
3811 if (uj)
3812 vty_out(vty, "{ ");
a2addae8 3813 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3814 if (uj) {
3815 if (!first)
3816 vty_out(vty, ", ");
3817 vty_out(vty, " \"%s\": ", vrf->name);
3818 first = false;
3819 } else
3820 vty_out(vty, "VRF: %s\n", vrf->name);
3821 pim_show_join(vrf->info, vty, uj);
3822 }
3823 if (uj)
3824 vty_out(vty, "}\n");
3825
3826 return CMD_WARNING;
3827}
3828
12e41d03
DL
3829DEFUN (show_ip_pim_local_membership,
3830 show_ip_pim_local_membership_cmd,
20a7e5fd 3831 "show ip pim [vrf NAME] local-membership [json]",
12e41d03
DL
3832 SHOW_STR
3833 IP_STR
3834 PIM_STR
c68ba0d7 3835 VRF_CMD_HELP_STR
a957a05b
DS
3836 "PIM interface local-membership\n"
3837 JSON_STR)
12e41d03 3838{
c68ba0d7
DS
3839 int idx = 2;
3840 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3841 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3842
3843 if (!vrf)
3844 return CMD_WARNING;
3845
64c86530 3846 pim_show_membership(vrf->info, vty, uj);
12e41d03 3847
d62a17ae 3848 return CMD_SUCCESS;
12e41d03
DL
3849}
3850
12e41d03
DL
3851DEFUN (show_ip_pim_neighbor,
3852 show_ip_pim_neighbor_cmd,
20a7e5fd 3853 "show ip pim [vrf NAME] neighbor [detail|WORD] [json]",
12e41d03
DL
3854 SHOW_STR
3855 IP_STR
3856 PIM_STR
c68ba0d7 3857 VRF_CMD_HELP_STR
a268493f 3858 "PIM neighbor information\n"
9b91bb50 3859 "Detailed output\n"
a268493f 3860 "Name of interface or neighbor\n"
f5da2cc2 3861 JSON_STR)
12e41d03 3862{
c68ba0d7
DS
3863 int idx = 2;
3864 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3865 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3866
3867 if (!vrf)
3868 return CMD_WARNING;
72e81cf4 3869
d62a17ae 3870 if (argv_find(argv, argc, "detail", &idx)
3871 || argv_find(argv, argc, "WORD", &idx))
64c86530 3872 pim_show_neighbors_single(vrf->info, vty, argv[idx]->arg, uj);
d62a17ae 3873 else
64c86530 3874 pim_show_neighbors(vrf->info, vty, uj);
12e41d03 3875
d62a17ae 3876 return CMD_SUCCESS;
12e41d03
DL
3877}
3878
a25de56b
DS
3879DEFUN (show_ip_pim_neighbor_vrf_all,
3880 show_ip_pim_neighbor_vrf_all_cmd,
3881 "show ip pim vrf all neighbor [detail|WORD] [json]",
3882 SHOW_STR
3883 IP_STR
3884 PIM_STR
3885 VRF_CMD_HELP_STR
3886 "PIM neighbor information\n"
3887 "Detailed output\n"
3888 "Name of interface or neighbor\n"
f5da2cc2 3889 JSON_STR)
a25de56b
DS
3890{
3891 int idx = 2;
d7c0a89a 3892 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3893 struct vrf *vrf;
3894 bool first = true;
3895
3896 if (uj)
3897 vty_out(vty, "{ ");
a2addae8 3898 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
3899 if (uj) {
3900 if (!first)
3901 vty_out(vty, ", ");
3902 vty_out(vty, " \"%s\": ", vrf->name);
3903 first = false;
3904 } else
3905 vty_out(vty, "VRF: %s\n", vrf->name);
3906 if (argv_find(argv, argc, "detail", &idx)
3907 || argv_find(argv, argc, "WORD", &idx))
3908 pim_show_neighbors_single(vrf->info, vty,
3909 argv[idx]->arg, uj);
3910 else
3911 pim_show_neighbors(vrf->info, vty, uj);
3912 }
3913 if (uj)
3914 vty_out(vty, "}\n");
3915
3916 return CMD_SUCCESS;
3917}
3918
12e41d03
DL
3919DEFUN (show_ip_pim_secondary,
3920 show_ip_pim_secondary_cmd,
20a7e5fd 3921 "show ip pim [vrf NAME] secondary",
12e41d03
DL
3922 SHOW_STR
3923 IP_STR
3924 PIM_STR
c68ba0d7 3925 VRF_CMD_HELP_STR
12e41d03
DL
3926 "PIM neighbor addresses\n")
3927{
c68ba0d7
DS
3928 int idx = 2;
3929 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
3930
3931 if (!vrf)
3932 return CMD_WARNING;
3933
64c86530 3934 pim_show_neighbors_secondary(vrf->info, vty);
12e41d03 3935
d62a17ae 3936 return CMD_SUCCESS;
12e41d03
DL
3937}
3938
31a21c9c
DW
3939DEFUN (show_ip_pim_state,
3940 show_ip_pim_state_cmd,
20a7e5fd 3941 "show ip pim [vrf NAME] state [A.B.C.D [A.B.C.D]] [json]",
31a21c9c
DW
3942 SHOW_STR
3943 IP_STR
3944 PIM_STR
c68ba0d7 3945 VRF_CMD_HELP_STR
31a21c9c
DW
3946 "PIM state information\n"
3947 "Unicast or Multicast address\n"
3948 "Multicast address\n"
f5da2cc2 3949 JSON_STR)
31a21c9c 3950{
d62a17ae 3951 const char *src_or_group = NULL;
3952 const char *group = NULL;
c68ba0d7
DS
3953 int idx = 2;
3954 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 3955 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
3956
3957 if (!vrf)
3958 return CMD_WARNING;
3959
d62a17ae 3960 if (uj)
3961 argc--;
31a21c9c 3962
56243c3a
DS
3963 if (argv_find(argv, argc, "A.B.C.D", &idx)) {
3964 src_or_group = argv[idx]->arg;
3965 if (idx + 1 < argc)
3966 group = argv[idx + 1]->arg;
3967 }
31a21c9c 3968
64c86530 3969 pim_show_state(vrf->info, vty, src_or_group, group, uj);
31a21c9c 3970
d62a17ae 3971 return CMD_SUCCESS;
31a21c9c
DW
3972}
3973
a25de56b
DS
3974DEFUN (show_ip_pim_state_vrf_all,
3975 show_ip_pim_state_vrf_all_cmd,
3976 "show ip pim vrf all state [A.B.C.D [A.B.C.D]] [json]",
3977 SHOW_STR
3978 IP_STR
3979 PIM_STR
3980 VRF_CMD_HELP_STR
3981 "PIM state information\n"
3982 "Unicast or Multicast address\n"
3983 "Multicast address\n"
f5da2cc2 3984 JSON_STR)
a25de56b
DS
3985{
3986 const char *src_or_group = NULL;
3987 const char *group = NULL;
3988 int idx = 2;
d7c0a89a 3989 uint8_t uj = use_json(argc, argv);
a25de56b
DS
3990 struct vrf *vrf;
3991 bool first = true;
3992
3993 if (uj) {
3994 vty_out(vty, "{ ");
3995 argc--;
3996 }
3997
3998 if (argv_find(argv, argc, "A.B.C.D", &idx)) {
3999 src_or_group = argv[idx]->arg;
4000 if (idx + 1 < argc)
4001 group = argv[idx + 1]->arg;
4002 }
4003
a2addae8 4004 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
4005 if (uj) {
4006 if (!first)
4007 vty_out(vty, ", ");
4008 vty_out(vty, " \"%s\": ", vrf->name);
4009 first = false;
4010 } else
4011 vty_out(vty, "VRF: %s\n", vrf->name);
4012 pim_show_state(vrf->info, vty, src_or_group, group, uj);
4013 }
4014 if (uj)
4015 vty_out(vty, "}\n");
4016
4017 return CMD_SUCCESS;
4018}
4019
12e41d03
DL
4020DEFUN (show_ip_pim_upstream,
4021 show_ip_pim_upstream_cmd,
20a7e5fd 4022 "show ip pim [vrf NAME] upstream [json]",
12e41d03
DL
4023 SHOW_STR
4024 IP_STR
4025 PIM_STR
c68ba0d7 4026 VRF_CMD_HELP_STR
a268493f 4027 "PIM upstream information\n"
f5da2cc2 4028 JSON_STR)
12e41d03 4029{
c3169ac7
DS
4030 int idx = 2;
4031 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4032 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4033
4034 if (!vrf)
4035 return CMD_WARNING;
4036
64c86530 4037 pim_show_upstream(vrf->info, vty, uj);
12e41d03 4038
d62a17ae 4039 return CMD_SUCCESS;
12e41d03
DL
4040}
4041
a25de56b
DS
4042DEFUN (show_ip_pim_upstream_vrf_all,
4043 show_ip_pim_upstream_vrf_all_cmd,
4044 "show ip pim vrf all upstream [json]",
4045 SHOW_STR
4046 IP_STR
4047 PIM_STR
4048 VRF_CMD_HELP_STR
4049 "PIM upstream information\n"
4050 JSON_STR)
4051{
d7c0a89a 4052 uint8_t uj = use_json(argc, argv);
a25de56b
DS
4053 struct vrf *vrf;
4054 bool first = true;
4055
4056 if (uj)
4057 vty_out(vty, "{ ");
a2addae8 4058 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
4059 if (uj) {
4060 if (!first)
4061 vty_out(vty, ", ");
4062 vty_out(vty, " \"%s\": ", vrf->name);
4063 first = false;
4064 } else
4065 vty_out(vty, "VRF: %s\n", vrf->name);
4066 pim_show_upstream(vrf->info, vty, uj);
4067 }
4068
4069 return CMD_SUCCESS;
4070}
4071
12e41d03
DL
4072DEFUN (show_ip_pim_upstream_join_desired,
4073 show_ip_pim_upstream_join_desired_cmd,
20a7e5fd 4074 "show ip pim [vrf NAME] upstream-join-desired [json]",
12e41d03
DL
4075 SHOW_STR
4076 IP_STR
4077 PIM_STR
c68ba0d7 4078 VRF_CMD_HELP_STR
a268493f 4079 "PIM upstream join-desired\n"
f5da2cc2 4080 JSON_STR)
12e41d03 4081{
c68ba0d7
DS
4082 int idx = 2;
4083 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4084 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4085
4086 if (!vrf)
4087 return CMD_WARNING;
4088
64c86530 4089 pim_show_join_desired(vrf->info, vty, uj);
12e41d03 4090
d62a17ae 4091 return CMD_SUCCESS;
12e41d03
DL
4092}
4093
4094DEFUN (show_ip_pim_upstream_rpf,
4095 show_ip_pim_upstream_rpf_cmd,
20a7e5fd 4096 "show ip pim [vrf NAME] upstream-rpf [json]",
12e41d03
DL
4097 SHOW_STR
4098 IP_STR
4099 PIM_STR
c68ba0d7 4100 VRF_CMD_HELP_STR
a268493f 4101 "PIM upstream source rpf\n"
f5da2cc2 4102 JSON_STR)
12e41d03 4103{
c68ba0d7
DS
4104 int idx = 2;
4105 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4106 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4107
4108 if (!vrf)
4109 return CMD_WARNING;
4110
64c86530 4111 pim_show_upstream_rpf(vrf->info, vty, uj);
12e41d03 4112
d62a17ae 4113 return CMD_SUCCESS;
12e41d03
DL
4114}
4115
00d07c6f
DS
4116DEFUN (show_ip_pim_rp,
4117 show_ip_pim_rp_cmd,
20a7e5fd 4118 "show ip pim [vrf NAME] rp-info [json]",
00d07c6f
DS
4119 SHOW_STR
4120 IP_STR
4121 PIM_STR
c68ba0d7 4122 VRF_CMD_HELP_STR
a268493f 4123 "PIM RP information\n"
f5da2cc2 4124 JSON_STR)
00d07c6f 4125{
c68ba0d7
DS
4126 int idx = 2;
4127 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4128 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4129
4130 if (!vrf)
4131 return CMD_WARNING;
4132
64c86530 4133 pim_rp_show_information(vrf->info, vty, uj);
00d07c6f 4134
d62a17ae 4135 return CMD_SUCCESS;
00d07c6f
DS
4136}
4137
a25de56b
DS
4138DEFUN (show_ip_pim_rp_vrf_all,
4139 show_ip_pim_rp_vrf_all_cmd,
4140 "show ip pim vrf all rp-info [json]",
4141 SHOW_STR
4142 IP_STR
4143 PIM_STR
4144 VRF_CMD_HELP_STR
4145 "PIM RP information\n"
f5da2cc2 4146 JSON_STR)
a25de56b 4147{
d7c0a89a 4148 uint8_t uj = use_json(argc, argv);
a25de56b
DS
4149 struct vrf *vrf;
4150 bool first = true;
4151
4152 if (uj)
4153 vty_out(vty, "{ ");
a2addae8 4154 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
4155 if (uj) {
4156 if (!first)
4157 vty_out(vty, ", ");
4158 vty_out(vty, " \"%s\": ", vrf->name);
4159 first = false;
4160 } else
4161 vty_out(vty, "VRF: %s\n", vrf->name);
4162 pim_rp_show_information(vrf->info, vty, uj);
4163 }
4164 if (uj)
4165 vty_out(vty, "}\n");
4166
4167 return CMD_SUCCESS;
4168}
4169
12e41d03
DL
4170DEFUN (show_ip_pim_rpf,
4171 show_ip_pim_rpf_cmd,
20a7e5fd 4172 "show ip pim [vrf NAME] rpf [json]",
12e41d03
DL
4173 SHOW_STR
4174 IP_STR
4175 PIM_STR
c68ba0d7 4176 VRF_CMD_HELP_STR
a268493f 4177 "PIM cached source rpf information\n"
f5da2cc2 4178 JSON_STR)
12e41d03 4179{
c68ba0d7
DS
4180 int idx = 2;
4181 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4182 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4183
4184 if (!vrf)
4185 return CMD_WARNING;
4186
64c86530 4187 pim_show_rpf(vrf->info, vty, uj);
12e41d03 4188
d62a17ae 4189 return CMD_SUCCESS;
12e41d03
DL
4190}
4191
a25de56b
DS
4192DEFUN (show_ip_pim_rpf_vrf_all,
4193 show_ip_pim_rpf_vrf_all_cmd,
4194 "show ip pim vrf all rpf [json]",
4195 SHOW_STR
4196 IP_STR
4197 PIM_STR
4198 VRF_CMD_HELP_STR
4199 "PIM cached source rpf information\n"
f5da2cc2 4200 JSON_STR)
a25de56b 4201{
d7c0a89a 4202 uint8_t uj = use_json(argc, argv);
a25de56b
DS
4203 struct vrf *vrf;
4204 bool first = true;
4205
4206 if (uj)
4207 vty_out(vty, "{ ");
a2addae8 4208 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
4209 if (uj) {
4210 if (!first)
4211 vty_out(vty, ", ");
4212 vty_out(vty, " \"%s\": ", vrf->name);
4213 first = false;
4214 } else
4215 vty_out(vty, "VRF: %s\n", vrf->name);
4216 pim_show_rpf(vrf->info, vty, uj);
4217 }
4218 if (uj)
4219 vty_out(vty, "}\n");
4220
4221 return CMD_SUCCESS;
4222}
4223
cba44481
CS
4224DEFUN (show_ip_pim_nexthop,
4225 show_ip_pim_nexthop_cmd,
20a7e5fd 4226 "show ip pim [vrf NAME] nexthop",
cba44481
CS
4227 SHOW_STR
4228 IP_STR
4229 PIM_STR
c68ba0d7 4230 VRF_CMD_HELP_STR
cba44481
CS
4231 "PIM cached nexthop rpf information\n")
4232{
c68ba0d7
DS
4233 int idx = 2;
4234 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
4235
4236 if (!vrf)
4237 return CMD_WARNING;
4238
64c86530 4239 pim_show_nexthop(vrf->info, vty);
cba44481 4240
d62a17ae 4241 return CMD_SUCCESS;
cba44481
CS
4242}
4243
4244DEFUN (show_ip_pim_nexthop_lookup,
4245 show_ip_pim_nexthop_lookup_cmd,
20a7e5fd 4246 "show ip pim [vrf NAME] nexthop-lookup A.B.C.D A.B.C.D",
cba44481
CS
4247 SHOW_STR
4248 IP_STR
4249 PIM_STR
c68ba0d7 4250 VRF_CMD_HELP_STR
cba44481
CS
4251 "PIM cached nexthop rpf lookup\n"
4252 "Source/RP address\n"
4253 "Multicast Group address\n")
4254{
d62a17ae 4255 struct pim_nexthop_cache pnc;
4256 struct prefix nht_p;
4257 int result = 0;
4258 struct in_addr src_addr, grp_addr;
4259 struct in_addr vif_source;
4260 const char *addr_str, *addr_str1;
4261 struct prefix grp;
4262 struct pim_nexthop nexthop;
4263 char nexthop_addr_str[PREFIX_STRLEN];
4264 char grp_str[PREFIX_STRLEN];
c68ba0d7
DS
4265 int idx = 2;
4266 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d62a17ae 4267
c68ba0d7
DS
4268 if (!vrf)
4269 return CMD_WARNING;
4270
4271 argv_find(argv, argc, "A.B.C.D", &idx);
4272 addr_str = argv[idx]->arg;
d62a17ae 4273 result = inet_pton(AF_INET, addr_str, &src_addr);
4274 if (result <= 0) {
4275 vty_out(vty, "Bad unicast address %s: errno=%d: %s\n", addr_str,
4276 errno, safe_strerror(errno));
4277 return CMD_WARNING;
4278 }
4279
4280 if (pim_is_group_224_4(src_addr)) {
4281 vty_out(vty,
4282 "Invalid argument. Expected Valid Source Address.\n");
4283 return CMD_WARNING;
4284 }
4285
c68ba0d7 4286 addr_str1 = argv[idx + 1]->arg;
d62a17ae 4287 result = inet_pton(AF_INET, addr_str1, &grp_addr);
4288 if (result <= 0) {
4289 vty_out(vty, "Bad unicast address %s: errno=%d: %s\n", addr_str,
4290 errno, safe_strerror(errno));
4291 return CMD_WARNING;
4292 }
4293
4294 if (!pim_is_group_224_4(grp_addr)) {
4295 vty_out(vty,
4296 "Invalid argument. Expected Valid Multicast Group Address.\n");
4297 return CMD_WARNING;
4298 }
4299
c68ba0d7
DS
4300 if (!pim_rp_set_upstream_addr(vrf->info, &vif_source, src_addr,
4301 grp_addr))
d62a17ae 4302 return CMD_SUCCESS;
4303
4304 memset(&pnc, 0, sizeof(struct pim_nexthop_cache));
4305 nht_p.family = AF_INET;
4306 nht_p.prefixlen = IPV4_MAX_BITLEN;
4307 nht_p.u.prefix4 = vif_source;
4308 grp.family = AF_INET;
4309 grp.prefixlen = IPV4_MAX_BITLEN;
4310 grp.u.prefix4 = grp_addr;
4311 memset(&nexthop, 0, sizeof(nexthop));
4312
c68ba0d7 4313 if (pim_find_or_track_nexthop(vrf->info, &nht_p, NULL, NULL, &pnc))
9993f22c
DS
4314 result = pim_ecmp_nexthop_search(vrf->info, &pnc, &nexthop,
4315 &nht_p, &grp, 0);
cb9c7c50 4316 else
996c9314
LB
4317 result = pim_ecmp_nexthop_lookup(vrf->info, &nexthop,
4318 vif_source, &nht_p, &grp, 0);
9993f22c
DS
4319
4320 if (!result) {
996c9314
LB
4321 vty_out(vty,
4322 "Nexthop Lookup failed, no usable routes returned.\n");
9993f22c
DS
4323 return CMD_SUCCESS;
4324 }
d62a17ae 4325
4326 pim_addr_dump("<grp?>", &grp, grp_str, sizeof(grp_str));
4327 pim_addr_dump("<nexthop?>", &nexthop.mrib_nexthop_addr,
4328 nexthop_addr_str, sizeof(nexthop_addr_str));
4329 vty_out(vty, "Group %s --- Nexthop %s Interface %s \n", grp_str,
4330 nexthop_addr_str, nexthop.interface->name);
4331
4332 return CMD_SUCCESS;
cba44481
CS
4333}
4334
39438188
CS
4335DEFUN (show_ip_pim_interface_traffic,
4336 show_ip_pim_interface_traffic_cmd,
20a7e5fd 4337 "show ip pim [vrf NAME] interface traffic [WORD] [json]",
39438188
CS
4338 SHOW_STR
4339 IP_STR
4340 PIM_STR
c68ba0d7 4341 VRF_CMD_HELP_STR
39438188
CS
4342 "PIM interface information\n"
4343 "Protocol Packet counters\n"
17d86e50 4344 "Interface name\n"
f5da2cc2 4345 JSON_STR)
39438188 4346{
c68ba0d7
DS
4347 int idx = 2;
4348 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 4349 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
4350
4351 if (!vrf)
4352 return CMD_WARNING;
39438188 4353
d62a17ae 4354 if (argv_find(argv, argc, "WORD", &idx))
64c86530 4355 pim_show_interface_traffic_single(vrf->info, vty,
c68ba0d7 4356 argv[idx]->arg, uj);
d62a17ae 4357 else
64c86530 4358 pim_show_interface_traffic(vrf->info, vty, uj);
39438188 4359
d62a17ae 4360 return CMD_SUCCESS;
39438188
CS
4361}
4362
64c86530 4363static void show_multicast_interfaces(struct pim_instance *pim, struct vty *vty)
12e41d03 4364{
d62a17ae 4365 struct interface *ifp;
4366
4367 vty_out(vty, "\n");
4368
4369 vty_out(vty,
c68ba0d7 4370 "Interface Address ifi Vif PktsIn PktsOut BytesIn BytesOut\n");
d62a17ae 4371
451fda4f 4372 FOR_ALL_INTERFACES (pim->vrf, ifp) {
c68ba0d7
DS
4373 struct pim_interface *pim_ifp;
4374 struct in_addr ifaddr;
4375 struct sioc_vif_req vreq;
d62a17ae 4376
c68ba0d7 4377 pim_ifp = ifp->info;
d62a17ae 4378
c68ba0d7
DS
4379 if (!pim_ifp)
4380 continue;
d62a17ae 4381
c68ba0d7
DS
4382 memset(&vreq, 0, sizeof(vreq));
4383 vreq.vifi = pim_ifp->mroute_vif_index;
d62a17ae 4384
c68ba0d7
DS
4385 if (ioctl(pim->mroute_socket, SIOCGETVIFCNT, &vreq)) {
4386 zlog_warn(
4387 "ioctl(SIOCGETVIFCNT=%lu) failure for interface %s vif_index=%d: errno=%d: %s",
4388 (unsigned long)SIOCGETVIFCNT, ifp->name,
4389 pim_ifp->mroute_vif_index, errno,
4390 safe_strerror(errno));
4391 }
ecca97ac 4392
c68ba0d7 4393 ifaddr = pim_ifp->primary_address;
d62a17ae 4394
c68ba0d7
DS
4395 vty_out(vty, "%-12s %-15s %3d %3d %7lu %7lu %10lu %10lu\n",
4396 ifp->name, inet_ntoa(ifaddr), ifp->ifindex,
4397 pim_ifp->mroute_vif_index, (unsigned long)vreq.icount,
4398 (unsigned long)vreq.ocount, (unsigned long)vreq.ibytes,
4399 (unsigned long)vreq.obytes);
d62a17ae 4400 }
12e41d03
DL
4401}
4402
a25de56b
DS
4403static void pim_cmd_show_ip_multicast_helper(struct pim_instance *pim,
4404 struct vty *vty)
12e41d03 4405{
a25de56b 4406 struct vrf *vrf = pim->vrf;
d62a17ae 4407 time_t now = pim_time_monotonic_sec();
d62a17ae 4408 char uptime[10];
4409
bc14b6c7
DS
4410 pim = vrf->info;
4411
ecca97ac
DS
4412 vty_out(vty, "Mroute socket descriptor:");
4413
c68ba0d7 4414 vty_out(vty, " %d(%s)\n", pim->mroute_socket, vrf->name);
12e41d03 4415
d62a17ae 4416 pim_time_uptime(uptime, sizeof(uptime),
c68ba0d7 4417 now - pim->mroute_socket_creation);
d62a17ae 4418 vty_out(vty, "Mroute socket uptime: %s\n", uptime);
12e41d03 4419
d62a17ae 4420 vty_out(vty, "\n");
12e41d03 4421
d62a17ae 4422 pim_zebra_zclient_update(vty);
4423 pim_zlookup_show_ip_multicast(vty);
05b0d0d0 4424
d62a17ae 4425 vty_out(vty, "\n");
4426 vty_out(vty, "Maximum highest VifIndex: %d\n", PIM_MAX_USABLE_VIFS);
12e41d03 4427
d62a17ae 4428 vty_out(vty, "\n");
4429 vty_out(vty, "Upstream Join Timer: %d secs\n", qpim_t_periodic);
4430 vty_out(vty, "Join/Prune Holdtime: %d secs\n", PIM_JP_HOLDTIME);
4431 vty_out(vty, "PIM ECMP: %s\n", qpim_ecmp_enable ? "Enable" : "Disable");
4432 vty_out(vty, "PIM ECMP Rebalance: %s\n",
4433 qpim_ecmp_rebalance_enable ? "Enable" : "Disable");
12e41d03 4434
d62a17ae 4435 vty_out(vty, "\n");
12e41d03 4436
da11e325 4437 show_rpf_refresh_stats(vty, pim, now, NULL);
12e41d03 4438
d62a17ae 4439 vty_out(vty, "\n");
12e41d03 4440
64c86530 4441 show_scan_oil_stats(pim, vty, now);
12e41d03 4442
64c86530 4443 show_multicast_interfaces(pim, vty);
a25de56b
DS
4444}
4445
4446DEFUN (show_ip_multicast,
4447 show_ip_multicast_cmd,
4448 "show ip multicast [vrf NAME]",
4449 SHOW_STR
4450 IP_STR
4451 VRF_CMD_HELP_STR
4452 "Multicast global information\n")
4453{
4454 int idx = 2;
4455 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
4456
4457 if (!vrf)
4458 return CMD_WARNING;
4459
4460 pim_cmd_show_ip_multicast_helper(vrf->info, vty);
4461
4462 return CMD_SUCCESS;
4463}
4464
4465DEFUN (show_ip_multicast_vrf_all,
4466 show_ip_multicast_vrf_all_cmd,
4467 "show ip multicast vrf all",
4468 SHOW_STR
4469 IP_STR
4470 VRF_CMD_HELP_STR
4471 "Multicast global information\n")
4472{
d7c0a89a 4473 uint8_t uj = use_json(argc, argv);
a25de56b
DS
4474 struct vrf *vrf;
4475 bool first = true;
4476
4477 if (uj)
4478 vty_out(vty, "{ ");
a2addae8 4479 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
4480 if (uj) {
4481 if (!first)
4482 vty_out(vty, ", ");
4483 vty_out(vty, " \"%s\": ", vrf->name);
4484 first = false;
4485 } else
4486 vty_out(vty, "VRF: %s\n", vrf->name);
4487 pim_cmd_show_ip_multicast_helper(vrf->info, vty);
4488 }
4489 if (uj)
4490 vty_out(vty, "}\n");
12e41d03 4491
d62a17ae 4492 return CMD_SUCCESS;
12e41d03
DL
4493}
4494
996c9314 4495static void show_mroute(struct pim_instance *pim, struct vty *vty, bool fill,
d7c0a89a 4496 uint8_t uj)
12e41d03 4497{
d62a17ae 4498 struct listnode *node;
4499 struct channel_oil *c_oil;
4500 struct static_route *s_route;
4501 time_t now;
4502 json_object *json = NULL;
4503 json_object *json_group = NULL;
4504 json_object *json_source = NULL;
4505 json_object *json_oil = NULL;
4506 json_object *json_ifp_out = NULL;
4507 int found_oif = 0;
4508 int first = 1;
4509 char grp_str[INET_ADDRSTRLEN];
4510 char src_str[INET_ADDRSTRLEN];
4511 char in_ifname[INTERFACE_NAMSIZ + 1];
4512 char out_ifname[INTERFACE_NAMSIZ + 1];
4513 int oif_vif_index;
4514 struct interface *ifp_in;
4515 char proto[100];
4516
4517 if (uj) {
4518 json = json_object_new_object();
4519 } else {
4520 vty_out(vty,
4521 "Source Group Proto Input Output TTL Uptime\n");
4522 }
4523
4524 now = pim_time_monotonic_sec();
4525
4526 /* print list of PIM and IGMP routes */
c68ba0d7 4527 for (ALL_LIST_ELEMENTS_RO(pim->channel_oil_list, node, c_oil)) {
d62a17ae 4528 found_oif = 0;
4529 first = 1;
4530 if (!c_oil->installed && !uj)
4531 continue;
4532
4533 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp, grp_str,
4534 sizeof(grp_str));
4535 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin, src_str,
4536 sizeof(src_str));
7cfc7bcf 4537 ifp_in = pim_if_find_by_vif_index(pim, c_oil->oil.mfcc_parent);
d62a17ae 4538
4539 if (ifp_in)
4540 strcpy(in_ifname, ifp_in->name);
4541 else
4542 strcpy(in_ifname, "<iif?>");
4543
4544 if (uj) {
4545
4546 /* Find the group, create it if it doesn't exist */
4547 json_object_object_get_ex(json, grp_str, &json_group);
4548
4549 if (!json_group) {
4550 json_group = json_object_new_object();
4551 json_object_object_add(json, grp_str,
4552 json_group);
4553 }
4554
4555 /* Find the source nested under the group, create it if
4556 * it doesn't exist */
4557 json_object_object_get_ex(json_group, src_str,
4558 &json_source);
4559
4560 if (!json_source) {
4561 json_source = json_object_new_object();
4562 json_object_object_add(json_group, src_str,
4563 json_source);
4564 }
4565
4566 /* Find the inbound interface nested under the source,
4567 * create it if it doesn't exist */
4568 json_object_int_add(json_source, "installed",
4569 c_oil->installed);
4570 json_object_int_add(json_source, "refCount",
4571 c_oil->oil_ref_count);
4572 json_object_int_add(json_source, "oilSize",
4573 c_oil->oil_size);
4574 json_object_int_add(json_source, "OilInheritedRescan",
4575 c_oil->oil_inherited_rescan);
4576 json_object_string_add(json_source, "iif", in_ifname);
4577 json_oil = NULL;
4578 }
4579
4580 for (oif_vif_index = 0; oif_vif_index < MAXVIFS;
4581 ++oif_vif_index) {
4582 struct interface *ifp_out;
4583 char oif_uptime[10];
4584 int ttl;
4585
4586 ttl = c_oil->oil.mfcc_ttls[oif_vif_index];
4587 if (ttl < 1)
4588 continue;
4589
7cfc7bcf 4590 ifp_out = pim_if_find_by_vif_index(pim, oif_vif_index);
d62a17ae 4591 pim_time_uptime(
4592 oif_uptime, sizeof(oif_uptime),
4593 now - c_oil->oif_creation[oif_vif_index]);
4594 found_oif = 1;
4595
4596 if (ifp_out)
4597 strcpy(out_ifname, ifp_out->name);
4598 else
4599 strcpy(out_ifname, "<oif?>");
4600
4601 if (uj) {
4602 json_ifp_out = json_object_new_object();
4603 json_object_string_add(json_ifp_out, "source",
4604 src_str);
4605 json_object_string_add(json_ifp_out, "group",
4606 grp_str);
4607
4608 if (c_oil->oif_flags[oif_vif_index]
4609 & PIM_OIF_FLAG_PROTO_PIM)
4610 json_object_boolean_true_add(
4611 json_ifp_out, "protocolPim");
4612
4613 if (c_oil->oif_flags[oif_vif_index]
4614 & PIM_OIF_FLAG_PROTO_IGMP)
4615 json_object_boolean_true_add(
4616 json_ifp_out, "protocolIgmp");
4617
4618 if (c_oil->oif_flags[oif_vif_index]
4619 & PIM_OIF_FLAG_PROTO_SOURCE)
4620 json_object_boolean_true_add(
4621 json_ifp_out, "protocolSource");
4622
4623 if (c_oil->oif_flags[oif_vif_index]
4624 & PIM_OIF_FLAG_PROTO_STAR)
4625 json_object_boolean_true_add(
4626 json_ifp_out,
4627 "protocolInherited");
4628
4629 json_object_string_add(json_ifp_out,
4630 "inboundInterface",
4631 in_ifname);
4632 json_object_int_add(json_ifp_out, "iVifI",
4633 c_oil->oil.mfcc_parent);
4634 json_object_string_add(json_ifp_out,
4635 "outboundInterface",
4636 out_ifname);
4637 json_object_int_add(json_ifp_out, "oVifI",
4638 oif_vif_index);
4639 json_object_int_add(json_ifp_out, "ttl", ttl);
4640 json_object_string_add(json_ifp_out, "upTime",
4641 oif_uptime);
4642 if (!json_oil) {
4643 json_oil = json_object_new_object();
4644 json_object_object_add(json_source,
4645 "oil", json_oil);
4646 }
4647 json_object_object_add(json_oil, out_ifname,
4648 json_ifp_out);
4649 } else {
4650 if (c_oil->oif_flags[oif_vif_index]
4651 & PIM_OIF_FLAG_PROTO_PIM) {
4652 strcpy(proto, "PIM");
4653 }
4654
4655 if (c_oil->oif_flags[oif_vif_index]
4656 & PIM_OIF_FLAG_PROTO_IGMP) {
4657 strcpy(proto, "IGMP");
4658 }
4659
4660 if (c_oil->oif_flags[oif_vif_index]
4661 & PIM_OIF_FLAG_PROTO_SOURCE) {
4662 strcpy(proto, "SRC");
4663 }
4664
4665 if (c_oil->oif_flags[oif_vif_index]
4666 & PIM_OIF_FLAG_PROTO_STAR) {
4667 strcpy(proto, "STAR");
4668 }
4669
4670 vty_out(vty,
4671 "%-15s %-15s %-6s %-10s %-10s %-3d %8s\n",
4672 src_str, grp_str, proto, in_ifname,
4673 out_ifname, ttl, oif_uptime);
4674
4675 if (first) {
4676 src_str[0] = '\0';
4677 grp_str[0] = '\0';
4678 in_ifname[0] = '\0';
4679 first = 0;
4680 }
4681 }
4682 }
4683
4684 if (!uj && !found_oif) {
4685 vty_out(vty, "%-15s %-15s %-6s %-10s %-10s %-3d %8s\n",
4686 src_str, grp_str, "none", in_ifname, "none", 0,
4687 "--:--:--");
4688 }
4689 }
4690
4691 /* Print list of static routes */
7cfc7bcf
DS
4692 for (ALL_LIST_ELEMENTS_RO(pim->static_routes, node, s_route)) {
4693 first = 1;
4694
4695 if (!s_route->c_oil.installed)
d62a17ae 4696 continue;
4697
7cfc7bcf
DS
4698 pim_inet4_dump("<group?>", s_route->group, grp_str,
4699 sizeof(grp_str));
4700 pim_inet4_dump("<source?>", s_route->source, src_str,
4701 sizeof(src_str));
4702 ifp_in = pim_if_find_by_vif_index(pim, s_route->iif);
4703 found_oif = 0;
d62a17ae 4704
7cfc7bcf
DS
4705 if (ifp_in)
4706 strcpy(in_ifname, ifp_in->name);
4707 else
4708 strcpy(in_ifname, "<iif?>");
d62a17ae 4709
7cfc7bcf 4710 if (uj) {
d62a17ae 4711
7cfc7bcf
DS
4712 /* Find the group, create it if it doesn't exist */
4713 json_object_object_get_ex(json, grp_str, &json_group);
d62a17ae 4714
7cfc7bcf
DS
4715 if (!json_group) {
4716 json_group = json_object_new_object();
4717 json_object_object_add(json, grp_str,
4718 json_group);
4719 }
d62a17ae 4720
7cfc7bcf
DS
4721 /* Find the source nested under the group, create it if
4722 * it doesn't exist */
4723 json_object_object_get_ex(json_group, src_str,
4724 &json_source);
d62a17ae 4725
7cfc7bcf
DS
4726 if (!json_source) {
4727 json_source = json_object_new_object();
4728 json_object_object_add(json_group, src_str,
4729 json_source);
4730 }
d62a17ae 4731
7cfc7bcf
DS
4732 json_object_string_add(json_source, "iif", in_ifname);
4733 json_oil = NULL;
4734 } else {
4735 strcpy(proto, "STATIC");
4736 }
d62a17ae 4737
7cfc7bcf
DS
4738 for (oif_vif_index = 0; oif_vif_index < MAXVIFS;
4739 ++oif_vif_index) {
4740 struct interface *ifp_out;
4741 char oif_uptime[10];
4742 int ttl;
d62a17ae 4743
7cfc7bcf
DS
4744 ttl = s_route->oif_ttls[oif_vif_index];
4745 if (ttl < 1)
4746 continue;
4747
4748 ifp_out = pim_if_find_by_vif_index(pim, oif_vif_index);
996c9314
LB
4749 pim_time_uptime(
4750 oif_uptime, sizeof(oif_uptime),
4751 now
4752 - s_route->c_oil
4753 .oif_creation[oif_vif_index]);
7cfc7bcf 4754 found_oif = 1;
d62a17ae 4755
7cfc7bcf
DS
4756 if (ifp_out)
4757 strcpy(out_ifname, ifp_out->name);
4758 else
4759 strcpy(out_ifname, "<oif?>");
d62a17ae 4760
7cfc7bcf
DS
4761 if (uj) {
4762 json_ifp_out = json_object_new_object();
4763 json_object_string_add(json_ifp_out, "source",
4764 src_str);
4765 json_object_string_add(json_ifp_out, "group",
4766 grp_str);
4767 json_object_boolean_true_add(json_ifp_out,
4768 "protocolStatic");
4769 json_object_string_add(json_ifp_out,
4770 "inboundInterface",
4771 in_ifname);
4772 json_object_int_add(
4773 json_ifp_out, "iVifI",
4774 s_route->c_oil.oil.mfcc_parent);
4775 json_object_string_add(json_ifp_out,
4776 "outboundInterface",
4777 out_ifname);
4778 json_object_int_add(json_ifp_out, "oVifI",
4779 oif_vif_index);
4780 json_object_int_add(json_ifp_out, "ttl", ttl);
4781 json_object_string_add(json_ifp_out, "upTime",
4782 oif_uptime);
4783 if (!json_oil) {
4784 json_oil = json_object_new_object();
4785 json_object_object_add(json_source,
4786 "oil", json_oil);
d62a17ae 4787 }
7cfc7bcf
DS
4788 json_object_object_add(json_oil, out_ifname,
4789 json_ifp_out);
4790 } else {
d62a17ae 4791 vty_out(vty,
4e0bc0f0 4792 "%-15s %-15s %-6s %-10s %-10s %-3d %8s %s\n",
d62a17ae 4793 src_str, grp_str, proto, in_ifname,
7cfc7bcf
DS
4794 out_ifname, ttl, oif_uptime,
4795 pim->vrf->name);
45b7b092 4796 if (first && !fill) {
7cfc7bcf
DS
4797 src_str[0] = '\0';
4798 grp_str[0] = '\0';
4799 in_ifname[0] = '\0';
4800 first = 0;
4801 }
d62a17ae 4802 }
4803 }
7cfc7bcf
DS
4804
4805 if (!uj && !found_oif) {
4806 vty_out(vty,
4807 "%-15s %-15s %-6s %-10s %-10s %-3d %8s %s\n",
4808 src_str, grp_str, proto, in_ifname, "none", 0,
4809 "--:--:--", pim->vrf->name);
4810 }
d62a17ae 4811 }
4812
4813 if (uj) {
9d303b37
DL
4814 vty_out(vty, "%s\n", json_object_to_json_string_ext(
4815 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 4816 json_object_free(json);
4817 }
12e41d03
DL
4818}
4819
4820DEFUN (show_ip_mroute,
4821 show_ip_mroute_cmd,
45b7b092 4822 "show ip mroute [vrf NAME] [fill] [json]",
12e41d03
DL
4823 SHOW_STR
4824 IP_STR
a957a05b 4825 MROUTE_STR
c3169ac7 4826 VRF_CMD_HELP_STR
45b7b092 4827 "Fill in Assumed data\n"
a957a05b 4828 JSON_STR)
12e41d03 4829{
d7c0a89a 4830 uint8_t uj = use_json(argc, argv);
45b7b092 4831 bool fill = false;
c3169ac7
DS
4832 int idx = 2;
4833 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
c68ba0d7
DS
4834
4835 if (!vrf)
4836 return CMD_WARNING;
4837
45b7b092
DS
4838 if (argv_find(argv, argc, "fill", &idx))
4839 fill = true;
4840
4841 show_mroute(vrf->info, vty, fill, uj);
d62a17ae 4842 return CMD_SUCCESS;
12e41d03
DL
4843}
4844
b283a4ca
DS
4845DEFUN (show_ip_mroute_vrf_all,
4846 show_ip_mroute_vrf_all_cmd,
45b7b092 4847 "show ip mroute vrf all [fill] [json]",
b283a4ca
DS
4848 SHOW_STR
4849 IP_STR
4850 MROUTE_STR
4851 VRF_CMD_HELP_STR
45b7b092 4852 "Fill in Assumed data\n"
b283a4ca
DS
4853 JSON_STR)
4854{
d7c0a89a 4855 uint8_t uj = use_json(argc, argv);
45b7b092 4856 int idx = 4;
b283a4ca
DS
4857 struct vrf *vrf;
4858 bool first = true;
45b7b092
DS
4859 bool fill = false;
4860
4861 if (argv_find(argv, argc, "fill", &idx))
4862 fill = true;
b283a4ca
DS
4863
4864 if (uj)
4865 vty_out(vty, "{ ");
a2addae8 4866 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
b283a4ca
DS
4867 if (uj) {
4868 if (!first)
4869 vty_out(vty, ", ");
4870 vty_out(vty, " \"%s\": ", vrf->name);
4871 first = false;
4872 } else
4873 vty_out(vty, "VRF: %s\n", vrf->name);
45b7b092 4874 show_mroute(vrf->info, vty, fill, uj);
b283a4ca
DS
4875 }
4876 if (uj)
5cef40fc 4877 vty_out(vty, "}\n");
b283a4ca
DS
4878
4879 return CMD_SUCCESS;
4880}
4881
64c86530 4882static void show_mroute_count(struct pim_instance *pim, struct vty *vty)
12e41d03 4883{
d62a17ae 4884 struct listnode *node;
4885 struct channel_oil *c_oil;
4886 struct static_route *s_route;
12e41d03 4887
d62a17ae 4888 vty_out(vty, "\n");
12e41d03 4889
d62a17ae 4890 vty_out(vty,
4891 "Source Group LastUsed Packets Bytes WrongIf \n");
12e41d03 4892
d62a17ae 4893 /* Print PIM and IGMP route counts */
c68ba0d7 4894 for (ALL_LIST_ELEMENTS_RO(pim->channel_oil_list, node, c_oil)) {
d62a17ae 4895 char group_str[INET_ADDRSTRLEN];
4896 char source_str[INET_ADDRSTRLEN];
58302dc7 4897
d62a17ae 4898 if (!c_oil->installed)
4899 continue;
12e41d03 4900
d62a17ae 4901 pim_mroute_update_counters(c_oil);
12e41d03 4902
d62a17ae 4903 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp, group_str,
4904 sizeof(group_str));
4905 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin, source_str,
4906 sizeof(source_str));
6250610a 4907
d62a17ae 4908 vty_out(vty, "%-15s %-15s %-8llu %-7ld %-10ld %-7ld\n",
4909 source_str, group_str, c_oil->cc.lastused / 100,
4910 c_oil->cc.pktcnt, c_oil->cc.bytecnt,
4911 c_oil->cc.wrong_if);
4912 }
4913
c68ba0d7
DS
4914 for (ALL_LIST_ELEMENTS_RO(pim->static_routes, node, s_route)) {
4915 char group_str[INET_ADDRSTRLEN];
4916 char source_str[INET_ADDRSTRLEN];
6250610a 4917
c68ba0d7
DS
4918 if (!s_route->c_oil.installed)
4919 continue;
6250610a 4920
c68ba0d7 4921 pim_mroute_update_counters(&s_route->c_oil);
4e0bc0f0 4922
c68ba0d7
DS
4923 pim_inet4_dump("<group?>", s_route->c_oil.oil.mfcc_mcastgrp,
4924 group_str, sizeof(group_str));
4925 pim_inet4_dump("<source?>", s_route->c_oil.oil.mfcc_origin,
4926 source_str, sizeof(source_str));
4e0bc0f0 4927
c68ba0d7
DS
4928 vty_out(vty, "%-15s %-15s %-8llu %-7ld %-10ld %-7ld\n",
4929 source_str, group_str, s_route->c_oil.cc.lastused,
4930 s_route->c_oil.cc.pktcnt, s_route->c_oil.cc.bytecnt,
4931 s_route->c_oil.cc.wrong_if);
d62a17ae 4932 }
12e41d03
DL
4933}
4934
4935DEFUN (show_ip_mroute_count,
4936 show_ip_mroute_count_cmd,
20a7e5fd 4937 "show ip mroute [vrf NAME] count",
12e41d03
DL
4938 SHOW_STR
4939 IP_STR
4940 MROUTE_STR
c68ba0d7 4941 VRF_CMD_HELP_STR
12e41d03
DL
4942 "Route and packet count data\n")
4943{
c68ba0d7
DS
4944 int idx = 2;
4945 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
4946
e691f179
DS
4947 if (!vrf)
4948 return CMD_WARNING;
4949
64c86530 4950 show_mroute_count(vrf->info, vty);
d62a17ae 4951 return CMD_SUCCESS;
12e41d03
DL
4952}
4953
5c3aac90
DS
4954DEFUN (show_ip_mroute_count_vrf_all,
4955 show_ip_mroute_count_vrf_all_cmd,
4956 "show ip mroute vrf all count",
4957 SHOW_STR
4958 IP_STR
4959 MROUTE_STR
4960 VRF_CMD_HELP_STR
4961 "Route and packet count data\n")
4962{
d7c0a89a 4963 uint8_t uj = use_json(argc, argv);
5c3aac90
DS
4964 struct vrf *vrf;
4965 bool first = true;
4966
4967 if (uj)
4968 vty_out(vty, "{ ");
a2addae8 4969 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
5c3aac90
DS
4970 if (uj) {
4971 if (!first)
4972 vty_out(vty, ", ");
4973 vty_out(vty, " \"%s\": ", vrf->name);
4974 first = false;
4975 } else
4976 vty_out(vty, "VRF: %s\n", vrf->name);
4977 show_mroute_count(vrf->info, vty);
4978 }
4979 if (uj)
4980 vty_out(vty, "}\n");
4981
4982 return CMD_SUCCESS;
4983}
4984
12e41d03
DL
4985DEFUN (show_ip_rib,
4986 show_ip_rib_cmd,
20a7e5fd 4987 "show ip rib [vrf NAME] A.B.C.D",
12e41d03
DL
4988 SHOW_STR
4989 IP_STR
4990 RIB_STR
c68ba0d7 4991 VRF_CMD_HELP_STR
12e41d03
DL
4992 "Unicast address\n")
4993{
c68ba0d7
DS
4994 int idx = 2;
4995 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d62a17ae 4996 struct in_addr addr;
4997 const char *addr_str;
4998 struct pim_nexthop nexthop;
4999 char nexthop_addr_str[PREFIX_STRLEN];
5000 int result;
5001
c68ba0d7
DS
5002 if (!vrf)
5003 return CMD_WARNING;
5004
d62a17ae 5005 memset(&nexthop, 0, sizeof(nexthop));
c68ba0d7
DS
5006 argv_find(argv, argc, "A.B.C.D", &idx);
5007 addr_str = argv[idx]->arg;
d62a17ae 5008 result = inet_pton(AF_INET, addr_str, &addr);
5009 if (result <= 0) {
5010 vty_out(vty, "Bad unicast address %s: errno=%d: %s\n", addr_str,
5011 errno, safe_strerror(errno));
5012 return CMD_WARNING;
5013 }
12e41d03 5014
c68ba0d7 5015 if (pim_nexthop_lookup(vrf->info, &nexthop, addr, 0)) {
d62a17ae 5016 vty_out(vty,
5017 "Failure querying RIB nexthop for unicast address %s\n",
5018 addr_str);
5019 return CMD_WARNING;
5020 }
12e41d03 5021
d62a17ae 5022 vty_out(vty,
5023 "Address NextHop Interface Metric Preference\n");
12e41d03 5024
d62a17ae 5025 pim_addr_dump("<nexthop?>", &nexthop.mrib_nexthop_addr,
5026 nexthop_addr_str, sizeof(nexthop_addr_str));
12e41d03 5027
d62a17ae 5028 vty_out(vty, "%-15s %-15s %-9s %6d %10d\n", addr_str, nexthop_addr_str,
5029 nexthop.interface ? nexthop.interface->name : "<ifname?>",
5030 nexthop.mrib_route_metric, nexthop.mrib_metric_preference);
12e41d03 5031
d62a17ae 5032 return CMD_SUCCESS;
12e41d03
DL
5033}
5034
64c86530 5035static void show_ssmpingd(struct pim_instance *pim, struct vty *vty)
12e41d03 5036{
d62a17ae 5037 struct listnode *node;
5038 struct ssmpingd_sock *ss;
5039 time_t now;
12e41d03 5040
d62a17ae 5041 vty_out(vty,
5042 "Source Socket Address Port Uptime Requests\n");
12e41d03 5043
71ad9915 5044 if (!pim->ssmpingd_list)
d62a17ae 5045 return;
12e41d03 5046
d62a17ae 5047 now = pim_time_monotonic_sec();
12e41d03 5048
71ad9915 5049 for (ALL_LIST_ELEMENTS_RO(pim->ssmpingd_list, node, ss)) {
d62a17ae 5050 char source_str[INET_ADDRSTRLEN];
5051 char ss_uptime[10];
5052 struct sockaddr_in bind_addr;
5053 socklen_t len = sizeof(bind_addr);
5054 char bind_addr_str[INET_ADDRSTRLEN];
12e41d03 5055
d62a17ae 5056 pim_inet4_dump("<src?>", ss->source_addr, source_str,
5057 sizeof(source_str));
12e41d03 5058
d62a17ae 5059 if (pim_socket_getsockname(
5060 ss->sock_fd, (struct sockaddr *)&bind_addr, &len)) {
5061 vty_out(vty,
5062 "%% Failure reading socket name for ssmpingd source %s on fd=%d\n",
5063 source_str, ss->sock_fd);
5064 }
12e41d03 5065
d62a17ae 5066 pim_inet4_dump("<addr?>", bind_addr.sin_addr, bind_addr_str,
5067 sizeof(bind_addr_str));
5068 pim_time_uptime(ss_uptime, sizeof(ss_uptime),
5069 now - ss->creation);
12e41d03 5070
d62a17ae 5071 vty_out(vty, "%-15s %6d %-15s %5d %8s %8lld\n", source_str,
5072 ss->sock_fd, bind_addr_str, ntohs(bind_addr.sin_port),
5073 ss_uptime, (long long)ss->requests);
5074 }
12e41d03
DL
5075}
5076
5077DEFUN (show_ip_ssmpingd,
5078 show_ip_ssmpingd_cmd,
20a7e5fd 5079 "show ip ssmpingd [vrf NAME]",
12e41d03
DL
5080 SHOW_STR
5081 IP_STR
c68ba0d7
DS
5082 SHOW_SSMPINGD_STR
5083 VRF_CMD_HELP_STR)
12e41d03 5084{
c68ba0d7
DS
5085 int idx = 2;
5086 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
5087
5088 if (!vrf)
5089 return CMD_WARNING;
5090
64c86530 5091 show_ssmpingd(vrf->info, vty);
d62a17ae 5092 return CMD_SUCCESS;
12e41d03
DL
5093}
5094
64c86530 5095static int pim_rp_cmd_worker(struct pim_instance *pim, struct vty *vty,
9ecb7b77 5096 const char *rp, const char *group,
d62a17ae 5097 const char *plist)
36d6bd7d 5098{
d62a17ae 5099 int result;
36d6bd7d 5100
9ecb7b77 5101 result = pim_rp_new(pim, rp, group, plist);
dfe43e25 5102
d62a17ae 5103 if (result == PIM_MALLOC_FAIL) {
5104 vty_out(vty, "%% Out of memory\n");
5105 return CMD_WARNING_CONFIG_FAILED;
5106 }
dfe43e25 5107
d62a17ae 5108 if (result == PIM_GROUP_BAD_ADDRESS) {
5109 vty_out(vty, "%% Bad group address specified: %s\n", group);
5110 return CMD_WARNING_CONFIG_FAILED;
5111 }
dfe43e25 5112
d62a17ae 5113 if (result == PIM_RP_BAD_ADDRESS) {
5114 vty_out(vty, "%% Bad RP address specified: %s\n", rp);
5115 return CMD_WARNING_CONFIG_FAILED;
5116 }
36d6bd7d 5117
d62a17ae 5118 if (result == PIM_RP_NO_PATH) {
5119 vty_out(vty, "%% No Path to RP address specified: %s\n", rp);
c6e7b952 5120 return CMD_WARNING;
d62a17ae 5121 }
dfe43e25 5122
d62a17ae 5123 if (result == PIM_GROUP_OVERLAP) {
996c9314
LB
5124 vty_out(vty,
5125 "%% Group range specified cannot exact match another\n");
d62a17ae 5126 return CMD_WARNING_CONFIG_FAILED;
5127 }
dfe43e25 5128
d62a17ae 5129 if (result == PIM_GROUP_PFXLIST_OVERLAP) {
5130 vty_out(vty,
5131 "%% This group is already covered by a RP prefix-list\n");
5132 return CMD_WARNING_CONFIG_FAILED;
5133 }
36d6bd7d 5134
d62a17ae 5135 if (result == PIM_RP_PFXLIST_IN_USE) {
5136 vty_out(vty,
5137 "%% The same prefix-list cannot be applied to multiple RPs\n");
5138 return CMD_WARNING_CONFIG_FAILED;
5139 }
36d6bd7d 5140
d62a17ae 5141 return CMD_SUCCESS;
36d6bd7d
DS
5142}
5143
4f9f3925
DS
5144static int pim_cmd_spt_switchover(struct pim_instance *pim,
5145 enum pim_spt_switchover spt,
d62a17ae 5146 const char *plist)
df94f9a9 5147{
4f9f3925 5148 pim->spt.switchover = spt;
df94f9a9 5149
4f9f3925 5150 switch (pim->spt.switchover) {
d62a17ae 5151 case PIM_SPT_IMMEDIATE:
4f9f3925
DS
5152 if (pim->spt.plist)
5153 XFREE(MTYPE_PIM_SPT_PLIST_NAME, pim->spt.plist);
df94f9a9 5154
4f9f3925 5155 pim_upstream_add_lhr_star_pimreg(pim);
d62a17ae 5156 break;
5157 case PIM_SPT_INFINITY:
4f9f3925 5158 pim_upstream_remove_lhr_star_pimreg(pim, plist);
df94f9a9 5159
4f9f3925
DS
5160 if (pim->spt.plist)
5161 XFREE(MTYPE_PIM_SPT_PLIST_NAME, pim->spt.plist);
df94f9a9 5162
d62a17ae 5163 if (plist)
c68ba0d7 5164 pim->spt.plist =
d62a17ae 5165 XSTRDUP(MTYPE_PIM_SPT_PLIST_NAME, plist);
5166 break;
5167 }
df94f9a9 5168
d62a17ae 5169 return CMD_SUCCESS;
df94f9a9
DS
5170}
5171
a7b2b1e2
DS
5172DEFUN (ip_pim_spt_switchover_infinity,
5173 ip_pim_spt_switchover_infinity_cmd,
5174 "ip pim spt-switchover infinity-and-beyond",
5175 IP_STR
5176 PIM_STR
5177 "SPT-Switchover\n"
5178 "Never switch to SPT Tree\n")
5179{
4f9f3925
DS
5180 PIM_DECLVAR_CONTEXT(vrf, pim);
5181 return pim_cmd_spt_switchover(pim, PIM_SPT_INFINITY, NULL);
df94f9a9 5182}
a7b2b1e2 5183
df94f9a9
DS
5184DEFUN (ip_pim_spt_switchover_infinity_plist,
5185 ip_pim_spt_switchover_infinity_plist_cmd,
5186 "ip pim spt-switchover infinity-and-beyond prefix-list WORD",
5187 IP_STR
5188 PIM_STR
5189 "SPT-Switchover\n"
5190 "Never switch to SPT Tree\n"
5191 "Prefix-List to control which groups to switch\n"
5192 "Prefix-List name\n")
5193{
4f9f3925
DS
5194 PIM_DECLVAR_CONTEXT(vrf, pim);
5195 return pim_cmd_spt_switchover(pim, PIM_SPT_INFINITY, argv[5]->arg);
a7b2b1e2
DS
5196}
5197
5198DEFUN (no_ip_pim_spt_switchover_infinity,
5199 no_ip_pim_spt_switchover_infinity_cmd,
5200 "no ip pim spt-switchover infinity-and-beyond",
5201 NO_STR
5202 IP_STR
5203 PIM_STR
5204 "SPT_Switchover\n"
5205 "Never switch to SPT Tree\n")
5206{
4f9f3925
DS
5207 PIM_DECLVAR_CONTEXT(vrf, pim);
5208 return pim_cmd_spt_switchover(pim, PIM_SPT_IMMEDIATE, NULL);
df94f9a9 5209}
a7b2b1e2 5210
df94f9a9
DS
5211DEFUN (no_ip_pim_spt_switchover_infinity_plist,
5212 no_ip_pim_spt_switchover_infinity_plist_cmd,
5213 "no ip pim spt-switchover infinity-and-beyond prefix-list WORD",
5214 NO_STR
5215 IP_STR
5216 PIM_STR
5217 "SPT_Switchover\n"
5218 "Never switch to SPT Tree\n"
5219 "Prefix-List to control which groups to switch\n"
5220 "Prefix-List name\n")
5221{
4f9f3925
DS
5222 PIM_DECLVAR_CONTEXT(vrf, pim);
5223 return pim_cmd_spt_switchover(pim, PIM_SPT_IMMEDIATE, NULL);
a7b2b1e2
DS
5224}
5225
ee1a0718
DS
5226DEFUN (ip_pim_joinprune_time,
5227 ip_pim_joinprune_time_cmd,
ebe94743 5228 "ip pim join-prune-interval (60-600)",
ee1a0718
DS
5229 IP_STR
5230 "pim multicast routing\n"
5231 "Join Prune Send Interval\n"
5232 "Seconds\n")
5233{
4f9f3925 5234 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5235 qpim_t_periodic = atoi(argv[3]->arg);
5236 return CMD_SUCCESS;
ee1a0718
DS
5237}
5238
5239DEFUN (no_ip_pim_joinprune_time,
5240 no_ip_pim_joinprune_time_cmd,
ebe94743 5241 "no ip pim join-prune-interval (60-600)",
ee1a0718
DS
5242 NO_STR
5243 IP_STR
5244 "pim multicast routing\n"
5245 "Join Prune Send Interval\n"
5246 "Seconds\n")
5247{
4f9f3925 5248 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5249 qpim_t_periodic = PIM_DEFAULT_T_PERIODIC;
5250 return CMD_SUCCESS;
ee1a0718
DS
5251}
5252
191f5695
DS
5253DEFUN (ip_pim_register_suppress,
5254 ip_pim_register_suppress_cmd,
ebe94743 5255 "ip pim register-suppress-time (5-60000)",
4304f95c
DS
5256 IP_STR
5257 "pim multicast routing\n"
191f5695
DS
5258 "Register Suppress Timer\n"
5259 "Seconds\n")
4304f95c 5260{
4f9f3925 5261 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5262 qpim_register_suppress_time = atoi(argv[3]->arg);
5263 return CMD_SUCCESS;
4304f95c
DS
5264}
5265
191f5695
DS
5266DEFUN (no_ip_pim_register_suppress,
5267 no_ip_pim_register_suppress_cmd,
ebe94743 5268 "no ip pim register-suppress-time (5-60000)",
4304f95c
DS
5269 NO_STR
5270 IP_STR
5271 "pim multicast routing\n"
191f5695 5272 "Register Suppress Timer\n"
01408ede 5273 "Seconds\n")
4304f95c 5274{
4f9f3925 5275 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5276 qpim_register_suppress_time = PIM_REGISTER_SUPPRESSION_TIME_DEFAULT;
5277 return CMD_SUCCESS;
4304f95c
DS
5278}
5279
cc14df13
DS
5280DEFUN (ip_pim_rp_keep_alive,
5281 ip_pim_rp_keep_alive_cmd,
5282 "ip pim rp keep-alive-timer (31-60000)",
5283 IP_STR
5284 "pim multicast routing\n"
5285 "Rendevous Point\n"
5286 "Keep alive Timer\n"
5287 "Seconds\n")
5288{
5289 PIM_DECLVAR_CONTEXT(vrf, pim);
9643e2c7 5290 pim->rp_keep_alive_time = atoi(argv[4]->arg);
cc14df13
DS
5291 return CMD_SUCCESS;
5292}
5293
5294DEFUN (no_ip_pim_rp_keep_alive,
5295 no_ip_pim_rp_keep_alive_cmd,
5296 "no ip pim rp keep-alive-timer (31-60000)",
5297 NO_STR
5298 IP_STR
5299 "pim multicast routing\n"
5300 "Rendevous Point\n"
5301 "Keep alive Timer\n"
5302 "Seconds\n")
5303{
5304 PIM_DECLVAR_CONTEXT(vrf, pim);
5305 pim->rp_keep_alive_time = PIM_KEEPALIVE_PERIOD;
5306 return CMD_SUCCESS;
5307}
5308
191f5695
DS
5309DEFUN (ip_pim_keep_alive,
5310 ip_pim_keep_alive_cmd,
ebe94743 5311 "ip pim keep-alive-timer (31-60000)",
01408ede
DS
5312 IP_STR
5313 "pim multicast routing\n"
01408ede
DS
5314 "Keep alive Timer\n"
5315 "Seconds\n")
5316{
4f9f3925 5317 PIM_DECLVAR_CONTEXT(vrf, pim);
19b807ca 5318 pim->keep_alive_time = atoi(argv[3]->arg);
d62a17ae 5319 return CMD_SUCCESS;
01408ede
DS
5320}
5321
191f5695
DS
5322DEFUN (no_ip_pim_keep_alive,
5323 no_ip_pim_keep_alive_cmd,
ebe94743 5324 "no ip pim keep-alive-timer (31-60000)",
01408ede
DS
5325 NO_STR
5326 IP_STR
5327 "pim multicast routing\n"
01408ede
DS
5328 "Keep alive Timer\n"
5329 "Seconds\n")
5330{
4f9f3925 5331 PIM_DECLVAR_CONTEXT(vrf, pim);
19b807ca 5332 pim->keep_alive_time = PIM_KEEPALIVE_PERIOD;
d62a17ae 5333 return CMD_SUCCESS;
01408ede
DS
5334}
5335
8e4c9ef3
DS
5336DEFUN (ip_pim_packets,
5337 ip_pim_packets_cmd,
ebe94743 5338 "ip pim packets (1-100)",
8e4c9ef3
DS
5339 IP_STR
5340 "pim multicast routing\n"
a957a05b
DS
5341 "packets to process at one time per fd\n"
5342 "Number of packets\n")
8e4c9ef3 5343{
4f9f3925 5344 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5345 qpim_packet_process = atoi(argv[3]->arg);
5346 return CMD_SUCCESS;
8e4c9ef3
DS
5347}
5348
5349DEFUN (no_ip_pim_packets,
5350 no_ip_pim_packets_cmd,
ebe94743 5351 "no ip pim packets (1-100)",
8e4c9ef3
DS
5352 NO_STR
5353 IP_STR
5354 "pim multicast routing\n"
a957a05b
DS
5355 "packets to process at one time per fd\n"
5356 "Number of packets\n")
8e4c9ef3 5357{
4f9f3925 5358 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5359 qpim_packet_process = PIM_DEFAULT_PACKET_PROCESS;
5360 return CMD_SUCCESS;
8e4c9ef3
DS
5361}
5362
71bbe73d
DS
5363DEFUN (ip_pim_v6_secondary,
5364 ip_pim_v6_secondary_cmd,
5365 "ip pim send-v6-secondary",
5366 IP_STR
5367 "pim multicast routing\n"
5368 "Send v6 secondary addresses\n")
5369{
4f9f3925 5370 PIM_DECLVAR_CONTEXT(vrf, pim);
c68ba0d7 5371 pim->send_v6_secondary = 1;
71bbe73d 5372
d62a17ae 5373 return CMD_SUCCESS;
71bbe73d
DS
5374}
5375
5376DEFUN (no_ip_pim_v6_secondary,
5377 no_ip_pim_v6_secondary_cmd,
5378 "no ip pim send-v6-secondary",
5379 NO_STR
5380 IP_STR
5381 "pim multicast routing\n"
5382 "Send v6 secondary addresses\n")
5383{
4f9f3925 5384 PIM_DECLVAR_CONTEXT(vrf, pim);
c68ba0d7 5385 pim->send_v6_secondary = 0;
71bbe73d 5386
d62a17ae 5387 return CMD_SUCCESS;
71bbe73d
DS
5388}
5389
981d6c7a
DS
5390DEFUN (ip_pim_rp,
5391 ip_pim_rp_cmd,
75a26779 5392 "ip pim rp A.B.C.D [A.B.C.D/M]",
981d6c7a 5393 IP_STR
9b34069d
QY
5394 "pim multicast routing\n"
5395 "Rendevous Point\n"
a957a05b
DS
5396 "ip address of RP\n"
5397 "Group Address range to cover\n")
981d6c7a 5398{
ae4a6b57 5399 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5400 int idx_ipv4 = 3;
846ef662 5401
d62a17ae 5402 if (argc == (idx_ipv4 + 1))
64c86530 5403 return pim_rp_cmd_worker(pim, vty, argv[idx_ipv4]->arg, NULL,
9ecb7b77 5404 NULL);
d62a17ae 5405 else
64c86530 5406 return pim_rp_cmd_worker(pim, vty, argv[idx_ipv4]->arg,
d62a17ae 5407 argv[idx_ipv4 + 1]->arg, NULL);
dfe43e25
DW
5408}
5409
5410DEFUN (ip_pim_rp_prefix_list,
5411 ip_pim_rp_prefix_list_cmd,
5412 "ip pim rp A.B.C.D prefix-list WORD",
5413 IP_STR
5414 "pim multicast routing\n"
5415 "Rendevous Point\n"
5416 "ip address of RP\n"
5417 "group prefix-list filter\n"
5418 "Name of a prefix-list\n")
5419{
4f9f3925 5420 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 5421 return pim_rp_cmd_worker(pim, vty, argv[3]->arg, NULL, argv[5]->arg);
36d6bd7d 5422}
981d6c7a 5423
64c86530 5424static int pim_no_rp_cmd_worker(struct pim_instance *pim, struct vty *vty,
4f9f3925
DS
5425 const char *rp, const char *group,
5426 const char *plist)
36d6bd7d 5427{
4f9f3925 5428 int result = pim_rp_del(pim, rp, group, plist);
dfe43e25 5429
d62a17ae 5430 if (result == PIM_GROUP_BAD_ADDRESS) {
5431 vty_out(vty, "%% Bad group address specified: %s\n", group);
5432 return CMD_WARNING_CONFIG_FAILED;
5433 }
75a26779 5434
d62a17ae 5435 if (result == PIM_RP_BAD_ADDRESS) {
5436 vty_out(vty, "%% Bad RP address specified: %s\n", rp);
5437 return CMD_WARNING_CONFIG_FAILED;
5438 }
981d6c7a 5439
d62a17ae 5440 if (result == PIM_RP_NOT_FOUND) {
5441 vty_out(vty, "%% Unable to find specified RP\n");
5442 return CMD_WARNING_CONFIG_FAILED;
5443 }
c8ae3ce8 5444
d62a17ae 5445 return CMD_SUCCESS;
981d6c7a
DS
5446}
5447
5448DEFUN (no_ip_pim_rp,
5449 no_ip_pim_rp_cmd,
75a26779 5450 "no ip pim rp A.B.C.D [A.B.C.D/M]",
981d6c7a
DS
5451 NO_STR
5452 IP_STR
9b34069d
QY
5453 "pim multicast routing\n"
5454 "Rendevous Point\n"
a957a05b
DS
5455 "ip address of RP\n"
5456 "Group Address range to cover\n")
981d6c7a 5457{
4f9f3925 5458 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5459 int idx_ipv4 = 4, idx_group = 0;
72e81cf4 5460
d62a17ae 5461 if (argv_find(argv, argc, "A.B.C.D/M", &idx_group))
64c86530 5462 return pim_no_rp_cmd_worker(pim, vty, argv[idx_ipv4]->arg,
d62a17ae 5463 argv[idx_group]->arg, NULL);
5464 else
64c86530 5465 return pim_no_rp_cmd_worker(pim, vty, argv[idx_ipv4]->arg, NULL,
d62a17ae 5466 NULL);
dfe43e25
DW
5467}
5468
5469DEFUN (no_ip_pim_rp_prefix_list,
5470 no_ip_pim_rp_prefix_list_cmd,
5471 "no ip pim rp A.B.C.D prefix-list WORD",
5472 NO_STR
5473 IP_STR
5474 "pim multicast routing\n"
5475 "Rendevous Point\n"
5476 "ip address of RP\n"
5477 "group prefix-list filter\n"
5478 "Name of a prefix-list\n")
5479{
4f9f3925 5480 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 5481 return pim_no_rp_cmd_worker(pim, vty, argv[4]->arg, NULL, argv[6]->arg);
981d6c7a
DS
5482}
5483
6f439a70
DS
5484static int pim_ssm_cmd_worker(struct pim_instance *pim, struct vty *vty,
5485 const char *plist)
15a5dafe 5486{
6f439a70 5487 int result = pim_ssm_range_set(pim, pim->vrf_id, plist);
15a5dafe 5488
d62a17ae 5489 if (result == PIM_SSM_ERR_NONE)
5490 return CMD_SUCCESS;
15a5dafe 5491
d62a17ae 5492 switch (result) {
5493 case PIM_SSM_ERR_NO_VRF:
5494 vty_out(vty, "%% VRF doesn't exist\n");
5495 break;
5496 case PIM_SSM_ERR_DUP:
5497 vty_out(vty, "%% duplicate config\n");
5498 break;
5499 default:
5500 vty_out(vty, "%% ssm range config failed\n");
5501 }
15a5dafe 5502
d62a17ae 5503 return CMD_WARNING_CONFIG_FAILED;
15a5dafe 5504}
5505
5506DEFUN (ip_pim_ssm_prefix_list,
5507 ip_pim_ssm_prefix_list_cmd,
5508 "ip pim ssm prefix-list WORD",
5509 IP_STR
5510 "pim multicast routing\n"
5511 "Source Specific Multicast\n"
5512 "group range prefix-list filter\n"
5513 "Name of a prefix-list\n")
5514{
4f9f3925 5515 PIM_DECLVAR_CONTEXT(vrf, pim);
9643e2c7 5516 return pim_ssm_cmd_worker(pim, vty, argv[4]->arg);
15a5dafe 5517}
5518
5519DEFUN (no_ip_pim_ssm_prefix_list,
5520 no_ip_pim_ssm_prefix_list_cmd,
5521 "no ip pim ssm prefix-list",
5522 NO_STR
5523 IP_STR
5524 "pim multicast routing\n"
5525 "Source Specific Multicast\n"
5526 "group range prefix-list filter\n")
5527{
4f9f3925
DS
5528 PIM_DECLVAR_CONTEXT(vrf, pim);
5529 return pim_ssm_cmd_worker(pim, vty, NULL);
15a5dafe 5530}
5531
5532DEFUN (no_ip_pim_ssm_prefix_list_name,
5533 no_ip_pim_ssm_prefix_list_name_cmd,
5534 "no ip pim ssm prefix-list WORD",
5535 NO_STR
5536 IP_STR
5537 "pim multicast routing\n"
5538 "Source Specific Multicast\n"
5539 "group range prefix-list filter\n"
5540 "Name of a prefix-list\n")
5541{
4f9f3925
DS
5542 PIM_DECLVAR_CONTEXT(vrf, pim);
5543 struct pim_ssm *ssm = pim->ssm_info;
15a5dafe 5544
9643e2c7 5545 if (ssm->plist_name && !strcmp(ssm->plist_name, argv[5]->arg))
4f9f3925 5546 return pim_ssm_cmd_worker(pim, vty, NULL);
15a5dafe 5547
9643e2c7 5548 vty_out(vty, "%% pim ssm prefix-list %s doesn't exist\n", argv[5]->arg);
15a5dafe 5549
d62a17ae 5550 return CMD_WARNING_CONFIG_FAILED;
15a5dafe 5551}
5552
64c86530 5553static void ip_pim_ssm_show_group_range(struct pim_instance *pim,
d7c0a89a 5554 struct vty *vty, uint8_t uj)
15a5dafe 5555{
c68ba0d7 5556 struct pim_ssm *ssm = pim->ssm_info;
d62a17ae 5557 const char *range_str =
5558 ssm->plist_name ? ssm->plist_name : PIM_SSM_STANDARD_RANGE;
15a5dafe 5559
d62a17ae 5560 if (uj) {
5561 json_object *json;
5562 json = json_object_new_object();
5563 json_object_string_add(json, "ssmGroups", range_str);
9d303b37
DL
5564 vty_out(vty, "%s\n", json_object_to_json_string_ext(
5565 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 5566 json_object_free(json);
5567 } else
5568 vty_out(vty, "SSM group range : %s\n", range_str);
15a5dafe 5569}
5570
5571DEFUN (show_ip_pim_ssm_range,
5572 show_ip_pim_ssm_range_cmd,
20a7e5fd 5573 "show ip pim [vrf NAME] group-type [json]",
15a5dafe 5574 SHOW_STR
5575 IP_STR
5576 PIM_STR
c68ba0d7 5577 VRF_CMD_HELP_STR
15a5dafe 5578 "PIM group type\n"
f5da2cc2 5579 JSON_STR)
15a5dafe 5580{
c68ba0d7
DS
5581 int idx = 2;
5582 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 5583 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
5584
5585 if (!vrf)
5586 return CMD_WARNING;
5587
64c86530 5588 ip_pim_ssm_show_group_range(vrf->info, vty, uj);
15a5dafe 5589
d62a17ae 5590 return CMD_SUCCESS;
15a5dafe 5591}
5592
64c86530 5593static void ip_pim_ssm_show_group_type(struct pim_instance *pim,
d7c0a89a 5594 struct vty *vty, uint8_t uj,
d62a17ae 5595 const char *group)
15a5dafe 5596{
d62a17ae 5597 struct in_addr group_addr;
5598 const char *type_str;
5599 int result;
15a5dafe 5600
d62a17ae 5601 result = inet_pton(AF_INET, group, &group_addr);
5602 if (result <= 0)
5603 type_str = "invalid";
5604 else {
5605 if (pim_is_group_224_4(group_addr))
c68ba0d7
DS
5606 type_str =
5607 pim_is_grp_ssm(pim, group_addr) ? "SSM" : "ASM";
d62a17ae 5608 else
5609 type_str = "not-multicast";
5610 }
15a5dafe 5611
d62a17ae 5612 if (uj) {
5613 json_object *json;
5614 json = json_object_new_object();
5615 json_object_string_add(json, "groupType", type_str);
9d303b37
DL
5616 vty_out(vty, "%s\n", json_object_to_json_string_ext(
5617 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 5618 json_object_free(json);
5619 } else
5620 vty_out(vty, "Group type : %s\n", type_str);
15a5dafe 5621}
5622
5623DEFUN (show_ip_pim_group_type,
5624 show_ip_pim_group_type_cmd,
20a7e5fd 5625 "show ip pim [vrf NAME] group-type A.B.C.D [json]",
15a5dafe 5626 SHOW_STR
5627 IP_STR
5628 PIM_STR
c68ba0d7 5629 VRF_CMD_HELP_STR
15a5dafe 5630 "multicast group type\n"
5631 "group address\n"
f5da2cc2 5632 JSON_STR)
15a5dafe 5633{
c68ba0d7
DS
5634 int idx = 2;
5635 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d7c0a89a 5636 uint8_t uj = use_json(argc, argv);
c68ba0d7
DS
5637
5638 if (!vrf)
5639 return CMD_WARNING;
5640
5641 argv_find(argv, argc, "A.B.C.D", &idx);
64c86530 5642 ip_pim_ssm_show_group_type(vrf->info, vty, uj, argv[idx]->arg);
15a5dafe 5643
d62a17ae 5644 return CMD_SUCCESS;
15a5dafe 5645}
5646
b8d16be2
DS
5647DEFUN_HIDDEN (ip_multicast_routing,
5648 ip_multicast_routing_cmd,
5649 "ip multicast-routing",
5650 IP_STR
5651 "Enable IP multicast forwarding\n")
12e41d03 5652{
d62a17ae 5653 return CMD_SUCCESS;
12e41d03
DL
5654}
5655
b8d16be2
DS
5656DEFUN_HIDDEN (no_ip_multicast_routing,
5657 no_ip_multicast_routing_cmd,
5658 "no ip multicast-routing",
5659 NO_STR
5660 IP_STR
b8d16be2 5661 "Enable IP multicast forwarding\n")
12e41d03 5662{
d62a17ae 5663 vty_out(vty,
5664 "Command is Disabled and will be removed in a future version\n");
5665 return CMD_SUCCESS;
12e41d03
DL
5666}
5667
5668DEFUN (ip_ssmpingd,
5669 ip_ssmpingd_cmd,
5670 "ip ssmpingd [A.B.C.D]",
5671 IP_STR
5672 CONF_SSMPINGD_STR
5673 "Source address\n")
5674{
4f9f3925 5675 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5676 int idx_ipv4 = 2;
5677 int result;
5678 struct in_addr source_addr;
5679 const char *source_str = (argc == 3) ? argv[idx_ipv4]->arg : "0.0.0.0";
12e41d03 5680
d62a17ae 5681 result = inet_pton(AF_INET, source_str, &source_addr);
5682 if (result <= 0) {
5683 vty_out(vty, "%% Bad source address %s: errno=%d: %s\n",
5684 source_str, errno, safe_strerror(errno));
5685 return CMD_WARNING_CONFIG_FAILED;
5686 }
12e41d03 5687
4f9f3925 5688 result = pim_ssmpingd_start(pim, source_addr);
d62a17ae 5689 if (result) {
5690 vty_out(vty, "%% Failure starting ssmpingd for source %s: %d\n",
5691 source_str, result);
5692 return CMD_WARNING_CONFIG_FAILED;
5693 }
12e41d03 5694
d62a17ae 5695 return CMD_SUCCESS;
12e41d03
DL
5696}
5697
5698DEFUN (no_ip_ssmpingd,
5699 no_ip_ssmpingd_cmd,
5700 "no ip ssmpingd [A.B.C.D]",
5701 NO_STR
5702 IP_STR
5703 CONF_SSMPINGD_STR
5704 "Source address\n")
5705{
4f9f3925 5706 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5707 int idx_ipv4 = 3;
5708 int result;
5709 struct in_addr source_addr;
5710 const char *source_str = (argc == 4) ? argv[idx_ipv4]->arg : "0.0.0.0";
12e41d03 5711
d62a17ae 5712 result = inet_pton(AF_INET, source_str, &source_addr);
5713 if (result <= 0) {
5714 vty_out(vty, "%% Bad source address %s: errno=%d: %s\n",
5715 source_str, errno, safe_strerror(errno));
5716 return CMD_WARNING_CONFIG_FAILED;
5717 }
12e41d03 5718
4f9f3925 5719 result = pim_ssmpingd_stop(pim, source_addr);
d62a17ae 5720 if (result) {
5721 vty_out(vty, "%% Failure stopping ssmpingd for source %s: %d\n",
5722 source_str, result);
5723 return CMD_WARNING_CONFIG_FAILED;
5724 }
12e41d03 5725
d62a17ae 5726 return CMD_SUCCESS;
12e41d03
DL
5727}
5728
cba44481
CS
5729DEFUN (ip_pim_ecmp,
5730 ip_pim_ecmp_cmd,
5731 "ip pim ecmp",
5732 IP_STR
5733 "pim multicast routing\n"
5734 "Enable PIM ECMP \n")
5735{
4f9f3925 5736 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5737 qpim_ecmp_enable = 1;
cba44481 5738
d62a17ae 5739 return CMD_SUCCESS;
cba44481
CS
5740}
5741
5742DEFUN (no_ip_pim_ecmp,
5743 no_ip_pim_ecmp_cmd,
5744 "no ip pim ecmp",
5745 NO_STR
5746 IP_STR
5747 "pim multicast routing\n"
5748 "Disable PIM ECMP \n")
5749{
4f9f3925 5750 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5751 qpim_ecmp_enable = 0;
cba44481 5752
d62a17ae 5753 return CMD_SUCCESS;
cba44481
CS
5754}
5755
5756DEFUN (ip_pim_ecmp_rebalance,
5757 ip_pim_ecmp_rebalance_cmd,
5758 "ip pim ecmp rebalance",
5759 IP_STR
5760 "pim multicast routing\n"
5761 "Enable PIM ECMP \n"
5762 "Enable PIM ECMP Rebalance\n")
5763{
4f9f3925 5764 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5765 qpim_ecmp_enable = 1;
5766 qpim_ecmp_rebalance_enable = 1;
cba44481 5767
d62a17ae 5768 return CMD_SUCCESS;
cba44481
CS
5769}
5770
5771DEFUN (no_ip_pim_ecmp_rebalance,
5772 no_ip_pim_ecmp_rebalance_cmd,
5773 "no ip pim ecmp rebalance",
5774 NO_STR
5775 IP_STR
5776 "pim multicast routing\n"
5777 "Disable PIM ECMP \n"
5778 "Disable PIM ECMP Rebalance\n")
5779{
4f9f3925 5780 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 5781 qpim_ecmp_rebalance_enable = 0;
cba44481 5782
d62a17ae 5783 return CMD_SUCCESS;
cba44481
CS
5784}
5785
d62a17ae 5786static int pim_cmd_igmp_start(struct vty *vty, struct interface *ifp)
12e41d03 5787{
d62a17ae 5788 struct pim_interface *pim_ifp;
5789 uint8_t need_startup = 0;
12e41d03 5790
d62a17ae 5791 pim_ifp = ifp->info;
12e41d03 5792
d62a17ae 5793 if (!pim_ifp) {
5794 pim_ifp = pim_if_new(ifp, 1 /* igmp=true */, 0 /* pim=false */);
5795 if (!pim_ifp) {
5796 vty_out(vty, "Could not enable IGMP on interface %s\n",
5797 ifp->name);
5798 return CMD_WARNING_CONFIG_FAILED;
5799 }
5800 need_startup = 1;
5801 } else {
5802 if (!PIM_IF_TEST_IGMP(pim_ifp->options)) {
5803 PIM_IF_DO_IGMP(pim_ifp->options);
5804 need_startup = 1;
5805 }
5806 }
12e41d03 5807
d62a17ae 5808 /* 'ip igmp' executed multiple times, with need_startup
5809 avoid multiple if add all and membership refresh */
5810 if (need_startup) {
5811 pim_if_addr_add_all(ifp);
5812 pim_if_membership_refresh(ifp);
5813 }
12e41d03 5814
d62a17ae 5815 return CMD_SUCCESS;
12e41d03
DL
5816}
5817
21419f59
DS
5818DEFUN (interface_ip_igmp,
5819 interface_ip_igmp_cmd,
5820 "ip igmp",
5821 IP_STR
5822 IFACE_IGMP_STR)
5823{
d62a17ae 5824 VTY_DECLVAR_CONTEXT(interface, ifp);
21419f59 5825
d62a17ae 5826 return pim_cmd_igmp_start(vty, ifp);
21419f59
DS
5827}
5828
12e41d03
DL
5829DEFUN (interface_no_ip_igmp,
5830 interface_no_ip_igmp_cmd,
5831 "no ip igmp",
5832 NO_STR
5833 IP_STR
5834 IFACE_IGMP_STR)
5835{
d62a17ae 5836 VTY_DECLVAR_CONTEXT(interface, ifp);
5837 struct pim_interface *pim_ifp = ifp->info;
12e41d03 5838
d62a17ae 5839 if (!pim_ifp)
5840 return CMD_SUCCESS;
12e41d03 5841
d62a17ae 5842 PIM_IF_DONT_IGMP(pim_ifp->options);
12e41d03 5843
d62a17ae 5844 pim_if_membership_clear(ifp);
12e41d03 5845
d62a17ae 5846 pim_if_addr_del_all_igmp(ifp);
12e41d03 5847
d62a17ae 5848 if (!PIM_IF_TEST_PIM(pim_ifp->options)) {
5849 pim_if_delete(ifp);
5850 }
12e41d03 5851
d62a17ae 5852 return CMD_SUCCESS;
12e41d03
DL
5853}
5854
5855DEFUN (interface_ip_igmp_join,
5856 interface_ip_igmp_join_cmd,
5857 "ip igmp join A.B.C.D A.B.C.D",
5858 IP_STR
5859 IFACE_IGMP_STR
5860 "IGMP join multicast group\n"
5861 "Multicast group address\n"
5862 "Source address\n")
5863{
d62a17ae 5864 VTY_DECLVAR_CONTEXT(interface, ifp);
5865 int idx_ipv4 = 3;
5866 int idx_ipv4_2 = 4;
5867 const char *group_str;
5868 const char *source_str;
5869 struct in_addr group_addr;
5870 struct in_addr source_addr;
5871 int result;
5872
5873 /* Group address */
5874 group_str = argv[idx_ipv4]->arg;
5875 result = inet_pton(AF_INET, group_str, &group_addr);
5876 if (result <= 0) {
5877 vty_out(vty, "Bad group address %s: errno=%d: %s\n", group_str,
5878 errno, safe_strerror(errno));
5879 return CMD_WARNING_CONFIG_FAILED;
5880 }
5881
5882 /* Source address */
5883 source_str = argv[idx_ipv4_2]->arg;
5884 result = inet_pton(AF_INET, source_str, &source_addr);
5885 if (result <= 0) {
5886 vty_out(vty, "Bad source address %s: errno=%d: %s\n",
5887 source_str, errno, safe_strerror(errno));
5888 return CMD_WARNING_CONFIG_FAILED;
5889 }
5890
37664928
DS
5891 CMD_FERR_RETURN(pim_if_igmp_join_add(ifp, group_addr, source_addr),
5892 "Failure joining IGMP group: $ERR");
d62a17ae 5893
5894 return CMD_SUCCESS;
12e41d03
DL
5895}
5896
5897DEFUN (interface_no_ip_igmp_join,
5898 interface_no_ip_igmp_join_cmd,
5899 "no ip igmp join A.B.C.D A.B.C.D",
5900 NO_STR
5901 IP_STR
5902 IFACE_IGMP_STR
5903 "IGMP join multicast group\n"
5904 "Multicast group address\n"
5905 "Source address\n")
5906{
d62a17ae 5907 VTY_DECLVAR_CONTEXT(interface, ifp);
5908 int idx_ipv4 = 4;
5909 int idx_ipv4_2 = 5;
5910 const char *group_str;
5911 const char *source_str;
5912 struct in_addr group_addr;
5913 struct in_addr source_addr;
5914 int result;
5915
5916 /* Group address */
5917 group_str = argv[idx_ipv4]->arg;
5918 result = inet_pton(AF_INET, group_str, &group_addr);
5919 if (result <= 0) {
5920 vty_out(vty, "Bad group address %s: errno=%d: %s\n", group_str,
5921 errno, safe_strerror(errno));
5922 return CMD_WARNING_CONFIG_FAILED;
5923 }
5924
5925 /* Source address */
5926 source_str = argv[idx_ipv4_2]->arg;
5927 result = inet_pton(AF_INET, source_str, &source_addr);
5928 if (result <= 0) {
5929 vty_out(vty, "Bad source address %s: errno=%d: %s\n",
5930 source_str, errno, safe_strerror(errno));
5931 return CMD_WARNING_CONFIG_FAILED;
5932 }
5933
5934 result = pim_if_igmp_join_del(ifp, group_addr, source_addr);
5935 if (result) {
5936 vty_out(vty,
5937 "%% Failure leaving IGMP group %s source %s on interface %s: %d\n",
5938 group_str, source_str, ifp->name, result);
5939 return CMD_WARNING_CONFIG_FAILED;
5940 }
5941
5942 return CMD_SUCCESS;
12e41d03
DL
5943}
5944
5945/*
5946 CLI reconfiguration affects the interface level (struct pim_interface).
5947 This function propagates the reconfiguration to every active socket
5948 for that interface.
5949 */
5950static void igmp_sock_query_interval_reconfig(struct igmp_sock *igmp)
5951{
d62a17ae 5952 struct interface *ifp;
5953 struct pim_interface *pim_ifp;
12e41d03 5954
d62a17ae 5955 zassert(igmp);
12e41d03 5956
d62a17ae 5957 /* other querier present? */
12e41d03 5958
d62a17ae 5959 if (igmp->t_other_querier_timer)
5960 return;
12e41d03 5961
d62a17ae 5962 /* this is the querier */
12e41d03 5963
d62a17ae 5964 zassert(igmp->interface);
5965 zassert(igmp->interface->info);
12e41d03 5966
d62a17ae 5967 ifp = igmp->interface;
5968 pim_ifp = ifp->info;
12e41d03 5969
d62a17ae 5970 if (PIM_DEBUG_IGMP_TRACE) {
5971 char ifaddr_str[INET_ADDRSTRLEN];
5972 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
5973 sizeof(ifaddr_str));
5974 zlog_debug("%s: Querier %s on %s reconfig query_interval=%d",
5975 __PRETTY_FUNCTION__, ifaddr_str, ifp->name,
5976 pim_ifp->igmp_default_query_interval);
5977 }
12e41d03 5978
d62a17ae 5979 /*
5980 igmp_startup_mode_on() will reset QQI:
12e41d03 5981
d62a17ae 5982 igmp->querier_query_interval = pim_ifp->igmp_default_query_interval;
5983 */
5984 igmp_startup_mode_on(igmp);
12e41d03
DL
5985}
5986
5987static void igmp_sock_query_reschedule(struct igmp_sock *igmp)
5988{
d62a17ae 5989 if (igmp->t_igmp_query_timer) {
5990 /* other querier present */
5991 zassert(igmp->t_igmp_query_timer);
5992 zassert(!igmp->t_other_querier_timer);
12e41d03 5993
d62a17ae 5994 pim_igmp_general_query_off(igmp);
5995 pim_igmp_general_query_on(igmp);
12e41d03 5996
d62a17ae 5997 zassert(igmp->t_igmp_query_timer);
5998 zassert(!igmp->t_other_querier_timer);
5999 } else {
6000 /* this is the querier */
12e41d03 6001
d62a17ae 6002 zassert(!igmp->t_igmp_query_timer);
6003 zassert(igmp->t_other_querier_timer);
12e41d03 6004
d62a17ae 6005 pim_igmp_other_querier_timer_off(igmp);
6006 pim_igmp_other_querier_timer_on(igmp);
12e41d03 6007
d62a17ae 6008 zassert(!igmp->t_igmp_query_timer);
6009 zassert(igmp->t_other_querier_timer);
6010 }
12e41d03
DL
6011}
6012
6013static void change_query_interval(struct pim_interface *pim_ifp,
6014 int query_interval)
6015{
d62a17ae 6016 struct listnode *sock_node;
6017 struct igmp_sock *igmp;
12e41d03 6018
d62a17ae 6019 pim_ifp->igmp_default_query_interval = query_interval;
12e41d03 6020
d62a17ae 6021 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node, igmp)) {
6022 igmp_sock_query_interval_reconfig(igmp);
6023 igmp_sock_query_reschedule(igmp);
6024 }
12e41d03
DL
6025}
6026
6027static void change_query_max_response_time(struct pim_interface *pim_ifp,
6028 int query_max_response_time_dsec)
6029{
d62a17ae 6030 struct listnode *sock_node;
6031 struct igmp_sock *igmp;
6032
6033 pim_ifp->igmp_query_max_response_time_dsec =
6034 query_max_response_time_dsec;
6035
6036 /*
6037 Below we modify socket/group/source timers in order to quickly
6038 reflect the change. Otherwise, those timers would eventually catch
6039 up.
6040 */
6041
6042 /* scan all sockets */
6043 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node, igmp)) {
6044 struct listnode *grp_node;
6045 struct igmp_group *grp;
6046
6047 /* reschedule socket general query */
6048 igmp_sock_query_reschedule(igmp);
6049
6050 /* scan socket groups */
6051 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list, grp_node,
6052 grp)) {
6053 struct listnode *src_node;
6054 struct igmp_source *src;
6055
6056 /* reset group timers for groups in EXCLUDE mode */
6057 if (grp->group_filtermode_isexcl) {
6058 igmp_group_reset_gmi(grp);
6059 }
6060
6061 /* scan group sources */
6062 for (ALL_LIST_ELEMENTS_RO(grp->group_source_list,
6063 src_node, src)) {
6064
6065 /* reset source timers for sources with running
6066 * timers */
6067 if (src->t_source_timer) {
6068 igmp_source_reset_gmi(igmp, grp, src);
6069 }
6070 }
6071 }
12e41d03 6072 }
12e41d03
DL
6073}
6074
6075#define IGMP_QUERY_INTERVAL_MIN (1)
6076#define IGMP_QUERY_INTERVAL_MAX (1800)
6077
6078DEFUN (interface_ip_igmp_query_interval,
6079 interface_ip_igmp_query_interval_cmd,
9ccf14f7 6080 "ip igmp query-interval (1-1800)",
12e41d03
DL
6081 IP_STR
6082 IFACE_IGMP_STR
6083 IFACE_IGMP_QUERY_INTERVAL_STR
6084 "Query interval in seconds\n")
6085{
d62a17ae 6086 VTY_DECLVAR_CONTEXT(interface, ifp);
6087 struct pim_interface *pim_ifp = ifp->info;
6088 int query_interval;
6089 int query_interval_dsec;
6090 int ret;
6091
6092 if (!pim_ifp) {
6093 ret = pim_cmd_igmp_start(vty, ifp);
6094 if (ret != CMD_SUCCESS)
6095 return ret;
6096 pim_ifp = ifp->info;
6097 }
6098
6099 query_interval = atoi(argv[3]->arg);
6100 query_interval_dsec = 10 * query_interval;
6101
6102 /*
6103 It seems we don't need to check bounds since command.c does it
6104 already, but we verify them anyway for extra safety.
6105 */
6106 if (query_interval < IGMP_QUERY_INTERVAL_MIN) {
6107 vty_out(vty,
6108 "General query interval %d lower than minimum %d\n",
6109 query_interval, IGMP_QUERY_INTERVAL_MIN);
6110 return CMD_WARNING_CONFIG_FAILED;
6111 }
6112 if (query_interval > IGMP_QUERY_INTERVAL_MAX) {
6113 vty_out(vty,
6114 "General query interval %d higher than maximum %d\n",
6115 query_interval, IGMP_QUERY_INTERVAL_MAX);
6116 return CMD_WARNING_CONFIG_FAILED;
6117 }
6118
6119 if (query_interval_dsec <= pim_ifp->igmp_query_max_response_time_dsec) {
6120 vty_out(vty,
6121 "Can't set general query interval %d dsec <= query max response time %d dsec.\n",
6122 query_interval_dsec,
6123 pim_ifp->igmp_query_max_response_time_dsec);
6124 return CMD_WARNING_CONFIG_FAILED;
6125 }
6126
6127 change_query_interval(pim_ifp, query_interval);
6128
6129 return CMD_SUCCESS;
12e41d03
DL
6130}
6131
6132DEFUN (interface_no_ip_igmp_query_interval,
6133 interface_no_ip_igmp_query_interval_cmd,
9ccf14f7 6134 "no ip igmp query-interval",
12e41d03
DL
6135 NO_STR
6136 IP_STR
6137 IFACE_IGMP_STR
6138 IFACE_IGMP_QUERY_INTERVAL_STR)
6139{
d62a17ae 6140 VTY_DECLVAR_CONTEXT(interface, ifp);
6141 struct pim_interface *pim_ifp = ifp->info;
6142 int default_query_interval_dsec;
12e41d03 6143
d62a17ae 6144 if (!pim_ifp)
6145 return CMD_SUCCESS;
12e41d03 6146
d62a17ae 6147 default_query_interval_dsec = IGMP_GENERAL_QUERY_INTERVAL * 10;
12e41d03 6148
d62a17ae 6149 if (default_query_interval_dsec
6150 <= pim_ifp->igmp_query_max_response_time_dsec) {
6151 vty_out(vty,
6152 "Can't set default general query interval %d dsec <= query max response time %d dsec.\n",
6153 default_query_interval_dsec,
6154 pim_ifp->igmp_query_max_response_time_dsec);
6155 return CMD_WARNING_CONFIG_FAILED;
6156 }
12e41d03 6157
d62a17ae 6158 change_query_interval(pim_ifp, IGMP_GENERAL_QUERY_INTERVAL);
12e41d03 6159
d62a17ae 6160 return CMD_SUCCESS;
12e41d03
DL
6161}
6162
b05b72e8
DW
6163DEFUN (interface_ip_igmp_version,
6164 interface_ip_igmp_version_cmd,
72e81cf4 6165 "ip igmp version (2-3)",
b05b72e8
DW
6166 IP_STR
6167 IFACE_IGMP_STR
6168 "IGMP version\n"
6169 "IGMP version number\n")
6170{
d62a17ae 6171 VTY_DECLVAR_CONTEXT(interface, ifp);
6172 struct pim_interface *pim_ifp = ifp->info;
6173 int igmp_version, old_version = 0;
6174 int ret;
6175
6176 if (!pim_ifp) {
6177 ret = pim_cmd_igmp_start(vty, ifp);
6178 if (ret != CMD_SUCCESS)
6179 return ret;
6180 pim_ifp = ifp->info;
6181 }
6182
6183 igmp_version = atoi(argv[3]->arg);
6184 old_version = pim_ifp->igmp_version;
6185 pim_ifp->igmp_version = igmp_version;
6186
6187 // Check if IGMP is Enabled otherwise, enable on interface
6188 if (!PIM_IF_TEST_IGMP(pim_ifp->options)) {
6189 PIM_IF_DO_IGMP(pim_ifp->options);
6190 pim_if_addr_add_all(ifp);
6191 pim_if_membership_refresh(ifp);
3a6351a3
LB
6192 old_version = igmp_version;
6193 // avoid refreshing membership again.
d62a17ae 6194 }
6195 /* Current and new version is different refresh existing
6196 membership. Going from 3 -> 2 or 2 -> 3. */
6197 if (old_version != igmp_version)
6198 pim_if_membership_refresh(ifp);
6199
6200 return CMD_SUCCESS;
b05b72e8
DW
6201}
6202
6203DEFUN (interface_no_ip_igmp_version,
6204 interface_no_ip_igmp_version_cmd,
72e81cf4 6205 "no ip igmp version (2-3)",
b05b72e8
DW
6206 NO_STR
6207 IP_STR
6208 IFACE_IGMP_STR
6209 "IGMP version\n"
6210 "IGMP version number\n")
6211{
d62a17ae 6212 VTY_DECLVAR_CONTEXT(interface, ifp);
6213 struct pim_interface *pim_ifp = ifp->info;
b05b72e8 6214
d62a17ae 6215 if (!pim_ifp)
6216 return CMD_SUCCESS;
b05b72e8 6217
d62a17ae 6218 pim_ifp->igmp_version = IGMP_DEFAULT_VERSION;
b05b72e8 6219
d62a17ae 6220 return CMD_SUCCESS;
b05b72e8
DW
6221}
6222
58344b65
DS
6223#define IGMP_QUERY_MAX_RESPONSE_TIME_MIN_DSEC (10)
6224#define IGMP_QUERY_MAX_RESPONSE_TIME_MAX_DSEC (250)
12e41d03
DL
6225
6226DEFUN (interface_ip_igmp_query_max_response_time,
6227 interface_ip_igmp_query_max_response_time_cmd,
58344b65 6228 "ip igmp query-max-response-time (10-250)",
12e41d03
DL
6229 IP_STR
6230 IFACE_IGMP_STR
6231 IFACE_IGMP_QUERY_MAX_RESPONSE_TIME_STR
58344b65 6232 "Query response value in deci-seconds\n")
12e41d03 6233{
d62a17ae 6234 VTY_DECLVAR_CONTEXT(interface, ifp);
6235 struct pim_interface *pim_ifp = ifp->info;
6236 int query_max_response_time;
6237 int ret;
12e41d03 6238
d62a17ae 6239 if (!pim_ifp) {
6240 ret = pim_cmd_igmp_start(vty, ifp);
6241 if (ret != CMD_SUCCESS)
6242 return ret;
6243 pim_ifp = ifp->info;
6244 }
12e41d03 6245
d62a17ae 6246 query_max_response_time = atoi(argv[3]->arg);
12e41d03 6247
d62a17ae 6248 if (query_max_response_time
6249 >= pim_ifp->igmp_default_query_interval * 10) {
6250 vty_out(vty,
6251 "Can't set query max response time %d sec >= general query interval %d sec\n",
6252 query_max_response_time,
6253 pim_ifp->igmp_default_query_interval);
6254 return CMD_WARNING_CONFIG_FAILED;
6255 }
12e41d03 6256
d62a17ae 6257 change_query_max_response_time(pim_ifp, query_max_response_time);
12e41d03 6258
d62a17ae 6259 return CMD_SUCCESS;
12e41d03
DL
6260}
6261
6262DEFUN (interface_no_ip_igmp_query_max_response_time,
6263 interface_no_ip_igmp_query_max_response_time_cmd,
72e81cf4 6264 "no ip igmp query-max-response-time (10-250)",
12e41d03
DL
6265 NO_STR
6266 IP_STR
6267 IFACE_IGMP_STR
a957a05b
DS
6268 IFACE_IGMP_QUERY_MAX_RESPONSE_TIME_STR
6269 "Time for response in deci-seconds\n")
12e41d03 6270{
d62a17ae 6271 VTY_DECLVAR_CONTEXT(interface, ifp);
6272 struct pim_interface *pim_ifp = ifp->info;
12e41d03 6273
d62a17ae 6274 if (!pim_ifp)
6275 return CMD_SUCCESS;
12e41d03 6276
d62a17ae 6277 change_query_max_response_time(pim_ifp,
6278 IGMP_QUERY_MAX_RESPONSE_TIME_DSEC);
12e41d03 6279
d62a17ae 6280 return CMD_SUCCESS;
12e41d03
DL
6281}
6282
6283#define IGMP_QUERY_MAX_RESPONSE_TIME_MIN_DSEC (10)
6284#define IGMP_QUERY_MAX_RESPONSE_TIME_MAX_DSEC (250)
6285
58344b65
DS
6286DEFUN_HIDDEN (interface_ip_igmp_query_max_response_time_dsec,
6287 interface_ip_igmp_query_max_response_time_dsec_cmd,
6288 "ip igmp query-max-response-time-dsec (10-250)",
6289 IP_STR
6290 IFACE_IGMP_STR
6291 IFACE_IGMP_QUERY_MAX_RESPONSE_TIME_DSEC_STR
6292 "Query response value in deciseconds\n")
12e41d03 6293{
d62a17ae 6294 VTY_DECLVAR_CONTEXT(interface, ifp);
6295 struct pim_interface *pim_ifp = ifp->info;
6296 int query_max_response_time_dsec;
6297 int default_query_interval_dsec;
6298 int ret;
6299
6300 if (!pim_ifp) {
6301 ret = pim_cmd_igmp_start(vty, ifp);
6302 if (ret != CMD_SUCCESS)
6303 return ret;
6304 pim_ifp = ifp->info;
6305 }
12e41d03 6306
d62a17ae 6307 query_max_response_time_dsec = atoi(argv[4]->arg);
12e41d03 6308
d62a17ae 6309 default_query_interval_dsec = 10 * pim_ifp->igmp_default_query_interval;
12e41d03 6310
d62a17ae 6311 if (query_max_response_time_dsec >= default_query_interval_dsec) {
6312 vty_out(vty,
6313 "Can't set query max response time %d dsec >= general query interval %d dsec\n",
6314 query_max_response_time_dsec,
6315 default_query_interval_dsec);
6316 return CMD_WARNING_CONFIG_FAILED;
6317 }
12e41d03 6318
d62a17ae 6319 change_query_max_response_time(pim_ifp, query_max_response_time_dsec);
12e41d03 6320
d62a17ae 6321 return CMD_SUCCESS;
12e41d03
DL
6322}
6323
58344b65
DS
6324DEFUN_HIDDEN (interface_no_ip_igmp_query_max_response_time_dsec,
6325 interface_no_ip_igmp_query_max_response_time_dsec_cmd,
6326 "no ip igmp query-max-response-time-dsec",
6327 NO_STR
6328 IP_STR
6329 IFACE_IGMP_STR
6330 IFACE_IGMP_QUERY_MAX_RESPONSE_TIME_DSEC_STR)
12e41d03 6331{
d62a17ae 6332 VTY_DECLVAR_CONTEXT(interface, ifp);
6333 struct pim_interface *pim_ifp = ifp->info;
12e41d03 6334
d62a17ae 6335 if (!pim_ifp)
6336 return CMD_SUCCESS;
12e41d03 6337
d62a17ae 6338 change_query_max_response_time(pim_ifp,
6339 IGMP_QUERY_MAX_RESPONSE_TIME_DSEC);
12e41d03 6340
d62a17ae 6341 return CMD_SUCCESS;
12e41d03
DL
6342}
6343
dedccda6
DS
6344DEFUN (interface_ip_pim_drprio,
6345 interface_ip_pim_drprio_cmd,
b181fa04 6346 "ip pim drpriority (1-4294967295)",
dedccda6
DS
6347 IP_STR
6348 PIM_STR
6349 "Set the Designated Router Election Priority\n"
6350 "Value of the new DR Priority\n")
6351{
d62a17ae 6352 VTY_DECLVAR_CONTEXT(interface, ifp);
6353 int idx_number = 3;
6354 struct pim_interface *pim_ifp = ifp->info;
6355 uint32_t old_dr_prio;
dedccda6 6356
d62a17ae 6357 if (!pim_ifp) {
6358 vty_out(vty, "Please enable PIM on interface, first\n");
6359 return CMD_WARNING_CONFIG_FAILED;
6360 }
dedccda6 6361
d62a17ae 6362 old_dr_prio = pim_ifp->pim_dr_priority;
dedccda6 6363
d62a17ae 6364 pim_ifp->pim_dr_priority = strtol(argv[idx_number]->arg, NULL, 10);
dedccda6 6365
d62a17ae 6366 if (old_dr_prio != pim_ifp->pim_dr_priority) {
6367 if (pim_if_dr_election(ifp))
6368 pim_hello_restart_now(ifp);
6369 }
dedccda6 6370
d62a17ae 6371 return CMD_SUCCESS;
dedccda6
DS
6372}
6373
6374DEFUN (interface_no_ip_pim_drprio,
6375 interface_no_ip_pim_drprio_cmd,
b181fa04 6376 "no ip pim drpriority [(1-4294967295)]",
d7fa34c1 6377 NO_STR
dedccda6
DS
6378 IP_STR
6379 PIM_STR
6380 "Revert the Designated Router Priority to default\n"
6381 "Old Value of the Priority\n")
6382{
d62a17ae 6383 VTY_DECLVAR_CONTEXT(interface, ifp);
6384 struct pim_interface *pim_ifp = ifp->info;
dedccda6 6385
d62a17ae 6386 if (!pim_ifp) {
6387 vty_out(vty, "Pim not enabled on this interface\n");
6388 return CMD_WARNING_CONFIG_FAILED;
6389 }
dedccda6 6390
d62a17ae 6391 if (pim_ifp->pim_dr_priority != PIM_DEFAULT_DR_PRIORITY) {
6392 pim_ifp->pim_dr_priority = PIM_DEFAULT_DR_PRIORITY;
6393 if (pim_if_dr_election(ifp))
6394 pim_hello_restart_now(ifp);
6395 }
dedccda6 6396
d62a17ae 6397 return CMD_SUCCESS;
dedccda6
DS
6398}
6399
d62a17ae 6400static int pim_cmd_interface_add(struct interface *ifp)
12e41d03 6401{
d62a17ae 6402 struct pim_interface *pim_ifp = ifp->info;
12e41d03 6403
d62a17ae 6404 if (!pim_ifp) {
6405 pim_ifp = pim_if_new(ifp, 0 /* igmp=false */, 1 /* pim=true */);
6406 if (!pim_ifp) {
6407 return 0;
6408 }
6409 } else {
6410 PIM_IF_DO_PIM(pim_ifp->options);
6411 }
12e41d03 6412
d62a17ae 6413 pim_if_addr_add_all(ifp);
6414 pim_if_membership_refresh(ifp);
6415 return 1;
981d6c7a
DS
6416}
6417
d2772e7b 6418DEFUN_HIDDEN (interface_ip_pim_ssm,
981d6c7a
DS
6419 interface_ip_pim_ssm_cmd,
6420 "ip pim ssm",
6421 IP_STR
6422 PIM_STR
6423 IFACE_PIM_STR)
6424{
d62a17ae 6425 VTY_DECLVAR_CONTEXT(interface, ifp);
981d6c7a 6426
d62a17ae 6427 if (!pim_cmd_interface_add(ifp)) {
6428 vty_out(vty, "Could not enable PIM SM on interface\n");
6429 return CMD_WARNING_CONFIG_FAILED;
6430 }
981d6c7a 6431
d62a17ae 6432 vty_out(vty,
6433 "WARN: Enabled PIM SM on interface; configure PIM SSM "
6434 "range if needed\n");
6435 return CMD_SUCCESS;
12e41d03
DL
6436}
6437
981d6c7a
DS
6438DEFUN (interface_ip_pim_sm,
6439 interface_ip_pim_sm_cmd,
6440 "ip pim sm",
12e41d03
DL
6441 IP_STR
6442 PIM_STR
8371bd60 6443 IFACE_PIM_SM_STR)
12e41d03 6444{
43e40fdf
DS
6445 struct pim_interface *pim_ifp;
6446
d62a17ae 6447 VTY_DECLVAR_CONTEXT(interface, ifp);
6448 if (!pim_cmd_interface_add(ifp)) {
6449 vty_out(vty, "Could not enable PIM SM on interface\n");
6450 return CMD_WARNING_CONFIG_FAILED;
6451 }
981d6c7a 6452
43e40fdf 6453 pim_ifp = ifp->info;
ecca97ac 6454
43e40fdf 6455 pim_if_create_pimreg(pim_ifp->pim);
c992c9a0 6456
d62a17ae 6457 return CMD_SUCCESS;
981d6c7a
DS
6458}
6459
d62a17ae 6460static int pim_cmd_interface_delete(struct interface *ifp)
981d6c7a 6461{
d62a17ae 6462 struct pim_interface *pim_ifp = ifp->info;
981d6c7a 6463
d62a17ae 6464 if (!pim_ifp)
6465 return 1;
12e41d03 6466
d62a17ae 6467 PIM_IF_DONT_PIM(pim_ifp->options);
12e41d03 6468
d62a17ae 6469 pim_if_membership_clear(ifp);
12e41d03 6470
d62a17ae 6471 /*
6472 pim_sock_delete() removes all neighbors from
6473 pim_ifp->pim_neighbor_list.
6474 */
6475 pim_sock_delete(ifp, "pim unconfigured on interface");
12e41d03 6476
d62a17ae 6477 if (!PIM_IF_TEST_IGMP(pim_ifp->options)) {
6478 pim_if_addr_del_all(ifp);
6479 pim_if_delete(ifp);
6480 }
12e41d03 6481
d62a17ae 6482 return 1;
981d6c7a
DS
6483}
6484
d2772e7b 6485DEFUN_HIDDEN (interface_no_ip_pim_ssm,
981d6c7a
DS
6486 interface_no_ip_pim_ssm_cmd,
6487 "no ip pim ssm",
6488 NO_STR
6489 IP_STR
6490 PIM_STR
6491 IFACE_PIM_STR)
6492{
d62a17ae 6493 VTY_DECLVAR_CONTEXT(interface, ifp);
6494 if (!pim_cmd_interface_delete(ifp)) {
6495 vty_out(vty, "Unable to delete interface information\n");
6496 return CMD_WARNING_CONFIG_FAILED;
6497 }
981d6c7a 6498
d62a17ae 6499 return CMD_SUCCESS;
981d6c7a
DS
6500}
6501
6502DEFUN (interface_no_ip_pim_sm,
6503 interface_no_ip_pim_sm_cmd,
6504 "no ip pim sm",
6505 NO_STR
6506 IP_STR
6507 PIM_STR
8371bd60 6508 IFACE_PIM_SM_STR)
981d6c7a 6509{
d62a17ae 6510 VTY_DECLVAR_CONTEXT(interface, ifp);
6511 if (!pim_cmd_interface_delete(ifp)) {
6512 vty_out(vty, "Unable to delete interface information\n");
6513 return CMD_WARNING_CONFIG_FAILED;
6514 }
981d6c7a 6515
d62a17ae 6516 return CMD_SUCCESS;
12e41d03
DL
6517}
6518
b0f525a8
QY
6519/* boundaries */
6520DEFUN(interface_ip_pim_boundary_oil,
6521 interface_ip_pim_boundary_oil_cmd,
6522 "ip multicast boundary oil WORD",
6523 IP_STR
6524 "Generic multicast configuration options\n"
6525 "Define multicast boundary\n"
6526 "Filter OIL by group using prefix list\n"
513c8462 6527 "Prefix list to filter OIL with\n")
b0f525a8
QY
6528{
6529 VTY_DECLVAR_CONTEXT(interface, iif);
6530 struct pim_interface *pim_ifp;
6531 int idx = 0;
6532
6533 argv_find(argv, argc, "WORD", &idx);
6534
6535 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
6536
6537 if (pim_ifp->boundary_oil_plist)
6538 XFREE(MTYPE_PIM_INTERFACE, pim_ifp->boundary_oil_plist);
6539
6540 pim_ifp->boundary_oil_plist =
6541 XSTRDUP(MTYPE_PIM_INTERFACE, argv[idx]->arg);
6542
6543 /* Interface will be pruned from OIL on next Join */
6544 return CMD_SUCCESS;
6545}
6546
6547DEFUN(interface_no_ip_pim_boundary_oil,
6548 interface_no_ip_pim_boundary_oil_cmd,
6549 "no ip multicast boundary oil [WORD]",
6550 NO_STR
6551 IP_STR
6552 "Generic multicast configuration options\n"
6553 "Define multicast boundary\n"
6554 "Filter OIL by group using prefix list\n"
513c8462 6555 "Prefix list to filter OIL with\n")
b0f525a8
QY
6556{
6557 VTY_DECLVAR_CONTEXT(interface, iif);
6558 struct pim_interface *pim_ifp;
be1d57fc 6559 int idx = 0;
b0f525a8
QY
6560
6561 argv_find(argv, argc, "WORD", &idx);
6562
6563 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
6564
6565 if (pim_ifp->boundary_oil_plist)
6566 XFREE(MTYPE_PIM_INTERFACE, pim_ifp->boundary_oil_plist);
6567
6568 return CMD_SUCCESS;
6569}
6570
6250610a
JAG
6571DEFUN (interface_ip_mroute,
6572 interface_ip_mroute_cmd,
6573 "ip mroute INTERFACE A.B.C.D",
6574 IP_STR
6575 "Add multicast route\n"
6576 "Outgoing interface name\n"
6577 "Group address\n")
6578{
d62a17ae 6579 VTY_DECLVAR_CONTEXT(interface, iif);
4e0bc0f0
DS
6580 struct pim_interface *pim_ifp;
6581 struct pim_instance *pim;
d62a17ae 6582 int idx_interface = 2;
6583 int idx_ipv4 = 3;
6584 struct interface *oif;
6585 const char *oifname;
6586 const char *grp_str;
6587 struct in_addr grp_addr;
6588 struct in_addr src_addr;
6589 int result;
6590
21b3e44e 6591 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
4e0bc0f0
DS
6592 pim = pim_ifp->pim;
6593
d62a17ae 6594 oifname = argv[idx_interface]->arg;
4e0bc0f0 6595 oif = if_lookup_by_name(oifname, pim->vrf_id);
d62a17ae 6596 if (!oif) {
6597 vty_out(vty, "No such interface name %s\n", oifname);
4e0bc0f0 6598 return CMD_WARNING;
d62a17ae 6599 }
6600
6601 grp_str = argv[idx_ipv4]->arg;
6602 result = inet_pton(AF_INET, grp_str, &grp_addr);
6603 if (result <= 0) {
6604 vty_out(vty, "Bad group address %s: errno=%d: %s\n", grp_str,
6605 errno, safe_strerror(errno));
4e0bc0f0 6606 return CMD_WARNING;
d62a17ae 6607 }
6608
6609 src_addr.s_addr = INADDR_ANY;
6610
4e0bc0f0 6611 if (pim_static_add(pim, iif, oif, grp_addr, src_addr)) {
d62a17ae 6612 vty_out(vty, "Failed to add route\n");
4e0bc0f0 6613 return CMD_WARNING;
d62a17ae 6614 }
6615
6616 return CMD_SUCCESS;
6250610a
JAG
6617}
6618
6619DEFUN (interface_ip_mroute_source,
6620 interface_ip_mroute_source_cmd,
6621 "ip mroute INTERFACE A.B.C.D A.B.C.D",
6622 IP_STR
6623 "Add multicast route\n"
6624 "Outgoing interface name\n"
6625 "Group address\n"
6626 "Source address\n")
6627{
d62a17ae 6628 VTY_DECLVAR_CONTEXT(interface, iif);
4e0bc0f0
DS
6629 struct pim_interface *pim_ifp;
6630 struct pim_instance *pim;
d62a17ae 6631 int idx_interface = 2;
6632 int idx_ipv4 = 3;
6633 int idx_ipv4_2 = 4;
6634 struct interface *oif;
6635 const char *oifname;
6636 const char *grp_str;
6637 struct in_addr grp_addr;
6638 const char *src_str;
6639 struct in_addr src_addr;
6640 int result;
6641
21b3e44e 6642 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
4e0bc0f0
DS
6643 pim = pim_ifp->pim;
6644
d62a17ae 6645 oifname = argv[idx_interface]->arg;
4e0bc0f0 6646 oif = if_lookup_by_name(oifname, pim->vrf_id);
d62a17ae 6647 if (!oif) {
6648 vty_out(vty, "No such interface name %s\n", oifname);
4e0bc0f0 6649 return CMD_WARNING;
d62a17ae 6650 }
6651
6652 grp_str = argv[idx_ipv4]->arg;
6653 result = inet_pton(AF_INET, grp_str, &grp_addr);
6654 if (result <= 0) {
6655 vty_out(vty, "Bad group address %s: errno=%d: %s\n", grp_str,
6656 errno, safe_strerror(errno));
4e0bc0f0 6657 return CMD_WARNING;
d62a17ae 6658 }
6659
6660 src_str = argv[idx_ipv4_2]->arg;
6661 result = inet_pton(AF_INET, src_str, &src_addr);
6662 if (result <= 0) {
6663 vty_out(vty, "Bad source address %s: errno=%d: %s\n", src_str,
6664 errno, safe_strerror(errno));
4e0bc0f0 6665 return CMD_WARNING;
d62a17ae 6666 }
6667
4e0bc0f0 6668 if (pim_static_add(pim, iif, oif, grp_addr, src_addr)) {
d62a17ae 6669 vty_out(vty, "Failed to add route\n");
4e0bc0f0 6670 return CMD_WARNING;
d62a17ae 6671 }
6672
6673 return CMD_SUCCESS;
6250610a
JAG
6674}
6675
6676DEFUN (interface_no_ip_mroute,
6677 interface_no_ip_mroute_cmd,
6678 "no ip mroute INTERFACE A.B.C.D",
6679 NO_STR
6680 IP_STR
6681 "Add multicast route\n"
6682 "Outgoing interface name\n"
6683 "Group Address\n")
6684{
d62a17ae 6685 VTY_DECLVAR_CONTEXT(interface, iif);
4e0bc0f0
DS
6686 struct pim_interface *pim_ifp;
6687 struct pim_instance *pim;
d62a17ae 6688 int idx_interface = 3;
6689 int idx_ipv4 = 4;
6690 struct interface *oif;
6691 const char *oifname;
6692 const char *grp_str;
6693 struct in_addr grp_addr;
6694 struct in_addr src_addr;
6695 int result;
6696
21b3e44e 6697 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
4e0bc0f0
DS
6698 pim = pim_ifp->pim;
6699
d62a17ae 6700 oifname = argv[idx_interface]->arg;
4e0bc0f0 6701 oif = if_lookup_by_name(oifname, pim->vrf_id);
d62a17ae 6702 if (!oif) {
6703 vty_out(vty, "No such interface name %s\n", oifname);
4e0bc0f0 6704 return CMD_WARNING;
d62a17ae 6705 }
6706
6707 grp_str = argv[idx_ipv4]->arg;
6708 result = inet_pton(AF_INET, grp_str, &grp_addr);
6709 if (result <= 0) {
6710 vty_out(vty, "Bad group address %s: errno=%d: %s\n", grp_str,
6711 errno, safe_strerror(errno));
4e0bc0f0 6712 return CMD_WARNING;
d62a17ae 6713 }
6714
6715 src_addr.s_addr = INADDR_ANY;
6716
4e0bc0f0 6717 if (pim_static_del(pim, iif, oif, grp_addr, src_addr)) {
d62a17ae 6718 vty_out(vty, "Failed to remove route\n");
4e0bc0f0 6719 return CMD_WARNING;
d62a17ae 6720 }
6721
6722 return CMD_SUCCESS;
6250610a
JAG
6723}
6724
6725DEFUN (interface_no_ip_mroute_source,
6726 interface_no_ip_mroute_source_cmd,
6727 "no ip mroute INTERFACE A.B.C.D A.B.C.D",
6728 NO_STR
6729 IP_STR
6730 "Add multicast route\n"
6731 "Outgoing interface name\n"
6732 "Group Address\n"
6733 "Source Address\n")
6734{
d62a17ae 6735 VTY_DECLVAR_CONTEXT(interface, iif);
4e0bc0f0
DS
6736 struct pim_interface *pim_ifp;
6737 struct pim_instance *pim;
d62a17ae 6738 int idx_interface = 3;
6739 int idx_ipv4 = 4;
6740 int idx_ipv4_2 = 5;
6741 struct interface *oif;
6742 const char *oifname;
6743 const char *grp_str;
6744 struct in_addr grp_addr;
6745 const char *src_str;
6746 struct in_addr src_addr;
6747 int result;
6748
21b3e44e 6749 PIM_GET_PIM_INTERFACE(pim_ifp, iif);
4e0bc0f0
DS
6750 pim = pim_ifp->pim;
6751
d62a17ae 6752 oifname = argv[idx_interface]->arg;
4e0bc0f0 6753 oif = if_lookup_by_name(oifname, pim->vrf_id);
d62a17ae 6754 if (!oif) {
6755 vty_out(vty, "No such interface name %s\n", oifname);
4e0bc0f0 6756 return CMD_WARNING;
d62a17ae 6757 }
6758
6759 grp_str = argv[idx_ipv4]->arg;
6760 result = inet_pton(AF_INET, grp_str, &grp_addr);
6761 if (result <= 0) {
6762 vty_out(vty, "Bad group address %s: errno=%d: %s\n", grp_str,
6763 errno, safe_strerror(errno));
4e0bc0f0 6764 return CMD_WARNING;
d62a17ae 6765 }
6766
6767 src_str = argv[idx_ipv4_2]->arg;
6768 result = inet_pton(AF_INET, src_str, &src_addr);
6769 if (result <= 0) {
6770 vty_out(vty, "Bad source address %s: errno=%d: %s\n", src_str,
6771 errno, safe_strerror(errno));
4e0bc0f0 6772 return CMD_WARNING;
d62a17ae 6773 }
6774
4e0bc0f0 6775 if (pim_static_del(pim, iif, oif, grp_addr, src_addr)) {
d62a17ae 6776 vty_out(vty, "Failed to remove route\n");
4e0bc0f0 6777 return CMD_WARNING;
d62a17ae 6778 }
6779
6780 return CMD_SUCCESS;
6250610a
JAG
6781}
6782
7960fa8f
DS
6783DEFUN (interface_ip_pim_hello,
6784 interface_ip_pim_hello_cmd,
80d3d26b 6785 "ip pim hello (1-180) [(1-180)]",
7960fa8f
DS
6786 IP_STR
6787 PIM_STR
6788 IFACE_PIM_HELLO_STR
80d3d26b
DW
6789 IFACE_PIM_HELLO_TIME_STR
6790 IFACE_PIM_HELLO_HOLD_STR)
7960fa8f 6791{
d62a17ae 6792 VTY_DECLVAR_CONTEXT(interface, ifp);
6793 int idx_time = 3;
6794 int idx_hold = 4;
6795 struct pim_interface *pim_ifp = ifp->info;
7960fa8f 6796
d62a17ae 6797 if (!pim_ifp) {
6798 if (!pim_cmd_interface_add(ifp)) {
6799 vty_out(vty, "Could not enable PIM SM on interface\n");
6800 return CMD_WARNING_CONFIG_FAILED;
6801 }
6802 }
7960fa8f 6803
d62a17ae 6804 pim_ifp = ifp->info;
6805 pim_ifp->pim_hello_period = strtol(argv[idx_time]->arg, NULL, 10);
7960fa8f 6806
d62a17ae 6807 if (argc == idx_hold + 1)
6808 pim_ifp->pim_default_holdtime =
6809 strtol(argv[idx_hold]->arg, NULL, 10);
7960fa8f 6810
d62a17ae 6811 return CMD_SUCCESS;
7960fa8f
DS
6812}
6813
7960fa8f
DS
6814DEFUN (interface_no_ip_pim_hello,
6815 interface_no_ip_pim_hello_cmd,
b181fa04 6816 "no ip pim hello [(1-180) (1-180)]",
7960fa8f
DS
6817 NO_STR
6818 IP_STR
6819 PIM_STR
6820 IFACE_PIM_HELLO_STR
6821 IFACE_PIM_HELLO_TIME_STR
6822 IFACE_PIM_HELLO_HOLD_STR)
6823{
d62a17ae 6824 VTY_DECLVAR_CONTEXT(interface, ifp);
6825 struct pim_interface *pim_ifp = ifp->info;
7960fa8f 6826
d62a17ae 6827 if (!pim_ifp) {
6828 vty_out(vty, "Pim not enabled on this interface\n");
6829 return CMD_WARNING_CONFIG_FAILED;
6830 }
7960fa8f 6831
d62a17ae 6832 pim_ifp->pim_hello_period = PIM_DEFAULT_HELLO_PERIOD;
6833 pim_ifp->pim_default_holdtime = -1;
7960fa8f 6834
d62a17ae 6835 return CMD_SUCCESS;
7960fa8f
DS
6836}
6837
12e41d03
DL
6838DEFUN (debug_igmp,
6839 debug_igmp_cmd,
6840 "debug igmp",
6841 DEBUG_STR
6842 DEBUG_IGMP_STR)
6843{
d62a17ae 6844 PIM_DO_DEBUG_IGMP_EVENTS;
6845 PIM_DO_DEBUG_IGMP_PACKETS;
6846 PIM_DO_DEBUG_IGMP_TRACE;
6847 return CMD_SUCCESS;
12e41d03
DL
6848}
6849
6850DEFUN (no_debug_igmp,
6851 no_debug_igmp_cmd,
6852 "no debug igmp",
6853 NO_STR
6854 DEBUG_STR
6855 DEBUG_IGMP_STR)
6856{
d62a17ae 6857 PIM_DONT_DEBUG_IGMP_EVENTS;
6858 PIM_DONT_DEBUG_IGMP_PACKETS;
6859 PIM_DONT_DEBUG_IGMP_TRACE;
6860 return CMD_SUCCESS;
12e41d03
DL
6861}
6862
12e41d03
DL
6863
6864DEFUN (debug_igmp_events,
6865 debug_igmp_events_cmd,
6866 "debug igmp events",
6867 DEBUG_STR
6868 DEBUG_IGMP_STR
6869 DEBUG_IGMP_EVENTS_STR)
6870{
d62a17ae 6871 PIM_DO_DEBUG_IGMP_EVENTS;
6872 return CMD_SUCCESS;
12e41d03
DL
6873}
6874
6875DEFUN (no_debug_igmp_events,
6876 no_debug_igmp_events_cmd,
6877 "no debug igmp events",
6878 NO_STR
6879 DEBUG_STR
6880 DEBUG_IGMP_STR
6881 DEBUG_IGMP_EVENTS_STR)
6882{
d62a17ae 6883 PIM_DONT_DEBUG_IGMP_EVENTS;
6884 return CMD_SUCCESS;
12e41d03
DL
6885}
6886
12e41d03
DL
6887
6888DEFUN (debug_igmp_packets,
6889 debug_igmp_packets_cmd,
6890 "debug igmp packets",
6891 DEBUG_STR
6892 DEBUG_IGMP_STR
6893 DEBUG_IGMP_PACKETS_STR)
6894{
d62a17ae 6895 PIM_DO_DEBUG_IGMP_PACKETS;
6896 return CMD_SUCCESS;
12e41d03
DL
6897}
6898
6899DEFUN (no_debug_igmp_packets,
6900 no_debug_igmp_packets_cmd,
6901 "no debug igmp packets",
6902 NO_STR
6903 DEBUG_STR
6904 DEBUG_IGMP_STR
6905 DEBUG_IGMP_PACKETS_STR)
6906{
d62a17ae 6907 PIM_DONT_DEBUG_IGMP_PACKETS;
6908 return CMD_SUCCESS;
12e41d03
DL
6909}
6910
12e41d03
DL
6911
6912DEFUN (debug_igmp_trace,
6913 debug_igmp_trace_cmd,
6914 "debug igmp trace",
6915 DEBUG_STR
6916 DEBUG_IGMP_STR
6917 DEBUG_IGMP_TRACE_STR)
6918{
d62a17ae 6919 PIM_DO_DEBUG_IGMP_TRACE;
6920 return CMD_SUCCESS;
12e41d03
DL
6921}
6922
6923DEFUN (no_debug_igmp_trace,
6924 no_debug_igmp_trace_cmd,
6925 "no debug igmp trace",
6926 NO_STR
6927 DEBUG_STR
6928 DEBUG_IGMP_STR
6929 DEBUG_IGMP_TRACE_STR)
6930{
d62a17ae 6931 PIM_DONT_DEBUG_IGMP_TRACE;
6932 return CMD_SUCCESS;
12e41d03
DL
6933}
6934
12e41d03
DL
6935
6936DEFUN (debug_mroute,
6937 debug_mroute_cmd,
6938 "debug mroute",
6939 DEBUG_STR
6940 DEBUG_MROUTE_STR)
6941{
d62a17ae 6942 PIM_DO_DEBUG_MROUTE;
6943 return CMD_SUCCESS;
12e41d03
DL
6944}
6945
6c7197b1
DS
6946DEFUN (debug_mroute_detail,
6947 debug_mroute_detail_cmd,
6948 "debug mroute detail",
6949 DEBUG_STR
6950 DEBUG_MROUTE_STR
6951 "detailed\n")
6952{
d62a17ae 6953 PIM_DO_DEBUG_MROUTE_DETAIL;
6954 return CMD_SUCCESS;
6c7197b1
DS
6955}
6956
12e41d03
DL
6957DEFUN (no_debug_mroute,
6958 no_debug_mroute_cmd,
6959 "no debug mroute",
6960 NO_STR
6961 DEBUG_STR
6962 DEBUG_MROUTE_STR)
6963{
d62a17ae 6964 PIM_DONT_DEBUG_MROUTE;
6965 return CMD_SUCCESS;
12e41d03
DL
6966}
6967
6c7197b1
DS
6968DEFUN (no_debug_mroute_detail,
6969 no_debug_mroute_detail_cmd,
6970 "no debug mroute detail",
6971 NO_STR
6972 DEBUG_STR
6973 DEBUG_MROUTE_STR
6974 "detailed\n")
6975{
d62a17ae 6976 PIM_DONT_DEBUG_MROUTE_DETAIL;
6977 return CMD_SUCCESS;
6c7197b1 6978}
12e41d03 6979
6250610a
JAG
6980DEFUN (debug_static,
6981 debug_static_cmd,
6982 "debug static",
6983 DEBUG_STR
6984 DEBUG_STATIC_STR)
6985{
d62a17ae 6986 PIM_DO_DEBUG_STATIC;
6987 return CMD_SUCCESS;
6250610a
JAG
6988}
6989
6990DEFUN (no_debug_static,
6991 no_debug_static_cmd,
6992 "no debug static",
6993 NO_STR
6994 DEBUG_STR
6995 DEBUG_STATIC_STR)
6996{
d62a17ae 6997 PIM_DONT_DEBUG_STATIC;
6998 return CMD_SUCCESS;
6250610a
JAG
6999}
7000
6250610a 7001
12e41d03
DL
7002DEFUN (debug_pim,
7003 debug_pim_cmd,
7004 "debug pim",
7005 DEBUG_STR
7006 DEBUG_PIM_STR)
7007{
d62a17ae 7008 PIM_DO_DEBUG_PIM_EVENTS;
7009 PIM_DO_DEBUG_PIM_PACKETS;
7010 PIM_DO_DEBUG_PIM_TRACE;
7011 PIM_DO_DEBUG_MSDP_EVENTS;
7012 PIM_DO_DEBUG_MSDP_PACKETS;
7013 return CMD_SUCCESS;
12e41d03
DL
7014}
7015
7016DEFUN (no_debug_pim,
7017 no_debug_pim_cmd,
7018 "no debug pim",
7019 NO_STR
7020 DEBUG_STR
7021 DEBUG_PIM_STR)
7022{
d62a17ae 7023 PIM_DONT_DEBUG_PIM_EVENTS;
7024 PIM_DONT_DEBUG_PIM_PACKETS;
7025 PIM_DONT_DEBUG_PIM_TRACE;
7026 PIM_DONT_DEBUG_MSDP_EVENTS;
7027 PIM_DONT_DEBUG_MSDP_PACKETS;
12e41d03 7028
d62a17ae 7029 PIM_DONT_DEBUG_PIM_PACKETDUMP_SEND;
7030 PIM_DONT_DEBUG_PIM_PACKETDUMP_RECV;
12e41d03 7031
d62a17ae 7032 return CMD_SUCCESS;
12e41d03
DL
7033}
7034
40f1f31b
DS
7035DEFUN (debug_pim_nht,
7036 debug_pim_nht_cmd,
7037 "debug pim nht",
7038 DEBUG_STR
7039 DEBUG_PIM_STR
7040 "Nexthop Tracking\n")
7041{
7042 PIM_DO_DEBUG_PIM_NHT;
7043 return CMD_SUCCESS;
7044}
7045
7046DEFUN (no_debug_pim_nht,
7047 no_debug_pim_nht_cmd,
7048 "no debug pim nht",
7049 NO_STR
7050 DEBUG_STR
7051 DEBUG_PIM_STR
7052 "Nexthop Tracking\n")
7053{
7054 PIM_DONT_DEBUG_PIM_NHT;
7055 return CMD_SUCCESS;
7056}
12e41d03 7057
3d225d48
DS
7058DEFUN (debug_pim_nht_rp,
7059 debug_pim_nht_rp_cmd,
7060 "debug pim nht rp",
7061 DEBUG_STR
7062 DEBUG_PIM_STR
7063 "Nexthop Tracking\n"
7064 "RP Nexthop Tracking\n")
7065{
7066 PIM_DO_DEBUG_PIM_NHT_RP;
7067 return CMD_SUCCESS;
7068}
7069
7070DEFUN (no_debug_pim_nht_rp,
7071 no_debug_pim_nht_rp_cmd,
7072 "no debug pim nht rp",
7073 NO_STR
7074 DEBUG_STR
7075 DEBUG_PIM_STR
7076 "Nexthop Tracking\n"
7077 "RP Nexthop Tracking\n")
7078{
7079 PIM_DONT_DEBUG_PIM_NHT_RP;
7080 return CMD_SUCCESS;
7081}
7082
12e41d03
DL
7083DEFUN (debug_pim_events,
7084 debug_pim_events_cmd,
7085 "debug pim events",
7086 DEBUG_STR
7087 DEBUG_PIM_STR
7088 DEBUG_PIM_EVENTS_STR)
7089{
d62a17ae 7090 PIM_DO_DEBUG_PIM_EVENTS;
7091 return CMD_SUCCESS;
12e41d03
DL
7092}
7093
7094DEFUN (no_debug_pim_events,
7095 no_debug_pim_events_cmd,
7096 "no debug pim events",
7097 NO_STR
7098 DEBUG_STR
7099 DEBUG_PIM_STR
7100 DEBUG_PIM_EVENTS_STR)
7101{
d62a17ae 7102 PIM_DONT_DEBUG_PIM_EVENTS;
7103 return CMD_SUCCESS;
12e41d03
DL
7104}
7105
12e41d03
DL
7106DEFUN (debug_pim_packets,
7107 debug_pim_packets_cmd,
a957a05b 7108 "debug pim packets [<hello|joins|register>]",
12e41d03
DL
7109 DEBUG_STR
7110 DEBUG_PIM_STR
7111 DEBUG_PIM_PACKETS_STR
7112 DEBUG_PIM_HELLO_PACKETS_STR
9add3b88
DS
7113 DEBUG_PIM_J_P_PACKETS_STR
7114 DEBUG_PIM_PIM_REG_PACKETS_STR)
12e41d03 7115{
d62a17ae 7116 int idx = 0;
7117 if (argv_find(argv, argc, "hello", &idx)) {
7118 PIM_DO_DEBUG_PIM_HELLO;
7119 vty_out(vty, "PIM Hello debugging is on\n");
7120 } else if (argv_find(argv, argc, "joins", &idx)) {
7121 PIM_DO_DEBUG_PIM_J_P;
7122 vty_out(vty, "PIM Join/Prune debugging is on\n");
7123 } else if (argv_find(argv, argc, "register", &idx)) {
7124 PIM_DO_DEBUG_PIM_REG;
7125 vty_out(vty, "PIM Register debugging is on\n");
7126 } else {
7127 PIM_DO_DEBUG_PIM_PACKETS;
7128 vty_out(vty, "PIM Packet debugging is on \n");
7129 }
7130 return CMD_SUCCESS;
12e41d03
DL
7131}
7132
7133DEFUN (no_debug_pim_packets,
7134 no_debug_pim_packets_cmd,
a957a05b 7135 "no debug pim packets [<hello|joins|register>]",
12e41d03
DL
7136 NO_STR
7137 DEBUG_STR
7138 DEBUG_PIM_STR
7139 DEBUG_PIM_PACKETS_STR
7140 DEBUG_PIM_HELLO_PACKETS_STR
a957a05b
DS
7141 DEBUG_PIM_J_P_PACKETS_STR
7142 DEBUG_PIM_PIM_REG_PACKETS_STR)
12e41d03 7143{
d62a17ae 7144 int idx = 0;
7145 if (argv_find(argv, argc, "hello", &idx)) {
7146 PIM_DONT_DEBUG_PIM_HELLO;
7147 vty_out(vty, "PIM Hello debugging is off \n");
7148 } else if (argv_find(argv, argc, "joins", &idx)) {
7149 PIM_DONT_DEBUG_PIM_J_P;
7150 vty_out(vty, "PIM Join/Prune debugging is off \n");
7151 } else if (argv_find(argv, argc, "register", &idx)) {
7152 PIM_DONT_DEBUG_PIM_REG;
7153 vty_out(vty, "PIM Register debugging is off\n");
7154 } else
7155 PIM_DONT_DEBUG_PIM_PACKETS;
7156
7157 return CMD_SUCCESS;
12e41d03
DL
7158}
7159
12e41d03
DL
7160
7161DEFUN (debug_pim_packetdump_send,
7162 debug_pim_packetdump_send_cmd,
7163 "debug pim packet-dump send",
7164 DEBUG_STR
7165 DEBUG_PIM_STR
7166 DEBUG_PIM_PACKETDUMP_STR
7167 DEBUG_PIM_PACKETDUMP_SEND_STR)
7168{
d62a17ae 7169 PIM_DO_DEBUG_PIM_PACKETDUMP_SEND;
7170 return CMD_SUCCESS;
12e41d03
DL
7171}
7172
7173DEFUN (no_debug_pim_packetdump_send,
7174 no_debug_pim_packetdump_send_cmd,
7175 "no debug pim packet-dump send",
7176 NO_STR
7177 DEBUG_STR
7178 DEBUG_PIM_STR
7179 DEBUG_PIM_PACKETDUMP_STR
7180 DEBUG_PIM_PACKETDUMP_SEND_STR)
7181{
d62a17ae 7182 PIM_DONT_DEBUG_PIM_PACKETDUMP_SEND;
7183 return CMD_SUCCESS;
12e41d03
DL
7184}
7185
12e41d03
DL
7186DEFUN (debug_pim_packetdump_recv,
7187 debug_pim_packetdump_recv_cmd,
7188 "debug pim packet-dump receive",
7189 DEBUG_STR
7190 DEBUG_PIM_STR
7191 DEBUG_PIM_PACKETDUMP_STR
7192 DEBUG_PIM_PACKETDUMP_RECV_STR)
7193{
d62a17ae 7194 PIM_DO_DEBUG_PIM_PACKETDUMP_RECV;
7195 return CMD_SUCCESS;
12e41d03
DL
7196}
7197
7198DEFUN (no_debug_pim_packetdump_recv,
7199 no_debug_pim_packetdump_recv_cmd,
7200 "no debug pim packet-dump receive",
7201 NO_STR
7202 DEBUG_STR
7203 DEBUG_PIM_STR
7204 DEBUG_PIM_PACKETDUMP_STR
7205 DEBUG_PIM_PACKETDUMP_RECV_STR)
7206{
d62a17ae 7207 PIM_DONT_DEBUG_PIM_PACKETDUMP_RECV;
7208 return CMD_SUCCESS;
12e41d03
DL
7209}
7210
12e41d03
DL
7211DEFUN (debug_pim_trace,
7212 debug_pim_trace_cmd,
7213 "debug pim trace",
7214 DEBUG_STR
7215 DEBUG_PIM_STR
7216 DEBUG_PIM_TRACE_STR)
7217{
d62a17ae 7218 PIM_DO_DEBUG_PIM_TRACE;
7219 return CMD_SUCCESS;
12e41d03
DL
7220}
7221
56c238c9
DS
7222DEFUN (debug_pim_trace_detail,
7223 debug_pim_trace_detail_cmd,
7224 "debug pim trace detail",
7225 DEBUG_STR
7226 DEBUG_PIM_STR
5f40dada
DS
7227 DEBUG_PIM_TRACE_STR
7228 "Detailed Information\n")
56c238c9
DS
7229{
7230 PIM_DO_DEBUG_PIM_TRACE_DETAIL;
7231 return CMD_SUCCESS;
7232}
7233
12e41d03
DL
7234DEFUN (no_debug_pim_trace,
7235 no_debug_pim_trace_cmd,
7236 "no debug pim trace",
7237 NO_STR
7238 DEBUG_STR
7239 DEBUG_PIM_STR
7240 DEBUG_PIM_TRACE_STR)
7241{
d62a17ae 7242 PIM_DONT_DEBUG_PIM_TRACE;
7243 return CMD_SUCCESS;
12e41d03
DL
7244}
7245
56c238c9
DS
7246DEFUN (no_debug_pim_trace_detail,
7247 no_debug_pim_trace_detail_cmd,
9853a7a5 7248 "no debug pim trace detail",
56c238c9
DS
7249 NO_STR
7250 DEBUG_STR
7251 DEBUG_PIM_STR
bd4d05c5
DS
7252 DEBUG_PIM_TRACE_STR
7253 "Detailed Information\n")
56c238c9
DS
7254{
7255 PIM_DONT_DEBUG_PIM_TRACE_DETAIL;
7256 return CMD_SUCCESS;
7257}
7258
12e41d03
DL
7259DEFUN (debug_ssmpingd,
7260 debug_ssmpingd_cmd,
7261 "debug ssmpingd",
7262 DEBUG_STR
12e41d03
DL
7263 DEBUG_SSMPINGD_STR)
7264{
d62a17ae 7265 PIM_DO_DEBUG_SSMPINGD;
7266 return CMD_SUCCESS;
12e41d03
DL
7267}
7268
7269DEFUN (no_debug_ssmpingd,
7270 no_debug_ssmpingd_cmd,
7271 "no debug ssmpingd",
7272 NO_STR
7273 DEBUG_STR
12e41d03
DL
7274 DEBUG_SSMPINGD_STR)
7275{
d62a17ae 7276 PIM_DONT_DEBUG_SSMPINGD;
7277 return CMD_SUCCESS;
12e41d03
DL
7278}
7279
12e41d03
DL
7280DEFUN (debug_pim_zebra,
7281 debug_pim_zebra_cmd,
7282 "debug pim zebra",
7283 DEBUG_STR
7284 DEBUG_PIM_STR
7285 DEBUG_PIM_ZEBRA_STR)
7286{
d62a17ae 7287 PIM_DO_DEBUG_ZEBRA;
7288 return CMD_SUCCESS;
12e41d03
DL
7289}
7290
7291DEFUN (no_debug_pim_zebra,
7292 no_debug_pim_zebra_cmd,
7293 "no debug pim zebra",
7294 NO_STR
7295 DEBUG_STR
7296 DEBUG_PIM_STR
7297 DEBUG_PIM_ZEBRA_STR)
7298{
d62a17ae 7299 PIM_DONT_DEBUG_ZEBRA;
7300 return CMD_SUCCESS;
12e41d03
DL
7301}
7302
2a333e0f 7303DEFUN (debug_msdp,
7304 debug_msdp_cmd,
7305 "debug msdp",
7306 DEBUG_STR
7307 DEBUG_MSDP_STR)
7308{
d62a17ae 7309 PIM_DO_DEBUG_MSDP_EVENTS;
7310 PIM_DO_DEBUG_MSDP_PACKETS;
7311 return CMD_SUCCESS;
2a333e0f 7312}
7313
7314DEFUN (no_debug_msdp,
7315 no_debug_msdp_cmd,
7316 "no debug msdp",
7317 NO_STR
7318 DEBUG_STR
7319 DEBUG_MSDP_STR)
7320{
d62a17ae 7321 PIM_DONT_DEBUG_MSDP_EVENTS;
7322 PIM_DONT_DEBUG_MSDP_PACKETS;
7323 return CMD_SUCCESS;
2a333e0f 7324}
7325
ef7eec74
QY
7326#if CONFDATE > 20190402
7327CPP_NOTICE("bgpd: time to remove undebug commands")
7328#endif
7329ALIAS_HIDDEN (no_debug_msdp,
7330 undebug_msdp_cmd,
7331 "undebug msdp",
7332 UNDEBUG_STR DEBUG_MSDP_STR)
2a333e0f 7333
7334DEFUN (debug_msdp_events,
7335 debug_msdp_events_cmd,
7336 "debug msdp events",
7337 DEBUG_STR
7338 DEBUG_MSDP_STR
7339 DEBUG_MSDP_EVENTS_STR)
7340{
d62a17ae 7341 PIM_DO_DEBUG_MSDP_EVENTS;
7342 return CMD_SUCCESS;
2a333e0f 7343}
7344
7345DEFUN (no_debug_msdp_events,
7346 no_debug_msdp_events_cmd,
7347 "no debug msdp events",
7348 NO_STR
7349 DEBUG_STR
7350 DEBUG_MSDP_STR
7351 DEBUG_MSDP_EVENTS_STR)
7352{
d62a17ae 7353 PIM_DONT_DEBUG_MSDP_EVENTS;
7354 return CMD_SUCCESS;
2a333e0f 7355}
7356
ef7eec74
QY
7357#if CONFDATE > 20190402
7358CPP_NOTICE("bgpd: time to remove undebug commands")
7359#endif
7360ALIAS_HIDDEN (no_debug_msdp_events,
7361 undebug_msdp_events_cmd,
7362 "undebug msdp events",
7363 UNDEBUG_STR
7364 DEBUG_MSDP_STR
7365 DEBUG_MSDP_EVENTS_STR)
2a333e0f 7366
7367DEFUN (debug_msdp_packets,
7368 debug_msdp_packets_cmd,
7369 "debug msdp packets",
7370 DEBUG_STR
7371 DEBUG_MSDP_STR
7372 DEBUG_MSDP_PACKETS_STR)
7373{
d62a17ae 7374 PIM_DO_DEBUG_MSDP_PACKETS;
7375 return CMD_SUCCESS;
2a333e0f 7376}
7377
7378DEFUN (no_debug_msdp_packets,
7379 no_debug_msdp_packets_cmd,
7380 "no debug msdp packets",
7381 NO_STR
7382 DEBUG_STR
7383 DEBUG_MSDP_STR
7384 DEBUG_MSDP_PACKETS_STR)
7385{
d62a17ae 7386 PIM_DONT_DEBUG_MSDP_PACKETS;
7387 return CMD_SUCCESS;
2a333e0f 7388}
7389
ef7eec74
QY
7390#if CONFDATE > 20190402
7391CPP_NOTICE("bgpd: time to remove undebug commands")
7392#endif
7393ALIAS_HIDDEN (no_debug_msdp_packets,
7394 undebug_msdp_packets_cmd,
7395 "undebug msdp packets",
7396 UNDEBUG_STR
7397 DEBUG_MSDP_STR
7398 DEBUG_MSDP_PACKETS_STR)
2a333e0f 7399
4d9ad5dc
MS
7400DEFUN (debug_mtrace,
7401 debug_mtrace_cmd,
7402 "debug mtrace",
7403 DEBUG_STR
7404 DEBUG_MTRACE_STR)
7405{
7406 PIM_DO_DEBUG_MTRACE;
7407 return CMD_SUCCESS;
7408}
7409
7410DEFUN (no_debug_mtrace,
7411 no_debug_mtrace_cmd,
7412 "no debug mtrace",
7413 NO_STR
7414 DEBUG_STR
7415 DEBUG_MTRACE_STR)
7416{
7417 PIM_DONT_DEBUG_MTRACE;
7418 return CMD_SUCCESS;
7419}
7420
87f6dc50
DS
7421DEFUN_NOSH (show_debugging_pim,
7422 show_debugging_pim_cmd,
7423 "show debugging [pim]",
7424 SHOW_STR
7425 DEBUG_STR
7426 PIM_STR)
12e41d03 7427{
87f6dc50
DS
7428 vty_out(vty, "PIM debugging status\n");
7429
d62a17ae 7430 pim_debug_config_write(vty);
87f6dc50 7431
d62a17ae 7432 return CMD_SUCCESS;
12e41d03
DL
7433}
7434
d62a17ae 7435static int interface_pim_use_src_cmd_worker(struct vty *vty, const char *source)
4763cd0e 7436{
d62a17ae 7437 int result;
7438 struct in_addr source_addr;
23f1c68b 7439 int ret = CMD_SUCCESS;
d62a17ae 7440 VTY_DECLVAR_CONTEXT(interface, ifp);
4763cd0e 7441
d62a17ae 7442 result = inet_pton(AF_INET, source, &source_addr);
7443 if (result <= 0) {
7444 vty_out(vty, "%% Bad source address %s: errno=%d: %s\n", source,
7445 errno, safe_strerror(errno));
7446 return CMD_WARNING_CONFIG_FAILED;
7447 }
4763cd0e 7448
d62a17ae 7449 result = pim_update_source_set(ifp, source_addr);
7450 switch (result) {
7451 case PIM_SUCCESS:
7452 break;
7453 case PIM_IFACE_NOT_FOUND:
23f1c68b 7454 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7455 vty_out(vty, "Pim not enabled on this interface\n");
7456 break;
7457 case PIM_UPDATE_SOURCE_DUP:
23f1c68b 7458 ret = CMD_WARNING;
d62a17ae 7459 vty_out(vty, "%% Source already set to %s\n", source);
7460 break;
7461 default:
23f1c68b 7462 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7463 vty_out(vty, "%% Source set failed\n");
7464 }
4763cd0e 7465
23f1c68b 7466 return ret;
4763cd0e 7467}
7468
7469DEFUN (interface_pim_use_source,
7470 interface_pim_use_source_cmd,
7471 "ip pim use-source A.B.C.D",
7472 IP_STR
7473 "pim multicast routing\n"
7474 "Configure primary IP address\n"
7475 "source ip address\n")
7476{
d62a17ae 7477 return interface_pim_use_src_cmd_worker(vty, argv[3]->arg);
4763cd0e 7478}
7479
7480DEFUN (interface_no_pim_use_source,
7481 interface_no_pim_use_source_cmd,
2243bb17 7482 "no ip pim use-source [A.B.C.D]",
4763cd0e 7483 NO_STR
7484 IP_STR
7485 "pim multicast routing\n"
2243bb17
DS
7486 "Delete source IP address\n"
7487 "source ip address\n")
4763cd0e 7488{
d62a17ae 7489 return interface_pim_use_src_cmd_worker(vty, "0.0.0.0");
4763cd0e 7490}
7491
ba4eb1bc
CS
7492DEFUN (ip_pim_bfd,
7493 ip_pim_bfd_cmd,
7494 "ip pim bfd",
7495 IP_STR
7496 PIM_STR
7497 "Enables BFD support\n")
7498{
d62a17ae 7499 VTY_DECLVAR_CONTEXT(interface, ifp);
7500 struct pim_interface *pim_ifp = ifp->info;
7501 struct bfd_info *bfd_info = NULL;
ba4eb1bc 7502
2fd8de7d
CS
7503 if (!pim_ifp) {
7504 if (!pim_cmd_interface_add(ifp)) {
7505 vty_out(vty, "Could not enable PIM SM on interface\n");
7506 return CMD_WARNING;
7507 }
7508 }
7509 pim_ifp = ifp->info;
7510
d62a17ae 7511 bfd_info = pim_ifp->bfd_info;
ba4eb1bc 7512
d62a17ae 7513 if (!bfd_info || !CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG))
7514 pim_bfd_if_param_set(ifp, BFD_DEF_MIN_RX, BFD_DEF_MIN_TX,
7515 BFD_DEF_DETECT_MULT, 1);
ba4eb1bc 7516
d62a17ae 7517 return CMD_SUCCESS;
ba4eb1bc
CS
7518}
7519
7520DEFUN (no_ip_pim_bfd,
7521 no_ip_pim_bfd_cmd,
7522 "no ip pim bfd",
7523 NO_STR
7524 IP_STR
7525 PIM_STR
7526 "Disables BFD support\n")
7527{
d62a17ae 7528 VTY_DECLVAR_CONTEXT(interface, ifp);
7529 struct pim_interface *pim_ifp = ifp->info;
ba4eb1bc 7530
2fd8de7d
CS
7531 if (!pim_ifp) {
7532 vty_out(vty, "Pim not enabled on this interface\n");
7533 return CMD_WARNING;
7534 }
ba4eb1bc 7535
d62a17ae 7536 if (pim_ifp->bfd_info) {
7537 pim_bfd_reg_dereg_all_nbr(ifp, ZEBRA_BFD_DEST_DEREGISTER);
7538 bfd_info_free(&(pim_ifp->bfd_info));
7539 }
ba4eb1bc 7540
d62a17ae 7541 return CMD_SUCCESS;
ba4eb1bc
CS
7542}
7543
7544DEFUN (ip_pim_bfd_param,
7545 ip_pim_bfd_param_cmd,
7546 "ip pim bfd (2-255) (50-60000) (50-60000)",
7547 IP_STR
7548 PIM_STR
7549 "Enables BFD support\n"
7550 "Detect Multiplier\n"
7551 "Required min receive interval\n"
7552 "Desired min transmit interval\n")
7553{
d62a17ae 7554 VTY_DECLVAR_CONTEXT(interface, ifp);
7555 int idx_number = 3;
7556 int idx_number_2 = 4;
7557 int idx_number_3 = 5;
d7c0a89a
QY
7558 uint32_t rx_val;
7559 uint32_t tx_val;
7560 uint8_t dm_val;
d62a17ae 7561 int ret;
2fd8de7d 7562 struct pim_interface *pim_ifp = ifp->info;
ba4eb1bc 7563
2fd8de7d
CS
7564 if (!pim_ifp) {
7565 if (!pim_cmd_interface_add(ifp)) {
7566 vty_out(vty, "Could not enable PIM SM on interface\n");
7567 return CMD_WARNING;
7568 }
7569 }
ba4eb1bc 7570
d62a17ae 7571 if ((ret = bfd_validate_param(
7572 vty, argv[idx_number]->arg, argv[idx_number_2]->arg,
7573 argv[idx_number_3]->arg, &dm_val, &rx_val, &tx_val))
7574 != CMD_SUCCESS)
7575 return ret;
ba4eb1bc 7576
d62a17ae 7577 pim_bfd_if_param_set(ifp, rx_val, tx_val, dm_val, 0);
ba4eb1bc 7578
d62a17ae 7579 return CMD_SUCCESS;
ba4eb1bc
CS
7580}
7581
d62a17ae 7582ALIAS(no_ip_pim_bfd, no_ip_pim_bfd_param_cmd,
9d303b37 7583 "no ip pim bfd (2-255) (50-60000) (50-60000)", NO_STR IP_STR PIM_STR
d62a17ae 7584 "Enables BFD support\n"
7585 "Detect Multiplier\n"
7586 "Required min receive interval\n"
7587 "Desired min transmit interval\n")
7588
64c86530 7589static int ip_msdp_peer_cmd_worker(struct pim_instance *pim, struct vty *vty,
4f9f3925 7590 const char *peer, const char *local)
d62a17ae 7591{
7592 enum pim_msdp_err result;
7593 struct in_addr peer_addr;
7594 struct in_addr local_addr;
01841ed3 7595 int ret = CMD_SUCCESS;
d62a17ae 7596
7597 result = inet_pton(AF_INET, peer, &peer_addr);
7598 if (result <= 0) {
7599 vty_out(vty, "%% Bad peer address %s: errno=%d: %s\n", peer,
7600 errno, safe_strerror(errno));
7601 return CMD_WARNING_CONFIG_FAILED;
7602 }
7603
7604 result = inet_pton(AF_INET, local, &local_addr);
7605 if (result <= 0) {
7606 vty_out(vty, "%% Bad source address %s: errno=%d: %s\n", local,
7607 errno, safe_strerror(errno));
7608 return CMD_WARNING_CONFIG_FAILED;
7609 }
ba4eb1bc 7610
4f9f3925 7611 result = pim_msdp_peer_add(pim, peer_addr, local_addr, "default",
d62a17ae 7612 NULL /* mp_p */);
7613 switch (result) {
7614 case PIM_MSDP_ERR_NONE:
7615 break;
7616 case PIM_MSDP_ERR_OOM:
01841ed3 7617 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7618 vty_out(vty, "%% Out of memory\n");
7619 break;
7620 case PIM_MSDP_ERR_PEER_EXISTS:
01841ed3 7621 ret = CMD_WARNING;
d62a17ae 7622 vty_out(vty, "%% Peer exists\n");
7623 break;
7624 case PIM_MSDP_ERR_MAX_MESH_GROUPS:
01841ed3 7625 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7626 vty_out(vty, "%% Only one mesh-group allowed currently\n");
7627 break;
7628 default:
01841ed3 7629 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7630 vty_out(vty, "%% peer add failed\n");
7631 }
7632
01841ed3 7633 return ret;
2a333e0f 7634}
7635
977d71cc 7636DEFUN_HIDDEN (ip_msdp_peer,
2a333e0f 7637 ip_msdp_peer_cmd,
7638 "ip msdp peer A.B.C.D source A.B.C.D",
7639 IP_STR
7640 CFG_MSDP_STR
7641 "Configure MSDP peer\n"
7642 "peer ip address\n"
7643 "Source address for TCP connection\n"
7644 "local ip address\n")
7645{
4f9f3925 7646 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 7647 return ip_msdp_peer_cmd_worker(pim, vty, argv[3]->arg, argv[5]->arg);
2a333e0f 7648}
7649
64c86530 7650static int ip_no_msdp_peer_cmd_worker(struct pim_instance *pim, struct vty *vty,
4f9f3925 7651 const char *peer)
2a333e0f 7652{
d62a17ae 7653 enum pim_msdp_err result;
7654 struct in_addr peer_addr;
2a333e0f 7655
d62a17ae 7656 result = inet_pton(AF_INET, peer, &peer_addr);
7657 if (result <= 0) {
7658 vty_out(vty, "%% Bad peer address %s: errno=%d: %s\n", peer,
7659 errno, safe_strerror(errno));
7660 return CMD_WARNING_CONFIG_FAILED;
7661 }
2a333e0f 7662
4f9f3925 7663 result = pim_msdp_peer_del(pim, peer_addr);
d62a17ae 7664 switch (result) {
7665 case PIM_MSDP_ERR_NONE:
7666 break;
7667 case PIM_MSDP_ERR_NO_PEER:
7668 vty_out(vty, "%% Peer does not exist\n");
7669 break;
7670 default:
7671 vty_out(vty, "%% peer del failed\n");
7672 }
2a333e0f 7673
d62a17ae 7674 return result ? CMD_WARNING_CONFIG_FAILED : CMD_SUCCESS;
2a333e0f 7675}
7676
977d71cc 7677DEFUN_HIDDEN (no_ip_msdp_peer,
2a333e0f 7678 no_ip_msdp_peer_cmd,
7679 "no ip msdp peer A.B.C.D",
977d71cc 7680 NO_STR
2a333e0f 7681 IP_STR
7682 CFG_MSDP_STR
7683 "Delete MSDP peer\n"
7684 "peer ip address\n")
7685{
4f9f3925 7686 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 7687 return ip_no_msdp_peer_cmd_worker(pim, vty, argv[4]->arg);
2a333e0f 7688}
7689
64c86530
DS
7690static int ip_msdp_mesh_group_member_cmd_worker(struct pim_instance *pim,
7691 struct vty *vty, const char *mg,
7692 const char *mbr)
977d71cc 7693{
d62a17ae 7694 enum pim_msdp_err result;
7695 struct in_addr mbr_ip;
01841ed3 7696 int ret = CMD_SUCCESS;
977d71cc 7697
d62a17ae 7698 result = inet_pton(AF_INET, mbr, &mbr_ip);
7699 if (result <= 0) {
7700 vty_out(vty, "%% Bad member address %s: errno=%d: %s\n", mbr,
7701 errno, safe_strerror(errno));
7702 return CMD_WARNING_CONFIG_FAILED;
7703 }
977d71cc 7704
02a16316 7705 result = pim_msdp_mg_mbr_add(pim, mg, mbr_ip);
d62a17ae 7706 switch (result) {
7707 case PIM_MSDP_ERR_NONE:
7708 break;
7709 case PIM_MSDP_ERR_OOM:
01841ed3 7710 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7711 vty_out(vty, "%% Out of memory\n");
7712 break;
7713 case PIM_MSDP_ERR_MG_MBR_EXISTS:
01841ed3 7714 ret = CMD_WARNING;
d62a17ae 7715 vty_out(vty, "%% mesh-group member exists\n");
7716 break;
7717 case PIM_MSDP_ERR_MAX_MESH_GROUPS:
01841ed3 7718 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7719 vty_out(vty, "%% Only one mesh-group allowed currently\n");
7720 break;
7721 default:
01841ed3 7722 ret = CMD_WARNING_CONFIG_FAILED;
d62a17ae 7723 vty_out(vty, "%% member add failed\n");
7724 }
977d71cc 7725
01841ed3 7726 return ret;
977d71cc 7727}
7728
7729DEFUN (ip_msdp_mesh_group_member,
7730 ip_msdp_mesh_group_member_cmd,
7731 "ip msdp mesh-group WORD member A.B.C.D",
7732 IP_STR
7733 CFG_MSDP_STR
7734 "Configure MSDP mesh-group\n"
7735 "mesh group name\n"
7736 "mesh group member\n"
7737 "peer ip address\n")
7738{
02a16316 7739 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 7740 return ip_msdp_mesh_group_member_cmd_worker(pim, vty, argv[3]->arg,
d62a17ae 7741 argv[5]->arg);
977d71cc 7742}
7743
64c86530
DS
7744static int ip_no_msdp_mesh_group_member_cmd_worker(struct pim_instance *pim,
7745 struct vty *vty,
d62a17ae 7746 const char *mg,
7747 const char *mbr)
977d71cc 7748{
d62a17ae 7749 enum pim_msdp_err result;
7750 struct in_addr mbr_ip;
977d71cc 7751
d62a17ae 7752 result = inet_pton(AF_INET, mbr, &mbr_ip);
7753 if (result <= 0) {
7754 vty_out(vty, "%% Bad member address %s: errno=%d: %s\n", mbr,
7755 errno, safe_strerror(errno));
7756 return CMD_WARNING_CONFIG_FAILED;
7757 }
977d71cc 7758
02a16316 7759 result = pim_msdp_mg_mbr_del(pim, mg, mbr_ip);
d62a17ae 7760 switch (result) {
7761 case PIM_MSDP_ERR_NONE:
7762 break;
7763 case PIM_MSDP_ERR_NO_MG:
7764 vty_out(vty, "%% mesh-group does not exist\n");
7765 break;
7766 case PIM_MSDP_ERR_NO_MG_MBR:
7767 vty_out(vty, "%% mesh-group member does not exist\n");
7768 break;
7769 default:
7770 vty_out(vty, "%% mesh-group member del failed\n");
7771 }
977d71cc 7772
d62a17ae 7773 return result ? CMD_WARNING_CONFIG_FAILED : CMD_SUCCESS;
977d71cc 7774}
7775DEFUN (no_ip_msdp_mesh_group_member,
7776 no_ip_msdp_mesh_group_member_cmd,
7777 "no ip msdp mesh-group WORD member A.B.C.D",
7778 NO_STR
7779 IP_STR
7780 CFG_MSDP_STR
7781 "Delete MSDP mesh-group member\n"
7782 "mesh group name\n"
7783 "mesh group member\n"
7784 "peer ip address\n")
7785{
02a16316 7786 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 7787 return ip_no_msdp_mesh_group_member_cmd_worker(pim, vty, argv[4]->arg,
d62a17ae 7788 argv[6]->arg);
977d71cc 7789}
7790
64c86530
DS
7791static int ip_msdp_mesh_group_source_cmd_worker(struct pim_instance *pim,
7792 struct vty *vty, const char *mg,
7793 const char *src)
977d71cc 7794{
d62a17ae 7795 enum pim_msdp_err result;
7796 struct in_addr src_ip;
977d71cc 7797
d62a17ae 7798 result = inet_pton(AF_INET, src, &src_ip);
7799 if (result <= 0) {
7800 vty_out(vty, "%% Bad source address %s: errno=%d: %s\n", src,
7801 errno, safe_strerror(errno));
7802 return CMD_WARNING_CONFIG_FAILED;
7803 }
977d71cc 7804
02a16316 7805 result = pim_msdp_mg_src_add(pim, mg, src_ip);
d62a17ae 7806 switch (result) {
7807 case PIM_MSDP_ERR_NONE:
7808 break;
7809 case PIM_MSDP_ERR_OOM:
7810 vty_out(vty, "%% Out of memory\n");
7811 break;
7812 case PIM_MSDP_ERR_MAX_MESH_GROUPS:
7813 vty_out(vty, "%% Only one mesh-group allowed currently\n");
7814 break;
7815 default:
7816 vty_out(vty, "%% source add failed\n");
7817 }
977d71cc 7818
d62a17ae 7819 return result ? CMD_WARNING_CONFIG_FAILED : CMD_SUCCESS;
977d71cc 7820}
7821
7822
7823DEFUN (ip_msdp_mesh_group_source,
7824 ip_msdp_mesh_group_source_cmd,
7825 "ip msdp mesh-group WORD source A.B.C.D",
7826 IP_STR
7827 CFG_MSDP_STR
7828 "Configure MSDP mesh-group\n"
7829 "mesh group name\n"
7830 "mesh group local address\n"
7831 "source ip address for the TCP connection\n")
7832{
02a16316 7833 PIM_DECLVAR_CONTEXT(vrf, pim);
64c86530 7834 return ip_msdp_mesh_group_source_cmd_worker(pim, vty, argv[3]->arg,
d62a17ae 7835 argv[5]->arg);
977d71cc 7836}
7837
64c86530
DS
7838static int ip_no_msdp_mesh_group_source_cmd_worker(struct pim_instance *pim,
7839 struct vty *vty,
d62a17ae 7840 const char *mg)
977d71cc 7841{
d62a17ae 7842 enum pim_msdp_err result;
977d71cc 7843
02a16316 7844 result = pim_msdp_mg_src_del(pim, mg);
d62a17ae 7845 switch (result) {
7846 case PIM_MSDP_ERR_NONE:
7847 break;
7848 case PIM_MSDP_ERR_NO_MG:
7849 vty_out(vty, "%% mesh-group does not exist\n");
7850 break;
7851 default:
7852 vty_out(vty, "%% mesh-group source del failed\n");
7853 }
977d71cc 7854
d62a17ae 7855 return result ? CMD_WARNING_CONFIG_FAILED : CMD_SUCCESS;
977d71cc 7856}
7857
64c86530
DS
7858static int ip_no_msdp_mesh_group_cmd_worker(struct pim_instance *pim,
7859 struct vty *vty, const char *mg)
977d71cc 7860{
d62a17ae 7861 enum pim_msdp_err result;
977d71cc 7862
02a16316 7863 result = pim_msdp_mg_del(pim, mg);
d62a17ae 7864 switch (result) {
7865 case PIM_MSDP_ERR_NONE:
7866 break;
7867 case PIM_MSDP_ERR_NO_MG:
7868 vty_out(vty, "%% mesh-group does not exist\n");
7869 break;
7870 default:
7871 vty_out(vty, "%% mesh-group source del failed\n");
7872 }
977d71cc 7873
d62a17ae 7874 return result ? CMD_WARNING_CONFIG_FAILED : CMD_SUCCESS;
977d71cc 7875}
7876
58344b65
DS
7877DEFUN (no_ip_msdp_mesh_group_source,
7878 no_ip_msdp_mesh_group_source_cmd,
7879 "no ip msdp mesh-group WORD source [A.B.C.D]",
977d71cc 7880 NO_STR
7881 IP_STR
7882 CFG_MSDP_STR
58344b65
DS
7883 "Delete MSDP mesh-group source\n"
7884 "mesh group name\n"
a957a05b 7885 "mesh group source\n"
58344b65 7886 "mesh group local address\n")
977d71cc 7887{
02a16316 7888 PIM_DECLVAR_CONTEXT(vrf, pim);
d62a17ae 7889 if (argc == 7)
64c86530 7890 return ip_no_msdp_mesh_group_cmd_worker(pim, vty, argv[6]->arg);
d62a17ae 7891 else
64c86530 7892 return ip_no_msdp_mesh_group_source_cmd_worker(pim, vty,
d62a17ae 7893 argv[4]->arg);
7894}
7895
7896static void print_empty_json_obj(struct vty *vty)
7897{
7898 json_object *json;
7899 json = json_object_new_object();
7900 vty_out(vty, "%s\n",
7901 json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
7902 json_object_free(json);
7903}
7904
64c86530 7905static void ip_msdp_show_mesh_group(struct pim_instance *pim, struct vty *vty,
d7c0a89a 7906 uint8_t uj)
d62a17ae 7907{
7908 struct listnode *mbrnode;
7909 struct pim_msdp_mg_mbr *mbr;
02a16316 7910 struct pim_msdp_mg *mg = pim->msdp.mg;
d62a17ae 7911 char mbr_str[INET_ADDRSTRLEN];
7912 char src_str[INET_ADDRSTRLEN];
7913 char state_str[PIM_MSDP_STATE_STRLEN];
7914 enum pim_msdp_peer_state state;
7915 json_object *json = NULL;
7916 json_object *json_mg_row = NULL;
7917 json_object *json_members = NULL;
7918 json_object *json_row = NULL;
7919
7920 if (!mg) {
7921 if (uj)
7922 print_empty_json_obj(vty);
7923 return;
7924 }
7925
7926 pim_inet4_dump("<source?>", mg->src_ip, src_str, sizeof(src_str));
7927 if (uj) {
7928 json = json_object_new_object();
7929 /* currently there is only one mesh group but we should still
7930 * make
7931 * it a dict with mg-name as key */
7932 json_mg_row = json_object_new_object();
7933 json_object_string_add(json_mg_row, "name",
7934 mg->mesh_group_name);
7935 json_object_string_add(json_mg_row, "source", src_str);
7936 } else {
7937 vty_out(vty, "Mesh group : %s\n", mg->mesh_group_name);
7938 vty_out(vty, " Source : %s\n", src_str);
7939 vty_out(vty, " Member State\n");
7940 }
7941
7942 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbrnode, mbr)) {
7943 pim_inet4_dump("<mbr?>", mbr->mbr_ip, mbr_str, sizeof(mbr_str));
7944 if (mbr->mp) {
7945 state = mbr->mp->state;
7946 } else {
7947 state = PIM_MSDP_DISABLED;
7948 }
7949 pim_msdp_state_dump(state, state_str, sizeof(state_str));
7950 if (uj) {
7951 json_row = json_object_new_object();
7952 json_object_string_add(json_row, "member", mbr_str);
7953 json_object_string_add(json_row, "state", state_str);
7954 if (!json_members) {
7955 json_members = json_object_new_object();
7956 json_object_object_add(json_mg_row, "members",
7957 json_members);
7958 }
7959 json_object_object_add(json_members, mbr_str, json_row);
7960 } else {
7961 vty_out(vty, " %-15s %11s\n", mbr_str, state_str);
7962 }
7963 }
7964
7965 if (uj) {
7966 json_object_object_add(json, mg->mesh_group_name, json_mg_row);
9d303b37
DL
7967 vty_out(vty, "%s\n", json_object_to_json_string_ext(
7968 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 7969 json_object_free(json);
7970 }
977d71cc 7971}
7972
7973DEFUN (show_ip_msdp_mesh_group,
7974 show_ip_msdp_mesh_group_cmd,
20a7e5fd 7975 "show ip msdp [vrf NAME] mesh-group [json]",
977d71cc 7976 SHOW_STR
7977 IP_STR
7978 MSDP_STR
f02d59db 7979 VRF_CMD_HELP_STR
977d71cc 7980 "MSDP mesh-group information\n"
f5da2cc2 7981 JSON_STR)
977d71cc 7982{
d7c0a89a 7983 uint8_t uj = use_json(argc, argv);
c68ba0d7 7984 int idx = 2;
02a16316
DS
7985 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
7986
7987 if (!vrf)
7988 return CMD_WARNING;
7989
64c86530 7990 ip_msdp_show_mesh_group(vrf->info, vty, uj);
d62a17ae 7991
7992 return CMD_SUCCESS;
7993}
7994
a25de56b
DS
7995DEFUN (show_ip_msdp_mesh_group_vrf_all,
7996 show_ip_msdp_mesh_group_vrf_all_cmd,
7997 "show ip msdp vrf all mesh-group [json]",
7998 SHOW_STR
7999 IP_STR
8000 MSDP_STR
8001 VRF_CMD_HELP_STR
8002 "MSDP mesh-group information\n"
f5da2cc2 8003 JSON_STR)
a25de56b 8004{
d7c0a89a 8005 uint8_t uj = use_json(argc, argv);
a25de56b
DS
8006 struct vrf *vrf;
8007 bool first = true;
8008
8009 if (uj)
8010 vty_out(vty, "{ ");
a2addae8 8011 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
8012 if (uj) {
8013 if (!first)
8014 vty_out(vty, ", ");
8015 vty_out(vty, " \"%s\": ", vrf->name);
8016 first = false;
8017 } else
8018 vty_out(vty, "VRF: %s\n", vrf->name);
8019 ip_msdp_show_mesh_group(vrf->info, vty, uj);
8020 }
8021 if (uj)
8022 vty_out(vty, "}\n");
8023
8024 return CMD_SUCCESS;
8025}
8026
64c86530 8027static void ip_msdp_show_peers(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8028 uint8_t uj)
d62a17ae 8029{
8030 struct listnode *mpnode;
8031 struct pim_msdp_peer *mp;
8032 char peer_str[INET_ADDRSTRLEN];
8033 char local_str[INET_ADDRSTRLEN];
8034 char state_str[PIM_MSDP_STATE_STRLEN];
8035 char timebuf[PIM_MSDP_UPTIME_STRLEN];
8036 int64_t now;
8037 json_object *json = NULL;
8038 json_object *json_row = NULL;
8039
8040
8041 if (uj) {
8042 json = json_object_new_object();
8043 } else {
8044 vty_out(vty,
8045 "Peer Local State Uptime SaCnt\n");
8046 }
8047
02a16316 8048 for (ALL_LIST_ELEMENTS_RO(pim->msdp.peer_list, mpnode, mp)) {
d62a17ae 8049 if (mp->state == PIM_MSDP_ESTABLISHED) {
8050 now = pim_time_monotonic_sec();
8051 pim_time_uptime(timebuf, sizeof(timebuf),
8052 now - mp->uptime);
8053 } else {
8054 strcpy(timebuf, "-");
8055 }
8056 pim_inet4_dump("<peer?>", mp->peer, peer_str, sizeof(peer_str));
8057 pim_inet4_dump("<local?>", mp->local, local_str,
8058 sizeof(local_str));
8059 pim_msdp_state_dump(mp->state, state_str, sizeof(state_str));
8060 if (uj) {
8061 json_row = json_object_new_object();
8062 json_object_string_add(json_row, "peer", peer_str);
8063 json_object_string_add(json_row, "local", local_str);
8064 json_object_string_add(json_row, "state", state_str);
8065 json_object_string_add(json_row, "upTime", timebuf);
8066 json_object_int_add(json_row, "saCount", mp->sa_cnt);
8067 json_object_object_add(json, peer_str, json_row);
8068 } else {
8069 vty_out(vty, "%-15s %15s %11s %8s %6d\n", peer_str,
8070 local_str, state_str, timebuf, mp->sa_cnt);
8071 }
8072 }
8073
8074 if (uj) {
9d303b37
DL
8075 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8076 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8077 json_object_free(json);
8078 }
8079}
8080
64c86530 8081static void ip_msdp_show_peers_detail(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8082 const char *peer, uint8_t uj)
d62a17ae 8083{
8084 struct listnode *mpnode;
8085 struct pim_msdp_peer *mp;
8086 char peer_str[INET_ADDRSTRLEN];
8087 char local_str[INET_ADDRSTRLEN];
8088 char state_str[PIM_MSDP_STATE_STRLEN];
8089 char timebuf[PIM_MSDP_UPTIME_STRLEN];
8090 char katimer[PIM_MSDP_TIMER_STRLEN];
8091 char crtimer[PIM_MSDP_TIMER_STRLEN];
8092 char holdtimer[PIM_MSDP_TIMER_STRLEN];
8093 int64_t now;
8094 json_object *json = NULL;
8095 json_object *json_row = NULL;
8096
8097 if (uj) {
8098 json = json_object_new_object();
8099 }
8100
02a16316 8101 for (ALL_LIST_ELEMENTS_RO(pim->msdp.peer_list, mpnode, mp)) {
d62a17ae 8102 pim_inet4_dump("<peer?>", mp->peer, peer_str, sizeof(peer_str));
8103 if (strcmp(peer, "detail") && strcmp(peer, peer_str))
8104 continue;
8105
8106 if (mp->state == PIM_MSDP_ESTABLISHED) {
8107 now = pim_time_monotonic_sec();
8108 pim_time_uptime(timebuf, sizeof(timebuf),
8109 now - mp->uptime);
8110 } else {
8111 strcpy(timebuf, "-");
8112 }
8113 pim_inet4_dump("<local?>", mp->local, local_str,
8114 sizeof(local_str));
8115 pim_msdp_state_dump(mp->state, state_str, sizeof(state_str));
8116 pim_time_timer_to_hhmmss(katimer, sizeof(katimer),
8117 mp->ka_timer);
8118 pim_time_timer_to_hhmmss(crtimer, sizeof(crtimer),
8119 mp->cr_timer);
8120 pim_time_timer_to_hhmmss(holdtimer, sizeof(holdtimer),
8121 mp->hold_timer);
8122
8123 if (uj) {
8124 json_row = json_object_new_object();
8125 json_object_string_add(json_row, "peer", peer_str);
8126 json_object_string_add(json_row, "local", local_str);
8127 json_object_string_add(json_row, "meshGroupName",
8128 mp->mesh_group_name);
8129 json_object_string_add(json_row, "state", state_str);
8130 json_object_string_add(json_row, "upTime", timebuf);
8131 json_object_string_add(json_row, "keepAliveTimer",
8132 katimer);
8133 json_object_string_add(json_row, "connRetryTimer",
8134 crtimer);
8135 json_object_string_add(json_row, "holdTimer",
8136 holdtimer);
8137 json_object_string_add(json_row, "lastReset",
8138 mp->last_reset);
8139 json_object_int_add(json_row, "connAttempts",
8140 mp->conn_attempts);
8141 json_object_int_add(json_row, "establishedChanges",
8142 mp->est_flaps);
8143 json_object_int_add(json_row, "saCount", mp->sa_cnt);
8144 json_object_int_add(json_row, "kaSent", mp->ka_tx_cnt);
8145 json_object_int_add(json_row, "kaRcvd", mp->ka_rx_cnt);
8146 json_object_int_add(json_row, "saSent", mp->sa_tx_cnt);
8147 json_object_int_add(json_row, "saRcvd", mp->sa_rx_cnt);
8148 json_object_object_add(json, peer_str, json_row);
8149 } else {
8150 vty_out(vty, "Peer : %s\n", peer_str);
8151 vty_out(vty, " Local : %s\n", local_str);
8152 vty_out(vty, " Mesh Group : %s\n",
8153 mp->mesh_group_name);
8154 vty_out(vty, " State : %s\n", state_str);
8155 vty_out(vty, " Uptime : %s\n", timebuf);
8156
8157 vty_out(vty, " Keepalive Timer : %s\n", katimer);
8158 vty_out(vty, " Conn Retry Timer : %s\n", crtimer);
8159 vty_out(vty, " Hold Timer : %s\n", holdtimer);
8160 vty_out(vty, " Last Reset : %s\n",
8161 mp->last_reset);
8162 vty_out(vty, " Conn Attempts : %d\n",
8163 mp->conn_attempts);
8164 vty_out(vty, " Established Changes : %d\n",
8165 mp->est_flaps);
8166 vty_out(vty, " SA Count : %d\n",
8167 mp->sa_cnt);
8168 vty_out(vty, " Statistics :\n");
8169 vty_out(vty,
8170 " Sent Rcvd\n");
8171 vty_out(vty, " Keepalives : %10d %10d\n",
8172 mp->ka_tx_cnt, mp->ka_rx_cnt);
8173 vty_out(vty, " SAs : %10d %10d\n",
8174 mp->sa_tx_cnt, mp->sa_rx_cnt);
8175 vty_out(vty, "\n");
8176 }
8177 }
8178
8179 if (uj) {
9d303b37
DL
8180 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8181 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8182 json_object_free(json);
8183 }
977d71cc 8184}
8185
8186DEFUN (show_ip_msdp_peer_detail,
8187 show_ip_msdp_peer_detail_cmd,
20a7e5fd 8188 "show ip msdp [vrf NAME] peer [detail|A.B.C.D] [json]",
2a333e0f 8189 SHOW_STR
8190 IP_STR
8191 MSDP_STR
f02d59db 8192 VRF_CMD_HELP_STR
2a333e0f 8193 "MSDP peer information\n"
977d71cc 8194 "Detailed output\n"
8195 "peer ip address\n"
f5da2cc2 8196 JSON_STR)
2a333e0f 8197{
d7c0a89a 8198 uint8_t uj = use_json(argc, argv);
c68ba0d7 8199 int idx = 2;
02a16316 8200 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
d62a17ae 8201
07a29355
QY
8202 if (!vrf)
8203 return CMD_WARNING;
8204
8205 char *arg = NULL;
8206
8207 if (argv_find(argv, argc, "detail", &idx))
8208 arg = argv[idx]->text;
8209 else if (argv_find(argv, argc, "A.B.C.D", &idx))
8210 arg = argv[idx]->arg;
8211
8212 if (arg)
64c86530 8213 ip_msdp_show_peers_detail(vrf->info, vty, argv[idx]->arg, uj);
d62a17ae 8214 else
64c86530 8215 ip_msdp_show_peers(vrf->info, vty, uj);
d62a17ae 8216
8217 return CMD_SUCCESS;
8218}
8219
a25de56b
DS
8220DEFUN (show_ip_msdp_peer_detail_vrf_all,
8221 show_ip_msdp_peer_detail_vrf_all_cmd,
8222 "show ip msdp vrf all peer [detail|A.B.C.D] [json]",
8223 SHOW_STR
8224 IP_STR
8225 MSDP_STR
8226 VRF_CMD_HELP_STR
8227 "MSDP peer information\n"
8228 "Detailed output\n"
8229 "peer ip address\n"
f5da2cc2 8230 JSON_STR)
a25de56b
DS
8231{
8232 int idx = 2;
d7c0a89a 8233 uint8_t uj = use_json(argc, argv);
a25de56b
DS
8234 struct vrf *vrf;
8235 bool first = true;
8236
8237 if (uj)
8238 vty_out(vty, "{ ");
a2addae8 8239 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
8240 if (uj) {
8241 if (!first)
8242 vty_out(vty, ", ");
8243 vty_out(vty, " \"%s\": ", vrf->name);
8244 first = false;
8245 } else
8246 vty_out(vty, "VRF: %s\n", vrf->name);
8247 if (argv_find(argv, argc, "detail", &idx)
8248 || argv_find(argv, argc, "A.B.C.D", &idx))
8249 ip_msdp_show_peers_detail(vrf->info, vty,
8250 argv[idx]->arg, uj);
8251 else
8252 ip_msdp_show_peers(vrf->info, vty, uj);
8253 }
8254 if (uj)
8255 vty_out(vty, "}\n");
8256
8257 return CMD_SUCCESS;
8258}
8259
64c86530 8260static void ip_msdp_show_sa(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8261 uint8_t uj)
d62a17ae 8262{
8263 struct listnode *sanode;
8264 struct pim_msdp_sa *sa;
8265 char src_str[INET_ADDRSTRLEN];
8266 char grp_str[INET_ADDRSTRLEN];
8267 char rp_str[INET_ADDRSTRLEN];
8268 char timebuf[PIM_MSDP_UPTIME_STRLEN];
8269 char spt_str[8];
8270 char local_str[8];
8271 int64_t now;
8272 json_object *json = NULL;
8273 json_object *json_group = NULL;
8274 json_object *json_row = NULL;
8275
8276 if (uj) {
8277 json = json_object_new_object();
8278 } else {
8279 vty_out(vty,
8280 "Source Group RP Local SPT Uptime\n");
8281 }
8282
02a16316 8283 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
d62a17ae 8284 now = pim_time_monotonic_sec();
8285 pim_time_uptime(timebuf, sizeof(timebuf), now - sa->uptime);
8286 pim_inet4_dump("<src?>", sa->sg.src, src_str, sizeof(src_str));
8287 pim_inet4_dump("<grp?>", sa->sg.grp, grp_str, sizeof(grp_str));
8288 if (sa->flags & PIM_MSDP_SAF_PEER) {
8289 pim_inet4_dump("<rp?>", sa->rp, rp_str, sizeof(rp_str));
8290 if (sa->up) {
8291 strcpy(spt_str, "yes");
8292 } else {
8293 strcpy(spt_str, "no");
8294 }
8295 } else {
8296 strcpy(rp_str, "-");
8297 strcpy(spt_str, "-");
8298 }
8299 if (sa->flags & PIM_MSDP_SAF_LOCAL) {
8300 strcpy(local_str, "yes");
8301 } else {
8302 strcpy(local_str, "no");
8303 }
8304 if (uj) {
8305 json_object_object_get_ex(json, grp_str, &json_group);
8306
8307 if (!json_group) {
8308 json_group = json_object_new_object();
8309 json_object_object_add(json, grp_str,
8310 json_group);
8311 }
8312
8313 json_row = json_object_new_object();
8314 json_object_string_add(json_row, "source", src_str);
8315 json_object_string_add(json_row, "group", grp_str);
8316 json_object_string_add(json_row, "rp", rp_str);
8317 json_object_string_add(json_row, "local", local_str);
8318 json_object_string_add(json_row, "sptSetup", spt_str);
8319 json_object_string_add(json_row, "upTime", timebuf);
8320 json_object_object_add(json_group, src_str, json_row);
8321 } else {
8322 vty_out(vty, "%-15s %15s %15s %5c %3c %8s\n",
8323 src_str, grp_str, rp_str, local_str[0],
8324 spt_str[0], timebuf);
8325 }
8326 }
8327
d62a17ae 8328 if (uj) {
9d303b37
DL
8329 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8330 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8331 json_object_free(json);
8332 }
8333}
8334
8335static void ip_msdp_show_sa_entry_detail(struct pim_msdp_sa *sa,
8336 const char *src_str,
8337 const char *grp_str, struct vty *vty,
d7c0a89a 8338 uint8_t uj, json_object *json)
d62a17ae 8339{
8340 char rp_str[INET_ADDRSTRLEN];
8341 char peer_str[INET_ADDRSTRLEN];
8342 char timebuf[PIM_MSDP_UPTIME_STRLEN];
8343 char spt_str[8];
8344 char local_str[8];
8345 char statetimer[PIM_MSDP_TIMER_STRLEN];
8346 int64_t now;
8347 json_object *json_group = NULL;
8348 json_object *json_row = NULL;
8349
8350 now = pim_time_monotonic_sec();
8351 pim_time_uptime(timebuf, sizeof(timebuf), now - sa->uptime);
8352 if (sa->flags & PIM_MSDP_SAF_PEER) {
8353 pim_inet4_dump("<rp?>", sa->rp, rp_str, sizeof(rp_str));
8354 pim_inet4_dump("<peer?>", sa->peer, peer_str, sizeof(peer_str));
8355 if (sa->up) {
8356 strcpy(spt_str, "yes");
8357 } else {
8358 strcpy(spt_str, "no");
8359 }
8360 } else {
8361 strcpy(rp_str, "-");
8362 strcpy(peer_str, "-");
8363 strcpy(spt_str, "-");
8364 }
8365 if (sa->flags & PIM_MSDP_SAF_LOCAL) {
8366 strcpy(local_str, "yes");
8367 } else {
8368 strcpy(local_str, "no");
8369 }
8370 pim_time_timer_to_hhmmss(statetimer, sizeof(statetimer),
8371 sa->sa_state_timer);
8372 if (uj) {
8373 json_object_object_get_ex(json, grp_str, &json_group);
8374
8375 if (!json_group) {
8376 json_group = json_object_new_object();
8377 json_object_object_add(json, grp_str, json_group);
8378 }
8379
8380 json_row = json_object_new_object();
8381 json_object_string_add(json_row, "source", src_str);
8382 json_object_string_add(json_row, "group", grp_str);
8383 json_object_string_add(json_row, "rp", rp_str);
8384 json_object_string_add(json_row, "local", local_str);
8385 json_object_string_add(json_row, "sptSetup", spt_str);
8386 json_object_string_add(json_row, "upTime", timebuf);
8387 json_object_string_add(json_row, "stateTimer", statetimer);
8388 json_object_object_add(json_group, src_str, json_row);
8389 } else {
8390 vty_out(vty, "SA : %s\n", sa->sg_str);
8391 vty_out(vty, " RP : %s\n", rp_str);
8392 vty_out(vty, " Peer : %s\n", peer_str);
8393 vty_out(vty, " Local : %s\n", local_str);
8394 vty_out(vty, " SPT Setup : %s\n", spt_str);
8395 vty_out(vty, " Uptime : %s\n", timebuf);
8396 vty_out(vty, " State Timer : %s\n", statetimer);
8397 vty_out(vty, "\n");
8398 }
8399}
8400
64c86530 8401static void ip_msdp_show_sa_detail(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8402 uint8_t uj)
d62a17ae 8403{
8404 struct listnode *sanode;
8405 struct pim_msdp_sa *sa;
8406 char src_str[INET_ADDRSTRLEN];
8407 char grp_str[INET_ADDRSTRLEN];
8408 json_object *json = NULL;
8409
8410 if (uj) {
8411 json = json_object_new_object();
8412 }
8413
02a16316 8414 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
d62a17ae 8415 pim_inet4_dump("<src?>", sa->sg.src, src_str, sizeof(src_str));
8416 pim_inet4_dump("<grp?>", sa->sg.grp, grp_str, sizeof(grp_str));
8417 ip_msdp_show_sa_entry_detail(sa, src_str, grp_str, vty, uj,
8418 json);
8419 }
8420
8421 if (uj) {
9d303b37
DL
8422 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8423 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8424 json_object_free(json);
8425 }
977d71cc 8426}
8427
8428DEFUN (show_ip_msdp_sa_detail,
8429 show_ip_msdp_sa_detail_cmd,
20a7e5fd 8430 "show ip msdp [vrf NAME] sa detail [json]",
3c72d654 8431 SHOW_STR
8432 IP_STR
8433 MSDP_STR
f02d59db 8434 VRF_CMD_HELP_STR
3c72d654 8435 "MSDP active-source information\n"
977d71cc 8436 "Detailed output\n"
f5da2cc2 8437 JSON_STR)
3c72d654 8438{
d7c0a89a 8439 uint8_t uj = use_json(argc, argv);
c68ba0d7 8440 int idx = 2;
02a16316
DS
8441 struct vrf *vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
8442
8443 if (!vrf)
8444 return CMD_WARNING;
8445
64c86530 8446 ip_msdp_show_sa_detail(vrf->info, vty, uj);
977d71cc 8447
d62a17ae 8448 return CMD_SUCCESS;
977d71cc 8449}
8450
a25de56b
DS
8451DEFUN (show_ip_msdp_sa_detail_vrf_all,
8452 show_ip_msdp_sa_detail_vrf_all_cmd,
8453 "show ip msdp vrf all sa detail [json]",
8454 SHOW_STR
8455 IP_STR
8456 MSDP_STR
8457 VRF_CMD_HELP_STR
8458 "MSDP active-source information\n"
8459 "Detailed output\n"
f5da2cc2 8460 JSON_STR)
a25de56b 8461{
d7c0a89a 8462 uint8_t uj = use_json(argc, argv);
a25de56b
DS
8463 struct vrf *vrf;
8464 bool first = true;
8465
8466 if (uj)
8467 vty_out(vty, "{ ");
a2addae8 8468 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
a25de56b
DS
8469 if (uj) {
8470 if (!first)
8471 vty_out(vty, ", ");
8472 vty_out(vty, " \"%s\": ", vrf->name);
8473 first = false;
8474 } else
8475 vty_out(vty, "VRF: %s\n", vrf->name);
8476 ip_msdp_show_sa_detail(vrf->info, vty, uj);
8477 }
8478 if (uj)
8479 vty_out(vty, "}\n");
8480
8481 return CMD_SUCCESS;
8482}
8483
64c86530 8484static void ip_msdp_show_sa_addr(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8485 const char *addr, uint8_t uj)
977d71cc 8486{
d62a17ae 8487 struct listnode *sanode;
8488 struct pim_msdp_sa *sa;
8489 char src_str[INET_ADDRSTRLEN];
8490 char grp_str[INET_ADDRSTRLEN];
8491 json_object *json = NULL;
977d71cc 8492
d62a17ae 8493 if (uj) {
8494 json = json_object_new_object();
8495 }
977d71cc 8496
02a16316 8497 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
d62a17ae 8498 pim_inet4_dump("<src?>", sa->sg.src, src_str, sizeof(src_str));
8499 pim_inet4_dump("<grp?>", sa->sg.grp, grp_str, sizeof(grp_str));
8500 if (!strcmp(addr, src_str) || !strcmp(addr, grp_str)) {
8501 ip_msdp_show_sa_entry_detail(sa, src_str, grp_str, vty,
8502 uj, json);
8503 }
8504 }
977d71cc 8505
d62a17ae 8506 if (uj) {
9d303b37
DL
8507 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8508 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8509 json_object_free(json);
8510 }
977d71cc 8511}
8512
64c86530 8513static void ip_msdp_show_sa_sg(struct pim_instance *pim, struct vty *vty,
d7c0a89a 8514 const char *src, const char *grp, uint8_t uj)
977d71cc 8515{
d62a17ae 8516 struct listnode *sanode;
8517 struct pim_msdp_sa *sa;
8518 char src_str[INET_ADDRSTRLEN];
8519 char grp_str[INET_ADDRSTRLEN];
8520 json_object *json = NULL;
977d71cc 8521
d62a17ae 8522 if (uj) {
8523 json = json_object_new_object();
8524 }
977d71cc 8525
02a16316 8526 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
d62a17ae 8527 pim_inet4_dump("<src?>", sa->sg.src, src_str, sizeof(src_str));
8528 pim_inet4_dump("<grp?>", sa->sg.grp, grp_str, sizeof(grp_str));
8529 if (!strcmp(src, src_str) && !strcmp(grp, grp_str)) {
8530 ip_msdp_show_sa_entry_detail(sa, src_str, grp_str, vty,
8531 uj, json);
8532 }
8533 }
977d71cc 8534
d62a17ae 8535 if (uj) {
9d303b37
DL
8536 vty_out(vty, "%s\n", json_object_to_json_string_ext(
8537 json, JSON_C_TO_STRING_PRETTY));
d62a17ae 8538 json_object_free(json);
8539 }
977d71cc 8540}
8541
8542DEFUN (show_ip_msdp_sa_sg,
8543 show_ip_msdp_sa_sg_cmd,
20a7e5fd 8544 "show ip msdp [vrf NAME] sa [A.B.C.D [A.B.C.D]] [json]",
977d71cc 8545 SHOW_STR
8546 IP_STR
8547 MSDP_STR
f02d59db 8548 VRF_CMD_HELP_STR
977d71cc 8549 "MSDP active-source information\n"
8550 "source or group ip\n"
a957a05b 8551 "group ip\n"
f5da2cc2 8552 JSON_STR)
977d71cc 8553{
d7c0a89a 8554 uint8_t uj = use_json(argc, argv);
02a16316 8555 struct vrf *vrf;
c68ba0d7 8556 int idx = 2;
02a16316
DS
8557
8558 vrf = pim_cmd_lookup_vrf(vty, argv, argc, &idx);
8559
8560 if (!vrf)
8561 return CMD_WARNING;
8562
d62a17ae 8563 char *src_ip = argv_find(argv, argc, "A.B.C.D", &idx) ? argv[idx++]->arg
8564 : NULL;
8565 char *grp_ip = idx < argc && argv_find(argv, argc, "A.B.C.D", &idx)
8566 ? argv[idx]->arg
8567 : NULL;
9ea49d61 8568
d62a17ae 8569 if (src_ip && grp_ip)
64c86530 8570 ip_msdp_show_sa_sg(vrf->info, vty, src_ip, grp_ip, uj);
d62a17ae 8571 else if (src_ip)
64c86530 8572 ip_msdp_show_sa_addr(vrf->info, vty, src_ip, uj);
d62a17ae 8573 else
64c86530 8574 ip_msdp_show_sa(vrf->info, vty, uj);
3c72d654 8575
d62a17ae 8576 return CMD_SUCCESS;
3c72d654 8577}
8578
47bf9e21
DS
8579DEFUN (show_ip_msdp_sa_sg_vrf_all,
8580 show_ip_msdp_sa_sg_vrf_all_cmd,
8581 "show ip msdp vrf all sa [A.B.C.D [A.B.C.D]] [json]",
8582 SHOW_STR
8583 IP_STR
8584 MSDP_STR
8585 VRF_CMD_HELP_STR
8586 "MSDP active-source information\n"
8587 "source or group ip\n"
8588 "group ip\n"
8589 JSON_STR)
8590{
d7c0a89a 8591 uint8_t uj = use_json(argc, argv);
47bf9e21
DS
8592 struct vrf *vrf;
8593 bool first = true;
8594 int idx = 2;
8595
8596 char *src_ip = argv_find(argv, argc, "A.B.C.D", &idx) ? argv[idx++]->arg
996c9314 8597 : NULL;
47bf9e21 8598 char *grp_ip = idx < argc && argv_find(argv, argc, "A.B.C.D", &idx)
996c9314
LB
8599 ? argv[idx]->arg
8600 : NULL;
47bf9e21
DS
8601
8602 if (uj)
8603 vty_out(vty, "{ ");
a2addae8 8604 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
47bf9e21
DS
8605 if (uj) {
8606 if (!first)
8607 vty_out(vty, ", ");
8608 vty_out(vty, " \"%s\": ", vrf->name);
8609 first = false;
8610 } else
8611 vty_out(vty, "VRF: %s\n", vrf->name);
8612
8613 if (src_ip && grp_ip)
8614 ip_msdp_show_sa_sg(vrf->info, vty, src_ip, grp_ip, uj);
8615 else if (src_ip)
8616 ip_msdp_show_sa_addr(vrf->info, vty, src_ip, uj);
8617 else
8618 ip_msdp_show_sa(vrf->info, vty, uj);
8619 }
8620 if (uj)
8621 vty_out(vty, "}\n");
8622
8623 return CMD_SUCCESS;
8624}
8625
8626
c68ba0d7 8627void pim_cmd_init(void)
12e41d03 8628{
d62a17ae 8629 install_node(&interface_node,
8630 pim_interface_config_write); /* INTERFACE_NODE */
8631 if_cmd_init();
8632
8633 install_node(&debug_node, pim_debug_config_write);
8634
8635 install_element(CONFIG_NODE, &ip_multicast_routing_cmd);
8636 install_element(CONFIG_NODE, &no_ip_multicast_routing_cmd);
8637 install_element(CONFIG_NODE, &ip_pim_rp_cmd);
9ecb7b77 8638 install_element(VRF_NODE, &ip_pim_rp_cmd);
d62a17ae 8639 install_element(CONFIG_NODE, &no_ip_pim_rp_cmd);
9ecb7b77 8640 install_element(VRF_NODE, &no_ip_pim_rp_cmd);
d62a17ae 8641 install_element(CONFIG_NODE, &ip_pim_rp_prefix_list_cmd);
4f9f3925 8642 install_element(VRF_NODE, &ip_pim_rp_prefix_list_cmd);
d62a17ae 8643 install_element(CONFIG_NODE, &no_ip_pim_rp_prefix_list_cmd);
4f9f3925 8644 install_element(VRF_NODE, &no_ip_pim_rp_prefix_list_cmd);
d62a17ae 8645 install_element(CONFIG_NODE, &no_ip_pim_ssm_prefix_list_cmd);
4f9f3925 8646 install_element(VRF_NODE, &no_ip_pim_ssm_prefix_list_cmd);
d62a17ae 8647 install_element(CONFIG_NODE, &no_ip_pim_ssm_prefix_list_name_cmd);
4f9f3925 8648 install_element(VRF_NODE, &no_ip_pim_ssm_prefix_list_name_cmd);
d62a17ae 8649 install_element(CONFIG_NODE, &ip_pim_ssm_prefix_list_cmd);
4f9f3925 8650 install_element(VRF_NODE, &ip_pim_ssm_prefix_list_cmd);
d62a17ae 8651 install_element(CONFIG_NODE, &ip_pim_register_suppress_cmd);
4f9f3925 8652 install_element(VRF_NODE, &ip_pim_register_suppress_cmd);
d62a17ae 8653 install_element(CONFIG_NODE, &no_ip_pim_register_suppress_cmd);
4f9f3925 8654 install_element(VRF_NODE, &no_ip_pim_register_suppress_cmd);
d62a17ae 8655 install_element(CONFIG_NODE, &ip_pim_spt_switchover_infinity_cmd);
4f9f3925 8656 install_element(VRF_NODE, &ip_pim_spt_switchover_infinity_cmd);
d62a17ae 8657 install_element(CONFIG_NODE, &ip_pim_spt_switchover_infinity_plist_cmd);
4f9f3925 8658 install_element(VRF_NODE, &ip_pim_spt_switchover_infinity_plist_cmd);
d62a17ae 8659 install_element(CONFIG_NODE, &no_ip_pim_spt_switchover_infinity_cmd);
4f9f3925 8660 install_element(VRF_NODE, &no_ip_pim_spt_switchover_infinity_cmd);
d62a17ae 8661 install_element(CONFIG_NODE,
8662 &no_ip_pim_spt_switchover_infinity_plist_cmd);
4f9f3925 8663 install_element(VRF_NODE, &no_ip_pim_spt_switchover_infinity_plist_cmd);
d62a17ae 8664 install_element(CONFIG_NODE, &ip_pim_joinprune_time_cmd);
4f9f3925 8665 install_element(VRF_NODE, &ip_pim_joinprune_time_cmd);
d62a17ae 8666 install_element(CONFIG_NODE, &no_ip_pim_joinprune_time_cmd);
4f9f3925 8667 install_element(VRF_NODE, &no_ip_pim_joinprune_time_cmd);
d62a17ae 8668 install_element(CONFIG_NODE, &ip_pim_keep_alive_cmd);
4f9f3925 8669 install_element(VRF_NODE, &ip_pim_keep_alive_cmd);
cc14df13
DS
8670 install_element(CONFIG_NODE, &ip_pim_rp_keep_alive_cmd);
8671 install_element(VRF_NODE, &ip_pim_rp_keep_alive_cmd);
d62a17ae 8672 install_element(CONFIG_NODE, &no_ip_pim_keep_alive_cmd);
4f9f3925 8673 install_element(VRF_NODE, &no_ip_pim_keep_alive_cmd);
cc14df13
DS
8674 install_element(CONFIG_NODE, &no_ip_pim_rp_keep_alive_cmd);
8675 install_element(VRF_NODE, &no_ip_pim_rp_keep_alive_cmd);
d62a17ae 8676 install_element(CONFIG_NODE, &ip_pim_packets_cmd);
4f9f3925 8677 install_element(VRF_NODE, &ip_pim_packets_cmd);
d62a17ae 8678 install_element(CONFIG_NODE, &no_ip_pim_packets_cmd);
4f9f3925 8679 install_element(VRF_NODE, &no_ip_pim_packets_cmd);
d62a17ae 8680 install_element(CONFIG_NODE, &ip_pim_v6_secondary_cmd);
4f9f3925 8681 install_element(VRF_NODE, &ip_pim_v6_secondary_cmd);
d62a17ae 8682 install_element(CONFIG_NODE, &no_ip_pim_v6_secondary_cmd);
4f9f3925 8683 install_element(VRF_NODE, &no_ip_pim_v6_secondary_cmd);
d62a17ae 8684 install_element(CONFIG_NODE, &ip_ssmpingd_cmd);
4f9f3925 8685 install_element(VRF_NODE, &ip_ssmpingd_cmd);
d62a17ae 8686 install_element(CONFIG_NODE, &no_ip_ssmpingd_cmd);
4f9f3925 8687 install_element(VRF_NODE, &no_ip_ssmpingd_cmd);
d62a17ae 8688 install_element(CONFIG_NODE, &ip_msdp_peer_cmd);
4f9f3925 8689 install_element(VRF_NODE, &ip_msdp_peer_cmd);
d62a17ae 8690 install_element(CONFIG_NODE, &no_ip_msdp_peer_cmd);
4f9f3925 8691 install_element(VRF_NODE, &no_ip_msdp_peer_cmd);
d62a17ae 8692 install_element(CONFIG_NODE, &ip_pim_ecmp_cmd);
4f9f3925 8693 install_element(VRF_NODE, &ip_pim_ecmp_cmd);
d62a17ae 8694 install_element(CONFIG_NODE, &no_ip_pim_ecmp_cmd);
4f9f3925 8695 install_element(VRF_NODE, &no_ip_pim_ecmp_cmd);
d62a17ae 8696 install_element(CONFIG_NODE, &ip_pim_ecmp_rebalance_cmd);
4f9f3925 8697 install_element(VRF_NODE, &ip_pim_ecmp_rebalance_cmd);
d62a17ae 8698 install_element(CONFIG_NODE, &no_ip_pim_ecmp_rebalance_cmd);
4f9f3925 8699 install_element(VRF_NODE, &no_ip_pim_ecmp_rebalance_cmd);
d62a17ae 8700
8701 install_element(INTERFACE_NODE, &interface_ip_igmp_cmd);
8702 install_element(INTERFACE_NODE, &interface_no_ip_igmp_cmd);
8703 install_element(INTERFACE_NODE, &interface_ip_igmp_join_cmd);
8704 install_element(INTERFACE_NODE, &interface_no_ip_igmp_join_cmd);
8705 install_element(INTERFACE_NODE, &interface_ip_igmp_version_cmd);
8706 install_element(INTERFACE_NODE, &interface_no_ip_igmp_version_cmd);
8707 install_element(INTERFACE_NODE, &interface_ip_igmp_query_interval_cmd);
8708 install_element(INTERFACE_NODE,
8709 &interface_no_ip_igmp_query_interval_cmd);
8710 install_element(INTERFACE_NODE,
8711 &interface_ip_igmp_query_max_response_time_cmd);
8712 install_element(INTERFACE_NODE,
8713 &interface_no_ip_igmp_query_max_response_time_cmd);
8714 install_element(INTERFACE_NODE,
8715 &interface_ip_igmp_query_max_response_time_dsec_cmd);
8716 install_element(INTERFACE_NODE,
8717 &interface_no_ip_igmp_query_max_response_time_dsec_cmd);
8718 install_element(INTERFACE_NODE, &interface_ip_pim_ssm_cmd);
8719 install_element(INTERFACE_NODE, &interface_no_ip_pim_ssm_cmd);
8720 install_element(INTERFACE_NODE, &interface_ip_pim_sm_cmd);
8721 install_element(INTERFACE_NODE, &interface_no_ip_pim_sm_cmd);
8722 install_element(INTERFACE_NODE, &interface_ip_pim_drprio_cmd);
8723 install_element(INTERFACE_NODE, &interface_no_ip_pim_drprio_cmd);
8724 install_element(INTERFACE_NODE, &interface_ip_pim_hello_cmd);
8725 install_element(INTERFACE_NODE, &interface_no_ip_pim_hello_cmd);
b0f525a8
QY
8726 install_element(INTERFACE_NODE, &interface_ip_pim_boundary_oil_cmd);
8727 install_element(INTERFACE_NODE, &interface_no_ip_pim_boundary_oil_cmd);
d62a17ae 8728
8729 // Static mroutes NEB
8730 install_element(INTERFACE_NODE, &interface_ip_mroute_cmd);
8731 install_element(INTERFACE_NODE, &interface_ip_mroute_source_cmd);
8732 install_element(INTERFACE_NODE, &interface_no_ip_mroute_cmd);
8733 install_element(INTERFACE_NODE, &interface_no_ip_mroute_source_cmd);
8734
8735 install_element(VIEW_NODE, &show_ip_igmp_interface_cmd);
a25de56b 8736 install_element(VIEW_NODE, &show_ip_igmp_interface_vrf_all_cmd);
d62a17ae 8737 install_element(VIEW_NODE, &show_ip_igmp_join_cmd);
a25de56b 8738 install_element(VIEW_NODE, &show_ip_igmp_join_vrf_all_cmd);
d62a17ae 8739 install_element(VIEW_NODE, &show_ip_igmp_groups_cmd);
a25de56b 8740 install_element(VIEW_NODE, &show_ip_igmp_groups_vrf_all_cmd);
d62a17ae 8741 install_element(VIEW_NODE, &show_ip_igmp_groups_retransmissions_cmd);
8742 install_element(VIEW_NODE, &show_ip_igmp_sources_cmd);
8743 install_element(VIEW_NODE, &show_ip_igmp_sources_retransmissions_cmd);
21313cbf 8744 install_element(VIEW_NODE, &show_ip_igmp_statistics_cmd);
d62a17ae 8745 install_element(VIEW_NODE, &show_ip_pim_assert_cmd);
8746 install_element(VIEW_NODE, &show_ip_pim_assert_internal_cmd);
8747 install_element(VIEW_NODE, &show_ip_pim_assert_metric_cmd);
8748 install_element(VIEW_NODE, &show_ip_pim_assert_winner_metric_cmd);
8749 install_element(VIEW_NODE, &show_ip_pim_interface_traffic_cmd);
8750 install_element(VIEW_NODE, &show_ip_pim_interface_cmd);
a25de56b 8751 install_element(VIEW_NODE, &show_ip_pim_interface_vrf_all_cmd);
d62a17ae 8752 install_element(VIEW_NODE, &show_ip_pim_join_cmd);
a25de56b 8753 install_element(VIEW_NODE, &show_ip_pim_join_vrf_all_cmd);
d62a17ae 8754 install_element(VIEW_NODE, &show_ip_pim_local_membership_cmd);
8755 install_element(VIEW_NODE, &show_ip_pim_neighbor_cmd);
a25de56b 8756 install_element(VIEW_NODE, &show_ip_pim_neighbor_vrf_all_cmd);
d62a17ae 8757 install_element(VIEW_NODE, &show_ip_pim_rpf_cmd);
a25de56b 8758 install_element(VIEW_NODE, &show_ip_pim_rpf_vrf_all_cmd);
d62a17ae 8759 install_element(VIEW_NODE, &show_ip_pim_secondary_cmd);
8760 install_element(VIEW_NODE, &show_ip_pim_state_cmd);
a25de56b 8761 install_element(VIEW_NODE, &show_ip_pim_state_vrf_all_cmd);
d62a17ae 8762 install_element(VIEW_NODE, &show_ip_pim_upstream_cmd);
a25de56b 8763 install_element(VIEW_NODE, &show_ip_pim_upstream_vrf_all_cmd);
d62a17ae 8764 install_element(VIEW_NODE, &show_ip_pim_upstream_join_desired_cmd);
8765 install_element(VIEW_NODE, &show_ip_pim_upstream_rpf_cmd);
8766 install_element(VIEW_NODE, &show_ip_pim_rp_cmd);
a25de56b 8767 install_element(VIEW_NODE, &show_ip_pim_rp_vrf_all_cmd);
d62a17ae 8768 install_element(VIEW_NODE, &show_ip_multicast_cmd);
a25de56b 8769 install_element(VIEW_NODE, &show_ip_multicast_vrf_all_cmd);
d62a17ae 8770 install_element(VIEW_NODE, &show_ip_mroute_cmd);
b283a4ca 8771 install_element(VIEW_NODE, &show_ip_mroute_vrf_all_cmd);
d62a17ae 8772 install_element(VIEW_NODE, &show_ip_mroute_count_cmd);
5c3aac90 8773 install_element(VIEW_NODE, &show_ip_mroute_count_vrf_all_cmd);
d62a17ae 8774 install_element(VIEW_NODE, &show_ip_rib_cmd);
8775 install_element(VIEW_NODE, &show_ip_ssmpingd_cmd);
8776 install_element(VIEW_NODE, &show_debugging_pim_cmd);
8777 install_element(VIEW_NODE, &show_ip_pim_nexthop_cmd);
8778 install_element(VIEW_NODE, &show_ip_pim_nexthop_lookup_cmd);
8779
8780 install_element(ENABLE_NODE, &clear_ip_interfaces_cmd);
8781 install_element(ENABLE_NODE, &clear_ip_igmp_interfaces_cmd);
8782 install_element(ENABLE_NODE, &clear_ip_mroute_cmd);
8783 install_element(ENABLE_NODE, &clear_ip_pim_interfaces_cmd);
8784 install_element(ENABLE_NODE, &clear_ip_pim_interface_traffic_cmd);
8785 install_element(ENABLE_NODE, &clear_ip_pim_oil_cmd);
8786
8787 install_element(ENABLE_NODE, &debug_igmp_cmd);
8788 install_element(ENABLE_NODE, &no_debug_igmp_cmd);
8789 install_element(ENABLE_NODE, &debug_igmp_events_cmd);
8790 install_element(ENABLE_NODE, &no_debug_igmp_events_cmd);
8791 install_element(ENABLE_NODE, &debug_igmp_packets_cmd);
8792 install_element(ENABLE_NODE, &no_debug_igmp_packets_cmd);
8793 install_element(ENABLE_NODE, &debug_igmp_trace_cmd);
8794 install_element(ENABLE_NODE, &no_debug_igmp_trace_cmd);
8795 install_element(ENABLE_NODE, &debug_mroute_cmd);
8796 install_element(ENABLE_NODE, &debug_mroute_detail_cmd);
8797 install_element(ENABLE_NODE, &no_debug_mroute_cmd);
8798 install_element(ENABLE_NODE, &no_debug_mroute_detail_cmd);
8799 install_element(ENABLE_NODE, &debug_static_cmd);
8800 install_element(ENABLE_NODE, &no_debug_static_cmd);
8801 install_element(ENABLE_NODE, &debug_pim_cmd);
8802 install_element(ENABLE_NODE, &no_debug_pim_cmd);
40f1f31b
DS
8803 install_element(ENABLE_NODE, &debug_pim_nht_cmd);
8804 install_element(ENABLE_NODE, &no_debug_pim_nht_cmd);
3d225d48
DS
8805 install_element(ENABLE_NODE, &debug_pim_nht_rp_cmd);
8806 install_element(ENABLE_NODE, &no_debug_pim_nht_rp_cmd);
d62a17ae 8807 install_element(ENABLE_NODE, &debug_pim_events_cmd);
8808 install_element(ENABLE_NODE, &no_debug_pim_events_cmd);
8809 install_element(ENABLE_NODE, &debug_pim_packets_cmd);
8810 install_element(ENABLE_NODE, &no_debug_pim_packets_cmd);
8811 install_element(ENABLE_NODE, &debug_pim_packetdump_send_cmd);
8812 install_element(ENABLE_NODE, &no_debug_pim_packetdump_send_cmd);
8813 install_element(ENABLE_NODE, &debug_pim_packetdump_recv_cmd);
8814 install_element(ENABLE_NODE, &no_debug_pim_packetdump_recv_cmd);
8815 install_element(ENABLE_NODE, &debug_pim_trace_cmd);
8816 install_element(ENABLE_NODE, &no_debug_pim_trace_cmd);
56c238c9
DS
8817 install_element(ENABLE_NODE, &debug_pim_trace_detail_cmd);
8818 install_element(ENABLE_NODE, &no_debug_pim_trace_detail_cmd);
d62a17ae 8819 install_element(ENABLE_NODE, &debug_ssmpingd_cmd);
8820 install_element(ENABLE_NODE, &no_debug_ssmpingd_cmd);
8821 install_element(ENABLE_NODE, &debug_pim_zebra_cmd);
8822 install_element(ENABLE_NODE, &no_debug_pim_zebra_cmd);
8823 install_element(ENABLE_NODE, &debug_msdp_cmd);
8824 install_element(ENABLE_NODE, &no_debug_msdp_cmd);
8825 install_element(ENABLE_NODE, &undebug_msdp_cmd);
8826 install_element(ENABLE_NODE, &debug_msdp_events_cmd);
8827 install_element(ENABLE_NODE, &no_debug_msdp_events_cmd);
8828 install_element(ENABLE_NODE, &undebug_msdp_events_cmd);
8829 install_element(ENABLE_NODE, &debug_msdp_packets_cmd);
8830 install_element(ENABLE_NODE, &no_debug_msdp_packets_cmd);
8831 install_element(ENABLE_NODE, &undebug_msdp_packets_cmd);
4d9ad5dc
MS
8832 install_element(ENABLE_NODE, &debug_mtrace_cmd);
8833 install_element(ENABLE_NODE, &no_debug_mtrace_cmd);
d62a17ae 8834
8835 install_element(CONFIG_NODE, &debug_igmp_cmd);
8836 install_element(CONFIG_NODE, &no_debug_igmp_cmd);
8837 install_element(CONFIG_NODE, &debug_igmp_events_cmd);
8838 install_element(CONFIG_NODE, &no_debug_igmp_events_cmd);
8839 install_element(CONFIG_NODE, &debug_igmp_packets_cmd);
8840 install_element(CONFIG_NODE, &no_debug_igmp_packets_cmd);
8841 install_element(CONFIG_NODE, &debug_igmp_trace_cmd);
8842 install_element(CONFIG_NODE, &no_debug_igmp_trace_cmd);
8843 install_element(CONFIG_NODE, &debug_mroute_cmd);
8844 install_element(CONFIG_NODE, &debug_mroute_detail_cmd);
8845 install_element(CONFIG_NODE, &no_debug_mroute_cmd);
8846 install_element(CONFIG_NODE, &no_debug_mroute_detail_cmd);
8847 install_element(CONFIG_NODE, &debug_static_cmd);
8848 install_element(CONFIG_NODE, &no_debug_static_cmd);
8849 install_element(CONFIG_NODE, &debug_pim_cmd);
8850 install_element(CONFIG_NODE, &no_debug_pim_cmd);
40f1f31b
DS
8851 install_element(CONFIG_NODE, &debug_pim_nht_cmd);
8852 install_element(CONFIG_NODE, &no_debug_pim_nht_cmd);
3d225d48
DS
8853 install_element(CONFIG_NODE, &debug_pim_nht_rp_cmd);
8854 install_element(CONFIG_NODE, &no_debug_pim_nht_rp_cmd);
d62a17ae 8855 install_element(CONFIG_NODE, &debug_pim_events_cmd);
8856 install_element(CONFIG_NODE, &no_debug_pim_events_cmd);
8857 install_element(CONFIG_NODE, &debug_pim_packets_cmd);
8858 install_element(CONFIG_NODE, &no_debug_pim_packets_cmd);
8859 install_element(CONFIG_NODE, &debug_pim_trace_cmd);
8860 install_element(CONFIG_NODE, &no_debug_pim_trace_cmd);
56c238c9
DS
8861 install_element(CONFIG_NODE, &debug_pim_trace_detail_cmd);
8862 install_element(CONFIG_NODE, &no_debug_pim_trace_detail_cmd);
d62a17ae 8863 install_element(CONFIG_NODE, &debug_ssmpingd_cmd);
8864 install_element(CONFIG_NODE, &no_debug_ssmpingd_cmd);
8865 install_element(CONFIG_NODE, &debug_pim_zebra_cmd);
8866 install_element(CONFIG_NODE, &no_debug_pim_zebra_cmd);
8867 install_element(CONFIG_NODE, &debug_msdp_cmd);
8868 install_element(CONFIG_NODE, &no_debug_msdp_cmd);
8869 install_element(CONFIG_NODE, &undebug_msdp_cmd);
8870 install_element(CONFIG_NODE, &debug_msdp_events_cmd);
8871 install_element(CONFIG_NODE, &no_debug_msdp_events_cmd);
8872 install_element(CONFIG_NODE, &undebug_msdp_events_cmd);
8873 install_element(CONFIG_NODE, &debug_msdp_packets_cmd);
8874 install_element(CONFIG_NODE, &no_debug_msdp_packets_cmd);
8875 install_element(CONFIG_NODE, &undebug_msdp_packets_cmd);
4d9ad5dc
MS
8876 install_element(CONFIG_NODE, &debug_mtrace_cmd);
8877 install_element(CONFIG_NODE, &no_debug_mtrace_cmd);
02a16316 8878
d62a17ae 8879 install_element(CONFIG_NODE, &ip_msdp_mesh_group_member_cmd);
02a16316 8880 install_element(VRF_NODE, &ip_msdp_mesh_group_member_cmd);
d62a17ae 8881 install_element(CONFIG_NODE, &no_ip_msdp_mesh_group_member_cmd);
1b973cb7 8882 install_element(VRF_NODE, &no_ip_msdp_mesh_group_member_cmd);
d62a17ae 8883 install_element(CONFIG_NODE, &ip_msdp_mesh_group_source_cmd);
02a16316 8884 install_element(VRF_NODE, &ip_msdp_mesh_group_source_cmd);
d62a17ae 8885 install_element(CONFIG_NODE, &no_ip_msdp_mesh_group_source_cmd);
02a16316 8886 install_element(VRF_NODE, &no_ip_msdp_mesh_group_source_cmd);
d62a17ae 8887 install_element(VIEW_NODE, &show_ip_msdp_peer_detail_cmd);
a25de56b 8888 install_element(VIEW_NODE, &show_ip_msdp_peer_detail_vrf_all_cmd);
d62a17ae 8889 install_element(VIEW_NODE, &show_ip_msdp_sa_detail_cmd);
a25de56b 8890 install_element(VIEW_NODE, &show_ip_msdp_sa_detail_vrf_all_cmd);
d62a17ae 8891 install_element(VIEW_NODE, &show_ip_msdp_sa_sg_cmd);
47bf9e21 8892 install_element(VIEW_NODE, &show_ip_msdp_sa_sg_vrf_all_cmd);
d62a17ae 8893 install_element(VIEW_NODE, &show_ip_msdp_mesh_group_cmd);
a25de56b 8894 install_element(VIEW_NODE, &show_ip_msdp_mesh_group_vrf_all_cmd);
d62a17ae 8895 install_element(VIEW_NODE, &show_ip_pim_ssm_range_cmd);
8896 install_element(VIEW_NODE, &show_ip_pim_group_type_cmd);
8897 install_element(INTERFACE_NODE, &interface_pim_use_source_cmd);
8898 install_element(INTERFACE_NODE, &interface_no_pim_use_source_cmd);
8899 /* Install BFD command */
8900 install_element(INTERFACE_NODE, &ip_pim_bfd_cmd);
8901 install_element(INTERFACE_NODE, &ip_pim_bfd_param_cmd);
8902 install_element(INTERFACE_NODE, &no_ip_pim_bfd_cmd);
8903 install_element(INTERFACE_NODE, &no_ip_pim_bfd_param_cmd);
12e41d03 8904}