xref: /openbsd/usr.sbin/tcpdump/print-atalk.c (revision 65161bc5)
1 /*	$OpenBSD: print-atalk.c,v 1.23 2004/02/04 08:35:12 otto Exp $	*/
2 
3 /*
4  * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that: (1) source code distributions
9  * retain the above copyright notice and this paragraph in its entirety, (2)
10  * distributions including binary code include the above copyright notice and
11  * this paragraph in its entirety in the documentation or other materials
12  * provided with the distribution, and (3) all advertising materials mentioning
13  * features or use of this software display the following acknowledgement:
14  * ``This product includes software developed by the University of California,
15  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
16  * the University nor the names of its contributors may be used to endorse
17  * or promote products derived from this software without specific prior
18  * written permission.
19  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
21  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22  *
23  * Format and print AppleTalk packets.
24  */
25 
26 #ifndef lint
27 static const char rcsid[] =
28     "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/print-atalk.c,v 1.23 2004/02/04 08:35:12 otto Exp $ (LBL)";
29 #endif
30 
31 #include <sys/param.h>
32 #include <sys/time.h>
33 #include <sys/socket.h>
34 
35 struct mbuf;
36 struct rtentry;
37 #include <net/if.h>
38 
39 #include <netinet/in.h>
40 #include <netinet/in_systm.h>
41 #include <netinet/ip.h>
42 #include <netinet/ip_var.h>
43 #include <netinet/if_ether.h>
44 #include <netinet/udp.h>
45 #include <netinet/udp_var.h>
46 #include <netinet/tcp.h>
47 #include <netinet/tcpip.h>
48 
49 #include <inttypes.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <string.h>
53 
54 #include "interface.h"
55 #include "addrtoname.h"
56 #include "ethertype.h"
57 #include "extract.h"			/* must come after interface.h */
58 #include "appletalk.h"
59 #include "savestr.h"
60 #include "privsep.h"
61 
62 static struct tok type2str[] = {
63 	{ ddpRTMP,		"rtmp" },
64 	{ ddpRTMPrequest,	"rtmpReq" },
65 	{ ddpECHO,		"echo" },
66 	{ ddpIP,		"IP" },
67 	{ ddpARP,		"ARP" },
68 	{ ddpKLAP,		"KLAP" },
69 	{ 0,			NULL }
70 };
71 
72 struct aarp {
73 	u_int16_t	htype, ptype;
74 	u_int8_t	halen, palen;
75 	u_int16_t	op;
76 	u_int8_t	hsaddr[6];
77 	u_int8_t	psaddr[4];
78 	u_int8_t	hdaddr[6];
79 	u_int8_t	pdaddr[4];
80 };
81 
82 static char tstr[] = "[|atalk]";
83 
84 static void atp_print(const struct atATP *, u_int);
85 static void atp_bitmap_print(u_char);
86 static void nbp_print(const struct atNBP *, u_int, u_short, u_char, u_char);
87 static const char *print_cstring(const char *, const u_char *);
88 static const struct atNBPtuple *nbp_tuple_print(const struct atNBPtuple *,
89 						const u_char *,
90 						u_short, u_char, u_char);
91 static const struct atNBPtuple *nbp_name_print(const struct atNBPtuple *,
92 					       const u_char *);
93 static const char *ataddr_string(u_short, u_char);
94 static void ddp_print(const u_char *, u_int, int, u_short, u_char, u_char);
95 static const char *ddpskt_string(int);
96 
97 /*
98  * Print AppleTalk Datagram Delivery Protocol packets
99  * without the LLAP encapsulating header (i.e.
100  * from Ethertalk)
101  */
102 void
103 atalk_print(register const u_char *bp, u_int length)
104 {
105 	register const struct atDDP *dp;
106 	u_short snet;
107 
108 	if (length < ddpSize) {
109 		(void)printf(" [|ddp %d]", length);
110 		return;
111 	}
112 	dp = (const struct atDDP *)bp;
113 	snet = EXTRACT_16BITS(&dp->srcNet);
114 	printf("%s.%s", ataddr_string(snet, dp->srcNode),
115 	    ddpskt_string(dp->srcSkt));
116 	printf(" > %s.%s:",
117 	    ataddr_string(EXTRACT_16BITS(&dp->dstNet), dp->dstNode),
118 	    ddpskt_string(dp->dstSkt));
119 	bp += ddpSize;
120 	length -= ddpSize;
121 	ddp_print(bp, length, dp->type, snet, dp->srcNode, dp->srcSkt);
122 }
123 
124 /*
125  * Print AppleTalk Datagram Delivery Protocol packets
126  * from localtalk (i.e. the 230 Kbps net built into
127  * every Macintosh). We can get these from a localtalk
128  * interface if we have one, or from UDP encapsulated tunnels.
129  */
130 void
131 atalk_print_llap(register const u_char *bp, u_int length)
132 {
133 	register const struct LAP *lp;
134 	register const struct atDDP *dp;
135 	register const struct atShortDDP *sdp;
136 	u_short snet;
137 
138 	lp = (struct LAP *)bp;
139 	bp += sizeof(*lp);
140 	length -= sizeof(*lp);
141 	switch (lp->type) {
142 
143 	case lapShortDDP:
144 		if (length < ddpSSize) {
145 			(void)printf(" [|sddp %d]", length);
146 			return;
147 		}
148 		sdp = (const struct atShortDDP *)bp;
149 		printf("%s.%s",
150 		    ataddr_string(0, lp->src), ddpskt_string(sdp->srcSkt));
151 		printf(" > %s.%s:",
152 		    ataddr_string(0, lp->dst), ddpskt_string(sdp->dstSkt));
153 		bp += ddpSSize;
154 		length -= ddpSSize;
155 		ddp_print(bp, length, sdp->type, 0, lp->src, sdp->srcSkt);
156 		break;
157 
158 	case lapDDP:
159 		if (length < ddpSize) {
160 			(void)printf(" [|ddp %d]", length);
161 			return;
162 		}
163 		dp = (const struct atDDP *)bp;
164 		snet = EXTRACT_16BITS(&dp->srcNet);
165 		printf("%s.%s", ataddr_string(snet, dp->srcNode),
166 		    ddpskt_string(dp->srcSkt));
167 		printf(" > %s.%s:",
168 		    ataddr_string(EXTRACT_16BITS(&dp->dstNet), dp->dstNode),
169 		    ddpskt_string(dp->dstSkt));
170 		bp += ddpSize;
171 		length -= ddpSize;
172 		ddp_print(bp, length, dp->type, snet, dp->srcNode, dp->srcSkt);
173 		break;
174 
175 #ifdef notdef
176 	case lapKLAP:
177 		klap_print(bp, length);
178 		break;
179 #endif
180 
181 	default:
182 		printf("%d > %d at-lap#%d %d",
183 		    lp->src, lp->dst, lp->type, length);
184 		break;
185 	}
186 }
187 
188 /* XXX should probably pass in the snap header and do checks like arp_print() */
189 void
190 aarp_print(register const u_char *bp, u_int length)
191 {
192 	register const struct aarp *ap;
193 
194 #define AT(member) ataddr_string((ap->member[1]<<8)|ap->member[2],ap->member[3])
195 
196 	printf("aarp ");
197 	ap = (const struct aarp *)bp;
198 	if (ntohs(ap->htype) == 1 && ntohs(ap->ptype) == ETHERTYPE_ATALK &&
199 	    ap->halen == 6 && ap->palen == 4 )
200 		switch (ntohs(ap->op)) {
201 
202 		case 1:				/* request */
203 			(void)printf("who-has %s tell %s",
204 			    AT(pdaddr), AT(psaddr));
205 			return;
206 
207 		case 2:				/* response */
208 			(void)printf("reply %s is-at %s",
209 			    AT(pdaddr), etheraddr_string(ap->hdaddr));
210 			return;
211 
212 		case 3:				/* probe (oy!) */
213 			(void)printf("probe %s tell %s",
214 			    AT(pdaddr), AT(psaddr));
215 			return;
216 		}
217 	(void)printf("len %u op %u htype %u ptype %#x halen %u palen %u",
218 	    length, ntohs(ap->op), ntohs(ap->htype), ntohs(ap->ptype),
219 	    ap->halen, ap->palen);
220 }
221 
222 static void
223 ddp_print(register const u_char *bp, register u_int length, register int t,
224 	  register u_short snet, register u_char snode, u_char skt)
225 {
226 
227 	if ((intptr_t)bp & (sizeof(long)-1)) {
228 		static u_char *abuf = NULL;
229 
230 		if (abuf == NULL) {
231 			abuf = (u_char *)malloc(snaplen);
232 			if (abuf == NULL)
233 				error("ddp_print: malloc");
234 		}
235 		memcpy(abuf, bp, min(length, snaplen));
236 		snapend += abuf - bp;
237 		packetp = abuf;
238 		bp = abuf;
239 	}
240 
241 	switch (t) {
242 
243 	case ddpNBP:
244 		nbp_print((const struct atNBP *)bp, length, snet, snode, skt);
245 		break;
246 
247 	case ddpATP:
248 		atp_print((const struct atATP *)bp, length);
249 		break;
250 
251 	default:
252 		(void)printf(" at-%s %d", tok2str(type2str, NULL, t), length);
253 		break;
254 	}
255 }
256 
257 static void
258 atp_print(register const struct atATP *ap, u_int length)
259 {
260 	char c;
261 	u_int32_t data;
262 
263 	if ((const u_char *)(ap + 1) > snapend) {
264 		/* Just bail if we don't have the whole chunk. */
265 		fputs(tstr, stdout);
266 		return;
267 	}
268 	length -= sizeof(*ap);
269 	switch (ap->control & 0xc0) {
270 
271 	case atpReqCode:
272 		(void)printf(" atp-req%s %d",
273 			     ap->control & atpXO? " " : "*",
274 			     EXTRACT_16BITS(&ap->transID));
275 
276 		atp_bitmap_print(ap->bitmap);
277 
278 		if (length != 0)
279 			(void)printf(" [len=%d]", length);
280 
281 		switch (ap->control & (atpEOM|atpSTS)) {
282 		case atpEOM:
283 			(void)printf(" [EOM]");
284 			break;
285 		case atpSTS:
286 			(void)printf(" [STS]");
287 			break;
288 		case atpEOM|atpSTS:
289 			(void)printf(" [EOM,STS]");
290 			break;
291 		}
292 		break;
293 
294 	case atpRspCode:
295 		(void)printf(" atp-resp%s%d:%d (%d)",
296 			     ap->control & atpEOM? "*" : " ",
297 			     EXTRACT_16BITS(&ap->transID), ap->bitmap, length);
298 		switch (ap->control & (atpXO|atpSTS)) {
299 		case atpXO:
300 			(void)printf(" [XO]");
301 			break;
302 		case atpSTS:
303 			(void)printf(" [STS]");
304 			break;
305 		case atpXO|atpSTS:
306 			(void)printf(" [XO,STS]");
307 			break;
308 		}
309 		break;
310 
311 	case atpRelCode:
312 		(void)printf(" atp-rel  %d", EXTRACT_16BITS(&ap->transID));
313 
314 		atp_bitmap_print(ap->bitmap);
315 
316 		/* length should be zero */
317 		if (length)
318 			(void)printf(" [len=%d]", length);
319 
320 		/* there shouldn't be any control flags */
321 		if (ap->control & (atpXO|atpEOM|atpSTS)) {
322 			c = '[';
323 			if (ap->control & atpXO) {
324 				(void)printf("%cXO", c);
325 				c = ',';
326 			}
327 			if (ap->control & atpEOM) {
328 				(void)printf("%cEOM", c);
329 				c = ',';
330 			}
331 			if (ap->control & atpSTS) {
332 				(void)printf("%cSTS", c);
333 				c = ',';
334 			}
335 			(void)printf("]");
336 		}
337 		break;
338 
339 	default:
340 		(void)printf(" atp-0x%x  %d (%d)", ap->control,
341 			     EXTRACT_16BITS(&ap->transID), length);
342 		break;
343 	}
344 	data = EXTRACT_32BITS(&ap->userData);
345 	if (data != 0)
346 		(void)printf(" 0x%x", data);
347 }
348 
349 static void
350 atp_bitmap_print(register u_char bm)
351 {
352 	register char c;
353 	register int i;
354 
355 	/*
356 	 * The '& 0xff' below is needed for compilers that want to sign
357 	 * extend a u_char, which is the case with the Ultrix compiler.
358 	 * (gcc is smart enough to eliminate it, at least on the Sparc).
359 	 */
360 	if ((bm + 1) & (bm & 0xff)) {
361 		c = '<';
362 		for (i = 0; bm; ++i) {
363 			if (bm & 1) {
364 				(void)printf("%c%d", c, i);
365 				c = ',';
366 			}
367 			bm >>= 1;
368 		}
369 		(void)printf(">");
370 	} else {
371 		for (i = 0; bm; ++i)
372 			bm >>= 1;
373 		if (i > 1)
374 			(void)printf("<0-%d>", i - 1);
375 		else
376 			(void)printf("<0>");
377 	}
378 }
379 
380 static void
381 nbp_print(register const struct atNBP *np, u_int length, register u_short snet,
382 	  register u_char snode, register u_char skt)
383 {
384 	register const struct atNBPtuple *tp =
385 			(struct atNBPtuple *)((u_char *)np + nbpHeaderSize);
386 	int i;
387 	const u_char *ep;
388 
389 	if (length < nbpHeaderSize) {
390 		(void)printf(" truncated-nbp %d", length);
391 		return;
392 	}
393 
394 	length -= nbpHeaderSize;
395 	if (length < 8) {
396 		/* must be room for at least one tuple */
397 		if (np->control == nbpNATLKerr) {
398 			(void)printf(" nbp-netatalk_err");
399 			return;
400 		} else if (np->control == nbpNATLKok) {
401 			(void)printf(" nbp-netatalk_ok");
402 			return;
403 		}
404 		(void)printf(" truncated-nbp nbp-0x%x  %d (%d)",
405 			np->control, np->id, length + nbpHeaderSize);
406 		return;
407 	}
408 	/* ep points to end of available data */
409 	ep = snapend;
410 	if ((const u_char *)tp > ep) {
411 		fputs(tstr, stdout);
412 		return;
413 	}
414 	switch (i = np->control & 0xf0) {
415 
416 	case nbpBrRq:
417 	case nbpLkUp:
418 		(void)printf(i == nbpLkUp? " nbp-lkup %d:":" nbp-brRq %d:",
419 			     np->id);
420 		if ((const u_char *)(tp + 1) > ep) {
421 			fputs(tstr, stdout);
422 			return;
423 		}
424 		(void)nbp_name_print(tp, ep);
425 		/*
426 		 * look for anomalies: the spec says there can only
427 		 * be one tuple, the address must match the source
428 		 * address and the enumerator should be zero.
429 		 */
430 		if ((np->control & 0xf) != 1)
431 			(void)printf(" [ntup=%d]", np->control & 0xf);
432 		if (tp->enumerator)
433 			(void)printf(" [enum=%d]", tp->enumerator);
434 		if (EXTRACT_16BITS(&tp->net) != snet ||
435 		    tp->node != snode || tp->skt != skt)
436 			(void)printf(" [addr=%s.%d]",
437 			    ataddr_string(EXTRACT_16BITS(&tp->net),
438 			    tp->node), tp->skt);
439 		break;
440 
441 	case nbpLkUpReply:
442 		(void)printf(" nbp-reply %d:", np->id);
443 
444 		/* print each of the tuples in the reply */
445 		for (i = np->control & 0xf; --i >= 0 && tp; )
446 			tp = nbp_tuple_print(tp, ep, snet, snode, skt);
447 		break;
448 
449 	case nbpNATLKrgstr:
450 	case nbpNATLKunrgstr:
451 		(void)printf((i == nbpNATLKrgstr) ?
452 			" nbp-netatalk_rgstr %d:" :
453 			" nbp-netatalk_unrgstr %d:",
454 			np->id);
455 		for (i = np->control & 0xf; --i >= 0 && tp; )
456 			tp = nbp_tuple_print(tp, ep, snet, snode, skt);
457 		break;
458 
459 	default:
460 		(void)printf(" nbp-0x%x  %d (%d)", np->control, np->id,
461 				length);
462 		break;
463 	}
464 }
465 
466 /* print a counted string */
467 static const char *
468 print_cstring(register const char *cp, register const u_char *ep)
469 {
470 	register u_int length;
471 
472 	if (cp >= (const char *)ep) {
473 		fputs(tstr, stdout);
474 		return (0);
475 	}
476 	length = *cp++;
477 
478 	/* Spec says string can be at most 32 bytes long */
479 	if (length < 0 || length > 32) {
480 		(void)printf("[len=%d]", length);
481 		return (0);
482 	}
483 	while ((int)--length >= 0) {
484 		if (cp >= (char *)ep) {
485 			fputs(tstr, stdout);
486 			return (0);
487 		}
488 		putchar(*cp++);
489 	}
490 	return (cp);
491 }
492 
493 static const struct atNBPtuple *
494 nbp_tuple_print(register const struct atNBPtuple *tp,
495 		register const u_char *ep,
496 		register u_short snet, register u_char snode,
497 		register u_char skt)
498 {
499 	register const struct atNBPtuple *tpn;
500 
501 	if ((const u_char *)(tp + 1) > ep) {
502 		fputs(tstr, stdout);
503 		return 0;
504 	}
505 	tpn = nbp_name_print(tp, ep);
506 
507 	/* if the enumerator isn't 1, print it */
508 	if (tp->enumerator != 1)
509 		(void)printf("(%d)", tp->enumerator);
510 
511 	/* if the socket doesn't match the src socket, print it */
512 	if (tp->skt != skt)
513 		(void)printf(" %d", tp->skt);
514 
515 	/* if the address doesn't match the src address, it's an anomaly */
516 	if (EXTRACT_16BITS(&tp->net) != snet || tp->node != snode)
517 		(void)printf(" [addr=%s]",
518 		    ataddr_string(EXTRACT_16BITS(&tp->net), tp->node));
519 
520 	return (tpn);
521 }
522 
523 static const struct atNBPtuple *
524 nbp_name_print(const struct atNBPtuple *tp, register const u_char *ep)
525 {
526 	register const char *cp = (const char *)tp + nbpTupleSize;
527 
528 	putchar(' ');
529 
530 	/* Object */
531 	putchar('"');
532 	if ((cp = print_cstring(cp, ep)) != NULL) {
533 		/* Type */
534 		putchar(':');
535 		if ((cp = print_cstring(cp, ep)) != NULL) {
536 			/* Zone */
537 			putchar('@');
538 			if ((cp = print_cstring(cp, ep)) != NULL)
539 				putchar('"');
540 		}
541 	}
542 	return ((const struct atNBPtuple *)cp);
543 }
544 
545 
546 #define HASHNAMESIZE 4096
547 
548 struct hnamemem {
549 	int addr;
550 	char *name;
551 	struct hnamemem *nxt;
552 };
553 
554 static struct hnamemem hnametable[HASHNAMESIZE];
555 
556 /*
557  * see if there's an AppleTalk number to name map file.
558  */
559 static void
560 init_atalk(void)
561 {
562 	struct hnamemem *tp;
563 	char nambuf[MAXHOSTNAMELEN + 20];
564 	char line[BUFSIZ];
565 	int i1, i2, i3;
566 
567 	priv_getlines(FTAB_APPLETALK);
568 	while (priv_getline(line, sizeof(line)) > 0) {
569 		if (line[0] == '\n' || line[0] == 0 || line[0] == '#')
570 			continue;
571 		if (sscanf(line, "%d.%d.%d %255s", &i1, &i2, &i3, nambuf) == 4)
572 			/* got a hostname. */
573 			i3 |= ((i1 << 8) | i2) << 8;
574 		else if (sscanf(line, "%d.%d %255s", &i1, &i2, nambuf) == 3)
575 			/* got a net name */
576 			i3 = (((i1 << 8) | i2) << 8) | 255;
577 		else
578 			continue;
579 
580 		for (tp = &hnametable[i3 & (HASHNAMESIZE-1)];
581 		     tp->nxt; tp = tp->nxt)
582 			;
583 		tp->addr = i3;
584 		tp->nxt = newhnamemem();
585 		tp->name = savestr(nambuf);
586 	}
587 }
588 
589 static const char *
590 ataddr_string(u_short atnet, u_char athost)
591 {
592 	register struct hnamemem *tp, *tp2;
593 	register int i = (atnet << 8) | athost;
594 	char nambuf[MAXHOSTNAMELEN + 20];
595 	static int first = 1;
596 
597 	if (first) {
598 		first = 0;
599 		init_atalk();
600 	}
601 	for (tp = &hnametable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
602 		if (tp->addr == i)
603 			return (tp->name);
604 
605 	/* didn't have the node name -- see if we've got the net name */
606 	i |= 255;
607 	for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
608 		if (tp2->addr == i) {
609 			tp->addr = (atnet << 8) | athost;
610 			tp->nxt = newhnamemem();
611 			(void)snprintf(nambuf, sizeof nambuf, "%s.%d",
612 			    tp2->name, athost);
613 			tp->name = savestr(nambuf);
614 			return (tp->name);
615 		}
616 
617 	tp->addr = (atnet << 8) | athost;
618 	tp->nxt = newhnamemem();
619 	if (athost != 255)
620 		(void)snprintf(nambuf, sizeof nambuf, "%d.%d.%d",
621 			atnet >> 8, atnet & 0xff, athost);
622 	else
623 		(void)snprintf(nambuf, sizeof nambuf, "%d.%d",
624 			atnet >> 8, atnet & 0xff);
625 	tp->name = savestr(nambuf);
626 
627 	return (tp->name);
628 }
629 
630 static struct tok skt2str[] = {
631 	{ rtmpSkt,	"rtmp" },	/* routing table maintenance */
632 	{ nbpSkt,	"nis" },	/* name info socket */
633 	{ echoSkt,	"echo" },	/* AppleTalk echo protocol */
634 	{ zipSkt,	"zip" },	/* zone info protocol */
635 	{ 0,		NULL }
636 };
637 
638 static const char *
639 ddpskt_string(register int skt)
640 {
641 	static char buf[12];
642 
643 	if (nflag) {
644 		(void)snprintf(buf, sizeof buf, "%d", skt);
645 		return (buf);
646 	}
647 	return (tok2str(skt2str, "%d", skt));
648 }
649