2 * Copyright (c) 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * OSPF support contributed by Jeffrey Honig (jch@mitchell.cit.cornell.edu)
24 /* \summary: IPv6 Open Shortest Path First (OSPFv3) printer */
30 #include <netdissect-stdinc.h>
34 #include "netdissect.h"
35 #include "addrtoname.h"
40 #define OSPF_TYPE_HELLO 1 /* Hello */
41 #define OSPF_TYPE_DD 2 /* Database Description */
42 #define OSPF_TYPE_LS_REQ 3 /* Link State Request */
43 #define OSPF_TYPE_LS_UPDATE 4 /* Link State Update */
44 #define OSPF_TYPE_LS_ACK 5 /* Link State Ack */
46 /* Options *_options */
47 #define OSPF6_OPTION_V6 0x01 /* V6 bit: A bit for peeping tom */
48 #define OSPF6_OPTION_E 0x02 /* E bit: External routes advertised */
49 #define OSPF6_OPTION_MC 0x04 /* MC bit: Multicast capable */
50 #define OSPF6_OPTION_N 0x08 /* N bit: For type-7 LSA */
51 #define OSPF6_OPTION_R 0x10 /* R bit: Router bit */
52 #define OSPF6_OPTION_DC 0x20 /* DC bit: Demand circuits */
53 /* The field is actually 24-bit (RFC5340 Section A.2). */
54 #define OSPF6_OPTION_AF 0x0100 /* AF bit: Multiple address families */
55 #define OSPF6_OPTION_L 0x0200 /* L bit: Link-local signaling (LLS) */
56 #define OSPF6_OPTION_AT 0x0400 /* AT bit: Authentication trailer */
60 #define OSPF6_DB_INIT 0x04 /* */
61 #define OSPF6_DB_MORE 0x02
62 #define OSPF6_DB_MASTER 0x01
63 #define OSPF6_DB_M6 0x10 /* IPv6 MTU */
66 #define LS_TYPE_ROUTER 1 /* router link */
67 #define LS_TYPE_NETWORK 2 /* network link */
68 #define LS_TYPE_INTER_AP 3 /* Inter-Area-Prefix */
69 #define LS_TYPE_INTER_AR 4 /* Inter-Area-Router */
70 #define LS_TYPE_ASE 5 /* ASE */
71 #define LS_TYPE_GROUP 6 /* Group membership */
72 #define LS_TYPE_NSSA 7 /* NSSA */
73 #define LS_TYPE_LINK 8 /* Link LSA */
74 #define LS_TYPE_INTRA_AP 9 /* Intra-Area-Prefix */
75 #define LS_TYPE_INTRA_ATE 10 /* Intra-Area-TE */
76 #define LS_TYPE_GRACE 11 /* Grace LSA */
77 #define LS_TYPE_RI 12 /* Router information */
78 #define LS_TYPE_INTER_ASTE 13 /* Inter-AS-TE */
79 #define LS_TYPE_L1VPN 14 /* L1VPN */
80 #define LS_TYPE_MASK 0x1fff
82 #define LS_SCOPE_LINKLOCAL 0x0000
83 #define LS_SCOPE_AREA 0x2000
84 #define LS_SCOPE_AS 0x4000
85 #define LS_SCOPE_MASK 0x6000
86 #define LS_SCOPE_U 0x8000
88 /* rla_link.link_type */
89 #define RLA_TYPE_ROUTER 1 /* point-to-point to another router */
90 #define RLA_TYPE_TRANSIT 2 /* connection to transit network */
91 #define RLA_TYPE_VIRTUAL 4 /* virtual link */
94 #define RLA_FLAG_B 0x01
95 #define RLA_FLAG_E 0x02
96 #define RLA_FLAG_V 0x04
97 #define RLA_FLAG_W 0x08
98 #define RLA_FLAG_N 0x10
100 /* lsa_prefix options */
101 #define LSA_PREFIX_OPT_NU 0x01
102 #define LSA_PREFIX_OPT_LA 0x02
103 #define LSA_PREFIX_OPT_MC 0x04
104 #define LSA_PREFIX_OPT_P 0x08
105 #define LSA_PREFIX_OPT_DN 0x10
107 /* sla_tosmetric breakdown */
108 #define SLA_MASK_TOS 0x7f000000
109 #define SLA_MASK_METRIC 0x00ffffff
110 #define SLA_SHIFT_TOS 24
113 #define ASLA_FLAG_FWDADDR 0x02000000
114 #define ASLA_FLAG_ROUTETAG 0x01000000
115 #define ASLA_MASK_METRIC 0x00ffffff
117 /* RFC6506 Section 4.1 */
118 #define OSPF6_AT_HDRLEN 16U
119 #define OSPF6_AUTH_TYPE_HMAC 0x0001
121 typedef uint32_t rtrid_t
;
123 /* link state advertisement header */
134 /* Length of an IPv6 address, in bytes. */
135 #define IPV6_ADDR_LEN_BYTES (128/8)
140 uint16_t lsa_p_metric
;
141 uint8_t lsa_p_prefix
[IPV6_ADDR_LEN_BYTES
]; /* maximum length */
144 /* link state advertisement */
146 struct lsa6_hdr ls_hdr
;
148 /* Link state types */
150 /* Router links advertisements */
156 #define rla_flags rla_flgandopt.flg
157 #define rla_options rla_flgandopt.opt
160 uint8_t link_zero
[1];
161 uint16_t link_metric
;
165 } rla_link
[1]; /* may repeat */
168 /* Network links advertisements */
170 uint32_t nla_options
;
171 rtrid_t nla_router
[1]; /* may repeat */
174 /* Inter Area Prefix LSA */
176 uint32_t inter_ap_metric
;
177 struct lsa6_prefix inter_ap_prefix
[1];
180 /* AS external links advertisements */
182 uint32_t asla_metric
;
183 struct lsa6_prefix asla_prefix
[1];
184 /* some optional fields follow */
188 /* Summary links advertisements */
190 struct in_addr sla_mask
;
191 uint32_t sla_tosmetric
[1]; /* may repeat */
194 /* Multicast group membership */
197 struct in_addr mcla_vid
;
209 #define llsa_priority llsa_priandopt.pri
210 #define llsa_options llsa_priandopt.opt
211 struct in6_addr llsa_lladdr
;
212 uint32_t llsa_nprefix
;
213 struct lsa6_prefix llsa_prefix
[1];
216 /* Intra-Area-Prefix */
218 uint16_t intra_ap_nprefix
;
219 uint16_t intra_ap_lstype
;
220 rtrid_t intra_ap_lsid
;
221 rtrid_t intra_ap_rtid
;
222 struct lsa6_prefix intra_ap_prefix
[1];
231 uint8_t ospf6_version
;
234 rtrid_t ospf6_routerid
;
235 rtrid_t ospf6_areaid
;
236 uint16_t ospf6_chksum
;
237 uint8_t ospf6_instanceid
;
242 * The OSPF6 header length is 16 bytes, regardless of how your compiler
243 * might choose to pad the above structure.
245 #define OSPF6HDR_LEN 16
254 #define hello_priority hello_priandopt.pri
255 #define hello_options hello_priandopt.opt
256 uint16_t hello_helloint
;
257 uint16_t hello_deadint
;
260 rtrid_t hello_neighbor
[1]; /* may repeat */
263 /* Database Description packet */
270 struct lsa6_hdr db_lshdr
[1]; /* may repeat */
273 /* Link State Request */
281 /* Link State Update */
284 struct lsa6 lsu_lsa
[1]; /* may repeat */
287 static const char tstr
[] = " [|ospf3]";
289 static const struct tok ospf6_option_values
[] = {
290 { OSPF6_OPTION_V6
, "V6" },
291 { OSPF6_OPTION_E
, "External" },
292 { OSPF6_OPTION_MC
, "Deprecated" },
293 { OSPF6_OPTION_N
, "NSSA" },
294 { OSPF6_OPTION_R
, "Router" },
295 { OSPF6_OPTION_DC
, "Demand Circuit" },
296 { OSPF6_OPTION_AF
, "AFs Support" },
297 { OSPF6_OPTION_L
, "LLS" },
298 { OSPF6_OPTION_AT
, "Authentication Trailer" },
302 static const struct tok ospf6_rla_flag_values
[] = {
303 { RLA_FLAG_B
, "ABR" },
304 { RLA_FLAG_E
, "External" },
305 { RLA_FLAG_V
, "Virtual-Link Endpoint" },
306 { RLA_FLAG_W
, "Wildcard Receiver" },
307 { RLA_FLAG_N
, "NSSA Translator" },
311 static const struct tok ospf6_asla_flag_values
[] = {
312 { ASLA_FLAG_EXTERNAL
, "External Type 2" },
313 { ASLA_FLAG_FWDADDR
, "Forwarding" },
314 { ASLA_FLAG_ROUTETAG
, "Tag" },
318 static const struct tok ospf6_type_values
[] = {
319 { OSPF_TYPE_HELLO
, "Hello" },
320 { OSPF_TYPE_DD
, "Database Description" },
321 { OSPF_TYPE_LS_REQ
, "LS-Request" },
322 { OSPF_TYPE_LS_UPDATE
, "LS-Update" },
323 { OSPF_TYPE_LS_ACK
, "LS-Ack" },
327 static const struct tok ospf6_lsa_values
[] = {
328 { LS_TYPE_ROUTER
, "Router" },
329 { LS_TYPE_NETWORK
, "Network" },
330 { LS_TYPE_INTER_AP
, "Inter-Area Prefix" },
331 { LS_TYPE_INTER_AR
, "Inter-Area Router" },
332 { LS_TYPE_ASE
, "External" },
333 { LS_TYPE_GROUP
, "Deprecated" },
334 { LS_TYPE_NSSA
, "NSSA" },
335 { LS_TYPE_LINK
, "Link" },
336 { LS_TYPE_INTRA_AP
, "Intra-Area Prefix" },
337 { LS_TYPE_INTRA_ATE
, "Intra-Area TE" },
338 { LS_TYPE_GRACE
, "Grace" },
339 { LS_TYPE_RI
, "Router Information" },
340 { LS_TYPE_INTER_ASTE
, "Inter-AS-TE" },
341 { LS_TYPE_L1VPN
, "Layer 1 VPN" },
345 static const struct tok ospf6_ls_scope_values
[] = {
346 { LS_SCOPE_LINKLOCAL
, "Link Local" },
347 { LS_SCOPE_AREA
, "Area Local" },
348 { LS_SCOPE_AS
, "Domain Wide" },
352 static const struct tok ospf6_dd_flag_values
[] = {
353 { OSPF6_DB_INIT
, "Init" },
354 { OSPF6_DB_MORE
, "More" },
355 { OSPF6_DB_MASTER
, "Master" },
356 { OSPF6_DB_M6
, "IPv6 MTU" },
360 static const struct tok ospf6_lsa_prefix_option_values
[] = {
361 { LSA_PREFIX_OPT_NU
, "No Unicast" },
362 { LSA_PREFIX_OPT_LA
, "Local address" },
363 { LSA_PREFIX_OPT_MC
, "Deprecated" },
364 { LSA_PREFIX_OPT_P
, "Propagate" },
365 { LSA_PREFIX_OPT_DN
, "Down" },
369 static const struct tok ospf6_auth_type_str
[] = {
370 { OSPF6_AUTH_TYPE_HMAC
, "HMAC" },
375 ospf6_print_ls_type(netdissect_options
*ndo
,
376 u_int ls_type
, const rtrid_t
*ls_stateid
)
378 ND_PRINT((ndo
, "\n\t %s LSA (%d), %s Scope%s, LSA-ID %s",
379 tok2str(ospf6_lsa_values
, "Unknown", ls_type
& LS_TYPE_MASK
),
380 ls_type
& LS_TYPE_MASK
,
381 tok2str(ospf6_ls_scope_values
, "Unknown", ls_type
& LS_SCOPE_MASK
),
382 ls_type
&0x8000 ? ", transitive" : "", /* U-bit */
383 ipaddr_string(ndo
, ls_stateid
)));
387 ospf6_print_lshdr(netdissect_options
*ndo
,
388 const struct lsa6_hdr
*lshp
, const u_char
*dataend
)
390 if ((const u_char
*)(lshp
+ 1) > dataend
)
392 ND_TCHECK(lshp
->ls_type
);
393 ND_TCHECK(lshp
->ls_seq
);
395 ND_PRINT((ndo
, "\n\t Advertising Router %s, seq 0x%08x, age %us, length %u",
396 ipaddr_string(ndo
, &lshp
->ls_router
),
397 EXTRACT_BE_U_4(&lshp
->ls_seq
),
398 EXTRACT_BE_U_2(&lshp
->ls_age
),
399 EXTRACT_BE_U_2(&lshp
->ls_length
)-(u_int
)sizeof(struct lsa6_hdr
)));
401 ospf6_print_ls_type(ndo
, EXTRACT_BE_U_2(&lshp
->ls_type
),
410 ospf6_print_lsaprefix(netdissect_options
*ndo
,
411 const uint8_t *tptr
, u_int lsa_length
)
413 const struct lsa6_prefix
*lsapp
= (const struct lsa6_prefix
*)tptr
;
415 struct in6_addr prefix
;
417 if (lsa_length
< sizeof (*lsapp
) - IPV6_ADDR_LEN_BYTES
)
419 lsa_length
-= sizeof (*lsapp
) - IPV6_ADDR_LEN_BYTES
;
420 ND_TCHECK_LEN(lsapp
, sizeof(*lsapp
) - IPV6_ADDR_LEN_BYTES
);
421 wordlen
= (lsapp
->lsa_p_len
+ 31) / 32;
422 if (wordlen
* 4 > sizeof(struct in6_addr
)) {
423 ND_PRINT((ndo
, " bogus prefixlen /%d", lsapp
->lsa_p_len
));
426 if (lsa_length
< wordlen
* 4)
428 lsa_length
-= wordlen
* 4;
429 ND_TCHECK2(lsapp
->lsa_p_prefix
, wordlen
* 4);
430 memset(&prefix
, 0, sizeof(prefix
));
431 memcpy(&prefix
, lsapp
->lsa_p_prefix
, wordlen
* 4);
432 ND_PRINT((ndo
, "\n\t\t%s/%d", ip6addr_string(ndo
, &prefix
),
434 if (lsapp
->lsa_p_opt
) {
435 ND_PRINT((ndo
, ", Options [%s]",
436 bittok2str(ospf6_lsa_prefix_option_values
,
437 "none", lsapp
->lsa_p_opt
)));
439 ND_PRINT((ndo
, ", metric %u", EXTRACT_BE_U_2(&lsapp
->lsa_p_metric
)));
440 return sizeof(*lsapp
) - IPV6_ADDR_LEN_BYTES
+ wordlen
* 4;
448 * Print a single link state advertisement. If truncated return 1, else 0.
451 ospf6_print_lsa(netdissect_options
*ndo
,
452 const struct lsa6
*lsap
, const u_char
*dataend
)
454 const struct rlalink6
*rlp
;
456 const struct tos_metric
*tosp
;
460 const struct aslametric
*almp
;
461 const struct mcla
*mcp
;
463 const struct llsa
*llsap
;
464 const struct lsa6_prefix
*lsapp
;
470 u_int length
, lsa_length
;
474 if (ospf6_print_lshdr(ndo
, &lsap
->ls_hdr
, dataend
))
476 ND_TCHECK(lsap
->ls_hdr
.ls_length
);
477 length
= EXTRACT_BE_U_2(&lsap
->ls_hdr
.ls_length
);
480 * The LSA length includes the length of the header;
481 * it must have a value that's at least that length.
482 * If it does, find the length of what follows the
485 if (length
< sizeof(struct lsa6_hdr
) || (const u_char
*)lsap
+ length
> dataend
)
487 lsa_length
= length
- sizeof(struct lsa6_hdr
);
488 tptr
= (const uint8_t *)lsap
+sizeof(struct lsa6_hdr
);
490 switch (EXTRACT_BE_U_2(&lsap
->ls_hdr
.ls_type
)) {
491 case LS_TYPE_ROUTER
| LS_SCOPE_AREA
:
492 if (lsa_length
< sizeof (lsap
->lsa_un
.un_rla
.rla_options
))
494 lsa_length
-= sizeof (lsap
->lsa_un
.un_rla
.rla_options
);
495 ND_TCHECK(lsap
->lsa_un
.un_rla
.rla_options
);
496 ND_PRINT((ndo
, "\n\t Options [%s]",
497 bittok2str(ospf6_option_values
, "none",
498 EXTRACT_BE_U_4(&lsap
->lsa_un
.un_rla
.rla_options
))));
499 ND_PRINT((ndo
, ", RLA-Flags [%s]",
500 bittok2str(ospf6_rla_flag_values
, "none",
501 lsap
->lsa_un
.un_rla
.rla_flags
)));
503 rlp
= lsap
->lsa_un
.un_rla
.rla_link
;
504 while (lsa_length
!= 0) {
505 if (lsa_length
< sizeof (*rlp
))
507 lsa_length
-= sizeof (*rlp
);
509 switch (rlp
->link_type
) {
511 case RLA_TYPE_VIRTUAL
:
512 ND_PRINT((ndo
, "\n\t Virtual Link: Neighbor Router-ID %s"
513 "\n\t Neighbor Interface-ID %s, Interface %s",
514 ipaddr_string(ndo
, &rlp
->link_nrtid
),
515 ipaddr_string(ndo
, &rlp
->link_nifid
),
516 ipaddr_string(ndo
, &rlp
->link_ifid
)));
519 case RLA_TYPE_ROUTER
:
520 ND_PRINT((ndo
, "\n\t Neighbor Router-ID %s"
521 "\n\t Neighbor Interface-ID %s, Interface %s",
522 ipaddr_string(ndo
, &rlp
->link_nrtid
),
523 ipaddr_string(ndo
, &rlp
->link_nifid
),
524 ipaddr_string(ndo
, &rlp
->link_ifid
)));
527 case RLA_TYPE_TRANSIT
:
528 ND_PRINT((ndo
, "\n\t Neighbor Network-ID %s"
529 "\n\t Neighbor Interface-ID %s, Interface %s",
530 ipaddr_string(ndo
, &rlp
->link_nrtid
),
531 ipaddr_string(ndo
, &rlp
->link_nifid
),
532 ipaddr_string(ndo
, &rlp
->link_ifid
)));
536 ND_PRINT((ndo
, "\n\t Unknown Router Links Type 0x%02x",
540 ND_PRINT((ndo
, ", metric %d", EXTRACT_BE_U_2(&rlp
->link_metric
)));
545 case LS_TYPE_NETWORK
| LS_SCOPE_AREA
:
546 if (lsa_length
< sizeof (lsap
->lsa_un
.un_nla
.nla_options
))
548 lsa_length
-= sizeof (lsap
->lsa_un
.un_nla
.nla_options
);
549 ND_TCHECK(lsap
->lsa_un
.un_nla
.nla_options
);
550 ND_PRINT((ndo
, "\n\t Options [%s]",
551 bittok2str(ospf6_option_values
, "none",
552 EXTRACT_BE_U_4(&lsap
->lsa_un
.un_nla
.nla_options
))));
554 ND_PRINT((ndo
, "\n\t Connected Routers:"));
555 ap
= lsap
->lsa_un
.un_nla
.nla_router
;
556 while (lsa_length
!= 0) {
557 if (lsa_length
< sizeof (*ap
))
559 lsa_length
-= sizeof (*ap
);
561 ND_PRINT((ndo
, "\n\t\t%s", ipaddr_string(ndo
, ap
)));
566 case LS_TYPE_INTER_AP
| LS_SCOPE_AREA
:
567 if (lsa_length
< sizeof (lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
))
569 lsa_length
-= sizeof (lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
);
570 ND_TCHECK(lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
);
571 ND_PRINT((ndo
, ", metric %u",
572 EXTRACT_BE_U_4(&lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
) & SLA_MASK_METRIC
));
574 tptr
= (const uint8_t *)lsap
->lsa_un
.un_inter_ap
.inter_ap_prefix
;
575 while (lsa_length
!= 0) {
576 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
579 lsa_length
-= bytelen
;
584 case LS_TYPE_ASE
| LS_SCOPE_AS
:
585 if (lsa_length
< sizeof (lsap
->lsa_un
.un_asla
.asla_metric
))
587 lsa_length
-= sizeof (lsap
->lsa_un
.un_asla
.asla_metric
);
588 ND_TCHECK(lsap
->lsa_un
.un_asla
.asla_metric
);
589 flags32
= EXTRACT_BE_U_4(&lsap
->lsa_un
.un_asla
.asla_metric
);
590 ND_PRINT((ndo
, "\n\t Flags [%s]",
591 bittok2str(ospf6_asla_flag_values
, "none", flags32
)));
592 ND_PRINT((ndo
, " metric %u",
593 EXTRACT_BE_U_4(&lsap
->lsa_un
.un_asla
.asla_metric
) &
596 tptr
= (const uint8_t *)lsap
->lsa_un
.un_asla
.asla_prefix
;
597 lsapp
= (const struct lsa6_prefix
*)tptr
;
598 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
601 lsa_length
-= bytelen
;
604 if ((flags32
& ASLA_FLAG_FWDADDR
) != 0) {
605 const struct in6_addr
*fwdaddr6
;
607 fwdaddr6
= (const struct in6_addr
*)tptr
;
608 if (lsa_length
< sizeof (*fwdaddr6
))
610 lsa_length
-= sizeof (*fwdaddr6
);
611 ND_TCHECK(*fwdaddr6
);
612 ND_PRINT((ndo
, " forward %s",
613 ip6addr_string(ndo
, fwdaddr6
)));
614 tptr
+= sizeof(*fwdaddr6
);
617 if ((flags32
& ASLA_FLAG_ROUTETAG
) != 0) {
618 if (lsa_length
< sizeof (uint32_t))
620 lsa_length
-= sizeof (uint32_t);
621 ND_TCHECK(*(const uint32_t *)tptr
);
622 ND_PRINT((ndo
, " tag %s",
623 ipaddr_string(ndo
, (const uint32_t *)tptr
)));
624 tptr
+= sizeof(uint32_t);
627 if (lsapp
->lsa_p_metric
) {
628 if (lsa_length
< sizeof (uint32_t))
630 lsa_length
-= sizeof (uint32_t);
631 ND_TCHECK(*(const uint32_t *)tptr
);
632 ND_PRINT((ndo
, " RefLSID: %s",
633 ipaddr_string(ndo
, (const uint32_t *)tptr
)));
634 tptr
+= sizeof(uint32_t);
640 llsap
= &lsap
->lsa_un
.un_llsa
;
641 if (lsa_length
< sizeof (llsap
->llsa_priandopt
))
643 lsa_length
-= sizeof (llsap
->llsa_priandopt
);
644 ND_TCHECK(llsap
->llsa_priandopt
);
645 ND_PRINT((ndo
, "\n\t Options [%s]",
646 bittok2str(ospf6_option_values
, "none",
647 EXTRACT_BE_U_4(&llsap
->llsa_options
))));
649 if (lsa_length
< sizeof (llsap
->llsa_lladdr
) + sizeof (llsap
->llsa_nprefix
))
651 lsa_length
-= sizeof (llsap
->llsa_lladdr
) + sizeof (llsap
->llsa_nprefix
);
652 ND_TCHECK(llsap
->llsa_nprefix
);
653 prefixes
= EXTRACT_BE_U_4(&llsap
->llsa_nprefix
);
654 ND_PRINT((ndo
, "\n\t Priority %d, Link-local address %s, Prefixes %d:",
655 llsap
->llsa_priority
,
656 ip6addr_string(ndo
, &llsap
->llsa_lladdr
),
659 tptr
= (const uint8_t *)llsap
->llsa_prefix
;
660 while (prefixes
> 0) {
661 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
665 lsa_length
-= bytelen
;
670 case LS_TYPE_INTRA_AP
| LS_SCOPE_AREA
:
671 /* Intra-Area-Prefix LSA */
672 if (lsa_length
< sizeof (lsap
->lsa_un
.un_intra_ap
.intra_ap_rtid
))
674 lsa_length
-= sizeof (lsap
->lsa_un
.un_intra_ap
.intra_ap_rtid
);
675 ND_TCHECK(lsap
->lsa_un
.un_intra_ap
.intra_ap_rtid
);
676 ospf6_print_ls_type(ndo
,
677 EXTRACT_BE_U_2(&lsap
->lsa_un
.un_intra_ap
.intra_ap_lstype
),
678 &lsap
->lsa_un
.un_intra_ap
.intra_ap_lsid
);
680 if (lsa_length
< sizeof (lsap
->lsa_un
.un_intra_ap
.intra_ap_nprefix
))
682 lsa_length
-= sizeof (lsap
->lsa_un
.un_intra_ap
.intra_ap_nprefix
);
683 ND_TCHECK(lsap
->lsa_un
.un_intra_ap
.intra_ap_nprefix
);
684 prefixes
= EXTRACT_BE_U_2(&lsap
->lsa_un
.un_intra_ap
.intra_ap_nprefix
);
685 ND_PRINT((ndo
, "\n\t Prefixes %d:", prefixes
));
687 tptr
= (const uint8_t *)lsap
->lsa_un
.un_intra_ap
.intra_ap_prefix
;
688 while (prefixes
> 0) {
689 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
693 lsa_length
-= bytelen
;
698 case LS_TYPE_GRACE
| LS_SCOPE_LINKLOCAL
:
699 if (ospf_print_grace_lsa(ndo
, tptr
, lsa_length
) == -1) {
704 case LS_TYPE_INTRA_ATE
| LS_SCOPE_LINKLOCAL
:
705 if (ospf_print_te_lsa(ndo
, tptr
, lsa_length
) == -1) {
711 if(!print_unknown_data(ndo
,tptr
,
725 ospf6_decode_v3(netdissect_options
*ndo
,
726 const struct ospf6hdr
*op
,
727 const u_char
*dataend
)
730 const struct lsr6
*lsrp
;
731 const struct lsa6_hdr
*lshp
;
732 const struct lsa6
*lsap
;
735 switch (op
->ospf6_type
) {
737 case OSPF_TYPE_HELLO
: {
738 const struct hello6
*hellop
= (const struct hello6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
740 ND_TCHECK_4(&hellop
->hello_options
);
741 ND_PRINT((ndo
, "\n\tOptions [%s]",
742 bittok2str(ospf6_option_values
, "none",
743 EXTRACT_BE_U_4(&hellop
->hello_options
))));
745 ND_TCHECK(hellop
->hello_deadint
);
746 ND_PRINT((ndo
, "\n\t Hello Timer %us, Dead Timer %us, Interface-ID %s, Priority %u",
747 EXTRACT_BE_U_2(&hellop
->hello_helloint
),
748 EXTRACT_BE_U_2(&hellop
->hello_deadint
),
749 ipaddr_string(ndo
, &hellop
->hello_ifid
),
750 hellop
->hello_priority
));
752 ND_TCHECK(hellop
->hello_dr
);
753 if (EXTRACT_BE_U_4(&hellop
->hello_dr
) != 0)
754 ND_PRINT((ndo
, "\n\t Designated Router %s",
755 ipaddr_string(ndo
, &hellop
->hello_dr
)));
756 ND_TCHECK(hellop
->hello_bdr
);
757 if (EXTRACT_BE_U_4(&hellop
->hello_bdr
) != 0)
758 ND_PRINT((ndo
, ", Backup Designated Router %s",
759 ipaddr_string(ndo
, &hellop
->hello_bdr
)));
760 if (ndo
->ndo_vflag
> 1) {
761 ND_PRINT((ndo
, "\n\t Neighbor List:"));
762 ap
= hellop
->hello_neighbor
;
763 while ((const u_char
*)ap
< dataend
) {
765 ND_PRINT((ndo
, "\n\t %s", ipaddr_string(ndo
, ap
)));
773 const struct dd6
*ddp
= (const struct dd6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
775 ND_TCHECK(ddp
->db_options
);
776 ND_PRINT((ndo
, "\n\tOptions [%s]",
777 bittok2str(ospf6_option_values
, "none",
778 EXTRACT_BE_U_4(&ddp
->db_options
))));
779 ND_TCHECK(ddp
->db_flags
);
780 ND_PRINT((ndo
, ", DD Flags [%s]",
781 bittok2str(ospf6_dd_flag_values
,"none",ddp
->db_flags
)));
783 ND_TCHECK(ddp
->db_seq
);
784 ND_PRINT((ndo
, ", MTU %u, DD-Sequence 0x%08x",
785 EXTRACT_BE_U_2(&ddp
->db_mtu
),
786 EXTRACT_BE_U_4(&ddp
->db_seq
)));
787 if (ndo
->ndo_vflag
> 1) {
788 /* Print all the LS adv's */
789 lshp
= ddp
->db_lshdr
;
790 while ((const u_char
*)lshp
< dataend
) {
791 if (ospf6_print_lshdr(ndo
, lshp
++, dataend
))
798 case OSPF_TYPE_LS_REQ
:
799 if (ndo
->ndo_vflag
> 1) {
800 lsrp
= (const struct lsr6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
801 while ((const u_char
*)lsrp
< dataend
) {
803 ND_PRINT((ndo
, "\n\t Advertising Router %s",
804 ipaddr_string(ndo
, &lsrp
->ls_router
)));
805 ospf6_print_ls_type(ndo
,
806 EXTRACT_BE_U_2(&lsrp
->ls_type
),
813 case OSPF_TYPE_LS_UPDATE
:
814 if (ndo
->ndo_vflag
> 1) {
815 const struct lsu6
*lsup
= (const struct lsu6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
817 ND_TCHECK(lsup
->lsu_count
);
818 i
= EXTRACT_BE_U_4(&lsup
->lsu_count
);
819 lsap
= lsup
->lsu_lsa
;
820 while ((const u_char
*)lsap
< dataend
&& i
--) {
821 if (ospf6_print_lsa(ndo
, lsap
, dataend
))
823 lsap
= (const struct lsa6
*)((const u_char
*)lsap
+
824 EXTRACT_BE_U_2(&lsap
->ls_hdr
.ls_length
));
829 case OSPF_TYPE_LS_ACK
:
830 if (ndo
->ndo_vflag
> 1) {
831 lshp
= (const struct lsa6_hdr
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
832 while ((const u_char
*)lshp
< dataend
) {
833 if (ospf6_print_lshdr(ndo
, lshp
++, dataend
))
847 /* RFC5613 Section 2.2 (w/o the TLVs) */
849 ospf6_print_lls(netdissect_options
*ndo
,
850 const u_char
*cp
, const u_int len
)
856 if (len
< OSPF_LLS_HDRLEN
)
860 ND_PRINT((ndo
, "\n\tLLS Checksum 0x%04x", EXTRACT_BE_U_2(cp
)));
862 /* LLS Data Length */
864 llsdatalen
= EXTRACT_BE_U_2(cp
);
865 ND_PRINT((ndo
, ", Data Length %u", llsdatalen
));
866 if (llsdatalen
< OSPF_LLS_HDRLEN
|| llsdatalen
> len
)
870 ND_TCHECK_LEN(cp
, llsdatalen
- OSPF_LLS_HDRLEN
);
871 /* FIXME: code in print-ospf.c can be reused to decode the TLVs */
878 /* RFC6506 Section 4.1 */
880 ospf6_decode_at(netdissect_options
*ndo
,
881 const u_char
*cp
, const u_int len
)
883 uint16_t authdatalen
;
887 if (len
< OSPF6_AT_HDRLEN
)
889 /* Authentication Type */
891 ND_PRINT((ndo
, "\n\tAuthentication Type %s", tok2str(ospf6_auth_type_str
, "unknown (0x%04x)", EXTRACT_BE_U_2(cp
))));
895 authdatalen
= EXTRACT_BE_U_2(cp
);
896 ND_PRINT((ndo
, ", Length %u", authdatalen
));
897 if (authdatalen
< OSPF6_AT_HDRLEN
|| authdatalen
> len
)
903 /* Security Association ID */
905 ND_PRINT((ndo
, ", SAID %u", EXTRACT_BE_U_2(cp
)));
907 /* Cryptographic Sequence Number (High-Order 32 Bits) */
909 ND_PRINT((ndo
, ", CSN 0x%08x", EXTRACT_BE_U_4(cp
)));
911 /* Cryptographic Sequence Number (Low-Order 32 Bits) */
913 ND_PRINT((ndo
, ":%08x", EXTRACT_BE_U_4(cp
)));
915 /* Authentication Data */
916 ND_TCHECK_LEN(cp
, authdatalen
- OSPF6_AT_HDRLEN
);
917 if (ndo
->ndo_vflag
> 1)
918 print_unknown_data(ndo
,cp
, "\n\tAuthentication Data ", authdatalen
- OSPF6_AT_HDRLEN
);
925 /* The trailing data may include LLS and/or AT data (in this specific order).
926 * LLS data may be present only in Hello and DBDesc packets with the L-bit set.
927 * AT data may be present in Hello and DBDesc packets with the AT-bit set or in
928 * any other packet type, thus decode the AT data regardless of the AT-bit.
931 ospf6_decode_v3_trailer(netdissect_options
*ndo
,
932 const struct ospf6hdr
*op
, const u_char
*cp
, const unsigned len
)
938 if (op
->ospf6_type
== OSPF_TYPE_HELLO
) {
939 const struct hello6
*hellop
= (const struct hello6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
940 ND_TCHECK(hellop
->hello_options
);
941 if (EXTRACT_BE_U_4(&hellop
->hello_options
) & OSPF6_OPTION_L
)
943 } else if (op
->ospf6_type
== OSPF_TYPE_DD
) {
944 const struct dd6
*ddp
= (const struct dd6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
945 ND_TCHECK(ddp
->db_options
);
946 if (EXTRACT_BE_U_4(&ddp
->db_options
) & OSPF6_OPTION_L
)
949 if ((lls_hello
|| lls_dd
) && (llslen
= ospf6_print_lls(ndo
, cp
, len
)) < 0)
951 return ospf6_decode_at(ndo
, cp
+ llslen
, len
- llslen
);
958 ospf6_print(netdissect_options
*ndo
,
959 const u_char
*bp
, u_int length
)
961 const struct ospf6hdr
*op
;
962 const u_char
*dataend
;
966 op
= (const struct ospf6hdr
*)bp
;
968 /* If the type is valid translate it, or just print the type */
969 /* value. If it's not valid, say so and return */
970 ND_TCHECK(op
->ospf6_type
);
971 cp
= tok2str(ospf6_type_values
, "unknown packet type (%u)", op
->ospf6_type
);
972 ND_PRINT((ndo
, "OSPFv%u, %s, length %d", op
->ospf6_version
, cp
, length
));
977 if(!ndo
->ndo_vflag
) { /* non verbose - so lets bail out here */
981 /* OSPFv3 data always comes first and optional trailing data may follow. */
982 ND_TCHECK(op
->ospf6_len
);
983 datalen
= EXTRACT_BE_U_2(&op
->ospf6_len
);
984 if (datalen
> length
) {
985 ND_PRINT((ndo
, " [len %d]", datalen
));
988 dataend
= bp
+ datalen
;
990 ND_TCHECK(op
->ospf6_routerid
);
991 ND_PRINT((ndo
, "\n\tRouter-ID %s", ipaddr_string(ndo
, &op
->ospf6_routerid
)));
993 ND_TCHECK(op
->ospf6_areaid
);
994 if (EXTRACT_BE_U_4(&op
->ospf6_areaid
) != 0)
995 ND_PRINT((ndo
, ", Area %s", ipaddr_string(ndo
, &op
->ospf6_areaid
)));
997 ND_PRINT((ndo
, ", Backbone Area"));
998 ND_TCHECK(op
->ospf6_instanceid
);
999 if (op
->ospf6_instanceid
)
1000 ND_PRINT((ndo
, ", Instance %u", op
->ospf6_instanceid
));
1002 /* Do rest according to version. */
1003 switch (op
->ospf6_version
) {
1006 /* ospf version 3 */
1007 if (ospf6_decode_v3(ndo
, op
, dataend
) ||
1008 ospf6_decode_v3_trailer(ndo
, op
, dataend
, length
- datalen
))
1011 } /* end switch on version */
1015 ND_PRINT((ndo
, "%s", tstr
));