2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that: (1) source code
4 * distributions retain the above copyright notice and this paragraph
5 * in its entirety, and (2) distributions including binary code include
6 * the above copyright notice and this paragraph in its entirety in
7 * the documentation or other materials provided with the distribution.
8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
11 * FOR A PARTICULAR PURPOSE.
13 * Original code by Hannes Gredler (hannes@gredler.at)
14 * and Steinar Haug (sthaug@nethelp.no)
17 /* \summary: Label Distribution Protocol (LDP) printer */
23 #include "netdissect-stdinc.h"
25 #include "netdissect.h"
27 #include "addrtoname.h"
32 static const char tstr
[] = " [|ldp]";
38 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
39 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 * | Version | PDU Length |
41 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
43 * + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
45 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49 struct ldp_common_header
{
51 nd_uint16_t pdu_length
;
53 nd_uint16_t label_space
;
62 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
63 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
64 * |U| Message Type | Message Length |
65 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
67 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
70 * | Mandatory Parameters |
73 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
76 * | Optional Parameters |
79 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
82 struct ldp_msg_header
{
88 #define LDP_MASK_MSG_TYPE(x) ((x)&0x7fff)
89 #define LDP_MASK_U_BIT(x) ((x)&0x8000)
91 #define LDP_MSG_NOTIF 0x0001
92 #define LDP_MSG_HELLO 0x0100
93 #define LDP_MSG_INIT 0x0200
94 #define LDP_MSG_KEEPALIVE 0x0201
95 #define LDP_MSG_ADDRESS 0x0300
96 #define LDP_MSG_ADDRESS_WITHDRAW 0x0301
97 #define LDP_MSG_LABEL_MAPPING 0x0400
98 #define LDP_MSG_LABEL_REQUEST 0x0401
99 #define LDP_MSG_LABEL_WITHDRAW 0x0402
100 #define LDP_MSG_LABEL_RELEASE 0x0403
101 #define LDP_MSG_LABEL_ABORT_REQUEST 0x0404
103 #define LDP_VENDOR_PRIVATE_MIN 0x3e00
104 #define LDP_VENDOR_PRIVATE_MAX 0x3eff
105 #define LDP_EXPERIMENTAL_MIN 0x3f00
106 #define LDP_EXPERIMENTAL_MAX 0x3fff
108 static const struct tok ldp_msg_values
[] = {
109 { LDP_MSG_NOTIF
, "Notification" },
110 { LDP_MSG_HELLO
, "Hello" },
111 { LDP_MSG_INIT
, "Initialization" },
112 { LDP_MSG_KEEPALIVE
, "Keepalive" },
113 { LDP_MSG_ADDRESS
, "Address" },
114 { LDP_MSG_ADDRESS_WITHDRAW
, "Address Withdraw" },
115 { LDP_MSG_LABEL_MAPPING
, "Label Mapping" },
116 { LDP_MSG_LABEL_REQUEST
, "Label Request" },
117 { LDP_MSG_LABEL_WITHDRAW
, "Label Withdraw" },
118 { LDP_MSG_LABEL_RELEASE
, "Label Release" },
119 { LDP_MSG_LABEL_ABORT_REQUEST
, "Label Abort Request" },
123 #define LDP_MASK_TLV_TYPE(x) ((x)&0x3fff)
124 #define LDP_MASK_F_BIT(x) ((x)&0x4000)
126 #define LDP_TLV_FEC 0x0100
127 #define LDP_TLV_ADDRESS_LIST 0x0101
128 #define LDP_TLV_ADDRESS_LIST_AFNUM_LEN 2
129 #define LDP_TLV_HOP_COUNT 0x0103
130 #define LDP_TLV_PATH_VECTOR 0x0104
131 #define LDP_TLV_GENERIC_LABEL 0x0200
132 #define LDP_TLV_ATM_LABEL 0x0201
133 #define LDP_TLV_FR_LABEL 0x0202
134 #define LDP_TLV_STATUS 0x0300
135 #define LDP_TLV_EXTD_STATUS 0x0301
136 #define LDP_TLV_RETURNED_PDU 0x0302
137 #define LDP_TLV_RETURNED_MSG 0x0303
138 #define LDP_TLV_COMMON_HELLO 0x0400
139 #define LDP_TLV_IPV4_TRANSPORT_ADDR 0x0401
140 #define LDP_TLV_CONFIG_SEQ_NUMBER 0x0402
141 #define LDP_TLV_IPV6_TRANSPORT_ADDR 0x0403
142 #define LDP_TLV_COMMON_SESSION 0x0500
143 #define LDP_TLV_ATM_SESSION_PARM 0x0501
144 #define LDP_TLV_FR_SESSION_PARM 0x0502
145 #define LDP_TLV_FT_SESSION 0x0503
146 #define LDP_TLV_LABEL_REQUEST_MSG_ID 0x0600
147 #define LDP_TLV_MTU 0x0601 /* rfc 3988 */
149 static const struct tok ldp_tlv_values
[] = {
150 { LDP_TLV_FEC
, "FEC" },
151 { LDP_TLV_ADDRESS_LIST
, "Address List" },
152 { LDP_TLV_HOP_COUNT
, "Hop Count" },
153 { LDP_TLV_PATH_VECTOR
, "Path Vector" },
154 { LDP_TLV_GENERIC_LABEL
, "Generic Label" },
155 { LDP_TLV_ATM_LABEL
, "ATM Label" },
156 { LDP_TLV_FR_LABEL
, "Frame-Relay Label" },
157 { LDP_TLV_STATUS
, "Status" },
158 { LDP_TLV_EXTD_STATUS
, "Extended Status" },
159 { LDP_TLV_RETURNED_PDU
, "Returned PDU" },
160 { LDP_TLV_RETURNED_MSG
, "Returned Message" },
161 { LDP_TLV_COMMON_HELLO
, "Common Hello Parameters" },
162 { LDP_TLV_IPV4_TRANSPORT_ADDR
, "IPv4 Transport Address" },
163 { LDP_TLV_CONFIG_SEQ_NUMBER
, "Configuration Sequence Number" },
164 { LDP_TLV_IPV6_TRANSPORT_ADDR
, "IPv6 Transport Address" },
165 { LDP_TLV_COMMON_SESSION
, "Common Session Parameters" },
166 { LDP_TLV_ATM_SESSION_PARM
, "ATM Session Parameters" },
167 { LDP_TLV_FR_SESSION_PARM
, "Frame-Relay Session Parameters" },
168 { LDP_TLV_FT_SESSION
, "Fault-Tolerant Session Parameters" },
169 { LDP_TLV_LABEL_REQUEST_MSG_ID
, "Label Request Message ID" },
170 { LDP_TLV_MTU
, "MTU" },
174 #define LDP_FEC_WILDCARD 0x01
175 #define LDP_FEC_PREFIX 0x02
176 #define LDP_FEC_HOSTADDRESS 0x03
177 /* From RFC 4906; should probably be updated to RFC 4447 (e.g., VC -> PW) */
178 #define LDP_FEC_MARTINI_VC 0x80
180 static const struct tok ldp_fec_values
[] = {
181 { LDP_FEC_WILDCARD
, "Wildcard" },
182 { LDP_FEC_PREFIX
, "Prefix" },
183 { LDP_FEC_HOSTADDRESS
, "Host address" },
184 { LDP_FEC_MARTINI_VC
, "Martini VC" },
188 #define LDP_FEC_MARTINI_IFPARM_MTU 0x01
189 #define LDP_FEC_MARTINI_IFPARM_DESC 0x03
190 #define LDP_FEC_MARTINI_IFPARM_VCCV 0x0c
192 static const struct tok ldp_fec_martini_ifparm_values
[] = {
193 { LDP_FEC_MARTINI_IFPARM_MTU
, "MTU" },
194 { LDP_FEC_MARTINI_IFPARM_DESC
, "Description" },
195 { LDP_FEC_MARTINI_IFPARM_VCCV
, "VCCV" },
199 /* draft-ietf-pwe3-vccv-04.txt */
200 static const struct tok ldp_fec_martini_ifparm_vccv_cc_values
[] = {
201 { 0x01, "PWE3 control word" },
202 { 0x02, "MPLS Router Alert Label" },
203 { 0x04, "MPLS inner label TTL = 1" },
207 /* draft-ietf-pwe3-vccv-04.txt */
208 static const struct tok ldp_fec_martini_ifparm_vccv_cv_values
[] = {
209 { 0x01, "ICMP Ping" },
210 { 0x02, "LSP Ping" },
215 static int ldp_pdu_print(netdissect_options
*, const u_char
*);
221 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
222 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
223 * |U|F| Type | Length |
224 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
229 * | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
231 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
234 #define TLV_TCHECK(minlen) \
235 ND_TCHECK_LEN(tptr, minlen); if (tlv_tlen < minlen) goto badtlv;
238 ldp_tlv_print(netdissect_options
*ndo
,
242 struct ldp_tlv_header
{
247 const struct ldp_tlv_header
*ldp_tlv_header
;
248 u_short tlv_type
,tlv_len
,tlv_tlen
,af
,ft_flags
;
250 u_int ui
,vc_info_len
, vc_info_tlv_type
, vc_info_tlv_len
,idx
;
254 ldp_tlv_header
= (const struct ldp_tlv_header
*)tptr
;
255 ND_TCHECK_SIZE(ldp_tlv_header
);
256 tlv_len
=EXTRACT_BE_U_2(ldp_tlv_header
->length
);
257 if (tlv_len
+ 4 > msg_tlen
) {
258 ND_PRINT("\n\t\t TLV contents go past end of message");
262 tlv_type
=LDP_MASK_TLV_TYPE(EXTRACT_BE_U_2(ldp_tlv_header
->type
));
264 /* FIXME vendor private / experimental check */
265 ND_PRINT("\n\t %s TLV (0x%04x), length: %u, Flags: [%s and %s forward if unknown]",
266 tok2str(ldp_tlv_values
,
271 LDP_MASK_U_BIT(EXTRACT_BE_U_2(ldp_tlv_header
->type
)) ? "continue processing" : "ignore",
272 LDP_MASK_F_BIT(EXTRACT_BE_U_2(ldp_tlv_header
->type
)) ? "do" : "don't");
274 tptr
+=sizeof(struct ldp_tlv_header
);
278 case LDP_TLV_COMMON_HELLO
:
280 ND_PRINT("\n\t Hold Time: %us, Flags: [%s Hello%s]",
281 EXTRACT_BE_U_2(tptr
),
282 (EXTRACT_BE_U_2(tptr
+ 2)&0x8000) ? "Targeted" : "Link",
283 (EXTRACT_BE_U_2(tptr
+ 2)&0x4000) ? ", Request for targeted Hellos" : "");
286 case LDP_TLV_IPV4_TRANSPORT_ADDR
:
288 ND_PRINT("\n\t IPv4 Transport Address: %s", ipaddr_string(ndo
, tptr
));
290 case LDP_TLV_IPV6_TRANSPORT_ADDR
:
292 ND_PRINT("\n\t IPv6 Transport Address: %s", ip6addr_string(ndo
, tptr
));
294 case LDP_TLV_CONFIG_SEQ_NUMBER
:
296 ND_PRINT("\n\t Sequence Number: %u", EXTRACT_BE_U_4(tptr
));
299 case LDP_TLV_ADDRESS_LIST
:
300 TLV_TCHECK(LDP_TLV_ADDRESS_LIST_AFNUM_LEN
);
301 af
= EXTRACT_BE_U_2(tptr
);
302 tptr
+=LDP_TLV_ADDRESS_LIST_AFNUM_LEN
;
303 tlv_tlen
-= LDP_TLV_ADDRESS_LIST_AFNUM_LEN
;
304 ND_PRINT("\n\t Address Family: %s, addresses",
305 tok2str(af_values
, "Unknown (%u)", af
));
308 while(tlv_tlen
>= sizeof(nd_ipv4
)) {
309 ND_TCHECK_LEN(tptr
, sizeof(nd_ipv4
));
310 ND_PRINT(" %s", ipaddr_string(ndo
, tptr
));
311 tlv_tlen
-=sizeof(nd_ipv4
);
312 tptr
+=sizeof(nd_ipv4
);
316 while(tlv_tlen
>= sizeof(nd_ipv6
)) {
317 ND_TCHECK_LEN(tptr
, sizeof(nd_ipv6
));
318 ND_PRINT(" %s", ip6addr_string(ndo
, tptr
));
319 tlv_tlen
-=sizeof(nd_ipv6
);
320 tptr
+=sizeof(nd_ipv6
);
329 case LDP_TLV_COMMON_SESSION
:
331 ND_PRINT("\n\t Version: %u, Keepalive: %us, Flags: [Downstream %s, Loop Detection %s]",
332 EXTRACT_BE_U_2(tptr
), EXTRACT_BE_U_2(tptr
+ 2),
333 (EXTRACT_BE_U_2(tptr
+ 6)&0x8000) ? "On Demand" : "Unsolicited",
334 (EXTRACT_BE_U_2(tptr
+ 6)&0x4000) ? "Enabled" : "Disabled"
340 fec_type
= EXTRACT_U_1(tptr
);
341 ND_PRINT("\n\t %s FEC (0x%02x)",
342 tok2str(ldp_fec_values
, "Unknown", fec_type
),
349 case LDP_FEC_WILDCARD
:
353 af
= EXTRACT_BE_U_2(tptr
);
354 tptr
+=LDP_TLV_ADDRESS_LIST_AFNUM_LEN
;
355 tlv_tlen
-=LDP_TLV_ADDRESS_LIST_AFNUM_LEN
;
356 if (af
== AFNUM_INET
) {
357 i
=decode_prefix4(ndo
, tptr
, tlv_tlen
, buf
, sizeof(buf
));
361 ND_PRINT(": IPv4 prefix (goes past end of TLV)");
363 ND_PRINT(": IPv4 prefix (invalid length)");
365 ND_PRINT(": IPv4 prefix %s", buf
);
367 else if (af
== AFNUM_INET6
) {
368 i
=decode_prefix6(ndo
, tptr
, tlv_tlen
, buf
, sizeof(buf
));
372 ND_PRINT(": IPv4 prefix (goes past end of TLV)");
374 ND_PRINT(": IPv6 prefix (invalid length)");
376 ND_PRINT(": IPv6 prefix %s", buf
);
379 ND_PRINT(": Address family %u prefix", af
);
381 case LDP_FEC_HOSTADDRESS
:
383 case LDP_FEC_MARTINI_VC
:
385 * We assume the type was supposed to be one of the MPLS
389 vc_info_len
= EXTRACT_U_1(tptr
+ 2);
392 * According to RFC 4908, the VC info Length field can be zero,
393 * in which case not only are there no interface parameters,
396 if (vc_info_len
== 0) {
397 ND_PRINT(": %s, %scontrol word, group-ID %u, VC-info-length: %u",
398 tok2str(mpls_pw_types_values
, "Unknown", EXTRACT_BE_U_2(tptr
)&0x7fff),
399 EXTRACT_BE_U_2(tptr
)&0x8000 ? "" : "no ",
400 EXTRACT_BE_U_4(tptr
+ 3),
405 /* Make sure we have the VC ID as well */
407 ND_PRINT(": %s, %scontrol word, group-ID %u, VC-ID %u, VC-info-length: %u",
408 tok2str(mpls_pw_types_values
, "Unknown", EXTRACT_BE_U_2(tptr
)&0x7fff),
409 EXTRACT_BE_U_2(tptr
)&0x8000 ? "" : "no ",
410 EXTRACT_BE_U_4(tptr
+ 3),
411 EXTRACT_BE_U_4(tptr
+ 7),
413 if (vc_info_len
< 4) {
414 /* minimum 4, for the VC ID */
415 ND_PRINT(" (invalid, < 4");
416 return(tlv_len
+4); /* Type & Length fields not included */
418 vc_info_len
-= 4; /* subtract out the VC ID, giving the length of the interface parameters */
420 /* Skip past the fixed information and the VC ID */
423 TLV_TCHECK(vc_info_len
);
425 while (vc_info_len
> 2) {
426 vc_info_tlv_type
= EXTRACT_U_1(tptr
);
427 vc_info_tlv_len
= EXTRACT_U_1(tptr
+ 1);
428 if (vc_info_tlv_len
< 2)
430 if (vc_info_len
< vc_info_tlv_len
)
433 ND_PRINT("\n\t\tInterface Parameter: %s (0x%02x), len %u",
434 tok2str(ldp_fec_martini_ifparm_values
,"Unknown",vc_info_tlv_type
),
438 switch(vc_info_tlv_type
) {
439 case LDP_FEC_MARTINI_IFPARM_MTU
:
440 ND_PRINT(": %u", EXTRACT_BE_U_2(tptr
+ 2));
443 case LDP_FEC_MARTINI_IFPARM_DESC
:
445 for (idx
= 2; idx
< vc_info_tlv_len
; idx
++)
446 safeputchar(ndo
, EXTRACT_U_1(tptr
+ idx
));
449 case LDP_FEC_MARTINI_IFPARM_VCCV
:
450 ND_PRINT("\n\t\t Control Channels (0x%02x) = [%s]",
451 EXTRACT_U_1((tptr
+ 2)),
452 bittok2str(ldp_fec_martini_ifparm_vccv_cc_values
, "none", EXTRACT_U_1((tptr
+ 2))));
453 ND_PRINT("\n\t\t CV Types (0x%02x) = [%s]",
454 EXTRACT_U_1((tptr
+ 3)),
455 bittok2str(ldp_fec_martini_ifparm_vccv_cv_values
, "none", EXTRACT_U_1((tptr
+ 3))));
459 print_unknown_data(ndo
, tptr
+2, "\n\t\t ", vc_info_tlv_len
-2);
463 vc_info_len
-= vc_info_tlv_len
;
464 tptr
+= vc_info_tlv_len
;
471 case LDP_TLV_GENERIC_LABEL
:
473 ND_PRINT("\n\t Label: %u", EXTRACT_BE_U_4(tptr
) & 0xfffff);
478 ui
= EXTRACT_BE_U_4(tptr
);
480 ND_PRINT("\n\t Status: 0x%02x, Flags: [%s and %s forward]",
482 ui
&0x80000000 ? "Fatal error" : "Advisory Notification",
483 ui
&0x40000000 ? "do" : "don't");
484 ui
= EXTRACT_BE_U_4(tptr
);
487 ND_PRINT(", causing Message ID: 0x%08x", ui
);
490 case LDP_TLV_FT_SESSION
:
492 ft_flags
= EXTRACT_BE_U_2(tptr
);
493 ND_PRINT("\n\t Flags: [%sReconnect, %sSave State, %sAll-Label Protection, %s Checkpoint, %sRe-Learn State]",
494 ft_flags
&0x8000 ? "" : "No ",
495 ft_flags
&0x8 ? "" : "Don't ",
496 ft_flags
&0x4 ? "" : "No ",
497 ft_flags
&0x2 ? "Sequence Numbered Label" : "All Labels",
498 ft_flags
&0x1 ? "" : "Don't ");
500 ui
= EXTRACT_BE_U_4(tptr
);
502 ND_PRINT(", Reconnect Timeout: %ums", ui
);
504 ui
= EXTRACT_BE_U_4(tptr
);
506 ND_PRINT(", Recovery Time: %ums", ui
);
511 ND_PRINT("\n\t MTU: %u", EXTRACT_BE_U_2(tptr
));
516 * FIXME those are the defined TLVs that lack a decoder
517 * you are welcome to contribute code ;-)
520 case LDP_TLV_HOP_COUNT
:
521 case LDP_TLV_PATH_VECTOR
:
522 case LDP_TLV_ATM_LABEL
:
523 case LDP_TLV_FR_LABEL
:
524 case LDP_TLV_EXTD_STATUS
:
525 case LDP_TLV_RETURNED_PDU
:
526 case LDP_TLV_RETURNED_MSG
:
527 case LDP_TLV_ATM_SESSION_PARM
:
528 case LDP_TLV_FR_SESSION_PARM
:
529 case LDP_TLV_LABEL_REQUEST_MSG_ID
:
532 if (ndo
->ndo_vflag
<= 1)
533 print_unknown_data(ndo
, tptr
, "\n\t ", tlv_tlen
);
536 return(tlv_len
+4); /* Type & Length fields not included */
539 ND_PRINT("%s", tstr
);
543 ND_PRINT("\n\t\t TLV contents go past end of TLV");
544 return(tlv_len
+4); /* Type & Length fields not included */
548 ldp_print(netdissect_options
*ndo
,
549 const u_char
*pptr
, u_int len
)
553 ndo
->ndo_protocol
= "ldp";
554 while (len
> (sizeof(struct ldp_common_header
) + sizeof(struct ldp_msg_header
))) {
555 processed
= ldp_pdu_print(ndo
, pptr
);
564 ldp_pdu_print(netdissect_options
*ndo
,
567 const struct ldp_common_header
*ldp_com_header
;
568 const struct ldp_msg_header
*ldp_msg_header
;
569 const u_char
*tptr
,*msg_tptr
;
571 u_short pdu_len
,msg_len
,msg_type
,msg_tlen
;
572 int hexdump
,processed
;
574 ldp_com_header
= (const struct ldp_common_header
*)pptr
;
575 ND_TCHECK_SIZE(ldp_com_header
);
578 * Sanity checking of the header.
580 if (EXTRACT_BE_U_2(ldp_com_header
->version
) != LDP_VERSION
) {
581 ND_PRINT("%sLDP version %u packet not supported",
582 (ndo
->ndo_vflag
< 1) ? "" : "\n\t",
583 EXTRACT_BE_U_2(ldp_com_header
->version
));
587 pdu_len
= EXTRACT_BE_U_2(ldp_com_header
->pdu_length
);
588 if (pdu_len
< sizeof(struct ldp_common_header
)-4) {
589 /* length too short */
590 ND_PRINT("%sLDP, pdu-length: %u (too short, < %u)",
591 (ndo
->ndo_vflag
< 1) ? "" : "\n\t",
593 (u_int
)(sizeof(struct ldp_common_header
)-4));
597 /* print the LSR-ID, label-space & length */
598 ND_PRINT("%sLDP, Label-Space-ID: %s:%u, pdu-length: %u",
599 (ndo
->ndo_vflag
< 1) ? "" : "\n\t",
600 ipaddr_string(ndo
, ldp_com_header
->lsr_id
),
601 EXTRACT_BE_U_2(ldp_com_header
->label_space
),
604 /* bail out if non-verbose */
605 if (ndo
->ndo_vflag
< 1)
608 /* ok they seem to want to know everything - lets fully decode it */
609 tptr
= pptr
+ sizeof(struct ldp_common_header
);
610 tlen
= pdu_len
- (sizeof(struct ldp_common_header
)-4); /* Type & Length fields not included */
613 /* did we capture enough for fully decoding the msg header ? */
614 ND_TCHECK_LEN(tptr
, sizeof(struct ldp_msg_header
));
616 ldp_msg_header
= (const struct ldp_msg_header
*)tptr
;
617 msg_len
=EXTRACT_BE_U_2(ldp_msg_header
->length
);
618 msg_type
=LDP_MASK_MSG_TYPE(EXTRACT_BE_U_2(ldp_msg_header
->type
));
620 if (msg_len
< sizeof(struct ldp_msg_header
)-4) {
621 /* length too short */
622 /* FIXME vendor private / experimental check */
623 ND_PRINT("\n\t %s Message (0x%04x), length: %u (too short, < %u)",
624 tok2str(ldp_msg_values
,
629 (u_int
)(sizeof(struct ldp_msg_header
)-4));
633 /* FIXME vendor private / experimental check */
634 ND_PRINT("\n\t %s Message (0x%04x), length: %u, Message ID: 0x%08x, Flags: [%s if unknown]",
635 tok2str(ldp_msg_values
,
640 EXTRACT_BE_U_4(ldp_msg_header
->id
),
641 LDP_MASK_U_BIT(EXTRACT_BE_U_2(ldp_msg_header
->type
)) ? "continue processing" : "ignore");
643 msg_tptr
=tptr
+sizeof(struct ldp_msg_header
);
644 msg_tlen
=msg_len
-(sizeof(struct ldp_msg_header
)-4); /* Type & Length fields not included */
646 /* did we capture enough for fully decoding the message ? */
647 ND_TCHECK_LEN(tptr
, msg_len
);
655 case LDP_MSG_KEEPALIVE
:
656 case LDP_MSG_ADDRESS
:
657 case LDP_MSG_LABEL_MAPPING
:
658 case LDP_MSG_ADDRESS_WITHDRAW
:
659 case LDP_MSG_LABEL_WITHDRAW
:
660 while(msg_tlen
>= 4) {
661 processed
= ldp_tlv_print(ndo
, msg_tptr
, msg_tlen
);
670 * FIXME those are the defined messages that lack a decoder
671 * you are welcome to contribute code ;-)
674 case LDP_MSG_LABEL_REQUEST
:
675 case LDP_MSG_LABEL_RELEASE
:
676 case LDP_MSG_LABEL_ABORT_REQUEST
:
679 if (ndo
->ndo_vflag
<= 1)
680 print_unknown_data(ndo
, msg_tptr
, "\n\t ", msg_tlen
);
683 /* do we want to see an additionally hexdump ? */
684 if (ndo
->ndo_vflag
> 1 || hexdump
==TRUE
)
685 print_unknown_data(ndo
, tptr
+sizeof(struct ldp_msg_header
), "\n\t ",
693 ND_PRINT("%s", tstr
);
699 * c-style: whitesmith