blob: 49185b4e1472adf9d25172ee8ee7af43d703751f [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <net.h>
wdenkc40b2952004-03-13 23:29:43 +000027#include "nfs.h"
wdenkaffae2b2002-08-17 09:36:01 +000028#include "bootp.h"
29#include "rarp.h"
30#include "tftp.h"
31
Joe Hershberger8b9c5322012-05-23 07:58:03 +000032#define TIMEOUT 5000UL /* Milliseconds before trying BOOTP again */
wdenkaffae2b2002-08-17 09:36:01 +000033#ifndef CONFIG_NET_RETRY_COUNT
Joe Hershberger8b9c5322012-05-23 07:58:03 +000034#define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenkaffae2b2002-08-17 09:36:01 +000035#else
Joe Hershberger8b9c5322012-05-23 07:58:03 +000036#define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
wdenkaffae2b2002-08-17 09:36:01 +000037#endif
38
Joe Hershberger8b9c5322012-05-23 07:58:03 +000039int RarpTry;
wdenkaffae2b2002-08-17 09:36:01 +000040
41/*
42 * Handle a RARP received packet.
43 */
Joe Hershberger594c26f2012-05-23 07:58:04 +000044void rarp_receive(struct ip_udp_hdr *ip, unsigned len)
wdenkaffae2b2002-08-17 09:36:01 +000045{
Joe Hershberger738853b2012-05-23 07:58:08 +000046 struct arp_hdr *arp;
Joe Hershberger8b9c5322012-05-23 07:58:03 +000047
Joe Hershberger4ef8d532012-05-23 08:01:04 +000048 debug_cond(DEBUG_NET_PKT, "Got RARP\n");
Joe Hershberger738853b2012-05-23 07:58:08 +000049 arp = (struct arp_hdr *)ip;
Joe Hershberger8b9c5322012-05-23 07:58:03 +000050 if (len < ARP_HDR_SIZE) {
51 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
52 return;
53 }
54
55 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
56 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
57 (ntohs(arp->ar_pro) != PROT_IP) ||
58 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
59
60 puts("invalid RARP header\n");
61 } else {
62 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
63 if (NetServerIP == 0)
64 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
65 memcpy(NetServerEther, &arp->ar_data[0], 6);
Joe Hershberger4ef8d532012-05-23 08:01:04 +000066 debug_cond(DEBUG_DEV_PKT, "Got good RARP\n");
Joe Hershberger8b9c5322012-05-23 07:58:03 +000067 net_auto_load();
68 }
wdenkaffae2b2002-08-17 09:36:01 +000069}
70
71
72/*
73 * Timeout on BOOTP request.
74 */
Joe Hershberger8b9c5322012-05-23 07:58:03 +000075static void RarpTimeout(void)
wdenkaffae2b2002-08-17 09:36:01 +000076{
77 if (RarpTry >= TIMEOUT_COUNT) {
Joe Hershbergerc2faf4f2012-05-15 08:59:10 +000078 puts("\nRetry count exceeded; starting again\n");
79 NetStartAgain();
wdenkaffae2b2002-08-17 09:36:01 +000080 } else {
Joe Hershbergerc2faf4f2012-05-15 08:59:10 +000081 NetSetTimeout(TIMEOUT, RarpTimeout);
82 RarpRequest();
wdenkaffae2b2002-08-17 09:36:01 +000083 }
84}
85
86
Joe Hershberger8b9c5322012-05-23 07:58:03 +000087void RarpRequest(void)
wdenkaffae2b2002-08-17 09:36:01 +000088{
Joe Hershbergerdb288a92012-05-15 08:59:04 +000089 uchar *pkt;
Joe Hershberger738853b2012-05-23 07:58:08 +000090 struct arp_hdr *rarp;
Joe Hershberger00f33262012-05-23 07:59:09 +000091 int eth_hdr_size;
wdenkaffae2b2002-08-17 09:36:01 +000092
93 printf("RARP broadcast %d\n", ++RarpTry);
94 pkt = NetTxPacket;
95
Joe Hershberger00f33262012-05-23 07:59:09 +000096 eth_hdr_size = NetSetEther(pkt, NetBcastAddr, PROT_RARP);
97 pkt += eth_hdr_size;
wdenkaffae2b2002-08-17 09:36:01 +000098
Joe Hershberger738853b2012-05-23 07:58:08 +000099 rarp = (struct arp_hdr *)pkt;
wdenkaffae2b2002-08-17 09:36:01 +0000100
Joe Hershbergerc2faf4f2012-05-15 08:59:10 +0000101 rarp->ar_hrd = htons(ARP_ETHER);
102 rarp->ar_pro = htons(PROT_IP);
wdenkaffae2b2002-08-17 09:36:01 +0000103 rarp->ar_hln = 6;
104 rarp->ar_pln = 4;
Joe Hershbergerc2faf4f2012-05-15 08:59:10 +0000105 rarp->ar_op = htons(RARPOP_REQUEST);
106 memcpy(&rarp->ar_data[0], NetOurEther, 6); /* source ET addr */
107 memcpy(&rarp->ar_data[6], &NetOurIP, 4); /* source IP addr */
108 /* dest ET addr = source ET addr ??*/
109 memcpy(&rarp->ar_data[10], NetOurEther, 6);
Joe Hershberger8b9c5322012-05-23 07:58:03 +0000110 /* dest IP addr set to broadcast */
111 memset(&rarp->ar_data[16], 0xff, 4);
wdenkaffae2b2002-08-17 09:36:01 +0000112
Joe Hershberger00f33262012-05-23 07:59:09 +0000113 NetSendPacket(NetTxPacket, eth_hdr_size + ARP_HDR_SIZE);
wdenkaffae2b2002-08-17 09:36:01 +0000114
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200115 NetSetTimeout(TIMEOUT, RarpTimeout);
wdenkaffae2b2002-08-17 09:36:01 +0000116}