xref: /freebsd/contrib/tcpdump/print-ipx.c (revision 09e8dea79366f1e5b3a73e8a271b26e4b6bf2e6a)
1 /*
2  * Copyright (c) 1994, 1995, 1996
3  *	The Regents of the University of California.  All rights reserved.
4  *
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
16  * written permission.
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.
20  *
21  * Format and print Novell IPX packets.
22  * Contributed by Brad Parker (brad@fcr.com).
23  *
24  * $FreeBSD$
25  */
26 
27 #ifndef lint
28 static const char rcsid[] =
29     "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.32 2001/10/08 21:25:20 fenner Exp $";
30 #endif
31 
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35 
36 #include <sys/param.h>
37 #include <sys/time.h>
38 #include <sys/socket.h>
39 
40 #include <netinet/in.h>
41 
42 #include <stdlib.h>
43 #include <stdio.h>
44 #include <string.h>
45 
46 #include "interface.h"
47 #include "addrtoname.h"
48 #include "ipx.h"
49 #include "extract.h"
50 
51 
52 static const char *ipxaddr_string(u_int32_t, const u_char *);
53 void ipx_decode(const struct ipxHdr *, const u_char *, u_int);
54 void ipx_sap_print(const u_short *, u_int);
55 void ipx_rip_print(const u_short *, u_int);
56 
57 /*
58  * Print IPX datagram packets.
59  */
60 void
61 ipx_print(const u_char *p, u_int length)
62 {
63 	const struct ipxHdr *ipx = (const struct ipxHdr *)p;
64 
65 	TCHECK(ipx->srcSkt);
66 	(void)printf("%s.%x > ",
67 		     ipxaddr_string(EXTRACT_32BITS(ipx->srcNet), ipx->srcNode),
68 		     EXTRACT_16BITS(&ipx->srcSkt));
69 
70 	(void)printf("%s.%x:",
71 		     ipxaddr_string(EXTRACT_32BITS(ipx->dstNet), ipx->dstNode),
72 		     EXTRACT_16BITS(&ipx->dstSkt));
73 
74 	/* take length from ipx header */
75 	TCHECK(ipx->length);
76 	length = EXTRACT_16BITS(&ipx->length);
77 
78 	ipx_decode(ipx, (u_char *)ipx + ipxSize, length - ipxSize);
79 	return;
80 trunc:
81 	printf("[|ipx %d]", length);
82 }
83 
84 static const char *
85 ipxaddr_string(u_int32_t net, const u_char *node)
86 {
87     static char line[256];
88 
89     snprintf(line, sizeof(line), "%x.%02x:%02x:%02x:%02x:%02x:%02x",
90 	    net, node[0], node[1], node[2], node[3], node[4], node[5]);
91 
92     return line;
93 }
94 
95 void
96 ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length)
97 {
98     register u_short dstSkt;
99 
100     dstSkt = EXTRACT_16BITS(&ipx->dstSkt);
101     switch (dstSkt) {
102       case IPX_SKT_NCP:
103 	(void)printf(" ipx-ncp %d", length);
104 	break;
105       case IPX_SKT_SAP:
106 	ipx_sap_print((u_short *)datap, length);
107 	break;
108       case IPX_SKT_RIP:
109 	ipx_rip_print((u_short *)datap, length);
110 	break;
111       case IPX_SKT_NETBIOS:
112 	(void)printf(" ipx-netbios %d", length);
113 #ifdef TCPDUMP_DO_SMB
114 	ipx_netbios_print(datap, length);
115 #endif
116 	break;
117       case IPX_SKT_DIAGNOSTICS:
118 	(void)printf(" ipx-diags %d", length);
119 	break;
120       case IPX_SKT_NWLINK_DGM:
121 	(void)printf(" ipx-nwlink-dgm %d", length);
122 #ifdef TCPDUMP_DO_SMB
123 	ipx_netbios_print(datap, length);
124 #endif
125 	break;
126       case IPX_SKT_EIGRP:
127 	(void)printf(" ipx-eigrp %d", length);
128 	break;
129       default:
130 	(void)printf(" ipx-#%x %d", dstSkt, length);
131 	break;
132     }
133 }
134 
135 void
136 ipx_sap_print(const u_short *ipx, u_int length)
137 {
138     int command, i;
139 
140     TCHECK(ipx[0]);
141     command = EXTRACT_16BITS(ipx);
142     ipx++;
143     length -= 2;
144 
145     switch (command) {
146       case 1:
147       case 3:
148 	if (command == 1)
149 	    (void)printf("ipx-sap-req");
150 	else
151 	    (void)printf("ipx-sap-nearest-req");
152 
153 	TCHECK(ipx[0]);
154 	(void)printf(" %x", EXTRACT_16BITS(&ipx[0]));
155 	break;
156 
157       case 2:
158       case 4:
159 	if (command == 2)
160 	    (void)printf("ipx-sap-resp");
161 	else
162 	    (void)printf("ipx-sap-nearest-resp");
163 
164 	for (i = 0; i < 8 && length > 0; i++) {
165 	    TCHECK2(ipx[25], 10);
166 	    (void)printf(" %x '", EXTRACT_16BITS(&ipx[0]));
167 	    fn_print((u_char *)&ipx[1], (u_char *)&ipx[1] + 48);
168 	    printf("' addr %s",
169 		ipxaddr_string(EXTRACT_32BITS(&ipx[25]), (u_char *)&ipx[27]));
170 	    ipx += 32;
171 	    length -= 64;
172 	}
173 	break;
174       default:
175 	(void)printf("ipx-sap-?%x", command);
176 	break;
177     }
178     return;
179 trunc:
180     printf("[|ipx %d]", length);
181 }
182 
183 void
184 ipx_rip_print(const u_short *ipx, u_int length)
185 {
186     int command, i;
187 
188     TCHECK(ipx[0]);
189     command = EXTRACT_16BITS(ipx);
190     ipx++;
191     length -= 2;
192 
193     switch (command) {
194       case 1:
195 	(void)printf("ipx-rip-req");
196 	if (length > 0) {
197 	    TCHECK(ipx[3]);
198 	    (void)printf(" %x/%d.%d", EXTRACT_32BITS(&ipx[0]),
199 			 EXTRACT_16BITS(&ipx[2]), EXTRACT_16BITS(&ipx[3]));
200 	}
201 	break;
202       case 2:
203 	(void)printf("ipx-rip-resp");
204 	for (i = 0; i < 50 && length > 0; i++) {
205 	    TCHECK(ipx[3]);
206 	    (void)printf(" %x/%d.%d", EXTRACT_32BITS(&ipx[0]),
207 			 EXTRACT_16BITS(&ipx[2]), EXTRACT_16BITS(&ipx[3]));
208 
209 	    ipx += 4;
210 	    length -= 8;
211 	}
212 	break;
213       default:
214 	(void)printf("ipx-rip-?%x", command);
215 	break;
216     }
217     return;
218 trunc:
219     printf("[|ipx %d]", length);
220 }
221 
222