]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
affae2bf WD |
2 | /* |
3 | * (C) Copyright 2000-2002 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
affae2bf WD |
5 | */ |
6 | ||
affae2bf | 7 | #include <command.h> |
f7ae49fc | 8 | #include <log.h> |
affae2bf | 9 | #include <net.h> |
34696958 | 10 | #include <net/tftp.h> |
c40b2956 | 11 | #include "nfs.h" |
affae2bf WD |
12 | #include "bootp.h" |
13 | #include "rarp.h" | |
affae2bf | 14 | |
8b9c5322 | 15 | #define TIMEOUT 5000UL /* Milliseconds before trying BOOTP again */ |
affae2bf | 16 | |
698d78e5 | 17 | int rarp_try; |
affae2bf WD |
18 | |
19 | /* | |
20 | * Handle a RARP received packet. | |
21 | */ | |
594c26f8 | 22 | void rarp_receive(struct ip_udp_hdr *ip, unsigned len) |
affae2bf | 23 | { |
738853bb | 24 | struct arp_hdr *arp; |
8b9c5322 | 25 | |
4ef8d53c | 26 | debug_cond(DEBUG_NET_PKT, "Got RARP\n"); |
738853bb | 27 | arp = (struct arp_hdr *)ip; |
8b9c5322 JH |
28 | if (len < ARP_HDR_SIZE) { |
29 | printf("bad length %d < %d\n", len, ARP_HDR_SIZE); | |
30 | return; | |
31 | } | |
32 | ||
33 | if ((ntohs(arp->ar_op) != RARPOP_REPLY) || | |
698d78e5 JH |
34 | (ntohs(arp->ar_hrd) != ARP_ETHER) || |
35 | (ntohs(arp->ar_pro) != PROT_IP) || | |
36 | (arp->ar_hln != 6) || (arp->ar_pln != 4)) { | |
8b9c5322 JH |
37 | puts("invalid RARP header\n"); |
38 | } else { | |
049a95a7 JH |
39 | net_copy_ip(&net_ip, &arp->ar_data[16]); |
40 | if (net_server_ip.s_addr == 0) | |
41 | net_copy_ip(&net_server_ip, &arp->ar_data[6]); | |
0adb5b76 | 42 | memcpy(net_server_ethaddr, &arp->ar_data[0], 6); |
4ef8d53c | 43 | debug_cond(DEBUG_DEV_PKT, "Got good RARP\n"); |
8b9c5322 JH |
44 | net_auto_load(); |
45 | } | |
affae2bf WD |
46 | } |
47 | ||
48 | ||
49 | /* | |
50 | * Timeout on BOOTP request. | |
51 | */ | |
698d78e5 | 52 | static void rarp_timeout_handler(void) |
affae2bf | 53 | { |
01d1b99c | 54 | if (rarp_try >= CONFIG_NET_RETRY_COUNT) { |
c2faf4f9 | 55 | puts("\nRetry count exceeded; starting again\n"); |
bc0571fc | 56 | net_start_again(); |
affae2bf | 57 | } else { |
bc0571fc | 58 | net_set_timeout_handler(TIMEOUT, rarp_timeout_handler); |
698d78e5 | 59 | rarp_request(); |
affae2bf WD |
60 | } |
61 | } | |
62 | ||
63 | ||
698d78e5 | 64 | void rarp_request(void) |
affae2bf | 65 | { |
db288a96 | 66 | uchar *pkt; |
738853bb | 67 | struct arp_hdr *rarp; |
00f33268 | 68 | int eth_hdr_size; |
affae2bf | 69 | |
698d78e5 | 70 | printf("RARP broadcast %d\n", ++rarp_try); |
1203fcce | 71 | pkt = net_tx_packet; |
affae2bf | 72 | |
1203fcce | 73 | eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_RARP); |
00f33268 | 74 | pkt += eth_hdr_size; |
affae2bf | 75 | |
738853bb | 76 | rarp = (struct arp_hdr *)pkt; |
affae2bf | 77 | |
c2faf4f9 JH |
78 | rarp->ar_hrd = htons(ARP_ETHER); |
79 | rarp->ar_pro = htons(PROT_IP); | |
affae2bf WD |
80 | rarp->ar_hln = 6; |
81 | rarp->ar_pln = 4; | |
c2faf4f9 | 82 | rarp->ar_op = htons(RARPOP_REQUEST); |
0adb5b76 | 83 | memcpy(&rarp->ar_data[0], net_ethaddr, 6); /* source ET addr */ |
049a95a7 | 84 | memcpy(&rarp->ar_data[6], &net_ip, 4); /* source IP addr */ |
c2faf4f9 | 85 | /* dest ET addr = source ET addr ??*/ |
0adb5b76 | 86 | memcpy(&rarp->ar_data[10], net_ethaddr, 6); |
8b9c5322 JH |
87 | /* dest IP addr set to broadcast */ |
88 | memset(&rarp->ar_data[16], 0xff, 4); | |
affae2bf | 89 | |
1203fcce | 90 | net_send_packet(net_tx_packet, eth_hdr_size + ARP_HDR_SIZE); |
affae2bf | 91 | |
bc0571fc | 92 | net_set_timeout_handler(TIMEOUT, rarp_timeout_handler); |
affae2bf | 93 | } |