]>
The Tcpdump Group git mirrors - tcpdump/blob - print-chdlc.c
2 * Copyright (c) 1990, 1991, 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.
26 #include <tcpdump-stdinc.h>
31 #include "interface.h"
32 #include "addrtoname.h"
33 #include "ethertype.h"
38 static void chdlc_slarp_print(const u_char
*, u_int
);
40 static const struct tok chdlc_cast_values
[] = {
41 { CHDLC_UNICAST
, "unicast" },
42 { CHDLC_BCAST
, "bcast" },
47 /* Standard CHDLC printer */
49 chdlc_if_print(const struct pcap_pkthdr
*h
, register const u_char
*p
)
51 register u_int length
= h
->len
;
52 register u_int caplen
= h
->caplen
;
54 if (caplen
< CHDLC_HDRLEN
) {
58 return (chdlc_print(p
,length
));
62 chdlc_print(register const u_char
*p
, u_int length
) {
65 proto
= EXTRACT_16BITS(&p
[2]);
67 printf("%s, ethertype %s (0x%04x), length %u: ",
68 tok2str(chdlc_cast_values
, "0x%02x", p
[0]),
69 tok2str(ethertype_values
, "Unknown", proto
),
74 length
-= CHDLC_HDRLEN
;
79 ip_print(gndo
, p
, length
);
83 ip6_print(gndo
, p
, length
);
86 case CHDLC_TYPE_SLARP
:
87 chdlc_slarp_print(p
, length
);
91 chdlc_cdp_print(p
, length
);
95 case ETHERTYPE_MPLS_MULTI
:
96 mpls_print(p
, length
);
99 /* is the fudge byte set ? lets verify by spotting ISO headers */
100 if (*(p
+1) == 0x81 ||
103 isoclns_print(p
+1, length
-1, length
-1);
105 isoclns_print(p
, length
, length
);
109 printf("unknown CHDLC protocol (0x%04x)", proto
);
113 return (CHDLC_HDRLEN
);
117 * The fixed-length portion of a SLARP packet.
121 #define SLARP_REQUEST 0
122 #define SLARP_REPLY 1
123 #define SLARP_KEEPALIVE 2
137 #define SLARP_MIN_LEN 14
138 #define SLARP_MAX_LEN 18
141 chdlc_slarp_print(const u_char
*cp
, u_int length
)
143 const struct cisco_slarp
*slarp
;
144 u_int sec
,min
,hrs
,days
;
146 printf("SLARP (length: %u), ",length
);
147 if (length
< SLARP_MIN_LEN
)
150 slarp
= (const struct cisco_slarp
*)cp
;
151 TCHECK2(*slarp
, SLARP_MIN_LEN
);
152 switch (EXTRACT_32BITS(&slarp
->code
)) {
156 * At least according to William "Chops" Westfield's
159 * http://www.nethelp.no/net/cisco-hdlc.txt
161 * the address and mask aren't used in requests -
166 printf("reply %s/%s",
167 ipaddr_string(&slarp
->un
.addr
.addr
),
168 ipaddr_string(&slarp
->un
.addr
.mask
));
170 case SLARP_KEEPALIVE
:
171 printf("keepalive: mineseen=0x%08x, yourseen=0x%08x, reliability=0x%04x",
172 EXTRACT_32BITS(&slarp
->un
.keep
.myseq
),
173 EXTRACT_32BITS(&slarp
->un
.keep
.yourseq
),
174 EXTRACT_16BITS(&slarp
->un
.keep
.rel
));
176 if (length
>= SLARP_MAX_LEN
) { /* uptime-stamp is optional */
180 sec
= EXTRACT_32BITS(cp
) / 1000;
181 min
= sec
/ 60; sec
-= min
* 60;
182 hrs
= min
/ 60; min
-= hrs
* 60;
183 days
= hrs
/ 24; hrs
-= days
* 24;
184 printf(", link uptime=%ud%uh%um%us",days
,hrs
,min
,sec
);
188 printf("0x%02x unknown", EXTRACT_32BITS(&slarp
->code
));
190 print_unknown_data(gndo
,cp
+4,"\n\t",length
-4);
194 if (SLARP_MAX_LEN
< length
&& vflag
)
195 printf(", (trailing junk: %d bytes)", length
- SLARP_MAX_LEN
);
197 print_unknown_data(gndo
,cp
+4,"\n\t",length
-4);
207 * c-style: whitesmith