]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_lsa.c
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / ospf6d / ospf6_lsa.c
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#include <zebra.h>
22
23/* Include other stuffs */
718e3744 24#include "log.h"
718e3744 25#include "linklist.h"
1e05838a 26#include "vector.h"
27#include "vty.h"
718e3744 28#include "command.h"
29#include "memory.h"
718e3744 30#include "thread.h"
d8a4e42b 31#include "checksum.h"
6ddb368d 32#include "frrstr.h"
718e3744 33
34#include "ospf6_proto.h"
718e3744 35#include "ospf6_lsa.h"
36#include "ospf6_lsdb.h"
37#include "ospf6_message.h"
c4122b55
YR
38#include "ospf6_asbr.h"
39#include "ospf6_zebra.h"
718e3744 40
41#include "ospf6_top.h"
42#include "ospf6_area.h"
43#include "ospf6_interface.h"
44#include "ospf6_neighbor.h"
718e3744 45
508e53e2 46#include "ospf6_flood.h"
049207c3 47#include "ospf6d.h"
718e3744 48
4dc43886 49#include "ospf6d/ospf6_lsa_clippy.c"
4dc43886 50
30043e4c
DL
51DEFINE_MTYPE_STATIC(OSPF6D, OSPF6_LSA, "OSPF6 LSA");
52DEFINE_MTYPE_STATIC(OSPF6D, OSPF6_LSA_HEADER, "OSPF6 LSA header");
53DEFINE_MTYPE_STATIC(OSPF6D, OSPF6_LSA_SUMMARY, "OSPF6 LSA summary");
54
067967b8 55static struct ospf6_lsa_handler *lsa_handlers[OSPF6_LSTYPE_SIZE];
718e3744 56
beadc736 57struct ospf6 *ospf6_get_by_lsdb(struct ospf6_lsa *lsa)
58{
59 struct ospf6 *ospf6 = NULL;
60
61 switch (OSPF6_LSA_SCOPE(lsa->header->type)) {
62 case OSPF6_SCOPE_LINKLOCAL:
63 ospf6 = OSPF6_INTERFACE(lsa->lsdb->data)->area->ospf6;
64 break;
65 case OSPF6_SCOPE_AREA:
66 ospf6 = OSPF6_AREA(lsa->lsdb->data)->ospf6;
67 break;
68 case OSPF6_SCOPE_AS:
69 ospf6 = OSPF6_PROCESS(lsa->lsdb->data);
70 break;
71 default:
72 assert(0);
73 break;
74 }
75 return ospf6;
76}
77
e4bacbaa
YR
78static int ospf6_unknown_lsa_show(struct vty *vty, struct ospf6_lsa *lsa,
79 json_object *json_obj, bool use_json)
1e05838a 80{
d7c0a89a 81 uint8_t *start, *end, *current;
1e05838a 82
d7c0a89a
QY
83 start = (uint8_t *)lsa->header + sizeof(struct ospf6_lsa_header);
84 end = (uint8_t *)lsa->header + ntohs(lsa->header->length);
1e05838a 85
77a2f8e5 86 if (use_json) {
77a2f8e5
DA
87 json_object_string_add(json_obj, "lsaType", "unknown");
88 } else {
e4bacbaa
YR
89 vty_out(vty, " Unknown contents:\n");
90 for (current = start; current < end; current++) {
91 if ((current - start) % 16 == 0)
92 vty_out(vty, "\n ");
93 else if ((current - start) % 4 == 0)
94 vty_out(vty, " ");
95
6ddb368d 96 vty_out(vty, "%02x", *current);
e4bacbaa 97 }
718e3744 98
e4bacbaa 99 vty_out(vty, "\n\n");
d62a17ae 100 }
d62a17ae 101 return 0;
1e05838a 102}
103
3981b5c7
VJ
104static struct ospf6_lsa_handler unknown_handler = {
105 .lh_type = OSPF6_LSTYPE_UNKNOWN,
106 .lh_name = "Unknown",
107 .lh_short_name = "Unk",
108 .lh_show = ospf6_unknown_lsa_show,
109 .lh_get_prefix_str = NULL,
110 .lh_debug = 0 /* No default debug */
111};
1e05838a 112
4062abfa 113void ospf6_install_lsa_handler(struct ospf6_lsa_handler *handler)
1e05838a 114{
d62a17ae 115 /* type in handler is host byte order */
067967b8
DL
116 unsigned int index = handler->lh_type & OSPF6_LSTYPE_FCODE_MASK;
117
118 assertf(index < array_size(lsa_handlers), "index=%x", index);
119 assertf(lsa_handlers[index] == NULL, "old=%s, new=%s",
120 lsa_handlers[index]->lh_name, handler->lh_name);
121
122 lsa_handlers[index] = handler;
1e05838a 123}
124
4062abfa 125struct ospf6_lsa_handler *ospf6_get_lsa_handler(uint16_t type)
1e05838a 126{
4062abfa 127 struct ospf6_lsa_handler *handler = NULL;
d62a17ae 128 unsigned int index = ntohs(type) & OSPF6_LSTYPE_FCODE_MASK;
1e05838a 129
067967b8
DL
130 if (index < array_size(lsa_handlers))
131 handler = lsa_handlers[index];
1e05838a 132
d62a17ae 133 if (handler == NULL)
134 handler = &unknown_handler;
2680aa2b 135
d62a17ae 136 return handler;
1e05838a 137}
718e3744 138
d7c0a89a 139const char *ospf6_lstype_name(uint16_t type)
508e53e2 140{
d62a17ae 141 static char buf[8];
3981b5c7 142 const struct ospf6_lsa_handler *handler;
508e53e2 143
d62a17ae 144 handler = ospf6_get_lsa_handler(type);
145 if (handler && handler != &unknown_handler)
3981b5c7 146 return handler->lh_name;
718e3744 147
d62a17ae 148 snprintf(buf, sizeof(buf), "0x%04hx", ntohs(type));
149 return buf;
718e3744 150}
151
d7c0a89a 152const char *ospf6_lstype_short_name(uint16_t type)
e68a6767 153{
d62a17ae 154 static char buf[8];
3981b5c7 155 const struct ospf6_lsa_handler *handler;
e68a6767 156
d62a17ae 157 handler = ospf6_get_lsa_handler(type);
3e67830c 158 if (handler)
3981b5c7 159 return handler->lh_short_name;
e68a6767 160
d62a17ae 161 snprintf(buf, sizeof(buf), "0x%04hx", ntohs(type));
162 return buf;
e68a6767
DD
163}
164
d7c0a89a 165uint8_t ospf6_lstype_debug(uint16_t type)
1e05838a 166{
3981b5c7 167 const struct ospf6_lsa_handler *handler;
d62a17ae 168 handler = ospf6_get_lsa_handler(type);
01db90cd 169 return handler->lh_debug;
1e05838a 170}
171
c4122b55
YR
172int metric_type(struct ospf6 *ospf6, int type, uint8_t instance)
173{
174 struct ospf6_redist *red;
175
176 red = ospf6_redist_lookup(ospf6, type, instance);
177
178 return ((!red || red->dmetric.type < 0) ? DEFAULT_METRIC_TYPE
179 : red->dmetric.type);
180}
181
182int metric_value(struct ospf6 *ospf6, int type, uint8_t instance)
183{
184 struct ospf6_redist *red;
185
186 red = ospf6_redist_lookup(ospf6, type, instance);
187 if (!red || red->dmetric.value < 0) {
188 if (type == DEFAULT_ROUTE) {
189 if (ospf6->default_originate == DEFAULT_ORIGINATE_ZEBRA)
190 return DEFAULT_DEFAULT_ORIGINATE_METRIC;
191 else
192 return DEFAULT_DEFAULT_ALWAYS_METRIC;
193 } else
194 return DEFAULT_DEFAULT_METRIC;
195 }
196
197 return red->dmetric.value;
198}
199
718e3744 200/* RFC2328: Section 13.2 */
d62a17ae 201int ospf6_lsa_is_differ(struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2)
718e3744 202{
d62a17ae 203 int len;
718e3744 204
d62a17ae 205 assert(OSPF6_LSA_IS_SAME(lsa1, lsa2));
718e3744 206
d62a17ae 207 /* XXX, Options ??? */
718e3744 208
d62a17ae 209 ospf6_lsa_age_current(lsa1);
210 ospf6_lsa_age_current(lsa2);
211 if (ntohs(lsa1->header->age) == OSPF_LSA_MAXAGE
212 && ntohs(lsa2->header->age) != OSPF_LSA_MAXAGE)
213 return 1;
214 if (ntohs(lsa1->header->age) != OSPF_LSA_MAXAGE
215 && ntohs(lsa2->header->age) == OSPF_LSA_MAXAGE)
216 return 1;
718e3744 217
d62a17ae 218 /* compare body */
219 if (ntohs(lsa1->header->length) != ntohs(lsa2->header->length))
220 return 1;
718e3744 221
d62a17ae 222 len = ntohs(lsa1->header->length) - sizeof(struct ospf6_lsa_header);
223 return memcmp(lsa1->header + 1, lsa2->header + 1, len);
718e3744 224}
225
d62a17ae 226int ospf6_lsa_is_changed(struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2)
718e3744 227{
d62a17ae 228 int length;
718e3744 229
d62a17ae 230 if (OSPF6_LSA_IS_MAXAGE(lsa1) ^ OSPF6_LSA_IS_MAXAGE(lsa2))
231 return 1;
232 if (ntohs(lsa1->header->length) != ntohs(lsa2->header->length))
233 return 1;
234 /* Going beyond LSA headers to compare the payload only makes sense,
235 * when both LSAs aren't header-only. */
236 if (CHECK_FLAG(lsa1->flag, OSPF6_LSA_HEADERONLY)
237 != CHECK_FLAG(lsa2->flag, OSPF6_LSA_HEADERONLY)) {
238 zlog_warn(
239 "%s: only one of two (%s, %s) LSAs compared is header-only",
240 __func__, lsa1->name, lsa2->name);
241 return 1;
242 }
243 if (CHECK_FLAG(lsa1->flag, OSPF6_LSA_HEADERONLY))
244 return 0;
718e3744 245
d62a17ae 246 length = OSPF6_LSA_SIZE(lsa1->header) - sizeof(struct ospf6_lsa_header);
247 /* Once upper layer verifies LSAs received, length underrun should
248 * become a warning. */
249 if (length <= 0)
250 return 0;
718e3744 251
d62a17ae 252 return memcmp(OSPF6_LSA_HEADER_END(lsa1->header),
253 OSPF6_LSA_HEADER_END(lsa2->header), length);
718e3744 254}
255
256/* ospf6 age functions */
3b68735f 257/* calculate birth */
da086a3b 258void ospf6_lsa_age_set(struct ospf6_lsa *lsa)
718e3744 259{
d62a17ae 260 struct timeval now;
718e3744 261
d62a17ae 262 assert(lsa && lsa->header);
718e3744 263
d62a17ae 264 monotime(&now);
718e3744 265
d62a17ae 266 lsa->birth.tv_sec = now.tv_sec - ntohs(lsa->header->age);
267 lsa->birth.tv_usec = now.tv_usec;
3b68735f 268
d62a17ae 269 return;
718e3744 270}
271
272/* this function calculates current age from its birth,
273 then update age field of LSA header. return value is current age */
d7c0a89a 274uint16_t ospf6_lsa_age_current(struct ospf6_lsa *lsa)
718e3744 275{
d62a17ae 276 struct timeval now;
d7c0a89a
QY
277 uint32_t ulage;
278 uint16_t age;
718e3744 279
d62a17ae 280 assert(lsa);
281 assert(lsa->header);
718e3744 282
d62a17ae 283 /* current time */
284 monotime(&now);
718e3744 285
d62a17ae 286 if (ntohs(lsa->header->age) >= OSPF_LSA_MAXAGE) {
287 /* ospf6_lsa_premature_aging () sets age to MAXAGE; when using
288 relative time, we cannot compare against lsa birth time, so
289 we catch this special case here. */
290 lsa->header->age = htons(OSPF_LSA_MAXAGE);
291 return OSPF_LSA_MAXAGE;
292 }
293 /* calculate age */
294 ulage = now.tv_sec - lsa->birth.tv_sec;
718e3744 295
d62a17ae 296 /* if over MAXAGE, set to it */
297 age = (ulage > OSPF_LSA_MAXAGE ? OSPF_LSA_MAXAGE : ulage);
718e3744 298
d62a17ae 299 lsa->header->age = htons(age);
300 return age;
718e3744 301}
302
303/* update age field of LSA header with adding InfTransDelay */
d7c0a89a 304void ospf6_lsa_age_update_to_send(struct ospf6_lsa *lsa, uint32_t transdelay)
d62a17ae 305{
306 unsigned short age;
307
308 age = ospf6_lsa_age_current(lsa) + transdelay;
309 if (age > OSPF_LSA_MAXAGE)
310 age = OSPF_LSA_MAXAGE;
311 lsa->header->age = htons(age);
312}
313
314void ospf6_lsa_premature_aging(struct ospf6_lsa *lsa)
315{
316 /* log */
317 if (IS_OSPF6_DEBUG_LSA_TYPE(lsa->header->type))
318 zlog_debug("LSA: Premature aging: %s", lsa->name);
319
320 THREAD_OFF(lsa->expire);
321 THREAD_OFF(lsa->refresh);
322
323 /*
324 * We clear the LSA from the neighbor retx lists now because it
325 * will not get deleted later. Essentially, changing the age to
326 * MaxAge will prevent this LSA from being matched with its
327 * existing entries in the retx list thereby causing those entries
328 * to be silently replaced with its MaxAged version, but with ever
329 * increasing retx count causing this LSA to remain forever and
330 * for the MaxAge remover thread to be called forever too.
331 *
332 * The reason the previous entry silently disappears is that when
333 * entry is added to a neighbor's retx list, it replaces the existing
334 * entry. But since the ospf6_lsdb_add() routine is generic and not
335 * aware
336 * of the special semantics of retx count, the retx count is not
337 * decremented when its replaced. Attempting to add the incr and decr
338 * retx count routines as the hook_add and hook_remove for the retx
339 * lists
340 * have a problem because the hook_remove routine is called for MaxAge
341 * entries (as will be the case in a traditional LSDB, unlike in this
342 * case
343 * where an LSDB is used as an efficient tree structure to store all
344 * kinds
345 * of data) that are added instead of calling the hook_add routine.
346 */
347
348 ospf6_flood_clear(lsa);
349
350 lsa->header->age = htons(OSPF_LSA_MAXAGE);
351 thread_execute(master, ospf6_lsa_expire, lsa, 0);
718e3744 352}
353
354/* check which is more recent. if a is more recent, return -1;
355 if the same, return 0; otherwise(b is more recent), return 1 */
d62a17ae 356int ospf6_lsa_compare(struct ospf6_lsa *a, struct ospf6_lsa *b)
718e3744 357{
d62a17ae 358 int32_t seqnuma, seqnumb;
d7c0a89a
QY
359 uint16_t cksuma, cksumb;
360 uint16_t agea, ageb;
d62a17ae 361
362 assert(a && a->header);
363 assert(b && b->header);
364 assert(OSPF6_LSA_IS_SAME(a, b));
718e3744 365
d62a17ae 366 seqnuma = (int32_t)ntohl(a->header->seqnum);
367 seqnumb = (int32_t)ntohl(b->header->seqnum);
718e3744 368
d62a17ae 369 /* compare by sequence number */
370 if (seqnuma > seqnumb)
371 return -1;
372 if (seqnuma < seqnumb)
373 return 1;
374
375 /* Checksum */
376 cksuma = ntohs(a->header->checksum);
377 cksumb = ntohs(b->header->checksum);
378 if (cksuma > cksumb)
379 return -1;
380 if (cksuma < cksumb)
381 return 0;
382
383 /* Update Age */
384 agea = ospf6_lsa_age_current(a);
385 ageb = ospf6_lsa_age_current(b);
386
387 /* MaxAge check */
388 if (agea == OSPF_LSA_MAXAGE && ageb != OSPF_LSA_MAXAGE)
389 return -1;
390 else if (agea != OSPF_LSA_MAXAGE && ageb == OSPF_LSA_MAXAGE)
391 return 1;
392
393 /* Age check */
394 if (agea > ageb && agea - ageb >= OSPF_LSA_MAXAGE_DIFF)
395 return 1;
396 else if (agea < ageb && ageb - agea >= OSPF_LSA_MAXAGE_DIFF)
397 return -1;
398
399 /* neither recent */
400 return 0;
401}
402
403char *ospf6_lsa_printbuf(struct ospf6_lsa *lsa, char *buf, int size)
404{
405 char id[16], adv_router[16];
406 inet_ntop(AF_INET, &lsa->header->id, id, sizeof(id));
407 inet_ntop(AF_INET, &lsa->header->adv_router, adv_router,
408 sizeof(adv_router));
409 snprintf(buf, size, "[%s Id:%s Adv:%s]",
410 ospf6_lstype_name(lsa->header->type), id, adv_router);
411 return buf;
412}
413
414void ospf6_lsa_header_print_raw(struct ospf6_lsa_header *header)
415{
416 char id[16], adv_router[16];
417 inet_ntop(AF_INET, &header->id, id, sizeof(id));
418 inet_ntop(AF_INET, &header->adv_router, adv_router, sizeof(adv_router));
419 zlog_debug(" [%s Id:%s Adv:%s]", ospf6_lstype_name(header->type), id,
420 adv_router);
421 zlog_debug(" Age: %4hu SeqNum: %#08lx Cksum: %04hx Len: %d",
d7c0a89a 422 ntohs(header->age), (unsigned long)ntohl(header->seqnum),
d62a17ae 423 ntohs(header->checksum), ntohs(header->length));
424}
425
426void ospf6_lsa_header_print(struct ospf6_lsa *lsa)
427{
428 ospf6_lsa_age_current(lsa);
429 ospf6_lsa_header_print_raw(lsa->header);
430}
431
432void ospf6_lsa_show_summary_header(struct vty *vty)
433{
434 vty_out(vty, "%-4s %-15s%-15s%4s %8s %30s\n", "Type", "LSId",
435 "AdvRouter", "Age", "SeqNum", "Payload");
436}
437
e4bacbaa
YR
438void ospf6_lsa_show_summary(struct vty *vty, struct ospf6_lsa *lsa,
439 json_object *json_array, bool use_json)
d62a17ae 440{
441 char adv_router[16], id[16];
442 int type;
3981b5c7 443 const struct ospf6_lsa_handler *handler;
e4bacbaa 444 char buf[64];
d62a17ae 445 int cnt = 0;
e4bacbaa 446 json_object *json_obj = NULL;
d62a17ae 447
448 assert(lsa);
449 assert(lsa->header);
450
451 inet_ntop(AF_INET, &lsa->header->id, id, sizeof(id));
452 inet_ntop(AF_INET, &lsa->header->adv_router, adv_router,
453 sizeof(adv_router));
454
455 type = ntohs(lsa->header->type);
456 handler = ospf6_get_lsa_handler(lsa->header->type);
e4bacbaa
YR
457
458 if (use_json)
459 json_obj = json_object_new_object();
460
3e67830c 461 switch (type) {
462 case OSPF6_LSTYPE_INTER_PREFIX:
463 case OSPF6_LSTYPE_INTER_ROUTER:
464 case OSPF6_LSTYPE_AS_EXTERNAL:
ad500b22 465 case OSPF6_LSTYPE_TYPE_7:
e4bacbaa
YR
466 if (use_json) {
467 json_object_string_add(
468 json_obj, "type",
469 ospf6_lstype_short_name(lsa->header->type));
470 json_object_string_add(json_obj, "lsId", id);
471 json_object_string_add(json_obj, "advRouter",
472 adv_router);
473 json_object_int_add(json_obj, "age",
474 ospf6_lsa_age_current(lsa));
475 json_object_int_add(
476 json_obj, "seqNum",
477 (unsigned long)ntohl(lsa->header->seqnum));
478 json_object_string_add(
479 json_obj, "payload",
480 handler->lh_get_prefix_str(lsa, buf,
481 sizeof(buf), 0));
482 json_object_array_add(json_array, json_obj);
483 } else
484 vty_out(vty, "%-4s %-15s%-15s%4hu %8lx %30s\n",
485 ospf6_lstype_short_name(lsa->header->type), id,
486 adv_router, ospf6_lsa_age_current(lsa),
487 (unsigned long)ntohl(lsa->header->seqnum),
488 handler->lh_get_prefix_str(lsa, buf,
489 sizeof(buf), 0));
3e67830c 490 break;
491 case OSPF6_LSTYPE_ROUTER:
492 case OSPF6_LSTYPE_NETWORK:
493 case OSPF6_LSTYPE_GROUP_MEMBERSHIP:
3e67830c 494 case OSPF6_LSTYPE_LINK:
495 case OSPF6_LSTYPE_INTRA_PREFIX:
3981b5c7 496 while (handler->lh_get_prefix_str(lsa, buf, sizeof(buf), cnt)
d62a17ae 497 != NULL) {
e4bacbaa
YR
498 if (use_json) {
499 json_object_string_add(
500 json_obj, "type",
501 ospf6_lstype_short_name(
502 lsa->header->type));
503 json_object_string_add(json_obj, "lsId", id);
504 json_object_string_add(json_obj, "advRouter",
505 adv_router);
506 json_object_int_add(json_obj, "age",
507 ospf6_lsa_age_current(lsa));
508 json_object_int_add(
509 json_obj, "seqNum",
510 (unsigned long)ntohl(
511 lsa->header->seqnum));
512 json_object_string_add(json_obj, "payload",
513 buf);
514 json_object_array_add(json_array, json_obj);
515 json_obj = json_object_new_object();
516 } else
517 vty_out(vty, "%-4s %-15s%-15s%4hu %8lx %30s\n",
518 ospf6_lstype_short_name(
519 lsa->header->type),
520 id, adv_router,
521 ospf6_lsa_age_current(lsa),
522 (unsigned long)ntohl(
523 lsa->header->seqnum),
524 buf);
d62a17ae 525 cnt++;
526 }
e4bacbaa
YR
527 if (use_json)
528 json_object_free(json_obj);
3e67830c 529 break;
530 default:
e4bacbaa
YR
531 if (use_json) {
532 json_object_string_add(
533 json_obj, "type",
534 ospf6_lstype_short_name(lsa->header->type));
535 json_object_string_add(json_obj, "lsId", id);
536 json_object_string_add(json_obj, "advRouter",
537 adv_router);
538 json_object_int_add(json_obj, "age",
539 ospf6_lsa_age_current(lsa));
540 json_object_int_add(
541 json_obj, "seqNum",
542 (unsigned long)ntohl(lsa->header->seqnum));
543 json_object_array_add(json_array, json_obj);
544 } else
545 vty_out(vty, "%-4s %-15s%-15s%4hu %8lx\n",
546 ospf6_lstype_short_name(lsa->header->type), id,
547 adv_router, ospf6_lsa_age_current(lsa),
548 (unsigned long)ntohl(lsa->header->seqnum));
3e67830c 549 break;
e68a6767 550 }
d62a17ae 551}
552
e4bacbaa
YR
553void ospf6_lsa_show_dump(struct vty *vty, struct ospf6_lsa *lsa,
554 json_object *json_array, bool use_json)
d62a17ae 555{
6ddb368d
QY
556 uint8_t *start = NULL;
557 uint8_t *end = NULL;
558 uint8_t *current = NULL;
d62a17ae 559 char byte[4];
6ddb368d
QY
560 char *header_str = NULL;
561 char adv_router[INET6_ADDRSTRLEN];
562 char id[INET6_ADDRSTRLEN];
563 json_object *json = NULL;
d62a17ae 564
d7c0a89a
QY
565 start = (uint8_t *)lsa->header;
566 end = (uint8_t *)lsa->header + ntohs(lsa->header->length);
d62a17ae 567
6ddb368d
QY
568 if (use_json) {
569 json = json_object_new_object();
570 size_t header_str_sz = (2 * (end - start)) + 1;
e4bacbaa 571
4898cbaf 572 header_str = XMALLOC(MTYPE_OSPF6_LSA_HEADER, header_str_sz);
d62a17ae 573
6ddb368d
QY
574 inet_ntop(AF_INET, &lsa->header->id, id, sizeof(id));
575 inet_ntop(AF_INET, &lsa->header->adv_router, adv_router,
576 sizeof(adv_router));
d62a17ae 577
6ddb368d
QY
578 frrstr_hex(header_str, header_str_sz, start, end - start);
579
580 json_object_string_add(json, "linkStateId", id);
581 json_object_string_add(json, "advertisingRouter", adv_router);
582 json_object_string_add(json, "header", header_str);
583 json_object_array_add(json_array, json);
584
4898cbaf 585 XFREE(MTYPE_OSPF6_LSA_HEADER, header_str);
6ddb368d
QY
586 } else {
587 vty_out(vty, "\n%s:\n", lsa->name);
588
589 for (current = start; current < end; current++) {
590 if ((current - start) % 16 == 0)
591 vty_out(vty, "\n ");
592 else if ((current - start) % 4 == 0)
593 vty_out(vty, " ");
594
595 snprintf(byte, sizeof(byte), "%02x", *current);
596 vty_out(vty, "%s", byte);
597 }
d62a17ae 598
6ddb368d
QY
599 vty_out(vty, "\n\n");
600 }
e4bacbaa 601
d62a17ae 602 return;
603}
604
e4bacbaa
YR
605void ospf6_lsa_show_internal(struct vty *vty, struct ospf6_lsa *lsa,
606 json_object *json_array, bool use_json)
d62a17ae 607{
608 char adv_router[64], id[64];
e4bacbaa 609 json_object *json_obj;
d62a17ae 610
611 assert(lsa && lsa->header);
612
613 inet_ntop(AF_INET, &lsa->header->id, id, sizeof(id));
614 inet_ntop(AF_INET, &lsa->header->adv_router, adv_router,
615 sizeof(adv_router));
616
e4bacbaa
YR
617 if (use_json) {
618 json_obj = json_object_new_object();
619 json_object_int_add(json_obj, "age",
620 ospf6_lsa_age_current(lsa));
621 json_object_string_add(json_obj, "type",
622 ospf6_lstype_name(lsa->header->type));
623 json_object_string_add(json_obj, "linkStateId", id);
624 json_object_string_add(json_obj, "advertisingRouter",
625 adv_router);
626 json_object_int_add(json_obj, "lsSequenceNumber",
627 (unsigned long)ntohl(lsa->header->seqnum));
628 json_object_int_add(json_obj, "checksum",
629 ntohs(lsa->header->checksum));
630 json_object_int_add(json_obj, "length",
631 ntohs(lsa->header->length));
632 json_object_int_add(json_obj, "flag", lsa->flag);
633 json_object_int_add(json_obj, "lock", lsa->lock);
634 json_object_int_add(json_obj, "reTxCount", lsa->retrans_count);
635
636 /* Threads Data not added */
637 json_object_array_add(json_array, json_obj);
638 } else {
639 vty_out(vty, "\n");
640 vty_out(vty, "Age: %4hu Type: %s\n", ospf6_lsa_age_current(lsa),
641 ospf6_lstype_name(lsa->header->type));
642 vty_out(vty, "Link State ID: %s\n", id);
643 vty_out(vty, "Advertising Router: %s\n", adv_router);
644 vty_out(vty, "LS Sequence Number: %#010lx\n",
645 (unsigned long)ntohl(lsa->header->seqnum));
646 vty_out(vty, "CheckSum: %#06hx Length: %hu\n",
647 ntohs(lsa->header->checksum),
648 ntohs(lsa->header->length));
649 vty_out(vty, "Flag: %x \n", lsa->flag);
650 vty_out(vty, "Lock: %d \n", lsa->lock);
651 vty_out(vty, "ReTx Count: %d\n", lsa->retrans_count);
461d106d
RW
652 vty_out(vty, "Threads: Expire: %p, Refresh: %p\n", lsa->expire,
653 lsa->refresh);
e4bacbaa
YR
654 vty_out(vty, "\n");
655 }
d62a17ae 656 return;
657}
658
e4bacbaa
YR
659void ospf6_lsa_show(struct vty *vty, struct ospf6_lsa *lsa,
660 json_object *json_array, bool use_json)
d62a17ae 661{
662 char adv_router[64], id[64];
3981b5c7 663 const struct ospf6_lsa_handler *handler;
d62a17ae 664 struct timeval now, res;
68bfcc05 665 char duration[64];
e4bacbaa 666 json_object *json_obj = NULL;
d62a17ae 667
668 assert(lsa && lsa->header);
669
670 inet_ntop(AF_INET, &lsa->header->id, id, sizeof(id));
671 inet_ntop(AF_INET, &lsa->header->adv_router, adv_router,
672 sizeof(adv_router));
673
674 monotime(&now);
675 timersub(&now, &lsa->installed, &res);
676 timerstring(&res, duration, sizeof(duration));
e4bacbaa
YR
677 if (use_json) {
678 json_obj = json_object_new_object();
679 json_object_int_add(json_obj, "age",
680 ospf6_lsa_age_current(lsa));
681 json_object_string_add(json_obj, "type",
682 ospf6_lstype_name(lsa->header->type));
2804f2d2 683 json_object_string_add(json_obj, "linkStateId", id);
e4bacbaa
YR
684 json_object_string_add(json_obj, "advertisingRouter",
685 adv_router);
686 json_object_int_add(json_obj, "lsSequenceNumber",
687 (unsigned long)ntohl(lsa->header->seqnum));
d6265808 688 json_object_int_add(json_obj, "checksum",
e4bacbaa
YR
689 ntohs(lsa->header->checksum));
690 json_object_int_add(json_obj, "length",
691 ntohs(lsa->header->length));
692 json_object_string_add(json_obj, "duration", duration);
693 } else {
694 vty_out(vty, "Age: %4hu Type: %s\n", ospf6_lsa_age_current(lsa),
695 ospf6_lstype_name(lsa->header->type));
696 vty_out(vty, "Link State ID: %s\n", id);
697 vty_out(vty, "Advertising Router: %s\n", adv_router);
698 vty_out(vty, "LS Sequence Number: %#010lx\n",
699 (unsigned long)ntohl(lsa->header->seqnum));
700 vty_out(vty, "CheckSum: %#06hx Length: %hu\n",
701 ntohs(lsa->header->checksum),
702 ntohs(lsa->header->length));
703 vty_out(vty, "Duration: %s\n", duration);
704 }
d62a17ae 705
706 handler = ospf6_get_lsa_handler(lsa->header->type);
3981b5c7
VJ
707
708 if (handler->lh_show != NULL)
e4bacbaa 709 handler->lh_show(vty, lsa, json_obj, use_json);
3981b5c7
VJ
710 else {
711 assert(unknown_handler.lh_show != NULL);
e4bacbaa 712 unknown_handler.lh_show(vty, lsa, json_obj, use_json);
3981b5c7 713 }
d62a17ae 714
e4bacbaa
YR
715 if (use_json)
716 json_object_array_add(json_array, json_obj);
717 else
718 vty_out(vty, "\n");
6452df09 719}
720
771e1fbe
DL
721struct ospf6_lsa *ospf6_lsa_alloc(size_t lsa_length)
722{
30043e4c
DL
723 struct ospf6_lsa *lsa;
724
771e1fbe
DL
725 lsa = XCALLOC(MTYPE_OSPF6_LSA, sizeof(struct ospf6_lsa));
726 lsa->header = XMALLOC(MTYPE_OSPF6_LSA_HEADER, lsa_length);
727
728 return lsa;
729}
730
6452df09 731/* OSPFv3 LSA creation/deletion function */
d62a17ae 732struct ospf6_lsa *ospf6_lsa_create(struct ospf6_lsa_header *header)
718e3744 733{
d62a17ae 734 struct ospf6_lsa *lsa = NULL;
d7c0a89a 735 uint16_t lsa_size = 0;
718e3744 736
d62a17ae 737 /* size of the entire LSA */
738 lsa_size = ntohs(header->length); /* XXX vulnerable */
718e3744 739
771e1fbe 740 lsa = ospf6_lsa_alloc(lsa_size);
718e3744 741
d62a17ae 742 /* copy LSA from original header */
771e1fbe 743 memcpy(lsa->header, header, lsa_size);
718e3744 744
d62a17ae 745 /* dump string */
746 ospf6_lsa_printbuf(lsa, lsa->name, sizeof(lsa->name));
718e3744 747
d62a17ae 748 /* calculate birth of this lsa */
749 ospf6_lsa_age_set(lsa);
718e3744 750
d62a17ae 751 return lsa;
718e3744 752}
753
d62a17ae 754struct ospf6_lsa *ospf6_lsa_create_headeronly(struct ospf6_lsa_header *header)
718e3744 755{
d62a17ae 756 struct ospf6_lsa *lsa = NULL;
718e3744 757
771e1fbe 758 lsa = ospf6_lsa_alloc(sizeof(struct ospf6_lsa_header));
718e3744 759
771e1fbe 760 memcpy(lsa->header, header, sizeof(struct ospf6_lsa_header));
718e3744 761
d62a17ae 762 SET_FLAG(lsa->flag, OSPF6_LSA_HEADERONLY);
718e3744 763
d62a17ae 764 /* dump string */
765 ospf6_lsa_printbuf(lsa, lsa->name, sizeof(lsa->name));
718e3744 766
d62a17ae 767 /* calculate birth of this lsa */
768 ospf6_lsa_age_set(lsa);
718e3744 769
d62a17ae 770 return lsa;
718e3744 771}
772
d62a17ae 773void ospf6_lsa_delete(struct ospf6_lsa *lsa)
718e3744 774{
d62a17ae 775 assert(lsa->lock == 0);
718e3744 776
d62a17ae 777 /* cancel threads */
778 THREAD_OFF(lsa->expire);
779 THREAD_OFF(lsa->refresh);
718e3744 780
d62a17ae 781 /* do free */
d107621d 782 XFREE(MTYPE_OSPF6_LSA_HEADER, lsa->header);
d62a17ae 783 XFREE(MTYPE_OSPF6_LSA, lsa);
508e53e2 784}
718e3744 785
d62a17ae 786struct ospf6_lsa *ospf6_lsa_copy(struct ospf6_lsa *lsa)
508e53e2 787{
d62a17ae 788 struct ospf6_lsa *copy = NULL;
508e53e2 789
d62a17ae 790 ospf6_lsa_age_current(lsa);
791 if (CHECK_FLAG(lsa->flag, OSPF6_LSA_HEADERONLY))
792 copy = ospf6_lsa_create_headeronly(lsa->header);
793 else
794 copy = ospf6_lsa_create(lsa->header);
795 assert(copy->lock == 0);
508e53e2 796
d62a17ae 797 copy->birth = lsa->birth;
798 copy->originated = lsa->originated;
799 copy->received = lsa->received;
800 copy->installed = lsa->installed;
801 copy->lsdb = lsa->lsdb;
802 copy->rn = NULL;
508e53e2 803
d62a17ae 804 return copy;
718e3744 805}
806
508e53e2 807/* increment reference counter of struct ospf6_lsa */
62270cc3 808struct ospf6_lsa *ospf6_lsa_lock(struct ospf6_lsa *lsa)
718e3744 809{
d62a17ae 810 lsa->lock++;
62270cc3 811 return lsa;
718e3744 812}
813
508e53e2 814/* decrement reference counter of struct ospf6_lsa */
744ba569 815struct ospf6_lsa *ospf6_lsa_unlock(struct ospf6_lsa *lsa)
718e3744 816{
d62a17ae 817 /* decrement reference counter */
818 assert(lsa->lock > 0);
819 lsa->lock--;
718e3744 820
d62a17ae 821 if (lsa->lock != 0)
744ba569 822 return lsa;
508e53e2 823
d62a17ae 824 ospf6_lsa_delete(lsa);
744ba569 825 return NULL;
718e3744 826}
827
6b0655a2 828
508e53e2 829/* ospf6 lsa expiry */
cc9f21da 830void ospf6_lsa_expire(struct thread *thread)
718e3744 831{
d62a17ae 832 struct ospf6_lsa *lsa;
beadc736 833 struct ospf6 *ospf6;
718e3744 834
d62a17ae 835 lsa = (struct ospf6_lsa *)THREAD_ARG(thread);
718e3744 836
d62a17ae 837 assert(lsa && lsa->header);
838 assert(OSPF6_LSA_IS_MAXAGE(lsa));
839 assert(!lsa->refresh);
718e3744 840
d62a17ae 841 lsa->expire = (struct thread *)NULL;
718e3744 842
d62a17ae 843 if (IS_OSPF6_DEBUG_LSA_TYPE(lsa->header->type)) {
844 zlog_debug("LSA Expire:");
845 ospf6_lsa_header_print(lsa);
846 }
718e3744 847
d62a17ae 848 if (CHECK_FLAG(lsa->flag, OSPF6_LSA_HEADERONLY))
cc9f21da 849 return; /* dbexchange will do something ... */
beadc736 850 ospf6 = ospf6_get_by_lsdb(lsa);
4dc43886
MR
851 assert(ospf6);
852
d62a17ae 853 /* reinstall lsa */
854 ospf6_install_lsa(lsa);
508e53e2 855
d62a17ae 856 /* reflood lsa */
857 ospf6_flood(NULL, lsa);
bf986da7 858
d62a17ae 859 /* schedule maxage remover */
860 ospf6_maxage_remove(ospf6);
718e3744 861}
862
cc9f21da 863void ospf6_lsa_refresh(struct thread *thread)
718e3744 864{
d62a17ae 865 struct ospf6_lsa *old, *self, *new;
866 struct ospf6_lsdb *lsdb_self;
6452df09 867
d62a17ae 868 old = (struct ospf6_lsa *)THREAD_ARG(thread);
869 assert(old && old->header);
6452df09 870
d62a17ae 871 old->refresh = (struct thread *)NULL;
6452df09 872
d62a17ae 873 lsdb_self = ospf6_get_scoped_lsdb_self(old);
874 self = ospf6_lsdb_lookup(old->header->type, old->header->id,
875 old->header->adv_router, lsdb_self);
876 if (self == NULL) {
877 if (IS_OSPF6_DEBUG_LSA_TYPE(old->header->type))
878 zlog_debug("Refresh: could not find self LSA, flush %s",
879 old->name);
880 ospf6_lsa_premature_aging(old);
cc9f21da 881 return;
d62a17ae 882 }
718e3744 883
d62a17ae 884 /* Reset age, increment LS sequence number. */
885 self->header->age = htons(0);
886 self->header->seqnum =
887 ospf6_new_ls_seqnum(self->header->type, self->header->id,
888 self->header->adv_router, old->lsdb);
889 ospf6_lsa_checksum(self->header);
890
891 new = ospf6_lsa_create(self->header);
892 new->lsdb = old->lsdb;
d62a17ae 893 thread_add_timer(master, ospf6_lsa_refresh, new, OSPF_LS_REFRESH_TIME,
894 &new->refresh);
895
896 /* store it in the LSDB for self-originated LSAs */
897 ospf6_lsdb_add(ospf6_lsa_copy(new), lsdb_self);
898
899 if (IS_OSPF6_DEBUG_LSA_TYPE(new->header->type)) {
900 zlog_debug("LSA Refresh:");
901 ospf6_lsa_header_print(new);
902 }
718e3744 903
d62a17ae 904 ospf6_install_lsa(new);
905 ospf6_flood(NULL, new);
718e3744 906}
907
beadc736 908void ospf6_flush_self_originated_lsas_now(struct ospf6 *ospf6)
76249532 909{
e161c2dc 910 struct listnode *node, *nnode;
76249532
CS
911 struct ospf6_area *oa;
912 struct ospf6_lsa *lsa;
913 const struct route_node *end = NULL;
914 uint32_t type, adv_router;
e161c2dc 915 struct ospf6_interface *oi;
76249532
CS
916
917 ospf6->inst_shutdown = 1;
918
919 for (ALL_LIST_ELEMENTS_RO(ospf6->area_list, node, oa)) {
996c9314
LB
920 end = ospf6_lsdb_head(oa->lsdb_self, 0, 0, ospf6->router_id,
921 &lsa);
76249532
CS
922 while (lsa) {
923 /* RFC 2328 (14.1): Set MAXAGE */
924 lsa->header->age = htons(OSPF_LSA_MAXAGE);
925 /* Flood MAXAGE LSA*/
926 ospf6_flood(NULL, lsa);
927
928 lsa = ospf6_lsdb_next(end, lsa);
929 }
e161c2dc
YR
930
931 for (ALL_LIST_ELEMENTS(oa->if_list, node, nnode, oi)) {
932 end = ospf6_lsdb_head(oi->lsdb_self, 0, 0,
933 ospf6->router_id, &lsa);
934 while (lsa) {
935 /* RFC 2328 (14.1): Set MAXAGE */
936 lsa->header->age = htons(OSPF_LSA_MAXAGE);
937 /* Flood MAXAGE LSA*/
938 ospf6_flood(NULL, lsa);
939
940 lsa = ospf6_lsdb_next(end, lsa);
941 }
942 }
76249532
CS
943 }
944
945 type = htons(OSPF6_LSTYPE_AS_EXTERNAL);
946 adv_router = ospf6->router_id;
947 for (ALL_LSDB_TYPED_ADVRTR(ospf6->lsdb, type, adv_router, lsa)) {
948 /* RFC 2328 (14.1): Set MAXAGE */
949 lsa->header->age = htons(OSPF_LSA_MAXAGE);
950 ospf6_flood(NULL, lsa);
951 }
952}
6b0655a2 953
d8a4e42b 954/* Fletcher Checksum -- Refer to RFC1008. */
718e3744 955
d8a4e42b
JR
956/* All the offsets are zero-based. The offsets in the RFC1008 are
957 one-based. */
d62a17ae 958unsigned short ospf6_lsa_checksum(struct ospf6_lsa_header *lsa_header)
718e3744 959{
d7c0a89a
QY
960 uint8_t *buffer = (uint8_t *)&lsa_header->type;
961 int type_offset =
962 buffer - (uint8_t *)&lsa_header->age; /* should be 2 */
718e3744 963
d62a17ae 964 /* Skip the AGE field */
d7c0a89a 965 uint16_t len = ntohs(lsa_header->length) - type_offset;
718e3744 966
d62a17ae 967 /* Checksum offset starts from "type" field, not the beginning of the
968 lsa_header struct. The offset is 14, rather than 16. */
d7c0a89a 969 int checksum_offset = (uint8_t *)&lsa_header->checksum - buffer;
d8a4e42b 970
d62a17ae 971 return (unsigned short)fletcher_checksum(buffer, len, checksum_offset);
d8a4e42b 972}
718e3744 973
d62a17ae 974int ospf6_lsa_checksum_valid(struct ospf6_lsa_header *lsa_header)
d8a4e42b 975{
d7c0a89a
QY
976 uint8_t *buffer = (uint8_t *)&lsa_header->type;
977 int type_offset =
978 buffer - (uint8_t *)&lsa_header->age; /* should be 2 */
718e3744 979
d62a17ae 980 /* Skip the AGE field */
d7c0a89a 981 uint16_t len = ntohs(lsa_header->length) - type_offset;
718e3744 982
d62a17ae 983 return (fletcher_checksum(buffer, len, FLETCHER_CHECKSUM_VALIDATE)
984 == 0);
718e3744 985}
986
d62a17ae 987void ospf6_lsa_init(void)
6452df09 988{
d62a17ae 989 ospf6_install_lsa_handler(&unknown_handler);
718e3744 990}
991
d62a17ae 992void ospf6_lsa_terminate(void)
ae2254aa 993{
ae2254aa 994}
6b0655a2 995
3981b5c7 996static char *ospf6_lsa_handler_name(const struct ospf6_lsa_handler *h)
1e05838a 997{
d62a17ae 998 static char buf[64];
999 unsigned int i;
3981b5c7 1000 unsigned int size = strlen(h->lh_name);
1e05838a 1001
996c9314
LB
1002 if (!strcmp(h->lh_name, "unknown")
1003 && h->lh_type != OSPF6_LSTYPE_UNKNOWN) {
3981b5c7 1004 snprintf(buf, sizeof(buf), "%#04hx", h->lh_type);
d62a17ae 1005 return buf;
1006 }
1e05838a 1007
d62a17ae 1008 for (i = 0; i < MIN(size, sizeof(buf)); i++) {
3981b5c7
VJ
1009 if (!islower((unsigned char)h->lh_name[i]))
1010 buf[i] = tolower((unsigned char)h->lh_name[i]);
d62a17ae 1011 else
3981b5c7 1012 buf[i] = h->lh_name[i];
d62a17ae 1013 }
1014 buf[size] = '\0';
1015 return buf;
1e05838a 1016}
718e3744 1017
067967b8 1018void ospf6_lsa_debug_set_all(bool val)
d5cb3508
YR
1019{
1020 unsigned int i;
1021 struct ospf6_lsa_handler *handler = NULL;
1022
067967b8
DL
1023 for (i = 0; i < array_size(lsa_handlers); i++) {
1024 handler = lsa_handlers[i];
d5cb3508
YR
1025 if (handler == NULL)
1026 continue;
067967b8 1027 if (val)
d5cb3508
YR
1028 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_ALL);
1029 else
1030 UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_ALL);
1031 }
067967b8
DL
1032}
1033
1034DEFPY (debug_ospf6_lsa_all,
1035 debug_ospf6_lsa_all_cmd,
1036 "[no$no] debug ospf6 lsa all",
1037 NO_STR
1038 DEBUG_STR
1039 OSPF6_STR
1040 "Debug Link State Advertisements (LSAs)\n"
1041 "Display for all types of LSAs\n")
1042{
1043 ospf6_lsa_debug_set_all(!no);
d5cb3508
YR
1044 return CMD_SUCCESS;
1045}
1046
4dc43886
MR
1047DEFPY (debug_ospf6_lsa_aggregation,
1048 debug_ospf6_lsa_aggregation_cmd,
1049 "[no] debug ospf6 lsa aggregation",
1050 NO_STR
1051 DEBUG_STR
1052 OSPF6_STR
1053 "Debug Link State Advertisements (LSAs)\n"
1054 "External LSA Aggregation\n")
1055{
1056
1057 struct ospf6_lsa_handler *handler;
1058
1059 handler = ospf6_get_lsa_handler(OSPF6_LSTYPE_AS_EXTERNAL);
1060 if (handler == NULL)
1061 return CMD_WARNING_CONFIG_FAILED;
1062
1063 if (no)
1064 UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_AGGR);
1065 else
1066 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_AGGR);
1067
1068 return CMD_SUCCESS;
1069}
1070
1e05838a 1071DEFUN (debug_ospf6_lsa_type,
1072 debug_ospf6_lsa_hex_cmd,
576e8424 1073 "debug ospf6 lsa <router|network|inter-prefix|inter-router|as-external|nssa|link|intra-prefix|unknown> [<originate|examine|flooding>]",
508e53e2 1074 DEBUG_STR
1075 OSPF6_STR
1076 "Debug Link State Advertisements (LSAs)\n"
3a2d747c
QY
1077 "Display Router LSAs\n"
1078 "Display Network LSAs\n"
1079 "Display Inter-Area-Prefix LSAs\n"
1080 "Display Inter-Router LSAs\n"
1081 "Display As-External LSAs\n"
576e8424 1082 "Display NSSA LSAs\n"
3a2d747c
QY
1083 "Display Link LSAs\n"
1084 "Display Intra-Area-Prefix LSAs\n"
1085 "Display LSAs of unknown origin\n"
1086 "Display details of LSAs\n"
1087 "Dump LSAs\n"
1088 "Display LSA's internal information\n")
508e53e2 1089{
d62a17ae 1090 int idx_lsa = 3;
1091 int idx_type = 4;
1092 unsigned int i;
1093 struct ospf6_lsa_handler *handler = NULL;
1094
067967b8
DL
1095 for (i = 0; i < array_size(lsa_handlers); i++) {
1096 handler = lsa_handlers[i];
d62a17ae 1097 if (handler == NULL)
1098 continue;
1099 if (strncmp(argv[idx_lsa]->arg, ospf6_lsa_handler_name(handler),
1100 strlen(argv[idx_lsa]->arg))
1101 == 0)
1102 break;
3981b5c7 1103 if (!strcasecmp(argv[idx_lsa]->arg, handler->lh_name))
d62a17ae 1104 break;
1105 handler = NULL;
1106 }
1107
1108 if (handler == NULL)
1109 handler = &unknown_handler;
1110
1111 if (argc == 5) {
1112 if (strmatch(argv[idx_type]->text, "originate"))
01db90cd 1113 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_ORIGINATE);
d62a17ae 1114 else if (strmatch(argv[idx_type]->text, "examine"))
01db90cd 1115 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_EXAMIN);
d62a17ae 1116 else if (strmatch(argv[idx_type]->text, "flooding"))
01db90cd 1117 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_FLOOD);
d62a17ae 1118 } else
01db90cd 1119 SET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG);
d62a17ae 1120
1121 return CMD_SUCCESS;
508e53e2 1122}
1123
1e05838a 1124DEFUN (no_debug_ospf6_lsa_type,
1125 no_debug_ospf6_lsa_hex_cmd,
576e8424 1126 "no debug ospf6 lsa <router|network|inter-prefix|inter-router|as-external|nssa|link|intra-prefix|unknown> [<originate|examine|flooding>]",
508e53e2 1127 NO_STR
1128 DEBUG_STR
1129 OSPF6_STR
1130 "Debug Link State Advertisements (LSAs)\n"
16cedbb0
QY
1131 "Display Router LSAs\n"
1132 "Display Network LSAs\n"
1133 "Display Inter-Area-Prefix LSAs\n"
3a2d747c 1134 "Display Inter-Router LSAs\n"
16cedbb0 1135 "Display As-External LSAs\n"
576e8424 1136 "Display NSSA LSAs\n"
16cedbb0
QY
1137 "Display Link LSAs\n"
1138 "Display Intra-Area-Prefix LSAs\n"
3a2d747c 1139 "Display LSAs of unknown origin\n"
16cedbb0
QY
1140 "Display details of LSAs\n"
1141 "Dump LSAs\n"
1142 "Display LSA's internal information\n")
508e53e2 1143{
d62a17ae 1144 int idx_lsa = 4;
1145 int idx_type = 5;
d7c0a89a 1146 unsigned int i;
d62a17ae 1147 struct ospf6_lsa_handler *handler = NULL;
1148
067967b8
DL
1149 for (i = 0; i < array_size(lsa_handlers); i++) {
1150 handler = lsa_handlers[i];
d62a17ae 1151 if (handler == NULL)
1152 continue;
1153 if (strncmp(argv[idx_lsa]->arg, ospf6_lsa_handler_name(handler),
1154 strlen(argv[idx_lsa]->arg))
1155 == 0)
1156 break;
3981b5c7 1157 if (!strcasecmp(argv[idx_lsa]->arg, handler->lh_name))
d62a17ae 1158 break;
1159 }
718e3744 1160
d62a17ae 1161 if (handler == NULL)
1162 return CMD_SUCCESS;
1163
1164 if (argc == 6) {
1165 if (strmatch(argv[idx_type]->text, "originate"))
01db90cd
DL
1166 UNSET_FLAG(handler->lh_debug,
1167 OSPF6_LSA_DEBUG_ORIGINATE);
d62a17ae 1168 if (strmatch(argv[idx_type]->text, "examine"))
01db90cd 1169 UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_EXAMIN);
d62a17ae 1170 if (strmatch(argv[idx_type]->text, "flooding"))
01db90cd 1171 UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_FLOOD);
d62a17ae 1172 } else
01db90cd 1173 UNSET_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG);
d62a17ae 1174
1175 return CMD_SUCCESS;
1176}
1177
1178void install_element_ospf6_debug_lsa(void)
1179{
d5cb3508
YR
1180 install_element(ENABLE_NODE, &debug_ospf6_lsa_all_cmd);
1181 install_element(CONFIG_NODE, &debug_ospf6_lsa_all_cmd);
d62a17ae 1182 install_element(ENABLE_NODE, &debug_ospf6_lsa_hex_cmd);
1183 install_element(ENABLE_NODE, &no_debug_ospf6_lsa_hex_cmd);
1184 install_element(CONFIG_NODE, &debug_ospf6_lsa_hex_cmd);
1185 install_element(CONFIG_NODE, &no_debug_ospf6_lsa_hex_cmd);
4dc43886
MR
1186
1187 install_element(ENABLE_NODE, &debug_ospf6_lsa_aggregation_cmd);
1188 install_element(CONFIG_NODE, &debug_ospf6_lsa_aggregation_cmd);
d62a17ae 1189}
1190
1191int config_write_ospf6_debug_lsa(struct vty *vty)
1192{
d7c0a89a 1193 unsigned int i;
3981b5c7 1194 const struct ospf6_lsa_handler *handler;
d5cb3508
YR
1195 bool debug_all = true;
1196
067967b8
DL
1197 for (i = 0; i < array_size(lsa_handlers); i++) {
1198 handler = lsa_handlers[i];
d5cb3508
YR
1199 if (handler == NULL)
1200 continue;
1201 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_ALL)
1202 < OSPF6_LSA_DEBUG_ALL) {
1203 debug_all = false;
1204 break;
1205 }
1206 }
1207
1208 if (debug_all) {
1209 vty_out(vty, "debug ospf6 lsa all\n");
1210 return 0;
1211 }
d62a17ae 1212
067967b8
DL
1213 for (i = 0; i < array_size(lsa_handlers); i++) {
1214 handler = lsa_handlers[i];
d62a17ae 1215 if (handler == NULL)
1216 continue;
01db90cd 1217 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG))
d62a17ae 1218 vty_out(vty, "debug ospf6 lsa %s\n",
1219 ospf6_lsa_handler_name(handler));
01db90cd 1220 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_ORIGINATE))
d62a17ae 1221 vty_out(vty, "debug ospf6 lsa %s originate\n",
1222 ospf6_lsa_handler_name(handler));
01db90cd 1223 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_EXAMIN))
d62a17ae 1224 vty_out(vty, "debug ospf6 lsa %s examine\n",
1225 ospf6_lsa_handler_name(handler));
01db90cd 1226 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_FLOOD))
d62a17ae 1227 vty_out(vty, "debug ospf6 lsa %s flooding\n",
1228 ospf6_lsa_handler_name(handler));
4dc43886
MR
1229 if (CHECK_FLAG(handler->lh_debug, OSPF6_LSA_DEBUG_AGGR))
1230 vty_out(vty, "debug ospf6 lsa aggregation\n");
d62a17ae 1231 }
718e3744 1232
d62a17ae 1233 return 0;
1234}