]> git.proxmox.com Git - mirror_frr.git/blob - ldpd/ldp_debug.c
Merge pull request #1535 from qlyoung/fix-coalesce-time-display
[mirror_frr.git] / ldpd / ldp_debug.c
1 /*
2 * Copyright (C) 2016 by Open Source Routing.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; see the file COPYING; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
17 * MA 02110-1301 USA
18 */
19
20 #include <zebra.h>
21
22 #include "command.h"
23 #include "vty.h"
24
25 #include "ldpd.h"
26 #include "ldp_debug.h"
27 #include "ldp_vty.h"
28
29 struct ldp_debug conf_ldp_debug;
30 struct ldp_debug ldp_debug;
31
32 /* Debug node. */
33 struct cmd_node ldp_debug_node =
34 {
35 DEBUG_NODE,
36 "",
37 1
38 };
39
40 int
41 ldp_vty_debug(struct vty *vty, const char *negate, const char *type_str,
42 const char *dir_str, const char *all)
43 {
44 if (strcmp(type_str, "discovery") == 0) {
45 if (dir_str == NULL)
46 return (CMD_WARNING_CONFIG_FAILED);
47
48 if (dir_str[0] == 'r') {
49 if (negate)
50 DEBUG_OFF(hello, LDP_DEBUG_HELLO_RECV);
51 else
52 DEBUG_ON(hello, LDP_DEBUG_HELLO_RECV);
53 } else {
54 if (negate)
55 DEBUG_OFF(hello, LDP_DEBUG_HELLO_SEND);
56 else
57 DEBUG_ON(hello, LDP_DEBUG_HELLO_SEND);
58 }
59 } else if (strcmp(type_str, "errors") == 0) {
60 if (negate)
61 DEBUG_OFF(errors, LDP_DEBUG_ERRORS);
62 else
63 DEBUG_ON(errors, LDP_DEBUG_ERRORS);
64 } else if (strcmp(type_str, "event") == 0) {
65 if (negate)
66 DEBUG_OFF(event, LDP_DEBUG_EVENT);
67 else
68 DEBUG_ON(event, LDP_DEBUG_EVENT);
69 } else if (strcmp(type_str, "labels") == 0) {
70 if (negate)
71 DEBUG_OFF(labels, LDP_DEBUG_LABELS);
72 else
73 DEBUG_ON(labels, LDP_DEBUG_LABELS);
74 } else if (strcmp(type_str, "messages") == 0) {
75 if (dir_str == NULL)
76 return (CMD_WARNING_CONFIG_FAILED);
77
78 if (dir_str[0] == 'r') {
79 if (negate) {
80 DEBUG_OFF(msg, LDP_DEBUG_MSG_RECV);
81 DEBUG_OFF(msg, LDP_DEBUG_MSG_RECV_ALL);
82 } else {
83 DEBUG_ON(msg, LDP_DEBUG_MSG_RECV);
84 if (all)
85 DEBUG_ON(msg, LDP_DEBUG_MSG_RECV_ALL);
86 }
87 } else {
88 if (negate) {
89 DEBUG_OFF(msg, LDP_DEBUG_MSG_SEND);
90 DEBUG_OFF(msg, LDP_DEBUG_MSG_SEND_ALL);
91 } else {
92 DEBUG_ON(msg, LDP_DEBUG_MSG_SEND);
93 if (all)
94 DEBUG_ON(msg, LDP_DEBUG_MSG_SEND_ALL);
95 }
96 }
97 } else if (strcmp(type_str, "zebra") == 0) {
98 if (negate)
99 DEBUG_OFF(zebra, LDP_DEBUG_ZEBRA);
100 else
101 DEBUG_ON(zebra, LDP_DEBUG_ZEBRA);
102 }
103
104 main_imsg_compose_both(IMSG_DEBUG_UPDATE, &ldp_debug,
105 sizeof(ldp_debug));
106
107 return (CMD_SUCCESS);
108 }
109
110 int
111 ldp_vty_show_debugging(struct vty *vty)
112 {
113 vty_out (vty, "LDP debugging status:\n");
114
115 if (LDP_DEBUG(hello, LDP_DEBUG_HELLO_RECV))
116 vty_out (vty," LDP discovery debugging is on (inbound)\n");
117 if (LDP_DEBUG(hello, LDP_DEBUG_HELLO_SEND))
118 vty_out (vty," LDP discovery debugging is on (outbound)\n");
119 if (LDP_DEBUG(errors, LDP_DEBUG_ERRORS))
120 vty_out (vty, " LDP errors debugging is on\n");
121 if (LDP_DEBUG(event, LDP_DEBUG_EVENT))
122 vty_out (vty, " LDP events debugging is on\n");
123 if (LDP_DEBUG(labels, LDP_DEBUG_LABELS))
124 vty_out (vty, " LDP labels debugging is on\n");
125 if (LDP_DEBUG(msg, LDP_DEBUG_MSG_RECV_ALL))
126 vty_out (vty,
127 " LDP detailed messages debugging is on (inbound)\n");
128 else if (LDP_DEBUG(msg, LDP_DEBUG_MSG_RECV))
129 vty_out (vty," LDP messages debugging is on (inbound)\n");
130 if (LDP_DEBUG(msg, LDP_DEBUG_MSG_SEND_ALL))
131 vty_out (vty,
132 " LDP detailed messages debugging is on (outbound)\n");
133 else if (LDP_DEBUG(msg, LDP_DEBUG_MSG_SEND))
134 vty_out (vty," LDP messages debugging is on (outbound)\n");
135 if (LDP_DEBUG(zebra, LDP_DEBUG_ZEBRA))
136 vty_out (vty, " LDP zebra debugging is on\n");
137 vty_out (vty, "\n");
138
139 return (CMD_SUCCESS);
140 }
141
142 int
143 ldp_debug_config_write(struct vty *vty)
144 {
145 int write = 0;
146
147 if (CONF_LDP_DEBUG(hello, LDP_DEBUG_HELLO_RECV)) {
148 vty_out (vty,"debug mpls ldp discovery hello recv\n");
149 write = 1;
150 }
151
152 if (CONF_LDP_DEBUG(hello, LDP_DEBUG_HELLO_SEND)) {
153 vty_out (vty,"debug mpls ldp discovery hello sent\n");
154 write = 1;
155 }
156
157 if (CONF_LDP_DEBUG(errors, LDP_DEBUG_ERRORS)) {
158 vty_out (vty, "debug mpls ldp errors\n");
159 write = 1;
160 }
161
162 if (CONF_LDP_DEBUG(event, LDP_DEBUG_EVENT)) {
163 vty_out (vty, "debug mpls ldp event\n");
164 write = 1;
165 }
166
167 if (CONF_LDP_DEBUG(labels, LDP_DEBUG_LABELS)) {
168 vty_out (vty, "debug mpls ldp labels\n");
169 write = 1;
170 }
171
172 if (CONF_LDP_DEBUG(msg, LDP_DEBUG_MSG_RECV_ALL)) {
173 vty_out (vty, "debug mpls ldp messages recv all\n");
174 write = 1;
175 } else if (CONF_LDP_DEBUG(msg, LDP_DEBUG_MSG_RECV)) {
176 vty_out (vty, "debug mpls ldp messages recv\n");
177 write = 1;
178 }
179
180 if (CONF_LDP_DEBUG(msg, LDP_DEBUG_MSG_SEND_ALL)) {
181 vty_out (vty, "debug mpls ldp messages sent all\n");
182 write = 1;
183 } else if (CONF_LDP_DEBUG(msg, LDP_DEBUG_MSG_SEND)) {
184 vty_out (vty, "debug mpls ldp messages sent\n");
185 write = 1;
186 }
187
188 if (CONF_LDP_DEBUG(zebra, LDP_DEBUG_ZEBRA)) {
189 vty_out (vty, "debug mpls ldp zebra\n");
190 write = 1;
191 }
192
193 return (write);
194 }