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_Nt 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
106 #define LSA_PREFIX_OPT_N 0x20
108 /* sla_tosmetric breakdown */
109 #define SLA_MASK_TOS 0x7f000000
110 #define SLA_MASK_METRIC 0x00ffffff
111 #define SLA_SHIFT_TOS 24
114 #define ASLA_FLAG_FWDADDR 0x02000000
115 #define ASLA_FLAG_ROUTETAG 0x01000000
116 #define ASLA_MASK_METRIC 0x00ffffff
118 /* RFC6506 Section 4.1 */
119 #define OSPF6_AT_HDRLEN 16U
120 #define OSPF6_AUTH_TYPE_HMAC 0x0001
122 typedef nd_uint32_t rtrid_t
;
124 /* link state advertisement header */
131 nd_uint16_t ls_chksum
;
132 nd_uint16_t ls_length
;
135 /* Length of an IPv6 address, in bytes. */
136 #define IPV6_ADDR_LEN_BYTES (128/8)
139 nd_uint8_t lsa_p_len
;
140 nd_uint8_t lsa_p_opt
;
141 nd_uint16_t lsa_p_metric
;
142 nd_byte lsa_p_prefix
[IPV6_ADDR_LEN_BYTES
]; /* maximum length */
145 /* link state advertisement */
147 struct lsa6_hdr ls_hdr
;
149 /* Link state types */
151 /* Router links advertisements */
157 #define rla_flags rla_flgandopt.flg
158 #define rla_options rla_flgandopt.opt
160 nd_uint8_t link_type
;
162 nd_uint16_t link_metric
;
163 nd_uint32_t link_ifid
;
164 nd_uint32_t link_nifid
;
166 } rla_link
[1]; /* may repeat */
169 /* Network links advertisements */
171 nd_uint32_t nla_options
;
172 rtrid_t nla_router
[1]; /* may repeat */
175 /* Inter Area Prefix LSA */
177 nd_uint32_t inter_ap_metric
;
178 struct lsa6_prefix inter_ap_prefix
[1];
181 /* AS external links advertisements */
183 nd_uint32_t asla_metric
;
184 struct lsa6_prefix asla_prefix
[1];
185 /* some optional fields follow */
189 /* Summary links advertisements */
192 nd_uint32_t sla_tosmetric
[1]; /* may repeat */
195 /* Multicast group membership */
197 nd_uint32_t mcla_vtype
;
210 #define llsa_priority llsa_priandopt.pri
211 #define llsa_options llsa_priandopt.opt
213 nd_uint32_t llsa_nprefix
;
214 struct lsa6_prefix llsa_prefix
[1];
217 /* Intra-Area-Prefix */
219 nd_uint16_t intra_ap_nprefix
;
220 nd_uint16_t intra_ap_lstype
;
221 rtrid_t intra_ap_lsid
;
222 rtrid_t intra_ap_rtid
;
223 struct lsa6_prefix intra_ap_prefix
[1];
232 nd_uint8_t ospf6_version
;
233 nd_uint8_t ospf6_type
;
234 nd_uint16_t ospf6_len
;
235 rtrid_t ospf6_routerid
;
236 rtrid_t ospf6_areaid
;
237 nd_uint16_t ospf6_chksum
;
238 nd_uint8_t ospf6_instanceid
;
239 nd_uint8_t ospf6_rsvd
;
243 * The OSPF6 header length is 16 bytes, regardless of how your compiler
244 * might choose to pad the above structure.
246 #define OSPF6HDR_LEN 16
250 nd_uint32_t hello_ifid
;
255 #define hello_priority hello_priandopt.pri
256 #define hello_options hello_priandopt.opt
257 nd_uint16_t hello_helloint
;
258 nd_uint16_t hello_deadint
;
261 rtrid_t hello_neighbor
[1]; /* may repeat */
264 /* Database Description packet */
266 nd_uint32_t db_options
;
271 struct lsa6_hdr db_lshdr
[1]; /* may repeat */
274 /* Link State Request */
282 /* Link State Update */
284 nd_uint32_t lsu_count
;
285 struct lsa6 lsu_lsa
[1]; /* may repeat */
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
, "Deprecated" },
307 { RLA_FLAG_Nt
, "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" },
366 { LSA_PREFIX_OPT_N
, "N-bit" },
370 static const struct tok ospf6_auth_type_str
[] = {
371 { OSPF6_AUTH_TYPE_HMAC
, "HMAC" },
376 ospf6_print_ls_type(netdissect_options
*ndo
,
377 u_int ls_type
, const rtrid_t
*ls_stateid
)
379 ND_PRINT("\n\t %s LSA (%u), %s Scope%s, LSA-ID %s",
380 tok2str(ospf6_lsa_values
, "Unknown", ls_type
& LS_TYPE_MASK
),
381 ls_type
& LS_TYPE_MASK
,
382 tok2str(ospf6_ls_scope_values
, "Unknown", ls_type
& LS_SCOPE_MASK
),
383 ls_type
&0x8000 ? ", transitive" : "", /* U-bit */
384 GET_IPADDR_STRING(ls_stateid
));
388 ospf6_print_lshdr(netdissect_options
*ndo
,
389 const struct lsa6_hdr
*lshp
, const u_char
*dataend
)
391 if ((const u_char
*)(lshp
+ 1) > dataend
)
394 ND_PRINT("\n\t Advertising Router %s, seq 0x%08x, age %us, length %zu",
395 GET_IPADDR_STRING(lshp
->ls_router
),
396 GET_BE_U_4(lshp
->ls_seq
),
397 GET_BE_U_2(lshp
->ls_age
),
398 GET_BE_U_2(lshp
->ls_length
)-sizeof(struct lsa6_hdr
));
400 ospf6_print_ls_type(ndo
, GET_BE_U_2(lshp
->ls_type
),
409 ospf6_print_lsaprefix(netdissect_options
*ndo
,
410 const uint8_t *tptr
, u_int lsa_length
)
412 const struct lsa6_prefix
*lsapp
= (const struct lsa6_prefix
*)tptr
;
416 if (lsa_length
< sizeof (*lsapp
) - IPV6_ADDR_LEN_BYTES
)
418 lsa_length
-= sizeof (*lsapp
) - IPV6_ADDR_LEN_BYTES
;
419 ND_TCHECK_LEN(lsapp
, sizeof(*lsapp
) - IPV6_ADDR_LEN_BYTES
);
420 wordlen
= (GET_U_1(lsapp
->lsa_p_len
) + 31) / 32;
421 if (wordlen
* 4 > sizeof(nd_ipv6
)) {
422 ND_PRINT(" bogus prefixlen /%u", GET_U_1(lsapp
->lsa_p_len
));
425 if (lsa_length
< wordlen
* 4)
427 lsa_length
-= wordlen
* 4;
428 memset(prefix
, 0, sizeof(prefix
));
429 GET_CPY_BYTES(prefix
, lsapp
->lsa_p_prefix
, wordlen
* 4);
430 ND_PRINT("\n\t\t%s/%u", ip6addr_string(ndo
, prefix
), /* local buffer, not packet data; don't use GET_IP6ADDR_STRING() */
431 GET_U_1(lsapp
->lsa_p_len
));
432 if (GET_U_1(lsapp
->lsa_p_opt
)) {
433 ND_PRINT(", Options [%s]",
434 bittok2str(ospf6_lsa_prefix_option_values
,
435 "none", GET_U_1(lsapp
->lsa_p_opt
)));
437 ND_PRINT(", metric %u", GET_BE_U_2(lsapp
->lsa_p_metric
));
438 return sizeof(*lsapp
) - IPV6_ADDR_LEN_BYTES
+ wordlen
* 4;
446 * Print a single link state advertisement. If truncated return 1, else 0.
449 ospf6_print_lsa(netdissect_options
*ndo
,
450 const struct lsa6
*lsap
, const u_char
*dataend
)
452 const struct rlalink6
*rlp
;
454 const struct tos_metric
*tosp
;
458 const struct aslametric
*almp
;
459 const struct mcla
*mcp
;
461 const struct llsa
*llsap
;
462 const struct lsa6_prefix
*lsapp
;
468 u_int length
, lsa_length
;
472 if (ospf6_print_lshdr(ndo
, &lsap
->ls_hdr
, dataend
))
474 length
= GET_BE_U_2(lsap
->ls_hdr
.ls_length
);
477 * The LSA length includes the length of the header;
478 * it must have a value that's at least that length.
479 * If it does, find the length of what follows the
482 if (length
< sizeof(struct lsa6_hdr
) || (const u_char
*)lsap
+ length
> dataend
)
484 lsa_length
= length
- sizeof(struct lsa6_hdr
);
485 tptr
= (const uint8_t *)lsap
+sizeof(struct lsa6_hdr
);
487 switch (GET_BE_U_2(lsap
->ls_hdr
.ls_type
)) {
488 case LS_TYPE_ROUTER
| LS_SCOPE_AREA
:
489 if (lsa_length
< sizeof (lsap
->lsa_un
.un_rla
.rla_options
))
491 lsa_length
-= sizeof (lsap
->lsa_un
.un_rla
.rla_options
);
492 ND_PRINT("\n\t Options [%s]",
493 bittok2str(ospf6_option_values
, "none",
494 GET_BE_U_4(lsap
->lsa_un
.un_rla
.rla_options
)));
495 ND_PRINT(", RLA-Flags [%s]",
496 bittok2str(ospf6_rla_flag_values
, "none",
497 GET_U_1(lsap
->lsa_un
.un_rla
.rla_flags
)));
499 rlp
= lsap
->lsa_un
.un_rla
.rla_link
;
500 while (lsa_length
!= 0) {
501 if (lsa_length
< sizeof (*rlp
))
503 lsa_length
-= sizeof (*rlp
);
505 switch (GET_U_1(rlp
->link_type
)) {
507 case RLA_TYPE_VIRTUAL
:
508 ND_PRINT("\n\t Virtual Link: Neighbor Router-ID %s"
509 "\n\t Neighbor Interface-ID %s, Interface %s",
510 GET_IPADDR_STRING(rlp
->link_nrtid
),
511 GET_IPADDR_STRING(rlp
->link_nifid
),
512 GET_IPADDR_STRING(rlp
->link_ifid
));
515 case RLA_TYPE_ROUTER
:
516 ND_PRINT("\n\t Neighbor Router-ID %s"
517 "\n\t Neighbor Interface-ID %s, Interface %s",
518 GET_IPADDR_STRING(rlp
->link_nrtid
),
519 GET_IPADDR_STRING(rlp
->link_nifid
),
520 GET_IPADDR_STRING(rlp
->link_ifid
));
523 case RLA_TYPE_TRANSIT
:
524 ND_PRINT("\n\t Neighbor Network-ID %s"
525 "\n\t Neighbor Interface-ID %s, Interface %s",
526 GET_IPADDR_STRING(rlp
->link_nrtid
),
527 GET_IPADDR_STRING(rlp
->link_nifid
),
528 GET_IPADDR_STRING(rlp
->link_ifid
));
532 ND_PRINT("\n\t Unknown Router Links Type 0x%02x",
533 GET_U_1(rlp
->link_type
));
536 ND_PRINT(", metric %u", GET_BE_U_2(rlp
->link_metric
));
541 case LS_TYPE_NETWORK
| LS_SCOPE_AREA
:
542 if (lsa_length
< sizeof (lsap
->lsa_un
.un_nla
.nla_options
))
544 lsa_length
-= sizeof (lsap
->lsa_un
.un_nla
.nla_options
);
545 ND_PRINT("\n\t Options [%s]",
546 bittok2str(ospf6_option_values
, "none",
547 GET_BE_U_4(lsap
->lsa_un
.un_nla
.nla_options
)));
549 ND_PRINT("\n\t Connected Routers:");
550 ap
= lsap
->lsa_un
.un_nla
.nla_router
;
551 while (lsa_length
!= 0) {
552 if (lsa_length
< sizeof (*ap
))
554 lsa_length
-= sizeof (*ap
);
555 ND_PRINT("\n\t\t%s", GET_IPADDR_STRING(ap
));
560 case LS_TYPE_INTER_AP
| LS_SCOPE_AREA
:
561 if (lsa_length
< sizeof (lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
))
563 lsa_length
-= sizeof (lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
);
564 ND_PRINT(", metric %u",
565 GET_BE_U_4(lsap
->lsa_un
.un_inter_ap
.inter_ap_metric
) & SLA_MASK_METRIC
);
567 tptr
= (const uint8_t *)lsap
->lsa_un
.un_inter_ap
.inter_ap_prefix
;
568 while (lsa_length
!= 0) {
569 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
573 * ospf6_print_lsaprefix() will return -1 if
574 * the length is too high, so this will not
577 lsa_length
-= bytelen
;
582 case LS_TYPE_ASE
| LS_SCOPE_AS
:
583 if (lsa_length
< sizeof (lsap
->lsa_un
.un_asla
.asla_metric
))
585 lsa_length
-= sizeof (lsap
->lsa_un
.un_asla
.asla_metric
);
586 flags32
= GET_BE_U_4(lsap
->lsa_un
.un_asla
.asla_metric
);
587 ND_PRINT("\n\t Flags [%s]",
588 bittok2str(ospf6_asla_flag_values
, "none", flags32
));
589 ND_PRINT(" metric %u",
590 GET_BE_U_4(lsap
->lsa_un
.un_asla
.asla_metric
) &
593 tptr
= (const uint8_t *)lsap
->lsa_un
.un_asla
.asla_prefix
;
594 lsapp
= (const struct lsa6_prefix
*)tptr
;
595 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
599 * ospf6_print_lsaprefix() will return -1 if
600 * the length is too high, so this will not
603 lsa_length
-= bytelen
;
606 if ((flags32
& ASLA_FLAG_FWDADDR
) != 0) {
607 if (lsa_length
< sizeof (nd_ipv6
))
609 lsa_length
-= sizeof (nd_ipv6
);
610 ND_PRINT(" forward %s",
611 GET_IP6ADDR_STRING(tptr
));
612 tptr
+= sizeof(nd_ipv6
);
615 if ((flags32
& ASLA_FLAG_ROUTETAG
) != 0) {
616 if (lsa_length
< sizeof (uint32_t))
618 lsa_length
-= sizeof (uint32_t);
620 GET_IPADDR_STRING(tptr
));
621 tptr
+= sizeof(uint32_t);
624 if (GET_U_1(lsapp
->lsa_p_metric
)) {
625 if (lsa_length
< sizeof (uint32_t))
627 lsa_length
-= sizeof (uint32_t);
628 ND_PRINT(" RefLSID: %s",
629 GET_IPADDR_STRING(tptr
));
630 tptr
+= sizeof(uint32_t);
636 llsap
= &lsap
->lsa_un
.un_llsa
;
637 if (lsa_length
< sizeof (llsap
->llsa_priandopt
))
639 lsa_length
-= sizeof (llsap
->llsa_priandopt
);
640 ND_TCHECK_SIZE(&llsap
->llsa_priandopt
);
641 ND_PRINT("\n\t Options [%s]",
642 bittok2str(ospf6_option_values
, "none",
643 GET_BE_U_4(llsap
->llsa_options
)));
645 if (lsa_length
< sizeof (llsap
->llsa_lladdr
) + sizeof (llsap
->llsa_nprefix
))
647 lsa_length
-= sizeof (llsap
->llsa_lladdr
) + sizeof (llsap
->llsa_nprefix
);
648 prefixes
= GET_BE_U_4(llsap
->llsa_nprefix
);
649 ND_PRINT("\n\t Priority %u, Link-local address %s, Prefixes %u:",
650 GET_U_1(llsap
->llsa_priority
),
651 GET_IP6ADDR_STRING(llsap
->llsa_lladdr
),
654 tptr
= (const uint8_t *)llsap
->llsa_prefix
;
655 while (prefixes
> 0) {
656 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
661 * ospf6_print_lsaprefix() will return -1 if
662 * the length is too high, so this will not
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_4(lsap
->lsa_un
.un_intra_ap
.intra_ap_rtid
);
676 ospf6_print_ls_type(ndo
,
677 GET_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 prefixes
= GET_BE_U_2(lsap
->lsa_un
.un_intra_ap
.intra_ap_nprefix
);
684 ND_PRINT("\n\t Prefixes %u:", prefixes
);
686 tptr
= (const uint8_t *)lsap
->lsa_un
.un_intra_ap
.intra_ap_prefix
;
687 while (prefixes
> 0) {
688 bytelen
= ospf6_print_lsaprefix(ndo
, tptr
, lsa_length
);
693 * ospf6_print_lsaprefix() will return -1 if
694 * the length is too high, so this will not
697 lsa_length
-= bytelen
;
702 case LS_TYPE_GRACE
| LS_SCOPE_LINKLOCAL
:
703 if (ospf_grace_lsa_print(ndo
, tptr
, lsa_length
) == -1) {
708 case LS_TYPE_INTRA_ATE
| LS_SCOPE_LINKLOCAL
:
709 if (ospf_te_lsa_print(ndo
, tptr
, lsa_length
) == -1) {
715 if(!print_unknown_data(ndo
,tptr
,
729 ospf6_decode_v3(netdissect_options
*ndo
,
730 const struct ospf6hdr
*op
,
731 const u_char
*dataend
)
734 const struct lsr6
*lsrp
;
735 const struct lsa6_hdr
*lshp
;
736 const struct lsa6
*lsap
;
739 switch (GET_U_1(op
->ospf6_type
)) {
741 case OSPF_TYPE_HELLO
: {
742 const struct hello6
*hellop
= (const struct hello6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
744 ND_PRINT("\n\tOptions [%s]",
745 bittok2str(ospf6_option_values
, "none",
746 GET_BE_U_4(hellop
->hello_options
)));
748 ND_PRINT("\n\t Hello Timer %us, Dead Timer %us, Interface-ID %s, Priority %u",
749 GET_BE_U_2(hellop
->hello_helloint
),
750 GET_BE_U_2(hellop
->hello_deadint
),
751 GET_IPADDR_STRING(hellop
->hello_ifid
),
752 GET_U_1(hellop
->hello_priority
));
754 if (GET_BE_U_4(hellop
->hello_dr
) != 0)
755 ND_PRINT("\n\t Designated Router %s",
756 GET_IPADDR_STRING(hellop
->hello_dr
));
757 if (GET_BE_U_4(hellop
->hello_bdr
) != 0)
758 ND_PRINT(", Backup Designated Router %s",
759 GET_IPADDR_STRING(hellop
->hello_bdr
));
760 if (ndo
->ndo_vflag
> 1) {
761 ND_PRINT("\n\t Neighbor List:");
762 ap
= hellop
->hello_neighbor
;
763 while ((const u_char
*)ap
< dataend
) {
764 ND_PRINT("\n\t %s", GET_IPADDR_STRING(ap
));
772 const struct dd6
*ddp
= (const struct dd6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
774 ND_PRINT("\n\tOptions [%s]",
775 bittok2str(ospf6_option_values
, "none",
776 GET_BE_U_4(ddp
->db_options
)));
777 ND_PRINT(", DD Flags [%s]",
778 bittok2str(ospf6_dd_flag_values
,"none",GET_U_1(ddp
->db_flags
)));
780 ND_PRINT(", MTU %u, DD-Sequence 0x%08x",
781 GET_BE_U_2(ddp
->db_mtu
),
782 GET_BE_U_4(ddp
->db_seq
));
783 if (ndo
->ndo_vflag
> 1) {
784 /* Print all the LS adv's */
785 lshp
= ddp
->db_lshdr
;
786 while ((const u_char
*)lshp
< dataend
) {
787 if (ospf6_print_lshdr(ndo
, lshp
++, dataend
))
794 case OSPF_TYPE_LS_REQ
:
795 if (ndo
->ndo_vflag
> 1) {
796 lsrp
= (const struct lsr6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
797 while ((const u_char
*)lsrp
< dataend
) {
798 ND_TCHECK_SIZE(lsrp
);
799 ND_PRINT("\n\t Advertising Router %s",
800 GET_IPADDR_STRING(lsrp
->ls_router
));
801 ospf6_print_ls_type(ndo
,
802 GET_BE_U_2(lsrp
->ls_type
),
809 case OSPF_TYPE_LS_UPDATE
:
810 if (ndo
->ndo_vflag
> 1) {
811 const struct lsu6
*lsup
= (const struct lsu6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
813 i
= GET_BE_U_4(lsup
->lsu_count
);
814 lsap
= lsup
->lsu_lsa
;
815 while ((const u_char
*)lsap
< dataend
&& i
--) {
816 if (ospf6_print_lsa(ndo
, lsap
, dataend
))
818 lsap
= (const struct lsa6
*)((const u_char
*)lsap
+
819 GET_BE_U_2(lsap
->ls_hdr
.ls_length
));
824 case OSPF_TYPE_LS_ACK
:
825 if (ndo
->ndo_vflag
> 1) {
826 lshp
= (const struct lsa6_hdr
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
827 while ((const u_char
*)lshp
< dataend
) {
828 if (ospf6_print_lshdr(ndo
, lshp
++, dataend
))
842 /* RFC5613 Section 2.2 (w/o the TLVs) */
844 ospf6_print_lls(netdissect_options
*ndo
,
845 const u_char
*cp
, const u_int len
)
851 if (len
< OSPF_LLS_HDRLEN
)
854 ND_PRINT("\n\tLLS Checksum 0x%04x", GET_BE_U_2(cp
));
856 /* LLS Data Length */
857 llsdatalen
= GET_BE_U_2(cp
);
858 ND_PRINT(", Data Length %u", llsdatalen
);
859 if (llsdatalen
< OSPF_LLS_HDRLEN
|| llsdatalen
> len
)
863 ND_TCHECK_LEN(cp
, llsdatalen
- OSPF_LLS_HDRLEN
);
864 /* FIXME: code in print-ospf.c can be reused to decode the TLVs */
871 /* RFC6506 Section 4.1 */
873 ospf6_decode_at(netdissect_options
*ndo
,
874 const u_char
*cp
, const u_int len
)
876 uint16_t authdatalen
;
880 if (len
< OSPF6_AT_HDRLEN
)
882 /* Authentication Type */
883 ND_PRINT("\n\tAuthentication Type %s",
884 tok2str(ospf6_auth_type_str
, "unknown (0x%04x)", GET_BE_U_2(cp
)));
887 authdatalen
= GET_BE_U_2(cp
);
888 ND_PRINT(", Length %u", authdatalen
);
889 if (authdatalen
< OSPF6_AT_HDRLEN
|| authdatalen
> len
)
894 /* Security Association ID */
895 ND_PRINT(", SAID %u", GET_BE_U_2(cp
));
897 /* Cryptographic Sequence Number (High-Order 32 Bits) */
898 ND_PRINT(", CSN 0x%08x", GET_BE_U_4(cp
));
900 /* Cryptographic Sequence Number (Low-Order 32 Bits) */
901 ND_PRINT(":%08x", GET_BE_U_4(cp
));
903 /* Authentication Data */
904 ND_TCHECK_LEN(cp
, authdatalen
- OSPF6_AT_HDRLEN
);
905 if (ndo
->ndo_vflag
> 1)
906 print_unknown_data(ndo
,cp
, "\n\tAuthentication Data ", authdatalen
- OSPF6_AT_HDRLEN
);
913 /* The trailing data may include LLS and/or AT data (in this specific order).
914 * LLS data may be present only in Hello and DBDesc packets with the L-bit set.
915 * AT data may be present in Hello and DBDesc packets with the AT-bit set or in
916 * any other packet type, thus decode the AT data regardless of the AT-bit.
919 ospf6_decode_v3_trailer(netdissect_options
*ndo
,
920 const struct ospf6hdr
*op
, const u_char
*cp
, const unsigned len
)
927 type
= GET_U_1(op
->ospf6_type
);
928 if (type
== OSPF_TYPE_HELLO
) {
929 const struct hello6
*hellop
= (const struct hello6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
930 if (GET_BE_U_4(hellop
->hello_options
) & OSPF6_OPTION_L
)
932 } else if (type
== OSPF_TYPE_DD
) {
933 const struct dd6
*ddp
= (const struct dd6
*)((const uint8_t *)op
+ OSPF6HDR_LEN
);
934 if (GET_BE_U_4(ddp
->db_options
) & OSPF6_OPTION_L
)
937 if ((lls_hello
|| lls_dd
) && (llslen
= ospf6_print_lls(ndo
, cp
, len
)) < 0)
939 return ospf6_decode_at(ndo
, cp
+ llslen
, len
- llslen
);
946 ospf6_print(netdissect_options
*ndo
,
947 const u_char
*bp
, u_int length
)
949 const struct ospf6hdr
*op
;
950 const u_char
*dataend
;
954 ndo
->ndo_protocol
= "ospf3";
955 op
= (const struct ospf6hdr
*)bp
;
957 /* If the type is valid translate it, or just print the type */
958 /* value. If it's not valid, say so and return */
959 cp
= tok2str(ospf6_type_values
, "unknown packet type (%u)",
960 GET_U_1(op
->ospf6_type
));
961 ND_PRINT("OSPFv%u, %s, length %u", GET_U_1(op
->ospf6_version
), cp
,
967 if(!ndo
->ndo_vflag
) { /* non verbose - so lets bail out here */
971 /* OSPFv3 data always comes first and optional trailing data may follow. */
972 datalen
= GET_BE_U_2(op
->ospf6_len
);
973 if (datalen
> length
) {
974 ND_PRINT(" [len %u]", datalen
);
977 dataend
= bp
+ datalen
;
979 ND_PRINT("\n\tRouter-ID %s", GET_IPADDR_STRING(op
->ospf6_routerid
));
981 if (GET_BE_U_4(op
->ospf6_areaid
) != 0)
982 ND_PRINT(", Area %s", GET_IPADDR_STRING(op
->ospf6_areaid
));
984 ND_PRINT(", Backbone Area");
985 if (GET_U_1(op
->ospf6_instanceid
))
986 ND_PRINT(", Instance %u", GET_U_1(op
->ospf6_instanceid
));
988 /* Do rest according to version. */
989 switch (GET_U_1(op
->ospf6_version
)) {
993 if (ospf6_decode_v3(ndo
, op
, dataend
) ||
994 ospf6_decode_v3_trailer(ndo
, op
, dataend
, length
- datalen
))
997 } /* end switch on version */
1001 nd_print_trunc(ndo
);