blob: d1e8cb8815bd3332fb0f5890a9966005ad583c81 [file] [log] [blame]
wdenk3861aa52002-09-27 23:19:37 +00001/*
2 * Based on LiMon - BOOTP.
3 *
4 * Copyright 1994, 1995, 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
wdenk29e7f5a2004-03-12 00:14:09 +00008 * Copyright 2000-2004 Wolfgang Denk, wd@denx.de
wdenk3861aa52002-09-27 23:19:37 +00009 */
10
wdenk3861aa52002-09-27 23:19:37 +000011#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060012#include <bootstage.h>
wdenk3861aa52002-09-27 23:19:37 +000013#include <command.h>
Simon Glass6eaea252019-08-01 09:46:48 -060014#include <env.h>
Alexander Graf94c4b992016-05-06 21:01:01 +020015#include <efi_loader.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
wdenk3861aa52002-09-27 23:19:37 +000017#include <net.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <rand.h>
Simon Glass6f044982020-05-10 11:39:52 -060019#include <uuid.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020020#include <net/tftp.h>
wdenk3861aa52002-09-27 23:19:37 +000021#include "bootp.h"
Uri Mashiach4892d392017-01-19 10:51:45 +020022#ifdef CONFIG_LED_STATUS
wdenk3861aa52002-09-27 23:19:37 +000023#include <status_led.h>
24#endif
Kim Phillips576175b2012-07-05 13:19:32 +000025#ifdef CONFIG_BOOTP_RANDOM_DELAY
26#include "net_rand.h"
27#endif
wdenk3861aa52002-09-27 23:19:37 +000028
Joe Hershberger8f4b1352012-05-15 08:59:06 +000029#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
wdenk3861aa52002-09-27 23:19:37 +000030
Stephen Warren69e1e352014-07-25 17:30:48 -060031/*
32 * The timeout for the initial BOOTP/DHCP request used to be described by a
33 * counter of fixed-length timeout periods. TIMEOUT_COUNT represents
34 * that counter
35 *
36 * Now that the timeout periods are variable (exponential backoff and retry)
37 * we convert the timeout count to the absolute time it would have take to
38 * execute that many retries, and keep sending retry packets until that time
39 * is reached.
40 */
wdenk29e7f5a2004-03-12 00:14:09 +000041#ifndef CONFIG_NET_RETRY_COUNT
Joe Hershberger8f4b1352012-05-15 08:59:06 +000042# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenk3861aa52002-09-27 23:19:37 +000043#else
wdenk29e7f5a2004-03-12 00:14:09 +000044# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
wdenk3861aa52002-09-27 23:19:37 +000045#endif
Stephen Warren69e1e352014-07-25 17:30:48 -060046#define TIMEOUT_MS ((3 + (TIMEOUT_COUNT * 5)) * 1000)
wdenk3861aa52002-09-27 23:19:37 +000047
Joe Hershberger8f4b1352012-05-15 08:59:06 +000048#define PORT_BOOTPS 67 /* BOOTP server UDP port */
49#define PORT_BOOTPC 68 /* BOOTP client UDP port */
wdenk3861aa52002-09-27 23:19:37 +000050
Joe Hershberger8f4b1352012-05-15 08:59:06 +000051#ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
wdenk29e7f5a2004-03-12 00:14:09 +000052#define CONFIG_DHCP_MIN_EXT_LEN 64
wdenk3861aa52002-09-27 23:19:37 +000053#endif
54
Thierry Reding8977cda2014-08-19 10:21:24 +020055#ifndef CONFIG_BOOTP_ID_CACHE_SIZE
56#define CONFIG_BOOTP_ID_CACHE_SIZE 4
57#endif
58
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -050059u32 bootp_ids[CONFIG_BOOTP_ID_CACHE_SIZE];
Thierry Reding8977cda2014-08-19 10:21:24 +020060unsigned int bootp_num_ids;
Joe Hershberger2fe81a52015-04-08 01:41:09 -050061int bootp_try;
Stephen Warren69e1e352014-07-25 17:30:48 -060062ulong bootp_start;
63ulong bootp_timeout;
Joe Hershberger6d236432015-04-08 01:41:03 -050064char net_nis_domain[32] = {0,}; /* Our NIS domain */
65char net_hostname[32] = {0,}; /* Our hostname */
66char net_root_path[64] = {0,}; /* Our bootpath */
wdenk3861aa52002-09-27 23:19:37 +000067
Alexandre Messier15971322016-02-01 17:08:57 -050068static ulong time_taken_max;
69
Jon Loeliger54f35c22007-07-09 17:45:14 -050070#if defined(CONFIG_CMD_DHCP)
Kim Phillips40c2c032012-10-29 13:34:33 +000071static dhcp_state_t dhcp_state = INIT;
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -050072static u32 dhcp_leasetime;
Joe Hershberger5874dec2015-04-08 01:41:01 -050073static struct in_addr dhcp_server_ip;
Stefan Brüns345cb832015-09-04 00:31:48 +020074static u8 dhcp_option_overload;
75#define OVERLOAD_FILE 1
76#define OVERLOAD_SNAME 2
Joe Hershberger5874dec2015-04-08 01:41:01 -050077static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
78 unsigned src, unsigned len);
wdenk3861aa52002-09-27 23:19:37 +000079
80/* For Debug */
wdenkb02744a2003-04-05 00:53:31 +000081#if 0
82static char *dhcpmsg2str(int type)
wdenk3861aa52002-09-27 23:19:37 +000083{
84 switch (type) {
wdenk29e7f5a2004-03-12 00:14:09 +000085 case 1: return "DHCPDISCOVER"; break;
86 case 2: return "DHCPOFFER"; break;
87 case 3: return "DHCPREQUEST"; break;
88 case 4: return "DHCPDECLINE"; break;
89 case 5: return "DHCPACK"; break;
90 case 6: return "DHCPNACK"; break;
91 case 7: return "DHCPRELEASE"; break;
wdenk3861aa52002-09-27 23:19:37 +000092 default: return "UNKNOWN/INVALID MSG TYPE"; break;
93 }
94}
wdenkb02744a2003-04-05 00:53:31 +000095#endif
Jon Loeligera9807e52007-07-10 11:05:02 -050096#endif
wdenk3861aa52002-09-27 23:19:37 +000097
Thierry Reding8977cda2014-08-19 10:21:24 +020098static void bootp_add_id(ulong id)
99{
100 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
101 size_t size = sizeof(bootp_ids) - sizeof(id);
102
103 memmove(bootp_ids, &bootp_ids[1], size);
104 bootp_ids[bootp_num_ids - 1] = id;
105 } else {
106 bootp_ids[bootp_num_ids] = id;
107 bootp_num_ids++;
108 }
109}
110
111static bool bootp_match_id(ulong id)
112{
113 unsigned int i;
114
115 for (i = 0; i < bootp_num_ids; i++)
116 if (bootp_ids[i] == id)
117 return true;
118
119 return false;
120}
121
Stefan Brünsa48cd932015-08-27 23:53:26 +0200122static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
123 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000124{
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500125 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000126 int retval = 0;
127
128 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
129 retval = -1;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500130 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
wdenk3861aa52002-09-27 23:19:37 +0000131 retval = -2;
Stefan Brünsa48cd932015-08-27 23:53:26 +0200132 else if (bp->bp_op != OP_BOOTREPLY)
wdenk3861aa52002-09-27 23:19:37 +0000133 retval = -3;
wdenk3861aa52002-09-27 23:19:37 +0000134 else if (bp->bp_htype != HWT_ETHER)
135 retval = -4;
136 else if (bp->bp_hlen != HWL_ETHER)
137 retval = -5;
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500138 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
wdenk3861aa52002-09-27 23:19:37 +0000139 retval = -6;
Anton Perssonbf27a4c2016-03-17 09:38:21 +0100140 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0)
141 retval = -7;
wdenk3861aa52002-09-27 23:19:37 +0000142
Robin Getz9e0a4d62009-07-23 03:01:03 -0400143 debug("Filtering pkt = %d\n", retval);
wdenk3861aa52002-09-27 23:19:37 +0000144
145 return retval;
146}
147
148/*
149 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
150 */
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500151static void store_net_params(struct bootp_hdr *bp)
wdenk3861aa52002-09-27 23:19:37 +0000152{
Wilson Callan22bcd6e2007-07-28 10:56:13 -0400153#if !defined(CONFIG_BOOTP_SERVERIP)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500154 struct in_addr tmp_ip;
Alexander Graf427e6952018-06-15 10:29:28 +0200155 bool overwrite_serverip = true;
156
157#if defined(CONFIG_BOOTP_PREFER_SERVERIP)
158 overwrite_serverip = false;
159#endif
Joe Hershberger9d37a582012-05-23 07:59:18 +0000160
Joe Hershberger5874dec2015-04-08 01:41:01 -0500161 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
Alexander Graf427e6952018-06-15 10:29:28 +0200162 if (tmp_ip.s_addr != 0 && (overwrite_serverip || !net_server_ip.s_addr))
Joe Hershberger5874dec2015-04-08 01:41:01 -0500163 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500164 memcpy(net_server_ethaddr,
165 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
Stefan Brüns345cb832015-09-04 00:31:48 +0200166 if (
167#if defined(CONFIG_CMD_DHCP)
168 !(dhcp_option_overload & OVERLOAD_FILE) &&
169#endif
Alexander Graff43bf5d2018-06-15 10:29:27 +0200170 (strlen(bp->bp_file) > 0) &&
171 !net_boot_file_name_explicit) {
Joe Hershberger290c8992015-04-08 01:41:02 -0500172 copy_filename(net_boot_file_name, bp->bp_file,
173 sizeof(net_boot_file_name));
Stefan Brüns345cb832015-09-04 00:31:48 +0200174 }
wdenk3861aa52002-09-27 23:19:37 +0000175
Joe Hershberger290c8992015-04-08 01:41:02 -0500176 debug("net_boot_file_name: %s\n", net_boot_file_name);
wdenk3861aa52002-09-27 23:19:37 +0000177
178 /* Propagate to environment:
wdenk57b2d802003-06-27 21:31:46 +0000179 * don't delete exising entry when BOOTP / DHCP reply does
wdenk3861aa52002-09-27 23:19:37 +0000180 * not contain a new value
181 */
Joe Hershberger290c8992015-04-08 01:41:02 -0500182 if (*net_boot_file_name)
Simon Glass6a38e412017-08-03 12:22:09 -0600183 env_set("bootfile", net_boot_file_name);
Wu, Josha9c2cbd2014-11-18 13:07:08 +0800184#endif
Joe Hershberger5874dec2015-04-08 01:41:01 -0500185 net_copy_ip(&net_ip, &bp->bp_yiaddr);
wdenk3861aa52002-09-27 23:19:37 +0000186}
187
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000188static int truncate_sz(const char *name, int maxlen, int curlen)
wdenk3861aa52002-09-27 23:19:37 +0000189{
190 if (curlen >= maxlen) {
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000191 printf("*** WARNING: %s is too long (%d - max: %d)"
192 " - truncated\n", name, curlen, maxlen);
wdenk3861aa52002-09-27 23:19:37 +0000193 curlen = maxlen - 1;
194 }
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000195 return curlen;
wdenk3861aa52002-09-27 23:19:37 +0000196}
197
Jon Loeliger54f35c22007-07-09 17:45:14 -0500198#if !defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000199
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500200static void bootp_process_vendor_field(u8 *ext)
wdenk3861aa52002-09-27 23:19:37 +0000201{
wdenk29e7f5a2004-03-12 00:14:09 +0000202 int size = *(ext + 1);
wdenk3861aa52002-09-27 23:19:37 +0000203
Robin Getz9e0a4d62009-07-23 03:01:03 -0400204 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500205 *(ext + 1));
wdenk3861aa52002-09-27 23:19:37 +0000206
Joe Hershberger290c8992015-04-08 01:41:02 -0500207 net_boot_file_expected_size_in_blocks = 0;
wdenk3861aa52002-09-27 23:19:37 +0000208
wdenk29e7f5a2004-03-12 00:14:09 +0000209 switch (*ext) {
210 /* Fixed length fields */
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000211 case 1: /* Subnet mask */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500212 if (net_netmask.s_addr == 0)
213 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000214 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000215 case 2: /* Time offset - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000216 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000217 /* Variable length fields */
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000218 case 3: /* Gateways list */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500219 if (net_gateway.s_addr == 0)
220 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000221 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000222 case 4: /* Time server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000223 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000224 case 5: /* IEN-116 name server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000225 break;
226 case 6:
Joe Hershberger5874dec2015-04-08 01:41:01 -0500227 if (net_dns_server.s_addr == 0)
228 net_copy_ip(&net_dns_server,
229 (struct in_addr *)(ext + 2));
Jon Loeliger5336a762007-07-09 22:08:34 -0500230#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500231 if ((net_dns_server2.s_addr == 0) && (size > 4))
232 net_copy_ip(&net_dns_server2,
233 (struct in_addr *)(ext + 2 + 4));
stroesee0aadfb2003-08-28 14:17:32 +0000234#endif
wdenk3861aa52002-09-27 23:19:37 +0000235 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000236 case 7: /* Log server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000237 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000238 case 8: /* Cookie/Quote server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000239 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000240 case 9: /* LPR server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000241 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000242 case 10: /* Impress server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000243 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000244 case 11: /* RPL server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000245 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000246 case 12: /* Host name */
Joe Hershberger6d236432015-04-08 01:41:03 -0500247 if (net_hostname[0] == 0) {
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000248 size = truncate_sz("Host Name",
Joe Hershberger6d236432015-04-08 01:41:03 -0500249 sizeof(net_hostname), size);
250 memcpy(&net_hostname, ext + 2, size);
251 net_hostname[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000252 }
253 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000254 case 13: /* Boot file size */
wdenk3861aa52002-09-27 23:19:37 +0000255 if (size == 2)
Joe Hershberger290c8992015-04-08 01:41:02 -0500256 net_boot_file_expected_size_in_blocks =
257 ntohs(*(ushort *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000258 else if (size == 4)
Joe Hershberger290c8992015-04-08 01:41:02 -0500259 net_boot_file_expected_size_in_blocks =
260 ntohl(*(ulong *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000261 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000262 case 14: /* Merit dump file - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000263 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000264 case 15: /* Domain name - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000265 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000266 case 16: /* Swap server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000267 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000268 case 17: /* Root path */
Joe Hershberger6d236432015-04-08 01:41:03 -0500269 if (net_root_path[0] == 0) {
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000270 size = truncate_sz("Root Path",
Joe Hershberger6d236432015-04-08 01:41:03 -0500271 sizeof(net_root_path), size);
272 memcpy(&net_root_path, ext + 2, size);
273 net_root_path[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000274 }
275 break;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000276 case 18: /* Extension path - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000277 /*
wdenk57b2d802003-06-27 21:31:46 +0000278 * This can be used to send the information of the
279 * vendor area in another file that the client can
280 * access via TFTP.
wdenk3861aa52002-09-27 23:19:37 +0000281 */
282 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000283 /* IP host layer fields */
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000284 case 40: /* NIS Domain name */
Joe Hershberger6d236432015-04-08 01:41:03 -0500285 if (net_nis_domain[0] == 0) {
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000286 size = truncate_sz("NIS Domain Name",
Joe Hershberger6d236432015-04-08 01:41:03 -0500287 sizeof(net_nis_domain), size);
288 memcpy(&net_nis_domain, ext + 2, size);
289 net_nis_domain[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000290 }
291 break;
Luuk Paulussen6380e012011-05-16 18:29:19 +0000292#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
293 case 42: /* NTP server IP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500294 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
Luuk Paulussen6380e012011-05-16 18:29:19 +0000295 break;
296#endif
wdenk29e7f5a2004-03-12 00:14:09 +0000297 /* Application layer fields */
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000298 case 43: /* Vendor specific info - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000299 /*
wdenk57b2d802003-06-27 21:31:46 +0000300 * Binary information to exchange specific
301 * product information.
wdenk3861aa52002-09-27 23:19:37 +0000302 */
303 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000304 /* Reserved (custom) fields (128..254) */
305 }
wdenk3861aa52002-09-27 23:19:37 +0000306}
307
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500308static void bootp_process_vendor(u8 *ext, int size)
wdenk3861aa52002-09-27 23:19:37 +0000309{
wdenk29e7f5a2004-03-12 00:14:09 +0000310 u8 *end = ext + size;
wdenk3861aa52002-09-27 23:19:37 +0000311
Robin Getz9e0a4d62009-07-23 03:01:03 -0400312 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
wdenk3861aa52002-09-27 23:19:37 +0000313
wdenk29e7f5a2004-03-12 00:14:09 +0000314 while ((ext < end) && (*ext != 0xff)) {
315 if (*ext == 0) {
316 ext++;
317 } else {
318 u8 *opt = ext;
319
320 ext += ext[1] + 2;
321 if (ext <= end)
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500322 bootp_process_vendor_field(opt);
wdenk29e7f5a2004-03-12 00:14:09 +0000323 }
wdenk3861aa52002-09-27 23:19:37 +0000324 }
wdenk3861aa52002-09-27 23:19:37 +0000325
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000326 debug("[BOOTP] Received fields:\n");
Joe Hershberger5874dec2015-04-08 01:41:01 -0500327 if (net_netmask.s_addr)
328 debug("net_netmask : %pI4\n", &net_netmask);
wdenk3861aa52002-09-27 23:19:37 +0000329
Joe Hershberger5874dec2015-04-08 01:41:01 -0500330 if (net_gateway.s_addr)
331 debug("net_gateway : %pI4", &net_gateway);
wdenk3861aa52002-09-27 23:19:37 +0000332
Joe Hershberger290c8992015-04-08 01:41:02 -0500333 if (net_boot_file_expected_size_in_blocks)
334 debug("net_boot_file_expected_size_in_blocks : %d\n",
335 net_boot_file_expected_size_in_blocks);
wdenk3861aa52002-09-27 23:19:37 +0000336
Joe Hershberger6d236432015-04-08 01:41:03 -0500337 if (net_hostname[0])
338 debug("net_hostname : %s\n", net_hostname);
wdenk3861aa52002-09-27 23:19:37 +0000339
Joe Hershberger6d236432015-04-08 01:41:03 -0500340 if (net_root_path[0])
341 debug("net_root_path : %s\n", net_root_path);
wdenk3861aa52002-09-27 23:19:37 +0000342
Joe Hershberger6d236432015-04-08 01:41:03 -0500343 if (net_nis_domain[0])
344 debug("net_nis_domain : %s\n", net_nis_domain);
wdenk3861aa52002-09-27 23:19:37 +0000345
Luuk Paulussen6380e012011-05-16 18:29:19 +0000346#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
Chris Packham3a2ae812018-05-03 20:19:03 +1200347 if (net_ntp_server.s_addr)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500348 debug("net_ntp_server : %pI4\n", &net_ntp_server);
Luuk Paulussen6380e012011-05-16 18:29:19 +0000349#endif
wdenk3861aa52002-09-27 23:19:37 +0000350}
Simon Glassab068eb2011-06-13 16:13:12 -0700351
wdenk3861aa52002-09-27 23:19:37 +0000352/*
353 * Handle a BOOTP received packet.
354 */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500355static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
356 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000357{
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500358 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000359
Robin Getz9e0a4d62009-07-23 03:01:03 -0400360 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500361 src, dest, len, sizeof(struct bootp_hdr));
wdenk3861aa52002-09-27 23:19:37 +0000362
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500363 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000364
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000365 /* Filter out pkts we don't want */
Stefan Brünsa48cd932015-08-27 23:53:26 +0200366 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +0000367 return;
368
369 /*
wdenk29e7f5a2004-03-12 00:14:09 +0000370 * Got a good BOOTP reply. Copy the data into our variables.
wdenk3861aa52002-09-27 23:19:37 +0000371 */
Uri Mashiach4892d392017-01-19 10:51:45 +0200372#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
373 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF);
wdenk3861aa52002-09-27 23:19:37 +0000374#endif
375
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500376 store_net_params(bp); /* Store net parameters from reply */
wdenk3861aa52002-09-27 23:19:37 +0000377
378 /* Retrieve extended information (we must parse the vendor area) */
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500379 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500380 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
wdenk3861aa52002-09-27 23:19:37 +0000381
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500382 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass768cbf02011-12-10 11:08:06 +0000383 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +0000384
Robin Getz9e0a4d62009-07-23 03:01:03 -0400385 debug("Got good BOOTP\n");
wdenk3861aa52002-09-27 23:19:37 +0000386
Simon Glass5234ad12011-10-27 06:24:32 +0000387 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +0000388}
Jon Loeligera9807e52007-07-10 11:05:02 -0500389#endif
wdenk3861aa52002-09-27 23:19:37 +0000390
391/*
392 * Timeout on BOOTP/DHCP request.
393 */
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500394static void bootp_timeout_handler(void)
wdenk3861aa52002-09-27 23:19:37 +0000395{
Stephen Warren69e1e352014-07-25 17:30:48 -0600396 ulong time_taken = get_timer(bootp_start);
397
Alexandre Messier15971322016-02-01 17:08:57 -0500398 if (time_taken >= time_taken_max) {
Joe Hershberger8ca7fa02012-05-23 07:59:19 +0000399#ifdef CONFIG_BOOTP_MAY_FAIL
Joe Hershberger724cc6a2017-11-07 18:13:40 -0800400 char *ethrotate;
401
402 ethrotate = env_get("ethrotate");
403 if ((ethrotate && strcmp(ethrotate, "no") == 0) ||
404 net_restart_wrap) {
405 puts("\nRetry time exceeded\n");
406 net_set_state(NETLOOP_FAIL);
407 } else
Joe Hershberger8ca7fa02012-05-23 07:59:19 +0000408#endif
Joe Hershberger724cc6a2017-11-07 18:13:40 -0800409 {
410 puts("\nRetry time exceeded; starting again\n");
411 net_start_again();
412 }
wdenk3861aa52002-09-27 23:19:37 +0000413 } else {
Stephen Warren69e1e352014-07-25 17:30:48 -0600414 bootp_timeout *= 2;
Thierry Reding8977cda2014-08-19 10:21:24 +0200415 if (bootp_timeout > 2000)
416 bootp_timeout = 2000;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500417 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500418 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +0000419 }
420}
421
Ilya Yanok30876582012-09-17 10:26:25 +0000422#define put_vci(e, str) \
423 do { \
424 size_t vci_strlen = strlen(str); \
425 *e++ = 60; /* Vendor Class Identifier */ \
426 *e++ = vci_strlen; \
427 memcpy(e, str, vci_strlen); \
428 e += vci_strlen; \
429 } while (0)
430
Alexander Grafea73a042016-05-06 21:01:02 +0200431static u8 *add_vci(u8 *e)
432{
Alexander Graf3661aac2016-05-06 21:01:07 +0200433 char *vci = NULL;
Simon Glass64b723f2017-08-03 12:22:12 -0600434 char *env_vci = env_get("bootp_vci");
Alexander Graf3661aac2016-05-06 21:01:07 +0200435
Alexander Grafea73a042016-05-06 21:01:02 +0200436#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
Alexander Graf3661aac2016-05-06 21:01:07 +0200437 vci = CONFIG_SPL_NET_VCI_STRING;
Alexander Grafea73a042016-05-06 21:01:02 +0200438#elif defined(CONFIG_BOOTP_VCI_STRING)
Alexander Graf3661aac2016-05-06 21:01:07 +0200439 vci = CONFIG_BOOTP_VCI_STRING;
Alexander Grafea73a042016-05-06 21:01:02 +0200440#endif
441
Alexander Graf3661aac2016-05-06 21:01:07 +0200442 if (env_vci)
443 vci = env_vci;
444
445 if (vci)
446 put_vci(e, vci);
447
Alexander Grafea73a042016-05-06 21:01:02 +0200448 return e;
449}
450
wdenk3861aa52002-09-27 23:19:37 +0000451/*
452 * Initialize BOOTP extension fields in the request.
453 */
Jon Loeliger54f35c22007-07-09 17:45:14 -0500454#if defined(CONFIG_CMD_DHCP)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500455static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
456 struct in_addr requested_ip)
wdenk3861aa52002-09-27 23:19:37 +0000457{
wdenk29e7f5a2004-03-12 00:14:09 +0000458 u8 *start = e;
459 u8 *cnt;
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200460#ifdef CONFIG_LIB_UUID
Jason Hobbsea3202812011-08-31 05:37:31 +0000461 char *uuid;
Jason Hobbsea3202812011-08-31 05:37:31 +0000462#endif
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200463 int clientarch = -1;
wdenk29e7f5a2004-03-12 00:14:09 +0000464
Jon Loeliger5336a762007-07-09 22:08:34 -0500465#if defined(CONFIG_BOOTP_VENDOREX)
wdenk29e7f5a2004-03-12 00:14:09 +0000466 u8 *x;
wdenk3861aa52002-09-27 23:19:37 +0000467#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500468#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200469 char *hostname;
stroesee0aadfb2003-08-28 14:17:32 +0000470#endif
wdenk3861aa52002-09-27 23:19:37 +0000471
wdenk29e7f5a2004-03-12 00:14:09 +0000472 *e++ = 99; /* RFC1048 Magic Cookie */
473 *e++ = 130;
474 *e++ = 83;
475 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000476
wdenk29e7f5a2004-03-12 00:14:09 +0000477 *e++ = 53; /* DHCP Message Type */
478 *e++ = 1;
479 *e++ = message_type;
wdenk3861aa52002-09-27 23:19:37 +0000480
wdenk29e7f5a2004-03-12 00:14:09 +0000481 *e++ = 57; /* Maximum DHCP Message Size */
482 *e++ = 2;
Joe Hershbergerceba4472012-05-23 07:58:14 +0000483 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
484 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
wdenk3861aa52002-09-27 23:19:37 +0000485
Joe Hershberger5874dec2015-04-08 01:41:01 -0500486 if (server_ip.s_addr) {
487 int tmp = ntohl(server_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000488
wdenk29e7f5a2004-03-12 00:14:09 +0000489 *e++ = 54; /* ServerID */
490 *e++ = 4;
491 *e++ = tmp >> 24;
492 *e++ = tmp >> 16;
493 *e++ = tmp >> 8;
494 *e++ = tmp & 0xff;
495 }
wdenk3861aa52002-09-27 23:19:37 +0000496
Joe Hershberger5874dec2015-04-08 01:41:01 -0500497 if (requested_ip.s_addr) {
498 int tmp = ntohl(requested_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000499
wdenk29e7f5a2004-03-12 00:14:09 +0000500 *e++ = 50; /* Requested IP */
501 *e++ = 4;
502 *e++ = tmp >> 24;
503 *e++ = tmp >> 16;
504 *e++ = tmp >> 8;
505 *e++ = tmp & 0xff;
506 }
Jon Loeliger5336a762007-07-09 22:08:34 -0500507#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Simon Glass64b723f2017-08-03 12:22:12 -0600508 hostname = env_get("hostname");
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000509 if (hostname) {
510 int hostnamelen = strlen(hostname);
wdenk29e7f5a2004-03-12 00:14:09 +0000511
512 *e++ = 12; /* Hostname */
513 *e++ = hostnamelen;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000514 memcpy(e, hostname, hostnamelen);
wdenk29e7f5a2004-03-12 00:14:09 +0000515 e += hostnamelen;
516 }
Jason Hobbsea3202812011-08-31 05:37:31 +0000517#endif
518
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200519#ifdef CONFIG_BOOTP_PXE_CLIENTARCH
Jason Hobbsea3202812011-08-31 05:37:31 +0000520 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200521#endif
522
Simon Glass64b723f2017-08-03 12:22:12 -0600523 if (env_get("bootp_arch"))
Simon Glass22c34c22017-08-03 12:22:13 -0600524 clientarch = env_get_ulong("bootp_arch", 16, clientarch);
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200525
526 if (clientarch > 0) {
527 *e++ = 93; /* Client System Architecture */
528 *e++ = 2;
529 *e++ = (clientarch >> 8) & 0xff;
530 *e++ = clientarch & 0xff;
531 }
Jason Hobbsea3202812011-08-31 05:37:31 +0000532
533 *e++ = 94; /* Client Network Interface Identifier */
534 *e++ = 3;
535 *e++ = 1; /* type field for UNDI */
536 *e++ = 0; /* major revision */
537 *e++ = 0; /* minor revision */
538
Alexander Graf3d5fc4e2016-05-12 15:51:45 +0200539#ifdef CONFIG_LIB_UUID
Simon Glass64b723f2017-08-03 12:22:12 -0600540 uuid = env_get("pxeuuid");
Jason Hobbsea3202812011-08-31 05:37:31 +0000541
542 if (uuid) {
543 if (uuid_str_valid(uuid)) {
544 *e++ = 97; /* Client Machine Identifier */
545 *e++ = 17;
546 *e++ = 0; /* type 0 - UUID */
547
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200548 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
Jason Hobbsea3202812011-08-31 05:37:31 +0000549 e += 16;
550 } else {
551 printf("Invalid pxeuuid: %s\n", uuid);
552 }
553 }
Ilya Yanok30876582012-09-17 10:26:25 +0000554#endif
Jason Hobbsea3202812011-08-31 05:37:31 +0000555
Alexander Grafea73a042016-05-06 21:01:02 +0200556 e = add_vci(e);
stroesee0aadfb2003-08-28 14:17:32 +0000557
Jon Loeliger5336a762007-07-09 22:08:34 -0500558#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000559 x = dhcp_vendorex_prep(e);
560 if (x)
wdenk29e7f5a2004-03-12 00:14:09 +0000561 return x - start;
wdenk3861aa52002-09-27 23:19:37 +0000562#endif
563
wdenk29e7f5a2004-03-12 00:14:09 +0000564 *e++ = 55; /* Parameter Request List */
565 cnt = e++; /* Pointer to count of requested items */
566 *cnt = 0;
Jon Loeliger5336a762007-07-09 22:08:34 -0500567#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk29e7f5a2004-03-12 00:14:09 +0000568 *e++ = 1; /* Subnet Mask */
569 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000570#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500571#if defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkb4ad9622005-04-01 00:25:43 +0000572 *e++ = 2;
573 *cnt += 1;
574#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500575#if defined(CONFIG_BOOTP_GATEWAY)
wdenk29e7f5a2004-03-12 00:14:09 +0000576 *e++ = 3; /* Router Option */
577 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000578#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500579#if defined(CONFIG_BOOTP_DNS)
wdenk29e7f5a2004-03-12 00:14:09 +0000580 *e++ = 6; /* DNS Server(s) */
581 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000582#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500583#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk29e7f5a2004-03-12 00:14:09 +0000584 *e++ = 12; /* Hostname */
585 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000586#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500587#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk29e7f5a2004-03-12 00:14:09 +0000588 *e++ = 13; /* Boot File Size */
589 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000590#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500591#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk29e7f5a2004-03-12 00:14:09 +0000592 *e++ = 17; /* Boot path */
593 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000594#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500595#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk29e7f5a2004-03-12 00:14:09 +0000596 *e++ = 40; /* NIS Domain name request */
597 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000598#endif
Jon Loeliger5336a762007-07-09 22:08:34 -0500599#if defined(CONFIG_BOOTP_NTPSERVER)
wdenkb4ad9622005-04-01 00:25:43 +0000600 *e++ = 42;
601 *cnt += 1;
602#endif
Jason Liu1c7dca52010-11-14 12:23:09 +0800603 /* no options, so back up to avoid sending an empty request list */
604 if (*cnt == 0)
605 e -= 2;
606
wdenk29e7f5a2004-03-12 00:14:09 +0000607 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000608
wdenk29e7f5a2004-03-12 00:14:09 +0000609 /* Pad to minimal length */
wdenk3861aa52002-09-27 23:19:37 +0000610#ifdef CONFIG_DHCP_MIN_EXT_LEN
Simon Glassa0978eb2011-02-02 15:03:28 -0800611 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
wdenk29e7f5a2004-03-12 00:14:09 +0000612 *e++ = 0;
wdenk3861aa52002-09-27 23:19:37 +0000613#endif
614
wdenk29e7f5a2004-03-12 00:14:09 +0000615 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000616}
617
Jon Loeligera9807e52007-07-10 11:05:02 -0500618#else
wdenk3861aa52002-09-27 23:19:37 +0000619/*
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000620 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
wdenk3861aa52002-09-27 23:19:37 +0000621 */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500622static int bootp_extended(u8 *e)
wdenk3861aa52002-09-27 23:19:37 +0000623{
wdenk29e7f5a2004-03-12 00:14:09 +0000624 u8 *start = e;
wdenk3861aa52002-09-27 23:19:37 +0000625
wdenk29e7f5a2004-03-12 00:14:09 +0000626 *e++ = 99; /* RFC1048 Magic Cookie */
627 *e++ = 130;
628 *e++ = 83;
629 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000630
Jon Loeliger54f35c22007-07-09 17:45:14 -0500631#if defined(CONFIG_CMD_DHCP)
wdenk29e7f5a2004-03-12 00:14:09 +0000632 *e++ = 53; /* DHCP Message Type */
633 *e++ = 1;
634 *e++ = DHCP_DISCOVER;
wdenk3861aa52002-09-27 23:19:37 +0000635
wdenk29e7f5a2004-03-12 00:14:09 +0000636 *e++ = 57; /* Maximum DHCP Message Size */
637 *e++ = 2;
Joe Hershbergerceba4472012-05-23 07:58:14 +0000638 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
639 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
Jon Loeligera9807e52007-07-10 11:05:02 -0500640#endif
wdenk3861aa52002-09-27 23:19:37 +0000641
Alexander Grafea73a042016-05-06 21:01:02 +0200642 add_vci(e);
Ilya Yanok30876582012-09-17 10:26:25 +0000643
Jon Loeliger5336a762007-07-09 22:08:34 -0500644#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk29e7f5a2004-03-12 00:14:09 +0000645 *e++ = 1; /* Subnet mask request */
646 *e++ = 4;
647 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000648#endif
649
Jon Loeliger5336a762007-07-09 22:08:34 -0500650#if defined(CONFIG_BOOTP_GATEWAY)
wdenk29e7f5a2004-03-12 00:14:09 +0000651 *e++ = 3; /* Default gateway request */
652 *e++ = 4;
653 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000654#endif
655
Jon Loeliger5336a762007-07-09 22:08:34 -0500656#if defined(CONFIG_BOOTP_DNS)
wdenk29e7f5a2004-03-12 00:14:09 +0000657 *e++ = 6; /* Domain Name Server */
658 *e++ = 4;
659 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000660#endif
661
Jon Loeliger5336a762007-07-09 22:08:34 -0500662#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk29e7f5a2004-03-12 00:14:09 +0000663 *e++ = 12; /* Host name request */
664 *e++ = 32;
665 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000666#endif
667
Jon Loeliger5336a762007-07-09 22:08:34 -0500668#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk29e7f5a2004-03-12 00:14:09 +0000669 *e++ = 13; /* Boot file size */
670 *e++ = 2;
671 e += 2;
wdenk3861aa52002-09-27 23:19:37 +0000672#endif
673
Jon Loeliger5336a762007-07-09 22:08:34 -0500674#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk29e7f5a2004-03-12 00:14:09 +0000675 *e++ = 17; /* Boot path */
676 *e++ = 32;
677 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000678#endif
679
Jon Loeliger5336a762007-07-09 22:08:34 -0500680#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk29e7f5a2004-03-12 00:14:09 +0000681 *e++ = 40; /* NIS Domain name request */
682 *e++ = 32;
683 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000684#endif
Luuk Paulussen6380e012011-05-16 18:29:19 +0000685#if defined(CONFIG_BOOTP_NTPSERVER)
686 *e++ = 42;
687 *e++ = 4;
688 e += 4;
689#endif
wdenk3861aa52002-09-27 23:19:37 +0000690
wdenk29e7f5a2004-03-12 00:14:09 +0000691 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000692
Andre Renaud23298cd2016-05-05 07:28:08 -0600693 /*
694 * If nothing in list, remove it altogether. Some DHCP servers get
695 * upset by this minor faux pas and do not respond at all.
696 */
697 if (e == start + 3) {
698 printf("*** Warning: no DHCP options requested\n");
699 e -= 3;
700 }
701
wdenk29e7f5a2004-03-12 00:14:09 +0000702 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000703}
Jon Loeligera9807e52007-07-10 11:05:02 -0500704#endif
wdenk3861aa52002-09-27 23:19:37 +0000705
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500706void bootp_reset(void)
Stephen Warren69e1e352014-07-25 17:30:48 -0600707{
Thierry Reding8977cda2014-08-19 10:21:24 +0200708 bootp_num_ids = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500709 bootp_try = 0;
Stephen Warren69e1e352014-07-25 17:30:48 -0600710 bootp_start = get_timer(0);
Thierry Reding8977cda2014-08-19 10:21:24 +0200711 bootp_timeout = 250;
Stephen Warren69e1e352014-07-25 17:30:48 -0600712}
713
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500714void bootp_request(void)
wdenk3861aa52002-09-27 23:19:37 +0000715{
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000716 uchar *pkt, *iphdr;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500717 struct bootp_hdr *bp;
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +0000718 int extlen, pktlen, iplen;
719 int eth_hdr_size;
Joe Hershberger797f2c52012-05-23 07:57:58 +0000720#ifdef CONFIG_BOOTP_RANDOM_DELAY
Pavel Machek764c29d2014-07-11 11:39:37 +0200721 ulong rand_ms;
Joe Hershberger797f2c52012-05-23 07:57:58 +0000722#endif
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500723 u32 bootp_id;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500724 struct in_addr zero_ip;
725 struct in_addr bcast_ip;
Alexandre Messier15971322016-02-01 17:08:57 -0500726 char *ep; /* Environment pointer */
wdenk3861aa52002-09-27 23:19:37 +0000727
Simon Glass768cbf02011-12-10 11:08:06 +0000728 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
Jon Loeliger54f35c22007-07-09 17:45:14 -0500729#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000730 dhcp_state = INIT;
731#endif
732
Simon Glass64b723f2017-08-03 12:22:12 -0600733 ep = env_get("bootpretryperiod");
Alexandre Messier15971322016-02-01 17:08:57 -0500734 if (ep != NULL)
735 time_taken_max = simple_strtoul(ep, NULL, 10);
736 else
737 time_taken_max = TIMEOUT_MS;
738
wdenk3861aa52002-09-27 23:19:37 +0000739#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500740 if (bootp_try == 0)
Joe Hershberger797f2c52012-05-23 07:57:58 +0000741 srand_mac();
wdenk3861aa52002-09-27 23:19:37 +0000742
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500743 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
744 rand_ms = rand() >> (22 - bootp_try);
Joe Hershberger797f2c52012-05-23 07:57:58 +0000745 else /* After 3rd BOOTP request max 8192 * 1ms */
746 rand_ms = rand() >> 19;
wdenk3861aa52002-09-27 23:19:37 +0000747
Joe Hershberger797f2c52012-05-23 07:57:58 +0000748 printf("Random delay: %ld ms...\n", rand_ms);
Pavel Machek764c29d2014-07-11 11:39:37 +0200749 mdelay(rand_ms);
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000750
wdenk3861aa52002-09-27 23:19:37 +0000751#endif /* CONFIG_BOOTP_RANDOM_DELAY */
752
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500753 printf("BOOTP broadcast %d\n", ++bootp_try);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500754 pkt = net_tx_packet;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000755 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +0000756
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500757 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +0000758 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +0000759
760 /*
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000761 * Next line results in incorrect packet size being transmitted,
762 * resulting in errors in some DHCP servers, reporting missing bytes.
763 * Size must be set in packet header after extension length has been
764 * determined.
wdenk3861aa52002-09-27 23:19:37 +0000765 * C. Hallinan, DS4.COM, Inc.
766 */
Joe Hershberger2ed5b492012-05-23 07:59:07 +0000767 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500768 sizeof (struct bootp_hdr)); */
Joe Hershberger2ed5b492012-05-23 07:59:07 +0000769 iphdr = pkt; /* We need this later for net_set_udp_header() */
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000770 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000771
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500772 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000773 bp->bp_op = OP_BOOTREQUEST;
774 bp->bp_htype = HWT_ETHER;
775 bp->bp_hlen = HWL_ETHER;
776 bp->bp_hops = 0;
Stefan Brüns2eb25562015-08-27 23:57:18 +0200777 /*
778 * according to RFC1542, should be 0 on first request, secs since
779 * first request otherwise
780 */
781 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger5874dec2015-04-08 01:41:01 -0500782 zero_ip.s_addr = 0;
783 net_write_ip(&bp->bp_ciaddr, zero_ip);
784 net_write_ip(&bp->bp_yiaddr, zero_ip);
785 net_write_ip(&bp->bp_siaddr, zero_ip);
786 net_write_ip(&bp->bp_giaddr, zero_ip);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500787 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Joe Hershberger290c8992015-04-08 01:41:02 -0500788 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +0000789
790 /* Request additional information from the BOOTP/DHCP server */
Jon Loeliger54f35c22007-07-09 17:45:14 -0500791#if defined(CONFIG_CMD_DHCP)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500792 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
793 zero_ip);
wdenk3861aa52002-09-27 23:19:37 +0000794#else
Joe Hershberger5874dec2015-04-08 01:41:01 -0500795 extlen = bootp_extended((u8 *)bp->bp_vend);
Jon Loeligera9807e52007-07-10 11:05:02 -0500796#endif
wdenk3861aa52002-09-27 23:19:37 +0000797
798 /*
799 * Bootp ID is the lower 4 bytes of our ethernet address
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200800 * plus the current time in ms.
wdenk3861aa52002-09-27 23:19:37 +0000801 */
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500802 bootp_id = ((u32)net_ethaddr[2] << 24)
803 | ((u32)net_ethaddr[3] << 16)
804 | ((u32)net_ethaddr[4] << 8)
805 | (u32)net_ethaddr[5];
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500806 bootp_id += get_timer(0);
807 bootp_id = htonl(bootp_id);
808 bootp_add_id(bootp_id);
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500809 net_copy_u32(&bp->bp_id, &bootp_id);
wdenk3861aa52002-09-27 23:19:37 +0000810
811 /*
812 * Calculate proper packet lengths taking into account the
813 * variable size of the options field
814 */
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +0000815 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
816 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500817 bcast_ip.s_addr = 0xFFFFFFFFL;
818 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500819 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
wdenk3861aa52002-09-27 23:19:37 +0000820
Jon Loeliger54f35c22007-07-09 17:45:14 -0500821#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000822 dhcp_state = SELECTING;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500823 net_set_udp_handler(dhcp_handler);
wdenk3861aa52002-09-27 23:19:37 +0000824#else
Joe Hershberger5874dec2015-04-08 01:41:01 -0500825 net_set_udp_handler(bootp_handler);
Jon Loeligera9807e52007-07-10 11:05:02 -0500826#endif
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500827 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +0000828}
829
Jon Loeliger54f35c22007-07-09 17:45:14 -0500830#if defined(CONFIG_CMD_DHCP)
Stefan Brüns79f724c2015-09-04 00:31:49 +0200831static void dhcp_process_options(uchar *popt, uchar *end)
wdenk3861aa52002-09-27 23:19:37 +0000832{
wdenk3861aa52002-09-27 23:19:37 +0000833 int oplen, size;
Wolfgang Denk2b184222009-09-11 09:05:32 +0200834#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
835 int *to_ptr;
836#endif
wdenk3861aa52002-09-27 23:19:37 +0000837
wdenk29e7f5a2004-03-12 00:14:09 +0000838 while (popt < end && *popt != 0xff) {
wdenk3861aa52002-09-27 23:19:37 +0000839 oplen = *(popt + 1);
wdenk29e7f5a2004-03-12 00:14:09 +0000840 switch (*popt) {
Stefan Brüns44318292015-08-28 10:15:54 +0200841 case 0:
842 oplen = -1; /* Pad omits len byte */
843 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000844 case 1:
Joe Hershberger5874dec2015-04-08 01:41:01 -0500845 net_copy_ip(&net_netmask, (popt + 2));
wdenk29e7f5a2004-03-12 00:14:09 +0000846 break;
Jon Loeliger5336a762007-07-09 22:08:34 -0500847#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkb4ad9622005-04-01 00:25:43 +0000848 case 2: /* Time offset */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500849 to_ptr = &net_ntp_time_offset;
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500850 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500851 net_ntp_time_offset = ntohl(net_ntp_time_offset);
wdenkb4ad9622005-04-01 00:25:43 +0000852 break;
853#endif
wdenk29e7f5a2004-03-12 00:14:09 +0000854 case 3:
Joe Hershberger5874dec2015-04-08 01:41:01 -0500855 net_copy_ip(&net_gateway, (popt + 2));
wdenk29e7f5a2004-03-12 00:14:09 +0000856 break;
857 case 6:
Joe Hershberger5874dec2015-04-08 01:41:01 -0500858 net_copy_ip(&net_dns_server, (popt + 2));
Jon Loeliger5336a762007-07-09 22:08:34 -0500859#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000860 if (*(popt + 1) > 4)
Joe Hershberger5874dec2015-04-08 01:41:01 -0500861 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
stroesee0aadfb2003-08-28 14:17:32 +0000862#endif
wdenk29e7f5a2004-03-12 00:14:09 +0000863 break;
864 case 12:
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000865 size = truncate_sz("Host Name",
Joe Hershberger6d236432015-04-08 01:41:03 -0500866 sizeof(net_hostname), oplen);
867 memcpy(&net_hostname, popt + 2, size);
868 net_hostname[size] = 0;
wdenk29e7f5a2004-03-12 00:14:09 +0000869 break;
870 case 15: /* Ignore Domain Name Option */
871 break;
872 case 17:
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000873 size = truncate_sz("Root Path",
Joe Hershberger6d236432015-04-08 01:41:03 -0500874 sizeof(net_root_path), oplen);
875 memcpy(&net_root_path, popt + 2, size);
876 net_root_path[size] = 0;
wdenk29e7f5a2004-03-12 00:14:09 +0000877 break;
Brian Rzycki5a672a22012-09-11 09:22:53 +0000878 case 28: /* Ignore Broadcast Address Option */
879 break;
Jon Loeliger5336a762007-07-09 22:08:34 -0500880#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
wdenkb4ad9622005-04-01 00:25:43 +0000881 case 42: /* NTP server IP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500882 net_copy_ip(&net_ntp_server, (popt + 2));
wdenkb4ad9622005-04-01 00:25:43 +0000883 break;
884#endif
wdenk29e7f5a2004-03-12 00:14:09 +0000885 case 51:
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500886 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
wdenk29e7f5a2004-03-12 00:14:09 +0000887 break;
Stefan Brüns345cb832015-09-04 00:31:48 +0200888 case 52:
889 dhcp_option_overload = popt[2];
890 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000891 case 53: /* Ignore Message Type Option */
892 break;
893 case 54:
Joe Hershberger5874dec2015-04-08 01:41:01 -0500894 net_copy_ip(&dhcp_server_ip, (popt + 2));
wdenk29e7f5a2004-03-12 00:14:09 +0000895 break;
896 case 58: /* Ignore Renewal Time Option */
897 break;
898 case 59: /* Ignore Rebinding Time Option */
899 break;
Wolfgang Denk012429c2006-03-12 18:26:46 +0100900 case 66: /* Ignore TFTP server name */
901 break;
Stefan Brüns345cb832015-09-04 00:31:48 +0200902 case 67: /* Bootfile option */
Alexander Graff43bf5d2018-06-15 10:29:27 +0200903 if (!net_boot_file_name_explicit) {
904 size = truncate_sz("Bootfile",
905 sizeof(net_boot_file_name),
906 oplen);
907 memcpy(&net_boot_file_name, popt + 2, size);
908 net_boot_file_name[size] = 0;
909 }
Wolfgang Denk012429c2006-03-12 18:26:46 +0100910 break;
wdenk29e7f5a2004-03-12 00:14:09 +0000911 default:
Jon Loeliger5336a762007-07-09 22:08:34 -0500912#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000913 if (dhcp_vendorex_proc(popt))
wdenk57b2d802003-06-27 21:31:46 +0000914 break;
wdenk3861aa52002-09-27 23:19:37 +0000915#endif
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000916 printf("*** Unhandled DHCP Option in OFFER/ACK:"
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500917 " %d\n", *popt);
wdenk29e7f5a2004-03-12 00:14:09 +0000918 break;
wdenk3861aa52002-09-27 23:19:37 +0000919 }
920 popt += oplen + 2; /* Process next option */
921 }
922}
923
Stefan Brüns79f724c2015-09-04 00:31:49 +0200924static void dhcp_packet_process_options(struct bootp_hdr *bp)
925{
926 uchar *popt = (uchar *)&bp->bp_vend[4];
927 uchar *end = popt + BOOTP_HDR_SIZE;
928
929 if (net_read_u32((u32 *)&bp->bp_vend[0]) != htonl(BOOTP_VENDOR_MAGIC))
930 return;
931
932 dhcp_option_overload = 0;
933
934 /*
935 * The 'options' field MUST be interpreted first, 'file' next,
936 * 'sname' last.
937 */
938 dhcp_process_options(popt, end);
939
940 if (dhcp_option_overload & OVERLOAD_FILE) {
941 popt = (uchar *)bp->bp_file;
942 end = popt + sizeof(bp->bp_file);
943 dhcp_process_options(popt, end);
944 }
945
946 if (dhcp_option_overload & OVERLOAD_SNAME) {
947 popt = (uchar *)bp->bp_sname;
948 end = popt + sizeof(bp->bp_sname);
949 dhcp_process_options(popt, end);
950 }
951}
952
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500953static int dhcp_message_type(unsigned char *popt)
wdenk3861aa52002-09-27 23:19:37 +0000954{
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -0500955 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
wdenk3861aa52002-09-27 23:19:37 +0000956 return -1;
957
958 popt += 4;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000959 while (*popt != 0xff) {
960 if (*popt == 53) /* DHCP Message Type */
wdenk3861aa52002-09-27 23:19:37 +0000961 return *(popt + 2);
Stefan Brüns44318292015-08-28 10:15:54 +0200962 if (*popt == 0) {
963 /* Pad */
964 popt += 1;
965 } else {
966 /* Scan through all options */
967 popt += *(popt + 1) + 2;
968 }
wdenk3861aa52002-09-27 23:19:37 +0000969 }
970 return -1;
971}
972
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500973static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
wdenk3861aa52002-09-27 23:19:37 +0000974{
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000975 uchar *pkt, *iphdr;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500976 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000977 int pktlen, iplen, extlen;
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +0000978 int eth_hdr_size;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500979 struct in_addr offered_ip;
980 struct in_addr zero_ip;
981 struct in_addr bcast_ip;
wdenk3861aa52002-09-27 23:19:37 +0000982
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500983 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500984 pkt = net_tx_packet;
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000985 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +0000986
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500987 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +0000988 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +0000989
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000990 iphdr = pkt; /* We'll need this later to set proper pkt size */
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000991 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000992
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500993 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000994 bp->bp_op = OP_BOOTREQUEST;
995 bp->bp_htype = HWT_ETHER;
996 bp->bp_hlen = HWL_ETHER;
997 bp->bp_hops = 0;
Stefan Brüns2eb25562015-08-27 23:57:18 +0200998 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger8f4b1352012-05-15 08:59:06 +0000999 /* Do not set the client IP, your IP, or server IP yet, since it
1000 * hasn't been ACK'ed by the server yet */
Justin Flammia01f256b2007-10-29 17:40:35 -04001001
Wolfgang Denk8a933fb2006-10-12 00:01:08 +02001002 /*
Wolfgang Denk68e83a82006-10-09 01:26:14 +02001003 * RFC3046 requires Relay Agents to discard packets with
1004 * nonzero and offered giaddr
1005 */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001006 zero_ip.s_addr = 0;
1007 net_write_ip(&bp->bp_giaddr, zero_ip);
Wolfgang Denk68e83a82006-10-09 01:26:14 +02001008
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001009 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Alexandre Messierad28a312016-01-28 11:19:02 -05001010 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +00001011
1012 /*
1013 * ID is the id of the OFFER packet
1014 */
1015
Sergey Temerkhanovbf5ad642015-04-08 01:41:22 -05001016 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
wdenk3861aa52002-09-27 23:19:37 +00001017
1018 /*
1019 * Copy options from OFFER packet if present
1020 */
Justin Flammia01f256b2007-10-29 17:40:35 -04001021
1022 /* Copy offered IP into the parameters request list */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001023 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
1024 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
1025 dhcp_server_ip, offered_ip);
wdenk3861aa52002-09-27 23:19:37 +00001026
Joe Hershbergerdb3e6e42012-05-23 07:59:10 +00001027 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
1028 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001029 bcast_ip.s_addr = 0xFFFFFFFFL;
1030 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
wdenk3861aa52002-09-27 23:19:37 +00001031
Aras Vaichas72aa3f32008-03-26 09:43:57 +11001032#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
1033 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
1034#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
Joe Hershbergerb1e94762012-05-23 07:59:11 +00001035 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001036 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +00001037}
1038
1039/*
1040 * Handle DHCP received packets.
1041 */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001042static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
1043 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +00001044{
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001045 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +00001046
Robin Getz9e0a4d62009-07-23 03:01:03 -04001047 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001048 src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001049
Joe Hershberger8f4b1352012-05-15 08:59:06 +00001050 /* Filter out pkts we don't want */
Stefan Brünsa48cd932015-08-27 23:53:26 +02001051 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +00001052 return;
1053
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001054 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
1055 "%d\n", src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001056
Peng Fan67e72e92016-01-07 15:28:23 +08001057 if (net_read_ip(&bp->bp_yiaddr).s_addr == 0)
1058 return;
1059
wdenk3861aa52002-09-27 23:19:37 +00001060 switch (dhcp_state) {
1061 case SELECTING:
1062 /*
1063 * Wait an appropriate time for any potential DHCPOFFER packets
Joe Hershberger8f4b1352012-05-15 08:59:06 +00001064 * to arrive. Then select one, and generate DHCPREQUEST
1065 * response. If filename is in format we recognize, assume it
1066 * is a valid OFFER from a server we want.
wdenk3861aa52002-09-27 23:19:37 +00001067 */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001068 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001069#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001070 if (strncmp(bp->bp_file,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001071 CONFIG_SYS_BOOTFILE_PREFIX,
Joe Hershberger8f4b1352012-05-15 08:59:06 +00001072 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001073#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
Stefan Brüns79f724c2015-09-04 00:31:49 +02001074 dhcp_packet_process_options(bp);
Alexander Graf94c4b992016-05-06 21:01:01 +02001075 efi_net_set_dhcp_ack(pkt, len);
wdenk3861aa52002-09-27 23:19:37 +00001076
Robin Getz9e0a4d62009-07-23 03:01:03 -04001077 debug("TRANSITIONING TO REQUESTING STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001078 dhcp_state = REQUESTING;
stroese5fa6e902003-04-10 13:26:44 +00001079
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001080 net_set_timeout_handler(5000, bootp_timeout_handler);
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001081 dhcp_send_request_packet(bp);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001082#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001083 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001084#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +00001085
1086 return;
1087 break;
1088 case REQUESTING:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001089 debug("DHCP State: REQUESTING\n");
wdenk3861aa52002-09-27 23:19:37 +00001090
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001091 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
Stefan Brüns79f724c2015-09-04 00:31:49 +02001092 dhcp_packet_process_options(bp);
Joe Hershberger8f4b1352012-05-15 08:59:06 +00001093 /* Store net params from reply */
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001094 store_net_params(bp);
wdenk3861aa52002-09-27 23:19:37 +00001095 dhcp_state = BOUND;
Thierry Reding8977cda2014-08-19 10:21:24 +02001096 printf("DHCP client bound to address %pI4 (%lu ms)\n",
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001097 &net_ip, get_timer(bootp_start));
Stefan Brüns4c60e4a2015-08-30 17:47:17 +02001098 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass768cbf02011-12-10 11:08:06 +00001099 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001100 "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +00001101
Simon Glass5234ad12011-10-27 06:24:32 +00001102 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +00001103 return;
1104 }
1105 break;
Remy Bohmer03a44492008-08-20 11:30:28 +02001106 case BOUND:
1107 /* DHCP client bound to address */
1108 break;
wdenk3861aa52002-09-27 23:19:37 +00001109 default:
Joe Hershberger8f4b1352012-05-15 08:59:06 +00001110 puts("DHCP: INVALID STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001111 break;
1112 }
wdenk3861aa52002-09-27 23:19:37 +00001113}
1114
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001115void dhcp_request(void)
wdenk3861aa52002-09-27 23:19:37 +00001116{
Joe Hershberger2fe81a52015-04-08 01:41:09 -05001117 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +00001118}
Wolfgang Denkf7a7f082007-11-03 23:09:27 +01001119#endif /* CONFIG_CMD_DHCP */