]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/debug.c
lib: enforce vrf_name_to_id by returning default_vrf when name is null
[mirror_frr.git] / zebra / debug.c
index fc2cd44e5f125cbf4ec40d55a40f8f1f9cdbaaac..0eb06d7f25919fb5586ee592ba44ff46e27d11fd 100644 (file)
@@ -32,13 +32,17 @@ unsigned long zebra_debug_fpm;
 unsigned long zebra_debug_nht;
 unsigned long zebra_debug_mpls;
 unsigned long zebra_debug_vxlan;
+unsigned long zebra_debug_pw;
+unsigned long zebra_debug_dplane;
 
-DEFUN (show_debugging_zebra,
-       show_debugging_zebra_cmd,
-       "show debugging zebra",
-       SHOW_STR
-       "Debugging information\n"
-       "Zebra configuration\n")
+DEFINE_HOOK(zebra_debug_show_debugging, (struct vty *vty), (vty));
+
+DEFUN_NOSH (show_debugging_zebra,
+           show_debugging_zebra_cmd,
+           "show debugging [zebra]",
+           SHOW_STR
+           "Debugging information\n"
+           "Zebra configuration\n")
 {
        vty_out(vty, "Zebra debugging status:\n");
 
@@ -71,10 +75,10 @@ DEFUN (show_debugging_zebra,
                        "  Zebra kernel netlink message dumps (recv) are on\n");
 
        /* Check here using flags as the 'macro' does an OR */
-       if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB))
-               vty_out(vty, "  Zebra RIB debugging is on\n");
        if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB_DETAILED))
                vty_out(vty, "  Zebra RIB detailed debugging is on\n");
+       else if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB))
+               vty_out(vty, "  Zebra RIB debugging is on\n");
 
        if (IS_ZEBRA_DEBUG_FPM)
                vty_out(vty, "  Zebra FPM debugging is on\n");
@@ -82,7 +86,16 @@ DEFUN (show_debugging_zebra,
                vty_out(vty, "  Zebra next-hop tracking debugging is on\n");
        if (IS_ZEBRA_DEBUG_MPLS)
                vty_out(vty, "  Zebra MPLS debugging is on\n");
-
+       if (IS_ZEBRA_DEBUG_VXLAN)
+               vty_out(vty, "  Zebra VXLAN debugging is on\n");
+       if (IS_ZEBRA_DEBUG_PW)
+               vty_out(vty, "  Zebra pseudowire debugging is on\n");
+       if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
+               vty_out(vty, "  Zebra detailed dataplane debugging is on\n");
+       else if (IS_ZEBRA_DEBUG_DPLANE)
+               vty_out(vty, "  Zebra dataplane debugging is on\n");
+
+       hook_call(zebra_debug_show_debugging, vty);
        return CMD_SUCCESS;
 }
 
@@ -94,7 +107,7 @@ DEFUN (debug_zebra_events,
        "Debug option set for zebra events\n")
 {
        zebra_debug_event = ZEBRA_DEBUG_EVENT;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 DEFUN (debug_zebra_nht,
@@ -105,7 +118,7 @@ DEFUN (debug_zebra_nht,
        "Debug option set for zebra next hop tracking\n")
 {
        zebra_debug_nht = ZEBRA_DEBUG_NHT;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 DEFUN (debug_zebra_mpls,
@@ -116,7 +129,7 @@ DEFUN (debug_zebra_mpls,
        "Debug option set for zebra MPLS LSPs\n")
 {
        zebra_debug_mpls = ZEBRA_DEBUG_MPLS;
-       return CMD_WARNING_CONFIG_FAILED;
+       return CMD_SUCCESS;
 }
 
 DEFUN (debug_zebra_vxlan,
@@ -127,7 +140,22 @@ DEFUN (debug_zebra_vxlan,
        "Debug option set for zebra VxLAN (EVPN)\n")
 {
        zebra_debug_vxlan = ZEBRA_DEBUG_VXLAN;
-       return CMD_WARNING;
+       return CMD_SUCCESS;
+}
+
+DEFUN (debug_zebra_pw,
+       debug_zebra_pw_cmd,
+       "[no] debug zebra pseudowires",
+       NO_STR
+       DEBUG_STR
+       "Zebra configuration\n"
+       "Debug option set for zebra pseudowires\n")
+{
+       if (strmatch(argv[0]->text, "no"))
+               UNSET_FLAG(zebra_debug_pw, ZEBRA_DEBUG_PW);
+       else
+               SET_FLAG(zebra_debug_pw, ZEBRA_DEBUG_PW);
+       return CMD_SUCCESS;
 }
 
 DEFUN (debug_zebra_packet,
@@ -154,6 +182,7 @@ DEFUN (debug_zebra_packet,
 
        if (argv_find(argv, argc, "detail", &idx))
                SET_FLAG(zebra_debug_packet, ZEBRA_DEBUG_DETAIL);
+
        return CMD_SUCCESS;
 }
 
@@ -165,6 +194,13 @@ DEFUN (debug_zebra_kernel,
        "Debug option set for zebra between kernel interface\n")
 {
        SET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL);
+
+       if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV)
+               UNSET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV);
+
+       if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND)
+               UNSET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND);
+
        return CMD_SUCCESS;
 }
 
@@ -179,34 +215,43 @@ DEFUN (debug_zebra_kernel_msgdump,
        "Dump raw netlink messages sent\n")
 {
        int idx = 0;
-       if (argc == 4 || argv_find(argv, argc, "recv", &idx))
+
+       if (argv_find(argv, argc, "recv", &idx)) {
+               SET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV);
+
+               if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND)
+                       UNSET_FLAG(zebra_debug_kernel,
+                                  ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND);
+
+       } else if (argv_find(argv, argc, "send", &idx)) {
+               SET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND);
+
+               if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV)
+                       UNSET_FLAG(zebra_debug_kernel,
+                                  ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV);
+
+       } else {
                SET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV);
-       if (argc == 4 || argv_find(argv, argc, "send", &idx))
                SET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND);
+       }
 
        return CMD_SUCCESS;
 }
 
 DEFUN (debug_zebra_rib,
        debug_zebra_rib_cmd,
-       "debug zebra rib",
-       DEBUG_STR
-       "Zebra configuration\n"
-       "Debug RIB events\n")
-{
-       SET_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB);
-       return CMD_SUCCESS;
-}
-
-DEFUN (debug_zebra_rib_detailed,
-       debug_zebra_rib_detailed_cmd,
-       "debug zebra rib detailed",
+       "debug zebra rib [detailed]",
        DEBUG_STR
        "Zebra configuration\n"
        "Debug RIB events\n"
        "Detailed debugs\n")
 {
-       SET_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB_DETAILED);
+       int idx = 0;
+       SET_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB);
+
+       if (argv_find(argv, argc, "detailed", &idx))
+               SET_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB_DETAILED);
+
        return CMD_SUCCESS;
 }
 
@@ -221,6 +266,24 @@ DEFUN (debug_zebra_fpm,
        return CMD_SUCCESS;
 }
 
+DEFUN (debug_zebra_dplane,
+       debug_zebra_dplane_cmd,
+       "debug zebra dplane [detailed]",
+       DEBUG_STR
+       "Zebra configuration\n"
+       "Debug zebra dataplane events\n"
+       "Detailed debug information\n")
+{
+       int idx = 0;
+
+       SET_FLAG(zebra_debug_dplane, ZEBRA_DEBUG_DPLANE);
+
+       if (argv_find(argv, argc, "detailed", &idx))
+               SET_FLAG(zebra_debug_dplane, ZEBRA_DEBUG_DPLANE_DETAILED);
+
+       return CMD_SUCCESS;
+}
+
 DEFUN (no_debug_zebra_events,
        no_debug_zebra_events_cmd,
        "no debug zebra events",
@@ -271,19 +334,16 @@ DEFUN (no_debug_zebra_vxlan,
 
 DEFUN (no_debug_zebra_packet,
        no_debug_zebra_packet_cmd,
-       "no debug zebra packet [<recv|send>]",
+       "no debug zebra packet [<recv|send>] [detail]",
        NO_STR
        DEBUG_STR
        "Zebra configuration\n"
        "Debug option set for zebra packet\n"
        "Debug option set for receive packet\n"
-       "Debug option set for send packet\n")
+       "Debug option set for send packet\n"
+       "Debug option set for detailed info\n")
 {
-       int idx = 0;
-       if (argc == 4 || argv_find(argv, argc, "send", &idx))
-               UNSET_FLAG(zebra_debug_packet, ZEBRA_DEBUG_SEND);
-       if (argc == 4 || argv_find(argv, argc, "recv", &idx))
-               UNSET_FLAG(zebra_debug_packet, ZEBRA_DEBUG_RECV);
+       zebra_debug_packet = 0;
        return CMD_SUCCESS;
 }
 
@@ -295,7 +355,7 @@ DEFUN (no_debug_zebra_kernel,
        "Zebra configuration\n"
        "Debug option set for zebra between kernel interface\n")
 {
-       UNSET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL);
+       zebra_debug_kernel = 0;
        return CMD_SUCCESS;
 }
 
@@ -310,49 +370,44 @@ DEFUN (no_debug_zebra_kernel_msgdump,
        "Dump raw netlink messages received\n"
        "Dump raw netlink messages sent\n")
 {
-       int idx = 0;
-       if (argc == 5 || argv_find(argv, argc, "recv", &idx))
-               UNSET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV);
-       if (argc == 5 || argv_find(argv, argc, "send", &idx))
-               UNSET_FLAG(zebra_debug_kernel, ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND);
-
+       zebra_debug_kernel = 0;
        return CMD_SUCCESS;
 }
 
 DEFUN (no_debug_zebra_rib,
        no_debug_zebra_rib_cmd,
-       "no debug zebra rib",
+       "no debug zebra rib [detailed]",
        NO_STR
        DEBUG_STR
        "Zebra configuration\n"
-       "Debug zebra RIB\n")
+       "Debug zebra RIB\n"
+       "Detailed debugs\n")
 {
        zebra_debug_rib = 0;
        return CMD_SUCCESS;
 }
 
-DEFUN (no_debug_zebra_rib_detailed,
-       no_debug_zebra_rib_detailed_cmd,
-       "no debug zebra rib detailed",
+DEFUN (no_debug_zebra_fpm,
+       no_debug_zebra_fpm_cmd,
+       "no debug zebra fpm",
        NO_STR
        DEBUG_STR
        "Zebra configuration\n"
-       "Debug zebra RIB\n"
-       "Detailed debugs\n")
+       "Debug zebra FPM events\n")
 {
-       UNSET_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB_DETAILED);
+       zebra_debug_fpm = 0;
        return CMD_SUCCESS;
 }
 
-DEFUN (no_debug_zebra_fpm,
-       no_debug_zebra_fpm_cmd,
-       "no debug zebra fpm",
+DEFUN (no_debug_zebra_dplane,
+       no_debug_zebra_dplane_cmd,
+       "no debug zebra dplane",
        NO_STR
        DEBUG_STR
        "Zebra configuration\n"
-       "Debug zebra FPM events\n")
+       "Debug zebra dataplane events\n")
 {
-       zebra_debug_fpm = 0;
+       zebra_debug_dplane = 0;
        return CMD_SUCCESS;
 }
 
@@ -383,27 +438,32 @@ static int config_write_debug(struct vty *vty)
                        write++;
                }
        }
+
        if (IS_ZEBRA_DEBUG_KERNEL) {
-               vty_out(vty, "debug zebra kernel\n");
-               write++;
-       }
-       if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV) {
-               vty_out(vty, "debug zebra kernel msgdump recv\n");
-               write++;
-       }
-       if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND) {
-               vty_out(vty, "debug zebra kernel msgdump send\n");
-               write++;
-       }
-       /* Check here using flags as the 'macro' does an OR */
-       if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB)) {
-               vty_out(vty, "debug zebra rib\n");
-               write++;
+               if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND
+                   && IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV) {
+                       vty_out(vty, "debug zebra kernel msgdump\n");
+                       write++;
+               } else if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_RECV) {
+                       vty_out(vty, "debug zebra kernel msgdump recv\n");
+                       write++;
+               } else if (IS_ZEBRA_DEBUG_KERNEL_MSGDUMP_SEND) {
+                       vty_out(vty, "debug zebra kernel msgdump send\n");
+                       write++;
+               } else {
+                       vty_out(vty, "debug zebra kernel\n");
+                       write++;
+               }
        }
+
        if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB_DETAILED)) {
                vty_out(vty, "debug zebra rib detailed\n");
                write++;
+       } else if (CHECK_FLAG(zebra_debug_rib, ZEBRA_DEBUG_RIB)) {
+               vty_out(vty, "debug zebra rib\n");
+               write++;
        }
+
        if (IS_ZEBRA_DEBUG_FPM) {
                vty_out(vty, "debug zebra fpm\n");
                write++;
@@ -420,6 +480,19 @@ static int config_write_debug(struct vty *vty)
                vty_out(vty, "debug zebra vxlan\n");
                write++;
        }
+       if (IS_ZEBRA_DEBUG_PW) {
+               vty_out(vty, "debug zebra pseudowires\n");
+               write++;
+       }
+
+       if (CHECK_FLAG(zebra_debug_dplane, ZEBRA_DEBUG_DPLANE_DETAILED)) {
+               vty_out(vty, "debug zebra dplane detailed\n");
+               write++;
+       } else if (CHECK_FLAG(zebra_debug_dplane, ZEBRA_DEBUG_DPLANE)) {
+               vty_out(vty, "debug zebra dplane\n");
+               write++;
+       }
+
        return write;
 }
 
@@ -432,6 +505,8 @@ void zebra_debug_init(void)
        zebra_debug_fpm = 0;
        zebra_debug_mpls = 0;
        zebra_debug_vxlan = 0;
+       zebra_debug_pw = 0;
+       zebra_debug_dplane = 0;
 
        install_node(&debug_node, config_write_debug);
 
@@ -441,12 +516,13 @@ void zebra_debug_init(void)
        install_element(ENABLE_NODE, &debug_zebra_nht_cmd);
        install_element(ENABLE_NODE, &debug_zebra_mpls_cmd);
        install_element(ENABLE_NODE, &debug_zebra_vxlan_cmd);
+       install_element(ENABLE_NODE, &debug_zebra_pw_cmd);
        install_element(ENABLE_NODE, &debug_zebra_packet_cmd);
        install_element(ENABLE_NODE, &debug_zebra_kernel_cmd);
        install_element(ENABLE_NODE, &debug_zebra_kernel_msgdump_cmd);
        install_element(ENABLE_NODE, &debug_zebra_rib_cmd);
-       install_element(ENABLE_NODE, &debug_zebra_rib_detailed_cmd);
        install_element(ENABLE_NODE, &debug_zebra_fpm_cmd);
+       install_element(ENABLE_NODE, &debug_zebra_dplane_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_events_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_nht_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_mpls_cmd);
@@ -455,19 +531,20 @@ void zebra_debug_init(void)
        install_element(ENABLE_NODE, &no_debug_zebra_kernel_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_kernel_msgdump_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_rib_cmd);
-       install_element(ENABLE_NODE, &no_debug_zebra_rib_detailed_cmd);
        install_element(ENABLE_NODE, &no_debug_zebra_fpm_cmd);
+       install_element(ENABLE_NODE, &no_debug_zebra_dplane_cmd);
 
        install_element(CONFIG_NODE, &debug_zebra_events_cmd);
        install_element(CONFIG_NODE, &debug_zebra_nht_cmd);
        install_element(CONFIG_NODE, &debug_zebra_mpls_cmd);
        install_element(CONFIG_NODE, &debug_zebra_vxlan_cmd);
+       install_element(CONFIG_NODE, &debug_zebra_pw_cmd);
        install_element(CONFIG_NODE, &debug_zebra_packet_cmd);
        install_element(CONFIG_NODE, &debug_zebra_kernel_cmd);
        install_element(CONFIG_NODE, &debug_zebra_kernel_msgdump_cmd);
        install_element(CONFIG_NODE, &debug_zebra_rib_cmd);
-       install_element(CONFIG_NODE, &debug_zebra_rib_detailed_cmd);
        install_element(CONFIG_NODE, &debug_zebra_fpm_cmd);
+       install_element(CONFIG_NODE, &debug_zebra_dplane_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_events_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_nht_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_mpls_cmd);
@@ -476,6 +553,6 @@ void zebra_debug_init(void)
        install_element(CONFIG_NODE, &no_debug_zebra_kernel_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_kernel_msgdump_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_rib_cmd);
-       install_element(CONFIG_NODE, &no_debug_zebra_rib_detailed_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_fpm_cmd);
+       install_element(CONFIG_NODE, &no_debug_zebra_dplane_cmd);
 }