]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_dump.c
ospfd: replace inet_ntoa
[mirror_frr.git] / ospfd / ospf_dump.c
CommitLineData
718e3744 1/*
2 * OSPFd dump routine.
3 * Copyright (C) 1999, 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#include <zebra.h>
23
cbf3e3eb 24#include "monotime.h"
718e3744 25#include "linklist.h"
26#include "thread.h"
27#include "prefix.h"
28#include "command.h"
29#include "stream.h"
30#include "log.h"
aa20c6f1 31#include "sockopt.h"
718e3744 32
33#include "ospfd/ospfd.h"
34#include "ospfd/ospf_interface.h"
35#include "ospfd/ospf_ism.h"
36#include "ospfd/ospf_asbr.h"
37#include "ospfd/ospf_lsa.h"
38#include "ospfd/ospf_lsdb.h"
39#include "ospfd/ospf_neighbor.h"
40#include "ospfd/ospf_nsm.h"
41#include "ospfd/ospf_dump.h"
42#include "ospfd/ospf_packet.h"
43#include "ospfd/ospf_network.h"
caa1cd9e 44#ifndef VTYSH_EXTRACT_PL
45#include "ospfd/ospf_dump_clippy.c"
46#endif
718e3744 47
718e3744 48/* Configuration debug option variables. */
49unsigned long conf_debug_ospf_packet[5] = {0, 0, 0, 0, 0};
50unsigned long conf_debug_ospf_event = 0;
51unsigned long conf_debug_ospf_ism = 0;
52unsigned long conf_debug_ospf_nsm = 0;
53unsigned long conf_debug_ospf_lsa = 0;
54unsigned long conf_debug_ospf_zebra = 0;
55unsigned long conf_debug_ospf_nssa = 0;
16f1b9ee 56unsigned long conf_debug_ospf_te = 0;
cf9b9f77
OD
57unsigned long conf_debug_ospf_ext = 0;
58unsigned long conf_debug_ospf_sr = 0;
1febb13d 59unsigned long conf_debug_ospf_defaultinfo = 0;
132a782e 60unsigned long conf_debug_ospf_ldp_sync = 0;
06bc3110 61unsigned long conf_debug_ospf_gr = 0;
718e3744 62
63/* Enable debug option variables -- valid only session. */
64unsigned long term_debug_ospf_packet[5] = {0, 0, 0, 0, 0};
1febb13d 65unsigned long term_debug_ospf_event;
718e3744 66unsigned long term_debug_ospf_ism = 0;
67unsigned long term_debug_ospf_nsm = 0;
68unsigned long term_debug_ospf_lsa = 0;
69unsigned long term_debug_ospf_zebra = 0;
70unsigned long term_debug_ospf_nssa = 0;
16f1b9ee 71unsigned long term_debug_ospf_te = 0;
cf9b9f77
OD
72unsigned long term_debug_ospf_ext = 0;
73unsigned long term_debug_ospf_sr = 0;
1febb13d 74unsigned long term_debug_ospf_defaultinfo;
132a782e 75unsigned long term_debug_ospf_ldp_sync;
06bc3110 76unsigned long term_debug_ospf_gr = 0;
f52d13cb 77
d7c0a89a 78const char *ospf_redist_string(unsigned int route_type)
f52d13cb 79{
d62a17ae 80 return (route_type == ZEBRA_ROUTE_MAX) ? "Default"
81 : zebra_route_string(route_type);
f52d13cb 82}
83
718e3744 84#define OSPF_AREA_STRING_MAXLEN 16
d62a17ae 85const char *ospf_area_name_string(struct ospf_area *area)
718e3744 86{
d62a17ae 87 static char buf[OSPF_AREA_STRING_MAXLEN] = "";
d7c0a89a 88 uint32_t area_id;
718e3744 89
d62a17ae 90 if (!area)
91 return "-";
718e3744 92
d62a17ae 93 area_id = ntohl(area->area_id.s_addr);
772270f3
QY
94 snprintf(buf, sizeof(buf), "%d.%d.%d.%d", (area_id >> 24) & 0xff,
95 (area_id >> 16) & 0xff, (area_id >> 8) & 0xff, area_id & 0xff);
d62a17ae 96 return buf;
718e3744 97}
98
99#define OSPF_AREA_DESC_STRING_MAXLEN 23
d62a17ae 100const char *ospf_area_desc_string(struct ospf_area *area)
718e3744 101{
d62a17ae 102 static char buf[OSPF_AREA_DESC_STRING_MAXLEN] = "";
d7c0a89a 103 uint8_t type;
d62a17ae 104
105 if (!area)
106 return "(incomplete)";
107
108 type = area->external_routing;
109 switch (type) {
110 case OSPF_AREA_NSSA:
772270f3 111 snprintf(buf, sizeof(buf), "%s [NSSA]",
d62a17ae 112 ospf_area_name_string(area));
113 break;
114 case OSPF_AREA_STUB:
772270f3 115 snprintf(buf, sizeof(buf), "%s [Stub]",
d62a17ae 116 ospf_area_name_string(area));
117 break;
118 default:
119 return ospf_area_name_string(area);
120 }
121
122 return buf;
718e3744 123}
124
125#define OSPF_IF_STRING_MAXLEN 40
d62a17ae 126const char *ospf_if_name_string(struct ospf_interface *oi)
718e3744 127{
d62a17ae 128 static char buf[OSPF_IF_STRING_MAXLEN] = "";
d7c0a89a 129 uint32_t ifaddr;
718e3744 130
d62a17ae 131 if (!oi || !oi->address)
132 return "inactive";
718e3744 133
d62a17ae 134 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
135 return oi->ifp->name;
718e3744 136
d62a17ae 137 ifaddr = ntohl(oi->address->u.prefix4.s_addr);
772270f3 138 snprintf(buf, sizeof(buf), "%s:%d.%d.%d.%d", oi->ifp->name,
d62a17ae 139 (ifaddr >> 24) & 0xff, (ifaddr >> 16) & 0xff,
140 (ifaddr >> 8) & 0xff, ifaddr & 0xff);
141 return buf;
718e3744 142}
143
6b0655a2 144
d62a17ae 145void ospf_nbr_state_message(struct ospf_neighbor *nbr, char *buf, size_t size)
718e3744 146{
d62a17ae 147 int state;
148 struct ospf_interface *oi = nbr->oi;
718e3744 149
d62a17ae 150 if (IPV4_ADDR_SAME(&DR(oi), &nbr->address.u.prefix4))
151 state = ISM_DR;
152 else if (IPV4_ADDR_SAME(&BDR(oi), &nbr->address.u.prefix4))
153 state = ISM_Backup;
154 else
155 state = ISM_DROther;
718e3744 156
d62a17ae 157 snprintf(buf, size, "%s/%s",
158 lookup_msg(ospf_nsm_state_msg, nbr->state, NULL),
159 lookup_msg(ospf_ism_state_msg, state, NULL));
718e3744 160}
161
d62a17ae 162const char *ospf_timeval_dump(struct timeval *t, char *buf, size_t size)
718e3744 163{
d62a17ae 164/* Making formatted timer strings. */
d24f6e2a 165#define MINUTE_IN_SECONDS 60
166#define HOUR_IN_SECONDS (60*MINUTE_IN_SECONDS)
167#define DAY_IN_SECONDS (24*HOUR_IN_SECONDS)
168#define WEEK_IN_SECONDS (7*DAY_IN_SECONDS)
6e3e2c6d 169 unsigned long w, d, h, m, ms, us;
d62a17ae 170
171 if (!t)
172 return "inactive";
173
6e3e2c6d 174 w = d = h = m = ms = 0;
d62a17ae 175 memset(buf, 0, size);
176
177 us = t->tv_usec;
178 if (us >= 1000) {
179 ms = us / 1000;
180 us %= 1000;
f38b7f6d 181 (void)us; /* unused */
d62a17ae 182 }
183
184 if (ms >= 1000) {
185 t->tv_sec += ms / 1000;
186 ms %= 1000;
187 }
188
189 if (t->tv_sec > WEEK_IN_SECONDS) {
190 w = t->tv_sec / WEEK_IN_SECONDS;
191 t->tv_sec -= w * WEEK_IN_SECONDS;
192 }
193
194 if (t->tv_sec > DAY_IN_SECONDS) {
195 d = t->tv_sec / DAY_IN_SECONDS;
196 t->tv_sec -= d * DAY_IN_SECONDS;
197 }
198
199 if (t->tv_sec >= HOUR_IN_SECONDS) {
200 h = t->tv_sec / HOUR_IN_SECONDS;
201 t->tv_sec -= h * HOUR_IN_SECONDS;
202 }
203
204 if (t->tv_sec >= MINUTE_IN_SECONDS) {
205 m = t->tv_sec / MINUTE_IN_SECONDS;
206 t->tv_sec -= m * MINUTE_IN_SECONDS;
207 }
208
209 if (w > 99)
2ec42b85 210 snprintf(buf, size, "%luw%1lud", w, d);
d62a17ae 211 else if (w)
2ec42b85 212 snprintf(buf, size, "%luw%1lud%02luh", w, d, h);
d62a17ae 213 else if (d)
2ec42b85 214 snprintf(buf, size, "%1lud%02luh%02lum", d, h, m);
d62a17ae 215 else if (h)
2ec42b85 216 snprintf(buf, size, "%luh%02lum%02lds", h, m, (long)t->tv_sec);
d62a17ae 217 else if (m)
2ec42b85 218 snprintf(buf, size, "%lum%02lds", m, (long)t->tv_sec);
d62a17ae 219 else if (ms)
2ec42b85 220 snprintf(buf, size, "%ld.%03lus", (long)t->tv_sec, ms);
d62a17ae 221 else
222 snprintf(buf, size, "%ld usecs", (long)t->tv_usec);
223
224 return buf;
718e3744 225}
226
d62a17ae 227const char *ospf_timer_dump(struct thread *t, char *buf, size_t size)
d24f6e2a 228{
d62a17ae 229 struct timeval result;
230 if (!t)
231 return "inactive";
cbf3e3eb 232
d62a17ae 233 monotime_until(&t->u.sands, &result);
234 return ospf_timeval_dump(&result, buf, size);
d24f6e2a 235}
236
d7c0a89a 237static void ospf_packet_hello_dump(struct stream *s, uint16_t length)
718e3744 238{
d62a17ae 239 struct ospf_hello *hello;
240 int i;
241
2d34fb80 242 hello = (struct ospf_hello *)stream_pnt(s);
d62a17ae 243
244 zlog_debug("Hello");
96b663a3 245 zlog_debug(" NetworkMask %pI4", &hello->network_mask);
d62a17ae 246 zlog_debug(" HelloInterval %d", ntohs(hello->hello_interval));
247 zlog_debug(" Options %d (%s)", hello->options,
248 ospf_options_dump(hello->options));
249 zlog_debug(" RtrPriority %d", hello->priority);
250 zlog_debug(" RtrDeadInterval %ld",
d7c0a89a 251 (unsigned long)ntohl(hello->dead_interval));
96b663a3
MS
252 zlog_debug(" DRouter %pI4", &hello->d_router);
253 zlog_debug(" BDRouter %pI4", &hello->bd_router);
d62a17ae 254
255 length -= OSPF_HEADER_SIZE + OSPF_HELLO_MIN_SIZE;
256 zlog_debug(" # Neighbors %d", length / 4);
257 for (i = 0; length > 0; i++, length -= sizeof(struct in_addr))
96b663a3 258 zlog_debug(" Neighbor %pI4", &hello->neighbors[i]);
718e3744 259}
260
d7c0a89a 261static char *ospf_dd_flags_dump(uint8_t flags, char *buf, size_t size)
718e3744 262{
d62a17ae 263 snprintf(buf, size, "%s|%s|%s", (flags & OSPF_DD_FLAG_I) ? "I" : "-",
264 (flags & OSPF_DD_FLAG_M) ? "M" : "-",
265 (flags & OSPF_DD_FLAG_MS) ? "MS" : "-");
718e3744 266
d62a17ae 267 return buf;
718e3744 268}
269
d7c0a89a 270static char *ospf_router_lsa_flags_dump(uint8_t flags, char *buf, size_t size)
718e3744 271{
d62a17ae 272 snprintf(buf, size, "%s|%s|%s",
273 (flags & ROUTER_LSA_VIRTUAL) ? "V" : "-",
274 (flags & ROUTER_LSA_EXTERNAL) ? "E" : "-",
275 (flags & ROUTER_LSA_BORDER) ? "B" : "-");
718e3744 276
d62a17ae 277 return buf;
718e3744 278}
279
d7c0a89a 280static void ospf_router_lsa_dump(struct stream *s, uint16_t length)
718e3744 281{
d62a17ae 282 char buf[BUFSIZ];
283 struct router_lsa *rl;
284 int i, len;
285
2d34fb80 286 rl = (struct router_lsa *)stream_pnt(s);
d62a17ae 287
288 zlog_debug(" Router-LSA");
289 zlog_debug(" flags %s",
290 ospf_router_lsa_flags_dump(rl->flags, buf, BUFSIZ));
291 zlog_debug(" # links %d", ntohs(rl->links));
292
293 len = ntohs(rl->header.length) - OSPF_LSA_HEADER_SIZE - 4;
294 for (i = 0; len > 0; i++) {
96b663a3
MS
295 zlog_debug(" Link ID %pI4", &rl->link[i].link_id);
296 zlog_debug(" Link Data %pI4",
297 &rl->link[i].link_data);
d7c0a89a
QY
298 zlog_debug(" Type %d", (uint8_t)rl->link[i].type);
299 zlog_debug(" TOS %d", (uint8_t)rl->link[i].tos);
d62a17ae 300 zlog_debug(" metric %d", ntohs(rl->link[i].metric));
301
302 len -= 12;
303 }
718e3744 304}
305
d7c0a89a 306static void ospf_network_lsa_dump(struct stream *s, uint16_t length)
718e3744 307{
d62a17ae 308 struct network_lsa *nl;
309 int i, cnt;
310
2d34fb80 311 nl = (struct network_lsa *)stream_pnt(s);
d62a17ae 312 cnt = (ntohs(nl->header.length) - (OSPF_LSA_HEADER_SIZE + 4)) / 4;
313
314 zlog_debug(" Network-LSA");
315 /*
316 zlog_debug ("LSA total size %d", ntohs (nl->header.length));
317 zlog_debug ("Network-LSA size %d",
318 ntohs (nl->header.length) - OSPF_LSA_HEADER_SIZE);
319 */
96b663a3 320 zlog_debug(" Network Mask %pI4", &nl->mask);
d62a17ae 321 zlog_debug(" # Attached Routers %d", cnt);
322 for (i = 0; i < cnt; i++)
96b663a3
MS
323 zlog_debug(" Attached Router %pI4",
324 &nl->routers[i]);
718e3744 325}
326
d7c0a89a 327static void ospf_summary_lsa_dump(struct stream *s, uint16_t length)
718e3744 328{
d62a17ae 329 struct summary_lsa *sl;
330 int size;
331 int i;
718e3744 332
2d34fb80 333 sl = (struct summary_lsa *)stream_pnt(s);
718e3744 334
d62a17ae 335 zlog_debug(" Summary-LSA");
96b663a3 336 zlog_debug(" Network Mask %pI4", &sl->mask);
718e3744 337
d62a17ae 338 size = ntohs(sl->header.length) - OSPF_LSA_HEADER_SIZE - 4;
339 for (i = 0; size > 0; size -= 4, i++)
340 zlog_debug(" TOS=%d metric %d", sl->tos,
341 GET_METRIC(sl->metric));
718e3744 342}
343
d7c0a89a 344static void ospf_as_external_lsa_dump(struct stream *s, uint16_t length)
718e3744 345{
d62a17ae 346 struct as_external_lsa *al;
347 int size;
348 int i;
349
2d34fb80 350 al = (struct as_external_lsa *)stream_pnt(s);
d62a17ae 351 zlog_debug(" %s", ospf_lsa_type_msg[al->header.type].str);
96b663a3 352 zlog_debug(" Network Mask %pI4", &al->mask);
d62a17ae 353
354 size = ntohs(al->header.length) - OSPF_LSA_HEADER_SIZE - 4;
355 for (i = 0; size > 0; size -= 12, i++) {
356 zlog_debug(" bit %s TOS=%d metric %d",
357 IS_EXTERNAL_METRIC(al->e[i].tos) ? "E" : "-",
358 al->e[i].tos & 0x7f, GET_METRIC(al->e[i].metric));
96b663a3
MS
359 zlog_debug(" Forwarding address %pI4",
360 &al->e[i].fwd_addr);
d62a17ae 361 zlog_debug(" External Route Tag %" ROUTE_TAG_PRI,
362 al->e[i].route_tag);
363 }
718e3744 364}
365
d7c0a89a 366static void ospf_lsa_header_list_dump(struct stream *s, uint16_t length)
718e3744 367{
d62a17ae 368 struct lsa_header *lsa;
718e3744 369
d62a17ae 370 zlog_debug(" # LSA Headers %d", length / OSPF_LSA_HEADER_SIZE);
718e3744 371
d62a17ae 372 /* LSA Headers. */
373 while (length > 0) {
2d34fb80 374 lsa = (struct lsa_header *)stream_pnt(s);
d62a17ae 375 ospf_lsa_header_dump(lsa);
718e3744 376
d62a17ae 377 stream_forward_getp(s, OSPF_LSA_HEADER_SIZE);
378 length -= OSPF_LSA_HEADER_SIZE;
379 }
718e3744 380}
381
d7c0a89a 382static void ospf_packet_db_desc_dump(struct stream *s, uint16_t length)
718e3744 383{
d62a17ae 384 struct ospf_db_desc *dd;
385 char dd_flags[8];
718e3744 386
d7c0a89a 387 uint32_t gp;
718e3744 388
d62a17ae 389 gp = stream_get_getp(s);
2d34fb80 390 dd = (struct ospf_db_desc *)stream_pnt(s);
718e3744 391
d62a17ae 392 zlog_debug("Database Description");
393 zlog_debug(" Interface MTU %d", ntohs(dd->mtu));
394 zlog_debug(" Options %d (%s)", dd->options,
395 ospf_options_dump(dd->options));
396 zlog_debug(" Flags %d (%s)", dd->flags,
0d6f7fd6 397 ospf_dd_flags_dump(dd->flags, dd_flags, sizeof(dd_flags)));
d7c0a89a
QY
398 zlog_debug(" Sequence Number 0x%08lx",
399 (unsigned long)ntohl(dd->dd_seqnum));
718e3744 400
d62a17ae 401 length -= OSPF_HEADER_SIZE + OSPF_DB_DESC_MIN_SIZE;
718e3744 402
d62a17ae 403 stream_forward_getp(s, OSPF_DB_DESC_MIN_SIZE);
718e3744 404
d62a17ae 405 ospf_lsa_header_list_dump(s, length);
718e3744 406
d62a17ae 407 stream_set_getp(s, gp);
718e3744 408}
409
d7c0a89a 410static void ospf_packet_ls_req_dump(struct stream *s, uint16_t length)
718e3744 411{
d7c0a89a
QY
412 uint32_t sp;
413 uint32_t ls_type;
d62a17ae 414 struct in_addr ls_id;
415 struct in_addr adv_router;
718e3744 416
d62a17ae 417 sp = stream_get_getp(s);
718e3744 418
d62a17ae 419 length -= OSPF_HEADER_SIZE;
718e3744 420
d62a17ae 421 zlog_debug("Link State Request");
422 zlog_debug(" # Requests %d", length / 12);
718e3744 423
d62a17ae 424 for (; length > 0; length -= 12) {
425 ls_type = stream_getl(s);
426 ls_id.s_addr = stream_get_ipv4(s);
427 adv_router.s_addr = stream_get_ipv4(s);
718e3744 428
d62a17ae 429 zlog_debug(" LS type %d", ls_type);
96b663a3
MS
430 zlog_debug(" Link State ID %pI4", &ls_id);
431 zlog_debug(" Advertising Router %pI4", &adv_router);
d62a17ae 432 }
718e3744 433
d62a17ae 434 stream_set_getp(s, sp);
718e3744 435}
436
d7c0a89a 437static void ospf_packet_ls_upd_dump(struct stream *s, uint16_t length)
718e3744 438{
d7c0a89a 439 uint32_t sp;
d62a17ae 440 struct lsa_header *lsa;
441 int lsa_len;
d7c0a89a 442 uint32_t count;
d62a17ae 443
444 length -= OSPF_HEADER_SIZE;
445
446 sp = stream_get_getp(s);
447
448 count = stream_getl(s);
449 length -= 4;
450
451 zlog_debug("Link State Update");
452 zlog_debug(" # LSAs %d", count);
453
454 while (length > 0 && count > 0) {
455 if (length < OSPF_HEADER_SIZE || length % 4 != 0) {
456 zlog_debug(" Remaining %d bytes; Incorrect length.",
457 length);
458 break;
459 }
460
2d34fb80 461 lsa = (struct lsa_header *)stream_pnt(s);
d62a17ae 462 lsa_len = ntohs(lsa->length);
463 ospf_lsa_header_dump(lsa);
464
465 switch (lsa->type) {
466 case OSPF_ROUTER_LSA:
467 ospf_router_lsa_dump(s, length);
468 break;
469 case OSPF_NETWORK_LSA:
470 ospf_network_lsa_dump(s, length);
471 break;
472 case OSPF_SUMMARY_LSA:
473 case OSPF_ASBR_SUMMARY_LSA:
474 ospf_summary_lsa_dump(s, length);
475 break;
476 case OSPF_AS_EXTERNAL_LSA:
477 ospf_as_external_lsa_dump(s, length);
478 break;
479 case OSPF_AS_NSSA_LSA:
480 ospf_as_external_lsa_dump(s, length);
481 break;
482 case OSPF_OPAQUE_LINK_LSA:
483 case OSPF_OPAQUE_AREA_LSA:
484 case OSPF_OPAQUE_AS_LSA:
485 ospf_opaque_lsa_dump(s, length);
486 break;
487 default:
488 break;
489 }
490
491 stream_forward_getp(s, lsa_len);
492 length -= lsa_len;
493 count--;
718e3744 494 }
495
d62a17ae 496 stream_set_getp(s, sp);
718e3744 497}
498
d7c0a89a 499static void ospf_packet_ls_ack_dump(struct stream *s, uint16_t length)
718e3744 500{
d7c0a89a 501 uint32_t sp;
718e3744 502
d62a17ae 503 length -= OSPF_HEADER_SIZE;
504 sp = stream_get_getp(s);
718e3744 505
d62a17ae 506 zlog_debug("Link State Acknowledgment");
507 ospf_lsa_header_list_dump(s, length);
718e3744 508
d62a17ae 509 stream_set_getp(s, sp);
718e3744 510}
511
d62a17ae 512static void ospf_header_dump(struct ospf_header *ospfh)
718e3744 513{
d62a17ae 514 char buf[9];
d7c0a89a 515 uint16_t auth_type = ntohs(ospfh->auth_type);
d62a17ae 516
517 zlog_debug("Header");
518 zlog_debug(" Version %d", ospfh->version);
519 zlog_debug(" Type %d (%s)", ospfh->type,
520 lookup_msg(ospf_packet_type_str, ospfh->type, NULL));
521 zlog_debug(" Packet Len %d", ntohs(ospfh->length));
96b663a3
MS
522 zlog_debug(" Router ID %pI4", &ospfh->router_id);
523 zlog_debug(" Area ID %pI4", &ospfh->area_id);
d62a17ae 524 zlog_debug(" Checksum 0x%x", ntohs(ospfh->checksum));
525 zlog_debug(" AuType %s",
526 lookup_msg(ospf_auth_type_str, auth_type, NULL));
527
528 switch (auth_type) {
529 case OSPF_AUTH_NULL:
530 break;
531 case OSPF_AUTH_SIMPLE:
4d65d927 532 strlcpy(buf, (char *)ospfh->u.auth_data, sizeof(buf));
d62a17ae 533 zlog_debug(" Simple Password %s", buf);
534 break;
535 case OSPF_AUTH_CRYPTOGRAPHIC:
536 zlog_debug(" Cryptographic Authentication");
537 zlog_debug(" Key ID %d", ospfh->u.crypt.key_id);
538 zlog_debug(" Auth Data Len %d", ospfh->u.crypt.auth_data_len);
539 zlog_debug(" Sequence number %ld",
d7c0a89a 540 (unsigned long)ntohl(ospfh->u.crypt.crypt_seqnum));
d62a17ae 541 break;
542 default:
543 zlog_debug("* This is not supported authentication type");
544 break;
545 }
718e3744 546}
547
d62a17ae 548void ospf_packet_dump(struct stream *s)
718e3744 549{
d62a17ae 550 struct ospf_header *ospfh;
551 unsigned long gp;
552
553 /* Preserve pointer. */
554 gp = stream_get_getp(s);
555
556 /* OSPF Header dump. */
2d34fb80 557 ospfh = (struct ospf_header *)stream_pnt(s);
d62a17ae 558
559 /* Until detail flag is set, return. */
560 if (!(term_debug_ospf_packet[ospfh->type - 1] & OSPF_DEBUG_DETAIL))
561 return;
562
563 /* Show OSPF header detail. */
564 ospf_header_dump(ospfh);
565 stream_forward_getp(s, OSPF_HEADER_SIZE);
566
567 switch (ospfh->type) {
568 case OSPF_MSG_HELLO:
569 ospf_packet_hello_dump(s, ntohs(ospfh->length));
570 break;
571 case OSPF_MSG_DB_DESC:
572 ospf_packet_db_desc_dump(s, ntohs(ospfh->length));
573 break;
574 case OSPF_MSG_LS_REQ:
575 ospf_packet_ls_req_dump(s, ntohs(ospfh->length));
576 break;
577 case OSPF_MSG_LS_UPD:
578 ospf_packet_ls_upd_dump(s, ntohs(ospfh->length));
579 break;
580 case OSPF_MSG_LS_ACK:
581 ospf_packet_ls_ack_dump(s, ntohs(ospfh->length));
582 break;
583 default:
584 break;
585 }
586
587 stream_set_getp(s, gp);
718e3744 588}
589
692b4c65
QY
590DEFUN (debug_ospf_packet,
591 debug_ospf_packet_cmd,
592 "debug ospf [(1-65535)] packet <hello|dd|ls-request|ls-update|ls-ack|all> [<send [detail]|recv [detail]|detail>]",
593 DEBUG_STR
594 OSPF_STR
595 "Instance ID\n"
596 "OSPF packets\n"
597 "OSPF Hello\n"
598 "OSPF Database Description\n"
599 "OSPF Link State Request\n"
600 "OSPF Link State Update\n"
601 "OSPF Link State Acknowledgment\n"
602 "OSPF all packets\n"
603 "Packet sent\n"
604 "Detail Information\n"
605 "Packet received\n"
606 "Detail Information\n"
607 "Detail Information\n")
608{
d62a17ae 609 int inst = (argv[2]->type == RANGE_TKN) ? 1 : 0;
610 int detail = strmatch(argv[argc - 1]->text, "detail");
611 int send = strmatch(argv[argc - (1 + detail)]->text, "send");
612 int recv = strmatch(argv[argc - (1 + detail)]->text, "recv");
613 char *packet = argv[3 + inst]->text;
718e3744 614
d62a17ae 615 if (inst) // user passed instance ID
616 {
617 if (!ospf_lookup_instance(strtoul(argv[2]->arg, NULL, 10)))
ac28e4ec 618 return CMD_NOT_MY_INSTANCE;
d62a17ae 619 }
620
621 int type = 0;
622 int flag = 0;
623 int i;
624
625 /* Check packet type. */
626 if (strmatch(packet, "hello"))
627 type = OSPF_DEBUG_HELLO;
628 else if (strmatch(packet, "dd"))
629 type = OSPF_DEBUG_DB_DESC;
630 else if (strmatch(packet, "ls-request"))
631 type = OSPF_DEBUG_LS_REQ;
632 else if (strmatch(packet, "ls-update"))
633 type = OSPF_DEBUG_LS_UPD;
634 else if (strmatch(packet, "ls-ack"))
635 type = OSPF_DEBUG_LS_ACK;
636 else if (strmatch(packet, "all"))
637 type = OSPF_DEBUG_ALL;
638
639 /* Cases:
640 * (none) = send + recv
641 * detail = send + recv + detail
642 * recv = recv
643 * send = send
644 * recv detail = recv + detail
645 * send detail = send + detail
646 */
647 if (!send && !recv)
648 send = recv = 1;
649
650 flag |= (send) ? OSPF_DEBUG_SEND : 0;
651 flag |= (recv) ? OSPF_DEBUG_RECV : 0;
652 flag |= (detail) ? OSPF_DEBUG_DETAIL : 0;
653
654 for (i = 0; i < 5; i++)
655 if (type & (0x01 << i)) {
656 if (vty->node == CONFIG_NODE)
657 DEBUG_PACKET_ON(i, flag);
658 else
659 TERM_DEBUG_PACKET_ON(i, flag);
660 }
661
662 return CMD_SUCCESS;
718e3744 663}
664
692b4c65
QY
665DEFUN (no_debug_ospf_packet,
666 no_debug_ospf_packet_cmd,
667 "no debug ospf [(1-65535)] packet <hello|dd|ls-request|ls-update|ls-ack|all> [<send [detail]|recv [detail]|detail>]",
668 NO_STR
718e3744 669 DEBUG_STR
670 OSPF_STR
7c8ff89e 671 "Instance ID\n"
718e3744 672 "OSPF packets\n"
673 "OSPF Hello\n"
674 "OSPF Database Description\n"
675 "OSPF Link State Request\n"
676 "OSPF Link State Update\n"
677 "OSPF Link State Acknowledgment\n"
692b4c65
QY
678 "OSPF all packets\n"
679 "Packet sent\n"
680 "Detail Information\n"
681 "Packet received\n"
682 "Detail Information\n"
683 "Detail Information\n")
684{
d62a17ae 685 int inst = (argv[3]->type == RANGE_TKN) ? 1 : 0;
686 int detail = strmatch(argv[argc - 1]->text, "detail");
687 int send = strmatch(argv[argc - (1 + detail)]->text, "send");
688 int recv = strmatch(argv[argc - (1 + detail)]->text, "recv");
689 char *packet = argv[4 + inst]->text;
690
691 if (inst) // user passed instance ID
692 {
693 if (!ospf_lookup_instance(strtoul(argv[3]->arg, NULL, 10)))
ac28e4ec 694 return CMD_NOT_MY_INSTANCE;
d62a17ae 695 }
696
697 int type = 0;
698 int flag = 0;
699 int i;
700
701 /* Check packet type. */
702 if (strmatch(packet, "hello"))
703 type = OSPF_DEBUG_HELLO;
704 else if (strmatch(packet, "dd"))
705 type = OSPF_DEBUG_DB_DESC;
706 else if (strmatch(packet, "ls-request"))
707 type = OSPF_DEBUG_LS_REQ;
708 else if (strmatch(packet, "ls-update"))
709 type = OSPF_DEBUG_LS_UPD;
710 else if (strmatch(packet, "ls-ack"))
711 type = OSPF_DEBUG_LS_ACK;
712 else if (strmatch(packet, "all"))
713 type = OSPF_DEBUG_ALL;
714
715 /* Cases:
716 * (none) = send + recv
717 * detail = send + recv + detail
718 * recv = recv
719 * send = send
720 * recv detail = recv + detail
721 * send detail = send + detail
722 */
723 if (!send && !recv)
724 send = recv = 1;
725
726 flag |= (send) ? OSPF_DEBUG_SEND : 0;
727 flag |= (recv) ? OSPF_DEBUG_RECV : 0;
728 flag |= (detail) ? OSPF_DEBUG_DETAIL : 0;
729
730 for (i = 0; i < 5; i++)
731 if (type & (0x01 << i)) {
732 if (vty->node == CONFIG_NODE)
733 DEBUG_PACKET_OFF(i, flag);
734 else
735 TERM_DEBUG_PACKET_OFF(i, flag);
736 }
718e3744 737
738#ifdef DEBUG
d62a17ae 739/*
740for (i = 0; i < 5; i++)
741 zlog_debug ("flag[%d] = %d", i, ospf_debug_packet[i]);
742*/
718e3744 743#endif /* DEBUG */
744
d62a17ae 745 return CMD_SUCCESS;
718e3744 746}
747
692b4c65
QY
748DEFUN (debug_ospf_ism,
749 debug_ospf_ism_cmd,
750 "debug ospf [(1-65535)] ism [<status|events|timers>]",
718e3744 751 DEBUG_STR
752 OSPF_STR
7c8ff89e 753 "Instance ID\n"
692b4c65
QY
754 "OSPF Interface State Machine\n"
755 "ISM Status Information\n"
756 "ISM Event Information\n"
757 "ISM TImer Information\n")
7c8ff89e 758{
d62a17ae 759 int inst = (argv[2]->type == RANGE_TKN);
760 char *dbgparam = (argc == 4 + inst) ? argv[argc - 1]->text : NULL;
761
762 if (inst) // user passed instance ID
718e3744 763 {
d62a17ae 764 if (!ospf_lookup_instance(strtoul(argv[2]->arg, NULL, 10)))
ac28e4ec 765 return CMD_NOT_MY_INSTANCE;
718e3744 766 }
767
d62a17ae 768 if (vty->node == CONFIG_NODE) {
769 if (!dbgparam)
770 DEBUG_ON(ism, ISM);
771 else {
772 if (strmatch(dbgparam, "status"))
773 DEBUG_ON(ism, ISM_STATUS);
774 else if (strmatch(dbgparam, "events"))
775 DEBUG_ON(ism, ISM_EVENTS);
776 else if (strmatch(dbgparam, "timers"))
777 DEBUG_ON(ism, ISM_TIMERS);
778 }
779
780 return CMD_SUCCESS;
781 }
782
783 /* ENABLE_NODE. */
784 if (!dbgparam)
785 TERM_DEBUG_ON(ism, ISM);
786 else {
787 if (strmatch(dbgparam, "status"))
788 TERM_DEBUG_ON(ism, ISM_STATUS);
789 else if (strmatch(dbgparam, "events"))
790 TERM_DEBUG_ON(ism, ISM_EVENTS);
791 else if (strmatch(dbgparam, "timers"))
792 TERM_DEBUG_ON(ism, ISM_TIMERS);
793 }
794
795 return CMD_SUCCESS;
718e3744 796}
797
692b4c65
QY
798DEFUN (no_debug_ospf_ism,
799 no_debug_ospf_ism_cmd,
800 "no debug ospf [(1-65535)] ism [<status|events|timers>]",
16cedbb0 801 NO_STR
718e3744 802 DEBUG_STR
803 OSPF_STR
7c8ff89e 804 "Instance ID\n"
692b4c65
QY
805 "OSPF Interface State Machine\n"
806 "ISM Status Information\n"
807 "ISM Event Information\n"
808 "ISM TImer Information\n")
7c8ff89e 809{
d62a17ae 810 int inst = (argv[3]->type == RANGE_TKN);
811 char *dbgparam = (argc == 5 + inst) ? argv[argc - 1]->text : NULL;
812
813 if (inst) // user passed instance ID
718e3744 814 {
d62a17ae 815 if (!ospf_lookup_instance(strtoul(argv[3]->arg, NULL, 10)))
ac28e4ec 816 return CMD_NOT_MY_INSTANCE;
d62a17ae 817 }
818
819 if (vty->node == CONFIG_NODE) {
820 if (!dbgparam)
821 DEBUG_OFF(ism, ISM);
822 else {
823 if (strmatch(dbgparam, "status"))
824 DEBUG_OFF(ism, ISM_STATUS);
825 else if (strmatch(dbgparam, "events"))
826 DEBUG_OFF(ism, ISM_EVENTS);
827 else if (strmatch(dbgparam, "timers"))
828 DEBUG_OFF(ism, ISM_TIMERS);
829 }
830
831 return CMD_SUCCESS;
832 }
833
834 /* ENABLE_NODE. */
835 if (!dbgparam)
836 TERM_DEBUG_OFF(ism, ISM);
837 else {
838 if (strmatch(dbgparam, "status"))
839 TERM_DEBUG_OFF(ism, ISM_STATUS);
840 else if (strmatch(dbgparam, "events"))
841 TERM_DEBUG_OFF(ism, ISM_EVENTS);
842 else if (strmatch(dbgparam, "timers"))
843 TERM_DEBUG_OFF(ism, ISM_TIMERS);
718e3744 844 }
692b4c65 845
d62a17ae 846 return CMD_SUCCESS;
718e3744 847}
848
d62a17ae 849static int debug_ospf_nsm_common(struct vty *vty, int arg_base, int argc,
850 struct cmd_token **argv)
718e3744 851{
d62a17ae 852 if (vty->node == CONFIG_NODE) {
853 if (argc == arg_base + 0)
854 DEBUG_ON(nsm, NSM);
855 else if (argc == arg_base + 1) {
856 if (strmatch(argv[arg_base]->text, "status"))
857 DEBUG_ON(nsm, NSM_STATUS);
858 else if (strmatch(argv[arg_base]->text, "events"))
859 DEBUG_ON(nsm, NSM_EVENTS);
860 else if (strmatch(argv[arg_base]->text, "timers"))
861 DEBUG_ON(nsm, NSM_TIMERS);
862 }
863
864 return CMD_SUCCESS;
865 }
866
867 /* ENABLE_NODE. */
868 if (argc == arg_base + 0)
869 TERM_DEBUG_ON(nsm, NSM);
870 else if (argc == arg_base + 1) {
871 if (strmatch(argv[arg_base]->text, "status"))
872 TERM_DEBUG_ON(nsm, NSM_STATUS);
873 else if (strmatch(argv[arg_base]->text, "events"))
874 TERM_DEBUG_ON(nsm, NSM_EVENTS);
875 else if (strmatch(argv[arg_base]->text, "timers"))
876 TERM_DEBUG_ON(nsm, NSM_TIMERS);
718e3744 877 }
878
d62a17ae 879 return CMD_SUCCESS;
718e3744 880}
881
7c8ff89e
DS
882DEFUN (debug_ospf_nsm,
883 debug_ospf_nsm_cmd,
6de69f83 884 "debug ospf nsm [<status|events|timers>]",
7c8ff89e
DS
885 DEBUG_STR
886 OSPF_STR
1d68dbfe
DW
887 "OSPF Neighbor State Machine\n"
888 "NSM Status Information\n"
889 "NSM Event Information\n"
890 "NSM Timer Information\n")
7c8ff89e 891{
d62a17ae 892 return debug_ospf_nsm_common(vty, 3, argc, argv);
7c8ff89e
DS
893}
894
7c8ff89e
DS
895DEFUN (debug_ospf_instance_nsm,
896 debug_ospf_instance_nsm_cmd,
6de69f83 897 "debug ospf (1-65535) nsm [<status|events|timers>]",
718e3744 898 DEBUG_STR
899 OSPF_STR
7c8ff89e 900 "Instance ID\n"
1d68dbfe
DW
901 "OSPF Neighbor State Machine\n"
902 "NSM Status Information\n"
903 "NSM Event Information\n"
904 "NSM Timer Information\n")
7c8ff89e 905{
d62a17ae 906 int idx_number = 2;
d7c0a89a 907 unsigned short instance = 0;
7c8ff89e 908
d62a17ae 909 instance = strtoul(argv[idx_number]->arg, NULL, 10);
910 if (!ospf_lookup_instance(instance))
911 return CMD_SUCCESS;
7c8ff89e 912
d62a17ae 913 return debug_ospf_nsm_common(vty, 4, argc, argv);
7c8ff89e
DS
914}
915
7c8ff89e 916
d62a17ae 917static int no_debug_ospf_nsm_common(struct vty *vty, int arg_base, int argc,
918 struct cmd_token **argv)
718e3744 919{
d62a17ae 920 /* XXX qlyoung */
921 if (vty->node == CONFIG_NODE) {
922 if (argc == arg_base + 0)
923 DEBUG_OFF(nsm, NSM);
924 else if (argc == arg_base + 1) {
925 if (strmatch(argv[arg_base]->text, "status"))
926 DEBUG_OFF(nsm, NSM_STATUS);
927 else if (strmatch(argv[arg_base]->text, "events"))
928 DEBUG_OFF(nsm, NSM_EVENTS);
929 else if (strmatch(argv[arg_base]->text, "timers"))
930 DEBUG_OFF(nsm, NSM_TIMERS);
931 }
932
933 return CMD_SUCCESS;
934 }
935
936 /* ENABLE_NODE. */
937 if (argc == arg_base + 0)
938 TERM_DEBUG_OFF(nsm, NSM);
939 else if (argc == arg_base + 1) {
940 if (strmatch(argv[arg_base]->text, "status"))
941 TERM_DEBUG_OFF(nsm, NSM_STATUS);
942 else if (strmatch(argv[arg_base]->text, "events"))
943 TERM_DEBUG_OFF(nsm, NSM_EVENTS);
944 else if (strmatch(argv[arg_base]->text, "timers"))
945 TERM_DEBUG_OFF(nsm, NSM_TIMERS);
718e3744 946 }
947
d62a17ae 948 return CMD_SUCCESS;
718e3744 949}
950
7c8ff89e
DS
951DEFUN (no_debug_ospf_nsm,
952 no_debug_ospf_nsm_cmd,
6de69f83 953 "no debug ospf nsm [<status|events|timers>]",
7c8ff89e
DS
954 NO_STR
955 DEBUG_STR
956 OSPF_STR
16cedbb0 957 "OSPF Neighbor State Machine\n"
1d68dbfe
DW
958 "NSM Status Information\n"
959 "NSM Event Information\n"
960 "NSM Timer Information\n")
7c8ff89e 961{
d62a17ae 962 return no_debug_ospf_nsm_common(vty, 4, argc, argv);
7c8ff89e
DS
963}
964
718e3744 965
7c8ff89e
DS
966DEFUN (no_debug_ospf_instance_nsm,
967 no_debug_ospf_instance_nsm_cmd,
6de69f83 968 "no debug ospf (1-65535) nsm [<status|events|timers>]",
7c8ff89e 969 NO_STR
718e3744 970 DEBUG_STR
971 OSPF_STR
7c8ff89e 972 "Instance ID\n"
16cedbb0 973 "OSPF Neighbor State Machine\n"
1d68dbfe
DW
974 "NSM Status Information\n"
975 "NSM Event Information\n"
976 "NSM Timer Information\n")
7c8ff89e 977{
d62a17ae 978 int idx_number = 3;
d7c0a89a 979 unsigned short instance = 0;
7c8ff89e 980
d62a17ae 981 instance = strtoul(argv[idx_number]->arg, NULL, 10);
982 if (!ospf_lookup_instance(instance))
ac28e4ec 983 return CMD_NOT_MY_INSTANCE;
7c8ff89e 984
d62a17ae 985 return no_debug_ospf_nsm_common(vty, 5, argc, argv);
7c8ff89e
DS
986}
987
7c8ff89e 988
d62a17ae 989static int debug_ospf_lsa_common(struct vty *vty, int arg_base, int argc,
990 struct cmd_token **argv)
718e3744 991{
d62a17ae 992 if (vty->node == CONFIG_NODE) {
993 if (argc == arg_base + 0)
994 DEBUG_ON(lsa, LSA);
995 else if (argc == arg_base + 1) {
996 if (strmatch(argv[arg_base]->text, "generate"))
997 DEBUG_ON(lsa, LSA_GENERATE);
998 else if (strmatch(argv[arg_base]->text, "flooding"))
999 DEBUG_ON(lsa, LSA_FLOODING);
1000 else if (strmatch(argv[arg_base]->text, "install"))
1001 DEBUG_ON(lsa, LSA_INSTALL);
1002 else if (strmatch(argv[arg_base]->text, "refresh"))
1003 DEBUG_ON(lsa, LSA_REFRESH);
1004 }
1005
1006 return CMD_SUCCESS;
718e3744 1007 }
1008
d62a17ae 1009 /* ENABLE_NODE. */
1010 if (argc == arg_base + 0)
1011 TERM_DEBUG_ON(lsa, LSA);
1012 else if (argc == arg_base + 1) {
1013 if (strmatch(argv[arg_base]->text, "generate"))
1014 TERM_DEBUG_ON(lsa, LSA_GENERATE);
1015 else if (strmatch(argv[arg_base]->text, "flooding"))
1016 TERM_DEBUG_ON(lsa, LSA_FLOODING);
1017 else if (strmatch(argv[arg_base]->text, "install"))
1018 TERM_DEBUG_ON(lsa, LSA_INSTALL);
1019 else if (strmatch(argv[arg_base]->text, "refresh"))
1020 TERM_DEBUG_ON(lsa, LSA_REFRESH);
1021 }
1022
1023 return CMD_SUCCESS;
718e3744 1024}
1025
7c8ff89e
DS
1026DEFUN (debug_ospf_lsa,
1027 debug_ospf_lsa_cmd,
6de69f83 1028 "debug ospf lsa [<generate|flooding|install|refresh>]",
7c8ff89e
DS
1029 DEBUG_STR
1030 OSPF_STR
1d68dbfe
DW
1031 "OSPF Link State Advertisement\n"
1032 "LSA Generation\n"
1033 "LSA Flooding\n"
1034 "LSA Install/Delete\n"
1035 "LSA Refresh\n")
7c8ff89e 1036{
d62a17ae 1037 return debug_ospf_lsa_common(vty, 3, argc, argv);
7c8ff89e
DS
1038}
1039
7c8ff89e
DS
1040DEFUN (debug_ospf_instance_lsa,
1041 debug_ospf_instance_lsa_cmd,
6de69f83 1042 "debug ospf (1-65535) lsa [<generate|flooding|install|refresh>]",
718e3744 1043 DEBUG_STR
1044 OSPF_STR
7c8ff89e 1045 "Instance ID\n"
1d68dbfe
DW
1046 "OSPF Link State Advertisement\n"
1047 "LSA Generation\n"
1048 "LSA Flooding\n"
1049 "LSA Install/Delete\n"
1050 "LSA Refresh\n")
7c8ff89e 1051{
d62a17ae 1052 int idx_number = 2;
d7c0a89a 1053 unsigned short instance = 0;
7c8ff89e 1054
d62a17ae 1055 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1056 if (!ospf_lookup_instance(instance))
ac28e4ec 1057 return CMD_NOT_MY_INSTANCE;
7c8ff89e 1058
d62a17ae 1059 return debug_ospf_lsa_common(vty, 4, argc, argv);
7c8ff89e
DS
1060}
1061
7c8ff89e 1062
d62a17ae 1063static int no_debug_ospf_lsa_common(struct vty *vty, int arg_base, int argc,
1064 struct cmd_token **argv)
718e3744 1065{
d62a17ae 1066 if (vty->node == CONFIG_NODE) {
1067 if (argc == arg_base + 0)
1068 DEBUG_OFF(lsa, LSA);
1069 else if (argc == arg_base + 1) {
1070 if (strmatch(argv[arg_base]->text, "generate"))
1071 DEBUG_OFF(lsa, LSA_GENERATE);
1072 else if (strmatch(argv[arg_base]->text, "flooding"))
1073 DEBUG_OFF(lsa, LSA_FLOODING);
1074 else if (strmatch(argv[arg_base]->text, "install"))
1075 DEBUG_OFF(lsa, LSA_INSTALL);
1076 else if (strmatch(argv[arg_base]->text, "refresh"))
1077 DEBUG_OFF(lsa, LSA_REFRESH);
1078 }
1079
1080 return CMD_SUCCESS;
1081 }
1082
1083 /* ENABLE_NODE. */
1084 if (argc == arg_base + 0)
1085 TERM_DEBUG_OFF(lsa, LSA);
1086 else if (argc == arg_base + 1) {
1087 if (strmatch(argv[arg_base]->text, "generate"))
1088 TERM_DEBUG_OFF(lsa, LSA_GENERATE);
1089 else if (strmatch(argv[arg_base]->text, "flooding"))
1090 TERM_DEBUG_OFF(lsa, LSA_FLOODING);
1091 else if (strmatch(argv[arg_base]->text, "install"))
1092 TERM_DEBUG_OFF(lsa, LSA_INSTALL);
1093 else if (strmatch(argv[arg_base]->text, "refresh"))
1094 TERM_DEBUG_OFF(lsa, LSA_REFRESH);
718e3744 1095 }
1096
d62a17ae 1097 return CMD_SUCCESS;
718e3744 1098}
1099
7c8ff89e
DS
1100DEFUN (no_debug_ospf_lsa,
1101 no_debug_ospf_lsa_cmd,
6de69f83 1102 "no debug ospf lsa [<generate|flooding|install|refresh>]",
7c8ff89e
DS
1103 NO_STR
1104 DEBUG_STR
1105 OSPF_STR
1d68dbfe
DW
1106 "OSPF Link State Advertisement\n"
1107 "LSA Generation\n"
1108 "LSA Flooding\n"
1109 "LSA Install/Delete\n"
1110 "LSA Refres\n")
7c8ff89e 1111{
d62a17ae 1112 return no_debug_ospf_lsa_common(vty, 4, argc, argv);
7c8ff89e
DS
1113}
1114
7c8ff89e
DS
1115DEFUN (no_debug_ospf_instance_lsa,
1116 no_debug_ospf_instance_lsa_cmd,
6de69f83 1117 "no debug ospf (1-65535) lsa [<generate|flooding|install|refresh>]",
7c8ff89e
DS
1118 NO_STR
1119 DEBUG_STR
1120 OSPF_STR
1121 "Instance ID\n"
1d68dbfe
DW
1122 "OSPF Link State Advertisement\n"
1123 "LSA Generation\n"
1124 "LSA Flooding\n"
1125 "LSA Install/Delete\n"
1126 "LSA Refres\n")
7c8ff89e 1127{
d62a17ae 1128 int idx_number = 3;
d7c0a89a 1129 unsigned short instance = 0;
7c8ff89e 1130
d62a17ae 1131 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1132 if (!ospf_lookup_instance(instance))
ac28e4ec 1133 return CMD_NOT_MY_INSTANCE;
6b0655a2 1134
d62a17ae 1135 return no_debug_ospf_lsa_common(vty, 5, argc, argv);
7c8ff89e
DS
1136}
1137
7c8ff89e 1138
d62a17ae 1139static int debug_ospf_zebra_common(struct vty *vty, int arg_base, int argc,
1140 struct cmd_token **argv)
718e3744 1141{
d62a17ae 1142 if (vty->node == CONFIG_NODE) {
1143 if (argc == arg_base + 0)
1144 DEBUG_ON(zebra, ZEBRA);
1145 else if (argc == arg_base + 1) {
1146 if (strmatch(argv[arg_base]->text, "interface"))
1147 DEBUG_ON(zebra, ZEBRA_INTERFACE);
1148 else if (strmatch(argv[arg_base]->text, "redistribute"))
1149 DEBUG_ON(zebra, ZEBRA_REDISTRIBUTE);
1150 }
1151
1152 return CMD_SUCCESS;
1153 }
1154
1155 /* ENABLE_NODE. */
1156 if (argc == arg_base + 0)
1157 TERM_DEBUG_ON(zebra, ZEBRA);
1158 else if (argc == arg_base + 1) {
1159 if (strmatch(argv[arg_base]->text, "interface"))
1160 TERM_DEBUG_ON(zebra, ZEBRA_INTERFACE);
1161 else if (strmatch(argv[arg_base]->text, "redistribute"))
1162 TERM_DEBUG_ON(zebra, ZEBRA_REDISTRIBUTE);
718e3744 1163 }
1164
d62a17ae 1165 return CMD_SUCCESS;
718e3744 1166}
1167
7c8ff89e
DS
1168DEFUN (debug_ospf_zebra,
1169 debug_ospf_zebra_cmd,
6de69f83 1170 "debug ospf zebra [<interface|redistribute>]",
7c8ff89e
DS
1171 DEBUG_STR
1172 OSPF_STR
41e7fb80 1173 ZEBRA_STR
1d68dbfe
DW
1174 "Zebra interface\n"
1175 "Zebra redistribute\n")
7c8ff89e 1176{
d62a17ae 1177 return debug_ospf_zebra_common(vty, 3, argc, argv);
7c8ff89e
DS
1178}
1179
7c8ff89e
DS
1180DEFUN (debug_ospf_instance_zebra,
1181 debug_ospf_instance_zebra_cmd,
6de69f83 1182 "debug ospf (1-65535) zebra [<interface|redistribute>]",
718e3744 1183 DEBUG_STR
1184 OSPF_STR
7c8ff89e 1185 "Instance ID\n"
41e7fb80 1186 ZEBRA_STR
1d68dbfe
DW
1187 "Zebra interface\n"
1188 "Zebra redistribute\n")
7c8ff89e 1189{
d62a17ae 1190 int idx_number = 2;
d7c0a89a 1191 unsigned short instance = 0;
7c8ff89e 1192
d62a17ae 1193 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1194 if (!ospf_lookup_instance(instance))
ac28e4ec 1195 return CMD_NOT_MY_INSTANCE;
7c8ff89e 1196
d62a17ae 1197 return debug_ospf_zebra_common(vty, 4, argc, argv);
7c8ff89e
DS
1198}
1199
7c8ff89e 1200
d62a17ae 1201static int no_debug_ospf_zebra_common(struct vty *vty, int arg_base, int argc,
1202 struct cmd_token **argv)
718e3744 1203{
d62a17ae 1204 if (vty->node == CONFIG_NODE) {
1205 if (argc == arg_base + 0)
1206 DEBUG_OFF(zebra, ZEBRA);
1207 else if (argc == arg_base + 1) {
1208 if (strmatch(argv[arg_base]->text, "interface"))
1209 DEBUG_OFF(zebra, ZEBRA_INTERFACE);
1210 else if (strmatch(argv[arg_base]->text, "redistribute"))
1211 DEBUG_OFF(zebra, ZEBRA_REDISTRIBUTE);
1212 }
1213
1214 return CMD_SUCCESS;
1215 }
1216
1217 /* ENABLE_NODE. */
1218 if (argc == arg_base + 0)
1219 TERM_DEBUG_OFF(zebra, ZEBRA);
1220 else if (argc == arg_base + 1) {
1221 if (strmatch(argv[arg_base]->text, "interface"))
1222 TERM_DEBUG_OFF(zebra, ZEBRA_INTERFACE);
1223 else if (strmatch(argv[arg_base]->text, "redistribute"))
1224 TERM_DEBUG_OFF(zebra, ZEBRA_REDISTRIBUTE);
718e3744 1225 }
1226
d62a17ae 1227 return CMD_SUCCESS;
718e3744 1228}
1229
7c8ff89e
DS
1230DEFUN (no_debug_ospf_zebra,
1231 no_debug_ospf_zebra_cmd,
6de69f83 1232 "no debug ospf zebra [<interface|redistribute>]",
7c8ff89e
DS
1233 NO_STR
1234 DEBUG_STR
1235 OSPF_STR
41e7fb80 1236 ZEBRA_STR
1d68dbfe
DW
1237 "Zebra interface\n"
1238 "Zebra redistribute\n")
7c8ff89e 1239{
d62a17ae 1240 return no_debug_ospf_zebra_common(vty, 4, argc, argv);
7c8ff89e
DS
1241}
1242
7c8ff89e
DS
1243DEFUN (no_debug_ospf_instance_zebra,
1244 no_debug_ospf_instance_zebra_cmd,
6de69f83 1245 "no debug ospf (1-65535) zebra [<interface|redistribute>]",
7c8ff89e
DS
1246 NO_STR
1247 DEBUG_STR
1248 OSPF_STR
1249 "Instance ID\n"
41e7fb80 1250 ZEBRA_STR
1d68dbfe
DW
1251 "Zebra interface\n"
1252 "Zebra redistribute\n")
7c8ff89e 1253{
d62a17ae 1254 int idx_number = 3;
d7c0a89a 1255 unsigned short instance = 0;
7c8ff89e 1256
d62a17ae 1257 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1258 if (!ospf_lookup_instance(instance))
1259 return CMD_SUCCESS;
7c8ff89e 1260
d62a17ae 1261 return no_debug_ospf_zebra_common(vty, 5, argc, argv);
7c8ff89e
DS
1262}
1263
7c8ff89e 1264
718e3744 1265DEFUN (debug_ospf_event,
1266 debug_ospf_event_cmd,
1267 "debug ospf event",
1268 DEBUG_STR
1269 OSPF_STR
1270 "OSPF event information\n")
1271{
d62a17ae 1272 if (vty->node == CONFIG_NODE)
1273 CONF_DEBUG_ON(event, EVENT);
1274 TERM_DEBUG_ON(event, EVENT);
1275 return CMD_SUCCESS;
718e3744 1276}
1277
1278DEFUN (no_debug_ospf_event,
1279 no_debug_ospf_event_cmd,
1280 "no debug ospf event",
1281 NO_STR
1282 DEBUG_STR
1283 OSPF_STR
1284 "OSPF event information\n")
1285{
d62a17ae 1286 if (vty->node == CONFIG_NODE)
1287 CONF_DEBUG_OFF(event, EVENT);
1288 TERM_DEBUG_OFF(event, EVENT);
1289 return CMD_SUCCESS;
718e3744 1290}
1291
7c8ff89e
DS
1292DEFUN (debug_ospf_instance_event,
1293 debug_ospf_instance_event_cmd,
6147e2c6 1294 "debug ospf (1-65535) event",
7c8ff89e
DS
1295 DEBUG_STR
1296 OSPF_STR
1297 "Instance ID\n"
1298 "OSPF event information\n")
1299{
d62a17ae 1300 int idx_number = 2;
d7c0a89a 1301 unsigned short instance = 0;
7c8ff89e 1302
d62a17ae 1303 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1304 if (!ospf_lookup_instance(instance))
1305 return CMD_SUCCESS;
7c8ff89e 1306
d62a17ae 1307 if (vty->node == CONFIG_NODE)
1308 CONF_DEBUG_ON(event, EVENT);
1309 TERM_DEBUG_ON(event, EVENT);
1310 return CMD_SUCCESS;
7c8ff89e
DS
1311}
1312
1313DEFUN (no_debug_ospf_instance_event,
1314 no_debug_ospf_instance_event_cmd,
6147e2c6 1315 "no debug ospf (1-65535) event",
7c8ff89e
DS
1316 NO_STR
1317 DEBUG_STR
1318 OSPF_STR
1319 "Instance ID\n"
1320 "OSPF event information\n")
1321{
d62a17ae 1322 int idx_number = 3;
d7c0a89a 1323 unsigned short instance = 0;
7c8ff89e 1324
d62a17ae 1325 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1326 if (!ospf_lookup_instance(instance))
1327 return CMD_SUCCESS;
7c8ff89e 1328
d62a17ae 1329 if (vty->node == CONFIG_NODE)
1330 CONF_DEBUG_OFF(event, EVENT);
1331 TERM_DEBUG_OFF(event, EVENT);
1332 return CMD_SUCCESS;
7c8ff89e
DS
1333}
1334
718e3744 1335DEFUN (debug_ospf_nssa,
1336 debug_ospf_nssa_cmd,
1337 "debug ospf nssa",
1338 DEBUG_STR
1339 OSPF_STR
1340 "OSPF nssa information\n")
1341{
d62a17ae 1342 if (vty->node == CONFIG_NODE)
1343 CONF_DEBUG_ON(nssa, NSSA);
1344 TERM_DEBUG_ON(nssa, NSSA);
1345 return CMD_SUCCESS;
718e3744 1346}
1347
1348DEFUN (no_debug_ospf_nssa,
1349 no_debug_ospf_nssa_cmd,
1350 "no debug ospf nssa",
1351 NO_STR
1352 DEBUG_STR
1353 OSPF_STR
1354 "OSPF nssa information\n")
1355{
d62a17ae 1356 if (vty->node == CONFIG_NODE)
1357 CONF_DEBUG_OFF(nssa, NSSA);
1358 TERM_DEBUG_OFF(nssa, NSSA);
1359 return CMD_SUCCESS;
718e3744 1360}
1361
7c8ff89e
DS
1362DEFUN (debug_ospf_instance_nssa,
1363 debug_ospf_instance_nssa_cmd,
6147e2c6 1364 "debug ospf (1-65535) nssa",
7c8ff89e
DS
1365 DEBUG_STR
1366 OSPF_STR
1367 "Instance ID\n"
1368 "OSPF nssa information\n")
1369{
d62a17ae 1370 int idx_number = 2;
d7c0a89a 1371 unsigned short instance = 0;
7c8ff89e 1372
d62a17ae 1373 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1374 if (!ospf_lookup_instance(instance))
1375 return CMD_SUCCESS;
6b0655a2 1376
d62a17ae 1377 if (vty->node == CONFIG_NODE)
1378 CONF_DEBUG_ON(nssa, NSSA);
1379 TERM_DEBUG_ON(nssa, NSSA);
1380 return CMD_SUCCESS;
7c8ff89e
DS
1381}
1382
1383DEFUN (no_debug_ospf_instance_nssa,
1384 no_debug_ospf_instance_nssa_cmd,
6147e2c6 1385 "no debug ospf (1-65535) nssa",
7c8ff89e 1386 NO_STR
718e3744 1387 DEBUG_STR
7c8ff89e
DS
1388 OSPF_STR
1389 "Instance ID\n"
1390 "OSPF nssa information\n")
1391{
d62a17ae 1392 int idx_number = 3;
d7c0a89a 1393 unsigned short instance = 0;
7c8ff89e 1394
d62a17ae 1395 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1396 if (!ospf_lookup_instance(instance))
1397 return CMD_SUCCESS;
7c8ff89e 1398
d62a17ae 1399 if (vty->node == CONFIG_NODE)
1400 CONF_DEBUG_OFF(nssa, NSSA);
1401 TERM_DEBUG_OFF(nssa, NSSA);
1402 return CMD_SUCCESS;
7c8ff89e
DS
1403}
1404
16f1b9ee
OD
1405DEFUN (debug_ospf_te,
1406 debug_ospf_te_cmd,
1407 "debug ospf te",
1408 DEBUG_STR
1409 OSPF_STR
1410 "OSPF-TE information\n")
1411{
d62a17ae 1412 if (vty->node == CONFIG_NODE)
1413 CONF_DEBUG_ON(te, TE);
1414 TERM_DEBUG_ON(te, TE);
1415 return CMD_SUCCESS;
16f1b9ee
OD
1416}
1417
1418DEFUN (no_debug_ospf_te,
1419 no_debug_ospf_te_cmd,
1420 "no debug ospf te",
1421 NO_STR
1422 DEBUG_STR
1423 OSPF_STR
1424 "OSPF-TE information\n")
1425{
d62a17ae 1426 if (vty->node == CONFIG_NODE)
1427 CONF_DEBUG_OFF(te, TE);
1428 TERM_DEBUG_OFF(te, TE);
1429 return CMD_SUCCESS;
16f1b9ee
OD
1430}
1431
cf9b9f77
OD
1432DEFUN (debug_ospf_sr,
1433 debug_ospf_sr_cmd,
1434 "debug ospf sr",
1435 DEBUG_STR
1436 OSPF_STR
1437 "OSPF-SR information\n")
1438{
1439 if (vty->node == CONFIG_NODE)
1440 CONF_DEBUG_ON(sr, SR);
1441 TERM_DEBUG_ON(sr, SR);
1442 return CMD_SUCCESS;
1443}
1444
1445DEFUN (no_debug_ospf_sr,
1446 no_debug_ospf_sr_cmd,
1447 "no debug ospf sr",
1448 NO_STR
1449 DEBUG_STR
1450 OSPF_STR
1451 "OSPF-SR information\n")
1452{
1453 if (vty->node == CONFIG_NODE)
1454 CONF_DEBUG_OFF(sr, SR);
1455 TERM_DEBUG_OFF(sr, SR);
1456 return CMD_SUCCESS;
1457}
1458
1febb13d
S
1459DEFUN (debug_ospf_default_info,
1460 debug_ospf_default_info_cmd,
1461 "debug ospf default-information",
1462 DEBUG_STR
1463 OSPF_STR
1464 "OSPF default information\n")
1465{
1466 if (vty->node == CONFIG_NODE)
1467 CONF_DEBUG_ON(defaultinfo, DEFAULTINFO);
1468 TERM_DEBUG_ON(defaultinfo, DEFAULTINFO);
1469 return CMD_SUCCESS;
1470}
1471
1472DEFUN (no_debug_ospf_default_info,
1473 no_debug_ospf_default_info_cmd,
1474 "no debug ospf default-information",
1475 NO_STR
1476 DEBUG_STR
1477 OSPF_STR
1478 "OSPF default information\n")
1479{
1480 if (vty->node == CONFIG_NODE)
1481 CONF_DEBUG_OFF(defaultinfo, DEFAULTINFO);
1482 TERM_DEBUG_OFF(defaultinfo, DEFAULTINFO);
1483 return CMD_SUCCESS;
1484}
1485
132a782e 1486DEFUN(debug_ospf_ldp_sync,
1487 debug_ospf_ldp_sync_cmd,
1488 "debug ospf ldp-sync",
1489 DEBUG_STR OSPF_STR
1490 "OSPF LDP-Sync information\n")
1491{
1492 if (vty->node == CONFIG_NODE)
1493 CONF_DEBUG_ON(ldp_sync, LDP_SYNC);
1494 TERM_DEBUG_ON(ldp_sync, LDP_SYNC);
1495 return CMD_SUCCESS;
1496}
1497
1498DEFUN(no_debug_ospf_ldp_sync,
1499 no_debug_ospf_ldp_sync_cmd,
1500 "no debug ospf ldp-sync",
1501 NO_STR
1502 DEBUG_STR
1503 OSPF_STR
1504 "OSPF LDP-Sync information\n")
1505{
1506 if (vty->node == CONFIG_NODE)
1507 CONF_DEBUG_OFF(ldp_sync, LDP_SYNC);
1508 TERM_DEBUG_OFF(ldp_sync, LDP_SYNC);
caa1cd9e 1509
1510 return CMD_SUCCESS;
1511}
1512
1513DEFPY (debug_ospf_gr,
1514 debug_ospf_gr_cmd,
1515 "[no$no] debug ospf graceful-restart helper",
1516 NO_STR
1517 DEBUG_STR OSPF_STR
1518 "Gracefull restart\n"
1519 "Helper Information\n")
1520{
1521 if (vty->node == CONFIG_NODE)
1522 CONF_DEBUG_ON(gr, GR_HELPER);
1523
1524 if (!no)
1525 TERM_DEBUG_ON(gr, GR_HELPER);
1526 else
1527 TERM_DEBUG_OFF(gr, GR_HELPER);
1528
132a782e 1529 return CMD_SUCCESS;
1530}
1531
4dfd8aff
DW
1532DEFUN (no_debug_ospf,
1533 no_debug_ospf_cmd,
1534 "no debug ospf",
1535 NO_STR
1536 DEBUG_STR
1537 OSPF_STR)
1538{
d62a17ae 1539 int flag = OSPF_DEBUG_SEND | OSPF_DEBUG_RECV | OSPF_DEBUG_DETAIL;
1540 int i;
1541
1542 if (vty->node == CONFIG_NODE) {
1543 CONF_DEBUG_OFF(event, EVENT);
1544 CONF_DEBUG_OFF(nssa, NSSA);
1545 DEBUG_OFF(ism, ISM_EVENTS);
1546 DEBUG_OFF(ism, ISM_STATUS);
1547 DEBUG_OFF(ism, ISM_TIMERS);
1548 DEBUG_OFF(lsa, LSA);
1549 DEBUG_OFF(lsa, LSA_FLOODING);
1550 DEBUG_OFF(lsa, LSA_GENERATE);
1551 DEBUG_OFF(lsa, LSA_INSTALL);
1552 DEBUG_OFF(lsa, LSA_REFRESH);
1553 DEBUG_OFF(nsm, NSM);
1554 DEBUG_OFF(nsm, NSM_EVENTS);
1555 DEBUG_OFF(nsm, NSM_STATUS);
1556 DEBUG_OFF(nsm, NSM_TIMERS);
1557 DEBUG_OFF(zebra, ZEBRA);
1558 DEBUG_OFF(zebra, ZEBRA_INTERFACE);
1559 DEBUG_OFF(zebra, ZEBRA_REDISTRIBUTE);
1febb13d 1560 DEBUG_OFF(defaultinfo, DEFAULTINFO);
132a782e 1561 DEBUG_OFF(ldp_sync, LDP_SYNC);
d62a17ae 1562
1563 for (i = 0; i < 5; i++)
1564 DEBUG_PACKET_OFF(i, flag);
1565 }
1566
1567 for (i = 0; i < 5; i++)
1568 TERM_DEBUG_PACKET_OFF(i, flag);
1569
1570 TERM_DEBUG_OFF(event, EVENT);
1571 TERM_DEBUG_OFF(ism, ISM);
1572 TERM_DEBUG_OFF(ism, ISM_EVENTS);
1573 TERM_DEBUG_OFF(ism, ISM_STATUS);
1574 TERM_DEBUG_OFF(ism, ISM_TIMERS);
1575 TERM_DEBUG_OFF(lsa, LSA);
1576 TERM_DEBUG_OFF(lsa, LSA_FLOODING);
1577 TERM_DEBUG_OFF(lsa, LSA_GENERATE);
1578 TERM_DEBUG_OFF(lsa, LSA_INSTALL);
1579 TERM_DEBUG_OFF(lsa, LSA_REFRESH);
1580 TERM_DEBUG_OFF(nsm, NSM);
1581 TERM_DEBUG_OFF(nsm, NSM_EVENTS);
1582 TERM_DEBUG_OFF(nsm, NSM_STATUS);
1583 TERM_DEBUG_OFF(nsm, NSM_TIMERS);
1584 TERM_DEBUG_OFF(nssa, NSSA);
1585 TERM_DEBUG_OFF(zebra, ZEBRA);
1586 TERM_DEBUG_OFF(zebra, ZEBRA_INTERFACE);
1587 TERM_DEBUG_OFF(zebra, ZEBRA_REDISTRIBUTE);
1febb13d 1588 TERM_DEBUG_OFF(defaultinfo, DEFAULTINFO);
132a782e 1589 TERM_DEBUG_OFF(ldp_sync, LDP_SYNC);
d62a17ae 1590
1591 return CMD_SUCCESS;
4dfd8aff 1592}
7c8ff89e 1593
d62a17ae 1594static int show_debugging_ospf_common(struct vty *vty, struct ospf *ospf)
718e3744 1595{
d62a17ae 1596 int i;
1597
1598 if (ospf->instance)
1599 vty_out(vty, "\nOSPF Instance: %d\n\n", ospf->instance);
1600
1601 vty_out(vty, "OSPF debugging status:\n");
1602
1603 /* Show debug status for events. */
1604 if (IS_DEBUG_OSPF(event, EVENT))
1605 vty_out(vty, " OSPF event debugging is on\n");
1606
1607 /* Show debug status for ISM. */
1608 if (IS_DEBUG_OSPF(ism, ISM) == OSPF_DEBUG_ISM)
1609 vty_out(vty, " OSPF ISM debugging is on\n");
1610 else {
1611 if (IS_DEBUG_OSPF(ism, ISM_STATUS))
1612 vty_out(vty, " OSPF ISM status debugging is on\n");
1613 if (IS_DEBUG_OSPF(ism, ISM_EVENTS))
1614 vty_out(vty, " OSPF ISM event debugging is on\n");
1615 if (IS_DEBUG_OSPF(ism, ISM_TIMERS))
1616 vty_out(vty, " OSPF ISM timer debugging is on\n");
1617 }
1618
1619 /* Show debug status for NSM. */
1620 if (IS_DEBUG_OSPF(nsm, NSM) == OSPF_DEBUG_NSM)
1621 vty_out(vty, " OSPF NSM debugging is on\n");
1622 else {
1623 if (IS_DEBUG_OSPF(nsm, NSM_STATUS))
1624 vty_out(vty, " OSPF NSM status debugging is on\n");
1625 if (IS_DEBUG_OSPF(nsm, NSM_EVENTS))
1626 vty_out(vty, " OSPF NSM event debugging is on\n");
1627 if (IS_DEBUG_OSPF(nsm, NSM_TIMERS))
1628 vty_out(vty, " OSPF NSM timer debugging is on\n");
1629 }
1630
1631 /* Show debug status for OSPF Packets. */
1632 for (i = 0; i < 5; i++)
1633 if (IS_DEBUG_OSPF_PACKET(i, SEND)
1634 && IS_DEBUG_OSPF_PACKET(i, RECV)) {
1635 vty_out(vty, " OSPF packet %s%s debugging is on\n",
1636 lookup_msg(ospf_packet_type_str, i + 1, NULL),
1637 IS_DEBUG_OSPF_PACKET(i, DETAIL) ? " detail"
1638 : "");
1639 } else {
1640 if (IS_DEBUG_OSPF_PACKET(i, SEND))
1641 vty_out(vty,
1642 " OSPF packet %s send%s debugging is on\n",
1643 lookup_msg(ospf_packet_type_str, i + 1,
1644 NULL),
1645 IS_DEBUG_OSPF_PACKET(i, DETAIL)
1646 ? " detail"
1647 : "");
1648 if (IS_DEBUG_OSPF_PACKET(i, RECV))
1649 vty_out(vty,
1650 " OSPF packet %s receive%s debugging is on\n",
1651 lookup_msg(ospf_packet_type_str, i + 1,
1652 NULL),
1653 IS_DEBUG_OSPF_PACKET(i, DETAIL)
1654 ? " detail"
1655 : "");
1656 }
1657
1658 /* Show debug status for OSPF LSAs. */
1659 if (IS_DEBUG_OSPF(lsa, LSA) == OSPF_DEBUG_LSA)
1660 vty_out(vty, " OSPF LSA debugging is on\n");
1661 else {
1662 if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
1663 vty_out(vty, " OSPF LSA generation debugging is on\n");
1664 if (IS_DEBUG_OSPF(lsa, LSA_FLOODING))
1665 vty_out(vty, " OSPF LSA flooding debugging is on\n");
1666 if (IS_DEBUG_OSPF(lsa, LSA_INSTALL))
1667 vty_out(vty, " OSPF LSA install debugging is on\n");
1668 if (IS_DEBUG_OSPF(lsa, LSA_REFRESH))
1669 vty_out(vty, " OSPF LSA refresh debugging is on\n");
1670 }
1671
1672 /* Show debug status for Zebra. */
1673 if (IS_DEBUG_OSPF(zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
1674 vty_out(vty, " OSPF Zebra debugging is on\n");
1675 else {
1676 if (IS_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1677 vty_out(vty,
1678 " OSPF Zebra interface debugging is on\n");
1679 if (IS_DEBUG_OSPF(zebra, ZEBRA_REDISTRIBUTE))
1680 vty_out(vty,
1681 " OSPF Zebra redistribute debugging is on\n");
1682 }
1683
1febb13d
S
1684 if (IS_DEBUG_OSPF(defaultinfo, DEFAULTINFO) == OSPF_DEBUG_DEFAULTINFO)
1685 vty_out(vty, "OSPF default information is on\n");
1686
d62a17ae 1687 /* Show debug status for NSSA. */
1688 if (IS_DEBUG_OSPF(nssa, NSSA) == OSPF_DEBUG_NSSA)
1689 vty_out(vty, " OSPF NSSA debugging is on\n");
1690
132a782e 1691 /* Show debug status for LDP-SYNC. */
1692 if (IS_DEBUG_OSPF(ldp_sync, LDP_SYNC) == OSPF_DEBUG_LDP_SYNC)
1693 vty_out(vty, " OSPF ldp-sync debugging is on\n");
1694
caa1cd9e 1695 /* Show debug status for GR helper. */
1696 if (IS_DEBUG_OSPF(gr, GR_HELPER) == OSPF_DEBUG_GR_HELPER)
1697 vty_out(vty, " OSPF Graceful Restart Helper debugging is on\n");
1698
d62a17ae 1699 vty_out(vty, "\n");
1700
1701 return CMD_SUCCESS;
718e3744 1702}
1703
87f6dc50
DS
1704DEFUN_NOSH (show_debugging_ospf,
1705 show_debugging_ospf_cmd,
1706 "show debugging [ospf]",
1707 SHOW_STR
1708 DEBUG_STR
1709 OSPF_STR)
7c8ff89e 1710{
b5a8894d 1711 struct ospf *ospf = NULL;
7c8ff89e 1712
b5a8894d
CS
1713 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1714 if (ospf == NULL)
d62a17ae 1715 return CMD_SUCCESS;
7c8ff89e 1716
d62a17ae 1717 return show_debugging_ospf_common(vty, ospf);
7c8ff89e
DS
1718}
1719
87f6dc50
DS
1720DEFUN_NOSH (show_debugging_ospf_instance,
1721 show_debugging_ospf_instance_cmd,
1722 "show debugging ospf (1-65535)",
1723 SHOW_STR
1724 DEBUG_STR
1725 OSPF_STR
1726 "Instance ID\n")
7c8ff89e 1727{
d62a17ae 1728 int idx_number = 3;
1729 struct ospf *ospf;
d7c0a89a 1730 unsigned short instance = 0;
7c8ff89e 1731
d62a17ae 1732 instance = strtoul(argv[idx_number]->arg, NULL, 10);
1733 if ((ospf = ospf_lookup_instance(instance)) == NULL)
1734 return CMD_SUCCESS;
7c8ff89e 1735
d62a17ae 1736 return show_debugging_ospf_common(vty, ospf);
7c8ff89e
DS
1737}
1738
612c2c15 1739static int config_write_debug(struct vty *vty);
718e3744 1740/* Debug node. */
d62a17ae 1741static struct cmd_node debug_node = {
f4b8291f 1742 .name = "debug",
62b346ee
DL
1743 .node = DEBUG_NODE,
1744 .prompt = "",
612c2c15 1745 .config_write = config_write_debug,
718e3744 1746};
1747
d62a17ae 1748static int config_write_debug(struct vty *vty)
718e3744 1749{
d62a17ae 1750 int write = 0;
1751 int i, r;
1752
1753 const char *type_str[] = {"hello", "dd", "ls-request", "ls-update",
1754 "ls-ack"};
1755 const char *detail_str[] = {
1756 "", " send", " recv", "",
1757 " detail", " send detail", " recv detail", " detail"};
1758
1759 struct ospf *ospf;
1760 char str[16];
1761 memset(str, 0, 16);
1762
b5a8894d
CS
1763 ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT);
1764 if (ospf == NULL)
d62a17ae 1765 return CMD_SUCCESS;
1766
1767 if (ospf->instance)
772270f3 1768 snprintf(str, sizeof(str), " %u", ospf->instance);
d62a17ae 1769
1770 /* debug ospf ism (status|events|timers). */
1771 if (IS_CONF_DEBUG_OSPF(ism, ISM) == OSPF_DEBUG_ISM)
1772 vty_out(vty, "debug ospf%s ism\n", str);
1773 else {
1774 if (IS_CONF_DEBUG_OSPF(ism, ISM_STATUS))
1775 vty_out(vty, "debug ospf%s ism status\n", str);
1776 if (IS_CONF_DEBUG_OSPF(ism, ISM_EVENTS))
1777 vty_out(vty, "debug ospf%s ism event\n", str);
1778 if (IS_CONF_DEBUG_OSPF(ism, ISM_TIMERS))
1779 vty_out(vty, "debug ospf%s ism timer\n", str);
1780 }
1781
1782 /* debug ospf nsm (status|events|timers). */
1783 if (IS_CONF_DEBUG_OSPF(nsm, NSM) == OSPF_DEBUG_NSM)
1784 vty_out(vty, "debug ospf%s nsm\n", str);
1785 else {
1786 if (IS_CONF_DEBUG_OSPF(nsm, NSM_STATUS))
1787 vty_out(vty, "debug ospf%s nsm status\n", str);
1788 if (IS_CONF_DEBUG_OSPF(nsm, NSM_EVENTS))
1789 vty_out(vty, "debug ospf%s nsm event\n", str);
1790 if (IS_CONF_DEBUG_OSPF(nsm, NSM_TIMERS))
1791 vty_out(vty, "debug ospf%s nsm timer\n", str);
1792 }
1793
1794 /* debug ospf lsa (generate|flooding|install|refresh). */
1795 if (IS_CONF_DEBUG_OSPF(lsa, LSA) == OSPF_DEBUG_LSA)
1796 vty_out(vty, "debug ospf%s lsa\n", str);
1797 else {
1798 if (IS_CONF_DEBUG_OSPF(lsa, LSA_GENERATE))
1799 vty_out(vty, "debug ospf%s lsa generate\n", str);
1800 if (IS_CONF_DEBUG_OSPF(lsa, LSA_FLOODING))
1801 vty_out(vty, "debug ospf%s lsa flooding\n", str);
1802 if (IS_CONF_DEBUG_OSPF(lsa, LSA_INSTALL))
1803 vty_out(vty, "debug ospf%s lsa install\n", str);
1804 if (IS_CONF_DEBUG_OSPF(lsa, LSA_REFRESH))
1805 vty_out(vty, "debug ospf%s lsa refresh\n", str);
1806
1807 write = 1;
1808 }
1809
1810 /* debug ospf zebra (interface|redistribute). */
1811 if (IS_CONF_DEBUG_OSPF(zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
1812 vty_out(vty, "debug ospf%s zebra\n", str);
1813 else {
1814 if (IS_CONF_DEBUG_OSPF(zebra, ZEBRA_INTERFACE))
1815 vty_out(vty, "debug ospf%s zebra interface\n", str);
1816 if (IS_CONF_DEBUG_OSPF(zebra, ZEBRA_REDISTRIBUTE))
1817 vty_out(vty, "debug ospf%s zebra redistribute\n", str);
1818
1819 write = 1;
1820 }
1821
1822 /* debug ospf event. */
1823 if (IS_CONF_DEBUG_OSPF(event, EVENT) == OSPF_DEBUG_EVENT) {
1824 vty_out(vty, "debug ospf%s event\n", str);
1825 write = 1;
1826 }
1827
1828 /* debug ospf nssa. */
1829 if (IS_CONF_DEBUG_OSPF(nssa, NSSA) == OSPF_DEBUG_NSSA) {
1830 vty_out(vty, "debug ospf%s nssa\n", str);
1831 write = 1;
1832 }
1833
1834 /* debug ospf packet all detail. */
1835 r = OSPF_DEBUG_SEND_RECV | OSPF_DEBUG_DETAIL;
1836 for (i = 0; i < 5; i++)
1837 r &= conf_debug_ospf_packet[i]
1838 & (OSPF_DEBUG_SEND_RECV | OSPF_DEBUG_DETAIL);
1839 if (r == (OSPF_DEBUG_SEND_RECV | OSPF_DEBUG_DETAIL)) {
1840 vty_out(vty, "debug ospf%s packet all detail\n", str);
1841 return 1;
1842 }
1843
1844 /* debug ospf packet all. */
1845 r = OSPF_DEBUG_SEND_RECV;
1846 for (i = 0; i < 5; i++)
1847 r &= conf_debug_ospf_packet[i] & OSPF_DEBUG_SEND_RECV;
1848 if (r == OSPF_DEBUG_SEND_RECV) {
1849 vty_out(vty, "debug ospf%s packet all\n", str);
1850 for (i = 0; i < 5; i++)
1851 if (conf_debug_ospf_packet[i] & OSPF_DEBUG_DETAIL)
1852 vty_out(vty, "debug ospf%s packet %s detail\n",
1853 str, type_str[i]);
1854 return 1;
1855 }
1856
1857 /* debug ospf packet (hello|dd|ls-request|ls-update|ls-ack)
1858 (send|recv) (detail). */
1859 for (i = 0; i < 5; i++) {
1860 if (conf_debug_ospf_packet[i] == 0)
1861 continue;
1862
1863 vty_out(vty, "debug ospf%s packet %s%s\n", str, type_str[i],
1864 detail_str[conf_debug_ospf_packet[i]]);
1865 write = 1;
1866 }
1867
7743f2f8
OD
1868 /* debug ospf te */
1869 if (IS_CONF_DEBUG_OSPF(te, TE) == OSPF_DEBUG_TE) {
1870 vty_out(vty, "debug ospf%s te\n", str);
1871 write = 1;
1872 }
1873
1874 /* debug ospf sr */
1875 if (IS_CONF_DEBUG_OSPF(sr, SR) == OSPF_DEBUG_SR) {
1876 vty_out(vty, "debug ospf%s sr\n", str);
1877 write = 1;
1878 }
1879
132a782e 1880 /* debug ospf ldp-sync */
1881 if (IS_CONF_DEBUG_OSPF(ldp_sync, LDP_SYNC) == OSPF_DEBUG_LDP_SYNC) {
1882 vty_out(vty, "debug ospf%s ldp-sync\n", str);
1883 write = 1;
1884 }
caa1cd9e 1885
1886 /* debug ospf gr helper */
1887 if (IS_CONF_DEBUG_OSPF(gr, GR_HELPER) == OSPF_DEBUG_GR_HELPER) {
1888 vty_out(vty, "debug ospf%s graceful-restart helper\n", str);
1889 write = 1;
1890 }
1891
d62a17ae 1892 return write;
718e3744 1893}
1894
1895/* Initialize debug commands. */
6243a7b5 1896void ospf_debug_init(void)
718e3744 1897{
612c2c15 1898 install_node(&debug_node);
d62a17ae 1899
1900 install_element(ENABLE_NODE, &show_debugging_ospf_cmd);
1901 install_element(ENABLE_NODE, &debug_ospf_ism_cmd);
1902 install_element(ENABLE_NODE, &debug_ospf_nsm_cmd);
1903 install_element(ENABLE_NODE, &debug_ospf_lsa_cmd);
1904 install_element(ENABLE_NODE, &debug_ospf_zebra_cmd);
1905 install_element(ENABLE_NODE, &debug_ospf_event_cmd);
1906 install_element(ENABLE_NODE, &debug_ospf_nssa_cmd);
1907 install_element(ENABLE_NODE, &debug_ospf_te_cmd);
cf9b9f77 1908 install_element(ENABLE_NODE, &debug_ospf_sr_cmd);
1febb13d 1909 install_element(ENABLE_NODE, &debug_ospf_default_info_cmd);
132a782e 1910 install_element(ENABLE_NODE, &debug_ospf_ldp_sync_cmd);
d62a17ae 1911 install_element(ENABLE_NODE, &no_debug_ospf_ism_cmd);
1912 install_element(ENABLE_NODE, &no_debug_ospf_nsm_cmd);
1913 install_element(ENABLE_NODE, &no_debug_ospf_lsa_cmd);
1914 install_element(ENABLE_NODE, &no_debug_ospf_zebra_cmd);
1915 install_element(ENABLE_NODE, &no_debug_ospf_event_cmd);
1916 install_element(ENABLE_NODE, &no_debug_ospf_nssa_cmd);
1917 install_element(ENABLE_NODE, &no_debug_ospf_te_cmd);
cf9b9f77 1918 install_element(ENABLE_NODE, &no_debug_ospf_sr_cmd);
1febb13d 1919 install_element(ENABLE_NODE, &no_debug_ospf_default_info_cmd);
132a782e 1920 install_element(ENABLE_NODE, &no_debug_ospf_ldp_sync_cmd);
caa1cd9e 1921 install_element(ENABLE_NODE, &debug_ospf_gr_cmd);
d62a17ae 1922
1923 install_element(ENABLE_NODE, &show_debugging_ospf_instance_cmd);
1924 install_element(ENABLE_NODE, &debug_ospf_packet_cmd);
1925 install_element(ENABLE_NODE, &no_debug_ospf_packet_cmd);
1926
1927 install_element(ENABLE_NODE, &debug_ospf_instance_nsm_cmd);
1928 install_element(ENABLE_NODE, &debug_ospf_instance_lsa_cmd);
1929 install_element(ENABLE_NODE, &debug_ospf_instance_zebra_cmd);
1930 install_element(ENABLE_NODE, &debug_ospf_instance_event_cmd);
1931 install_element(ENABLE_NODE, &debug_ospf_instance_nssa_cmd);
1932 install_element(ENABLE_NODE, &no_debug_ospf_instance_nsm_cmd);
1933 install_element(ENABLE_NODE, &no_debug_ospf_instance_lsa_cmd);
1934 install_element(ENABLE_NODE, &no_debug_ospf_instance_zebra_cmd);
1935 install_element(ENABLE_NODE, &no_debug_ospf_instance_event_cmd);
1936 install_element(ENABLE_NODE, &no_debug_ospf_instance_nssa_cmd);
1937 install_element(ENABLE_NODE, &no_debug_ospf_cmd);
1938
1939 install_element(CONFIG_NODE, &debug_ospf_packet_cmd);
1940 install_element(CONFIG_NODE, &no_debug_ospf_packet_cmd);
1941 install_element(CONFIG_NODE, &debug_ospf_ism_cmd);
1942 install_element(CONFIG_NODE, &no_debug_ospf_ism_cmd);
1943
1944 install_element(CONFIG_NODE, &debug_ospf_nsm_cmd);
1945 install_element(CONFIG_NODE, &debug_ospf_lsa_cmd);
1946 install_element(CONFIG_NODE, &debug_ospf_zebra_cmd);
1947 install_element(CONFIG_NODE, &debug_ospf_event_cmd);
1948 install_element(CONFIG_NODE, &debug_ospf_nssa_cmd);
1949 install_element(CONFIG_NODE, &debug_ospf_te_cmd);
cf9b9f77 1950 install_element(CONFIG_NODE, &debug_ospf_sr_cmd);
1febb13d 1951 install_element(CONFIG_NODE, &debug_ospf_default_info_cmd);
132a782e 1952 install_element(CONFIG_NODE, &debug_ospf_ldp_sync_cmd);
d62a17ae 1953 install_element(CONFIG_NODE, &no_debug_ospf_nsm_cmd);
1954 install_element(CONFIG_NODE, &no_debug_ospf_lsa_cmd);
1955 install_element(CONFIG_NODE, &no_debug_ospf_zebra_cmd);
1956 install_element(CONFIG_NODE, &no_debug_ospf_event_cmd);
1957 install_element(CONFIG_NODE, &no_debug_ospf_nssa_cmd);
1958 install_element(CONFIG_NODE, &no_debug_ospf_te_cmd);
cf9b9f77 1959 install_element(CONFIG_NODE, &no_debug_ospf_sr_cmd);
1febb13d 1960 install_element(CONFIG_NODE, &no_debug_ospf_default_info_cmd);
132a782e 1961 install_element(CONFIG_NODE, &no_debug_ospf_ldp_sync_cmd);
caa1cd9e 1962 install_element(CONFIG_NODE, &debug_ospf_gr_cmd);
d62a17ae 1963
1964 install_element(CONFIG_NODE, &debug_ospf_instance_nsm_cmd);
1965 install_element(CONFIG_NODE, &debug_ospf_instance_lsa_cmd);
1966 install_element(CONFIG_NODE, &debug_ospf_instance_zebra_cmd);
1967 install_element(CONFIG_NODE, &debug_ospf_instance_event_cmd);
1968 install_element(CONFIG_NODE, &debug_ospf_instance_nssa_cmd);
1969 install_element(CONFIG_NODE, &no_debug_ospf_instance_nsm_cmd);
1970 install_element(CONFIG_NODE, &no_debug_ospf_instance_lsa_cmd);
1971 install_element(CONFIG_NODE, &no_debug_ospf_instance_zebra_cmd);
1972 install_element(CONFIG_NODE, &no_debug_ospf_instance_event_cmd);
1973 install_element(CONFIG_NODE, &no_debug_ospf_instance_nssa_cmd);
1974 install_element(CONFIG_NODE, &no_debug_ospf_cmd);
718e3744 1975}