]>
The Tcpdump Group git mirrors - tcpdump/blob - print-ipx.c
2 * Copyright (c) 1994, 1995, 1996
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 * Format and print Novell IPX packets.
22 * Contributed by Brad Parker (brad@fcr.com).
26 static const char rcsid
[] _U_
=
27 "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.42 2005-05-06 08:26:44 guy Exp $";
34 #include <tcpdump-stdinc.h>
40 #include "interface.h"
41 #include "addrtoname.h"
44 /* well-known sockets */
45 #define IPX_SKT_NCP 0x0451
46 #define IPX_SKT_SAP 0x0452
47 #define IPX_SKT_RIP 0x0453
48 #define IPX_SKT_NETBIOS 0x0455
49 #define IPX_SKT_DIAGNOSTICS 0x0456
50 #define IPX_SKT_NWLINK_DGM 0x0553 /* NWLink datagram, may contain SMB */
51 #define IPX_SKT_EIGRP 0x85be /* Cisco EIGRP over IPX */
53 /* IPX transport header */
55 u_int16_t cksum
; /* Checksum */
56 u_int16_t length
; /* Length, in bytes, including header */
57 u_int8_t tCtl
; /* Transport Control (i.e. hop count) */
58 u_int8_t pType
; /* Packet Type (i.e. level 2 protocol) */
59 u_int16_t dstNet
[2]; /* destination net */
60 u_int8_t dstNode
[6]; /* destination node */
61 u_int16_t dstSkt
; /* destination socket */
62 u_int16_t srcNet
[2]; /* source net */
63 u_int8_t srcNode
[6]; /* source node */
64 u_int16_t srcSkt
; /* source socket */
69 static const char *ipxaddr_string(u_int32_t
, const u_char
*);
70 void ipx_decode(const struct ipxHdr
*, const u_char
*, u_int
);
71 void ipx_sap_print(const u_short
*, u_int
);
72 void ipx_rip_print(const u_short
*, u_int
);
75 * Print IPX datagram packets.
78 ipx_print(const u_char
*p
, u_int length
)
80 const struct ipxHdr
*ipx
= (const struct ipxHdr
*)p
;
86 (void)printf("%s.%04x > ",
87 ipxaddr_string(EXTRACT_32BITS(ipx
->srcNet
), ipx
->srcNode
),
88 EXTRACT_16BITS(&ipx
->srcSkt
));
90 (void)printf("%s.%04x: ",
91 ipxaddr_string(EXTRACT_32BITS(ipx
->dstNet
), ipx
->dstNode
),
92 EXTRACT_16BITS(&ipx
->dstSkt
));
94 /* take length from ipx header */
96 length
= EXTRACT_16BITS(&ipx
->length
);
98 ipx_decode(ipx
, (u_char
*)ipx
+ ipxSize
, length
- ipxSize
);
101 printf("[|ipx %d]", length
);
105 ipxaddr_string(u_int32_t net
, const u_char
*node
)
107 static char line
[256];
109 snprintf(line
, sizeof(line
), "%08x.%02x:%02x:%02x:%02x:%02x:%02x",
110 net
, node
[0], node
[1], node
[2], node
[3], node
[4], node
[5]);
116 ipx_decode(const struct ipxHdr
*ipx
, const u_char
*datap
, u_int length
)
118 register u_short dstSkt
;
120 dstSkt
= EXTRACT_16BITS(&ipx
->dstSkt
);
123 (void)printf("ipx-ncp %d", length
);
126 ipx_sap_print((u_short
*)datap
, length
);
129 ipx_rip_print((u_short
*)datap
, length
);
131 case IPX_SKT_NETBIOS
:
132 (void)printf("ipx-netbios %d", length
);
133 #ifdef TCPDUMP_DO_SMB
134 ipx_netbios_print(datap
, length
);
137 case IPX_SKT_DIAGNOSTICS
:
138 (void)printf("ipx-diags %d", length
);
140 case IPX_SKT_NWLINK_DGM
:
141 (void)printf("ipx-nwlink-dgm %d", length
);
142 #ifdef TCPDUMP_DO_SMB
143 ipx_netbios_print(datap
, length
);
147 eigrp_print(datap
, length
);
150 (void)printf("ipx-#%x %d", dstSkt
, length
);
156 ipx_sap_print(const u_short
*ipx
, u_int length
)
161 command
= EXTRACT_16BITS(ipx
);
169 (void)printf("ipx-sap-req");
171 (void)printf("ipx-sap-nearest-req");
174 (void)printf(" %s", ipxsap_string(htons(EXTRACT_16BITS(&ipx
[0]))));
180 (void)printf("ipx-sap-resp");
182 (void)printf("ipx-sap-nearest-resp");
184 for (i
= 0; i
< 8 && length
> 0; i
++) {
186 (void)printf(" %s '", ipxsap_string(htons(EXTRACT_16BITS(&ipx
[0]))));
187 if (fn_printzp((u_char
*)&ipx
[1], 48, snapend
)) {
191 TCHECK2(ipx
[25], 10);
193 ipxaddr_string(EXTRACT_32BITS(&ipx
[25]), (u_char
*)&ipx
[27]));
199 (void)printf("ipx-sap-?%x", command
);
204 printf("[|ipx %d]", length
);
208 ipx_rip_print(const u_short
*ipx
, u_int length
)
213 command
= EXTRACT_16BITS(ipx
);
219 (void)printf("ipx-rip-req");
222 (void)printf(" %08x/%d.%d", EXTRACT_32BITS(&ipx
[0]),
223 EXTRACT_16BITS(&ipx
[2]), EXTRACT_16BITS(&ipx
[3]));
227 (void)printf("ipx-rip-resp");
228 for (i
= 0; i
< 50 && length
> 0; i
++) {
230 (void)printf(" %08x/%d.%d", EXTRACT_32BITS(&ipx
[0]),
231 EXTRACT_16BITS(&ipx
[2]), EXTRACT_16BITS(&ipx
[3]));
238 (void)printf("ipx-rip-?%x", command
);
243 printf("[|ipx %d]", length
);