summaryrefslogtreecommitdiff
path: root/usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_aarp.c
blob: 32133ee58a39a5dc1763e971f1b2aeda6d394a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright (c) 1991-2001 by Sun Microsystems, Inc.
 * All rights reserved.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>

#include <at.h>
#include <snoop.h>

static char *printat(uint8_t *);

static char *aarp_opname[] = {
	"",
	"AARP Request",
	"AARP Reply",
	"AARP Probe",
};

void
interpret_aarp(int flags, char *data, int alen)
{
	/* LINTED */
	struct ether_arp *ap = (struct ether_arp *)data;

	extern char *dst_name;

	if (flags & F_SUM) {
		if (alen < sizeof (struct ether_arp)) {
			(void) snprintf(get_sum_line(), MAXLINE,
			    "AARP (short packet)");
			return;
		}

		switch (ntohs(ap->arp_op)) {
		case AARP_REQ:
			(void) snprintf(get_sum_line(), MAXLINE,
			    "AARP C Who is %s ?",
			    printat(ap->arp_tpa));
			break;
		case AARP_RESP:
			(void) snprintf(get_sum_line(), MAXLINE,
			    "AARP R %s is %s",
			    printat(ap->arp_spa),
			    printether((struct ether_addr *)&ap->arp_sha));
			dst_name = printat(ap->arp_tpa);
			break;
		case AARP_PROBE:
			(void) snprintf(get_sum_line(), MAXLINE,
			    "AARP Probe %s ?",
			    printat(ap->arp_tpa));
			break;
		}
	}

	if (flags & F_DTAIL) {
		show_header("AARP: ", "AARP Frame", alen);
		show_space();

		if (alen < sizeof (struct ether_arp)) {
			(void) snprintf(get_line(0, 0), get_line_remain(),
			    "AARP (short packet)");
			return;
		}

		(void) snprintf(get_line(0, 0), get_line_remain(),
		    "Hardware type = %d",
		    ntohs(ap->arp_hrd));
		(void) snprintf(get_line(0, 0), get_line_remain(),
		    "Protocol type = %04X (%s)",
		    ntohs(ap->arp_pro),
		    print_ethertype(ntohs(ap->arp_pro)));
		(void) snprintf(get_line(0, 0), get_line_remain(),
		    "Length of hardware address = %d bytes",
		    ap->arp_hln);
		(void) snprintf(get_line(0, 0), get_line_remain(),
		    "Length of protocol address = %d bytes",
		    ap->arp_pln);
		(void) snprintf(get_line(0, 0), get_line_remain(),
		    "Opcode %d (%s)",
		    ntohs(ap->arp_op),
		    aarp_opname[ntohs(ap->arp_op)]);

		if (ntohs(ap->arp_hrd) == ARPHRD_ETHER &&
		    ntohs(ap->arp_pro) == ETHERTYPE_AT) {
			(void) snprintf(get_line(0, 0), get_line_remain(),
			    "Sender's hardware address = %s",
			    printether((struct ether_addr *)&ap->arp_sha));
			(void) snprintf(get_line(0, 0), get_line_remain(),
			    "Sender's protocol address = %s",
			    printat(ap->arp_spa));
			(void) snprintf(get_line(0, 0), get_line_remain(),
			    "Target hardware address = %s",
			    (ntohs(ap->arp_op) == AARP_REQ ||
				ntohs(ap->arp_op) == AARP_PROBE) ? "?" :
			    printether((struct ether_addr *)&ap->arp_tha));
			(void) snprintf(get_line(0, 0), get_line_remain(),
			    "Target protocol address = %s",
			    ntohs(ap->arp_op) == REVARP_REQUEST ? "?" :
			    printat(ap->arp_tpa));
		}
		show_trailer();
	}
}

static char *
printat(uint8_t *p)
{
	static char buf[16];

	(void) snprintf(buf, sizeof (buf),  "%d.%d", get_short(&p[1]), p[3]);
	return (buf);
}