arp.c 5.1 KB
Newer Older
J
Joe Hershberger 已提交
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
/*
 *	Copied from Linux Monitor (LiMon) - Networking.
 *
 *	Copyright 1994 - 2000 Neil Russell.
 *	(See License)
 *	Copyright 2000 Roland Borde
 *	Copyright 2000 Paolo Scaffardi
 *	Copyright 2000-2002 Wolfgang Denk, wd@denx.de
 */

#include <common.h>

#include "arp.h"

#ifndef	CONFIG_ARP_TIMEOUT
/* Milliseconds before trying ARP again */
# define ARP_TIMEOUT		5000UL
#else
# define ARP_TIMEOUT		CONFIG_ARP_TIMEOUT
#endif


#ifndef	CONFIG_NET_RETRY_COUNT
# define ARP_TIMEOUT_COUNT	5	/* # of timeouts before giving up  */
#else
# define ARP_TIMEOUT_COUNT	CONFIG_NET_RETRY_COUNT
#endif

IPaddr_t	NetArpWaitPacketIP;
IPaddr_t	NetArpWaitReplyIP;
/* MAC address of waiting packet's destination */
uchar	       *NetArpWaitPacketMAC;
/* THE transmit packet */
uchar	       *NetArpWaitTxPacket;
int		NetArpWaitTxPacketSize;
uchar		NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
ulong		NetArpWaitTimerStart;
int		NetArpWaitTry;

void ArpInit(void)
{
	/* XXX problem with bss workaround */
	NetArpWaitPacketMAC = NULL;
	NetArpWaitPacketIP = 0;
	NetArpWaitReplyIP = 0;
	NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
	NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
	NetArpWaitTxPacketSize = 0;
}

void ArpRequest(void)
{
	uchar *pkt;
54
	struct arp_hdr *arp;
55
	int eth_hdr_size;
J
Joe Hershberger 已提交
56 57 58 59 60

	debug("ARP broadcast %d\n", NetArpWaitTry);

	pkt = NetTxPacket;

61 62
	eth_hdr_size = NetSetEther(pkt, NetBcastAddr, PROT_ARP);
	pkt += eth_hdr_size;
J
Joe Hershberger 已提交
63

64
	arp = (struct arp_hdr *) pkt;
J
Joe Hershberger 已提交
65 66 67

	arp->ar_hrd = htons(ARP_ETHER);
	arp->ar_pro = htons(PROT_IP);
68 69
	arp->ar_hln = ARP_HLEN;
	arp->ar_pln = ARP_PLEN;
J
Joe Hershberger 已提交
70 71 72
	arp->ar_op = htons(ARPOP_REQUEST);

	/* source ET addr */
73
	memcpy(&arp->ar_sha, NetOurEther, ARP_HLEN);
J
Joe Hershberger 已提交
74
	/* source IP addr */
75
	NetWriteIP(&arp->ar_spa, NetOurIP);
J
Joe Hershberger 已提交
76
	/* dest ET addr = 0 */
77
	memset(&arp->ar_tha, 0, ARP_HLEN);
J
Joe Hershberger 已提交
78 79 80 81 82 83 84 85 86 87 88 89
	if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
	    (NetOurIP & NetOurSubnetMask)) {
		if (NetOurGatewayIP == 0) {
			puts("## Warning: gatewayip needed but not set\n");
			NetArpWaitReplyIP = NetArpWaitPacketIP;
		} else {
			NetArpWaitReplyIP = NetOurGatewayIP;
		}
	} else {
		NetArpWaitReplyIP = NetArpWaitPacketIP;
	}

90
	NetWriteIP(&arp->ar_tpa, NetArpWaitReplyIP);
91
	NetSendPacket(NetTxPacket, eth_hdr_size + ARP_HDR_SIZE);
J
Joe Hershberger 已提交
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
}

void ArpTimeoutCheck(void)
{
	ulong t;

	if (!NetArpWaitPacketIP)
		return;

	t = get_timer(0);

	/* check for arp timeout */
	if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
		NetArpWaitTry++;

		if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
			puts("\nARP Retry count exceeded; starting again\n");
			NetArpWaitTry = 0;
			NetStartAgain();
		} else {
			NetArpWaitTimerStart = t;
			ArpRequest();
		}
	}
}

118
void ArpReceive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len)
J
Joe Hershberger 已提交
119
{
120
	struct arp_hdr *arp;
121
	IPaddr_t reply_ip_addr;
J
Joe Hershberger 已提交
122
	uchar *pkt;
123
	int eth_hdr_size;
J
Joe Hershberger 已提交
124 125 126 127 128 129 130 131 132 133 134 135

	/*
	 * We have to deal with two types of ARP packets:
	 * - REQUEST packets will be answered by sending  our
	 *   IP address - if we know it.
	 * - REPLY packates are expected only after we asked
	 *   for the TFTP server's or the gateway's ethernet
	 *   address; so if we receive such a packet, we set
	 *   the server ethernet address
	 */
	debug("Got ARP\n");

136
	arp = (struct arp_hdr *)ip;
J
Joe Hershberger 已提交
137 138 139 140 141 142 143 144
	if (len < ARP_HDR_SIZE) {
		printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
		return;
	}
	if (ntohs(arp->ar_hrd) != ARP_ETHER)
		return;
	if (ntohs(arp->ar_pro) != PROT_IP)
		return;
145
	if (arp->ar_hln != ARP_HLEN)
J
Joe Hershberger 已提交
146
		return;
147
	if (arp->ar_pln != ARP_PLEN)
J
Joe Hershberger 已提交
148 149 150 151 152
		return;

	if (NetOurIP == 0)
		return;

153
	if (NetReadIP(&arp->ar_tpa) != NetOurIP)
J
Joe Hershberger 已提交
154 155 156 157 158 159 160
		return;

	switch (ntohs(arp->ar_op)) {
	case ARPOP_REQUEST:
		/* reply with our IP address */
		debug("Got ARP REQUEST, return our IP\n");
		pkt = (uchar *)et;
161
		eth_hdr_size = net_update_ether(et, et->et_src, PROT_ARP);
162
		pkt += eth_hdr_size;
J
Joe Hershberger 已提交
163
		arp->ar_op = htons(ARPOP_REPLY);
164 165 166 167
		memcpy(&arp->ar_tha, &arp->ar_sha, ARP_HLEN);
		NetCopyIP(&arp->ar_tpa, &arp->ar_spa);
		memcpy(&arp->ar_sha, NetOurEther, ARP_HLEN);
		NetCopyIP(&arp->ar_spa, &NetOurIP);
168
		NetSendPacket((uchar *)et, eth_hdr_size + ARP_HDR_SIZE);
J
Joe Hershberger 已提交
169 170 171 172
		return;

	case ARPOP_REPLY:		/* arp reply */
		/* are we waiting for a reply */
173
		if (!NetArpWaitPacketIP)
J
Joe Hershberger 已提交
174 175 176 177 178
			break;

#ifdef CONFIG_KEEP_SERVERADDR
		if (NetServerIP == NetArpWaitPacketIP) {
			char buf[20];
179
			sprintf(buf, "%pM", arp->ar_sha);
J
Joe Hershberger 已提交
180 181 182 183
			setenv("serveraddr", buf);
		}
#endif

184
		reply_ip_addr = NetReadIP(&arp->ar_spa);
J
Joe Hershberger 已提交
185 186

		/* matched waiting packet's address */
187
		if (reply_ip_addr == NetArpWaitReplyIP) {
J
Joe Hershberger 已提交
188 189 190 191
			debug("Got ARP REPLY, set eth addr (%pM)\n",
				arp->ar_data);

			/* save address for later use */
192 193 194
			if (NetArpWaitPacketMAC != NULL)
				memcpy(NetArpWaitPacketMAC,
				       &arp->ar_sha, ARP_HLEN);
J
Joe Hershberger 已提交
195

196 197 198
			net_get_arp_handler()((uchar *)arp, 0, reply_ip_addr,
				0, len);

J
Joe Hershberger 已提交
199
			/* modify header, and transmit it */
200
			memcpy(((struct ethernet_hdr *)NetArpWaitTxPacket)->
201
				et_dest, &arp->ar_sha, ARP_HLEN);
202
			NetSendPacket(NetArpWaitTxPacket,
J
Joe Hershberger 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
					NetArpWaitTxPacketSize);

			/* no arp request pending now */
			NetArpWaitPacketIP = 0;
			NetArpWaitTxPacketSize = 0;
			NetArpWaitPacketMAC = NULL;

		}
		return;
	default:
		debug("Unexpected ARP opcode 0x%x\n",
		      ntohs(arp->ar_op));
		return;
	}
}