]>
The Tcpdump Group git mirrors - tcpdump/blob - print-atm.c
2 * Copyright (c) 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.
22 static const char rcsid
[] =
23 "@(#) $Header: /tcpdump/master/tcpdump/print-atm.c,v 1.27 2002-12-04 19:12:39 hannes Exp $ (LBL)";
30 #include <tcpdump-stdinc.h>
36 #include "interface.h"
38 #include "addrtoname.h"
39 #include "ethertype.h"
46 * This is the top level routine of the printer. 'p' points
47 * to the LLC/SNAP header of the packet, 'h->ts' is the timestamp,
48 * 'h->length' is the length of the packet off the wire, and 'h->caplen'
49 * is the number of bytes actually captured.
52 atm_if_print(u_char
*user _U_
, const struct pcap_pkthdr
*h
, const u_char
*p
)
54 u_int caplen
= h
->caplen
;
55 u_int length
= h
->len
;
66 * Some printers want to check that they're not walking off the
68 * Rather than pass it all the way down, we set this global.
72 if (EXTRACT_24BITS(p
) == 0xaaaa03) {
74 * XXX - assume 802.6 MAC header from Fore driver.
75 * XXX - should we also assume it's not a MAC header
76 * if it begins with 0xfe 0xfe 0x03, for RFC 2684
77 * routed NLPID-formatted PDUs?
80 printf("%08x%08x %08x%08x ",
84 EXTRACT_32BITS(p
+12));
90 /* lets call into the generic LLC handler */
91 llc_print(p
, length
, caplen
, NULL
, NULL
, NULL
);
94 default_print(p
, caplen
);
102 static struct tok msgtype2str
[] = {
103 { CALL_PROCEED
, "Call_proceeding" },
104 { CONNECT
, "Connect" },
105 { CONNECT_ACK
, "Connect_ack" },
107 { RELEASE
, "Release" },
108 { RELEASE_DONE
, "Release_complete" },
109 { RESTART
, "Restart" },
110 { RESTART_ACK
, "Restart_ack" },
111 { STATUS
, "Status" },
112 { STATUS_ENQ
, "Status_enquiry" },
113 { ADD_PARTY
, "Add_party" },
114 { ADD_PARTY_ACK
, "Add_party_ack" },
115 { ADD_PARTY_REJ
, "Add_party_reject" },
116 { DROP_PARTY
, "Drop_party" },
117 { DROP_PARTY_ACK
, "Drop_party_ack" },
122 sig_print(const u_char
*p
, int caplen
)
124 bpf_u_int32 call_ref
;
126 if (caplen
< PROTO_POS
) {
130 if (p
[PROTO_POS
] == Q2931
) {
132 * protocol:Q.2931 for User to Network Interface
133 * (UNI 3.1) signalling
136 if (caplen
< MSG_TYPE_POS
) {
141 tok2str(msgtype2str
, "msgtype#%d", p
[MSG_TYPE_POS
]));
143 if (caplen
< CALL_REF_POS
+3) {
147 call_ref
= EXTRACT_24BITS(&p
[CALL_REF_POS
]);
148 printf("CALL_REF:0x%06x", call_ref
);
150 /* SCCOP with some unknown protocol atop it */
151 printf("SSCOP, proto %d ", p
[PROTO_POS
]);
156 * Print an ATM PDU (such as an AAL5 PDU).
159 atm_print(u_int vpi
, u_int vci
, u_int traftype
, const u_char
*p
, u_int length
,
163 printf("VPI:%u VCI:%u ", vpi
, vci
);
166 * Some printers want to check that they're not walking off the
168 * Rather than pass it all the way down, we set this global.
170 snapend
= p
+ caplen
;
176 sig_print(p
, caplen
);
180 printf("broadcast sig: ");
184 printf("oamF4(segment): ");
188 printf("oamF4(end): ");
197 snmp_print(p
, length
);
207 * Assumes traffic is LLC if unknown.
208 * call into the generic LLC handler
210 llc_print(p
, length
, caplen
, NULL
, NULL
, NULL
);
214 lane_print(p
, length
, caplen
);
220 default_print(p
, caplen
);