blob: d83e4eb0ba9e03b02b18ed429833026fc3164ec6 [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
wdenk232c1502004-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 Glass52f24232020-05-10 11:40:00 -060012#include <bootstage.h>
wdenk3861aa52002-09-27 23:19:37 +000013#include <command.h>
Simon Glass9eef56d2019-08-01 09:46:48 -060014#include <env.h>
Alexander Graf0efe1bc2016-05-06 21:01:01 +020015#include <efi_loader.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
wdenk3861aa52002-09-27 23:19:37 +000017#include <net.h>
Simon Glass90526e92020-05-10 11:39:56 -060018#include <rand.h>
Simon Glassba06b3c2020-05-10 11:39:52 -060019#include <uuid.h>
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Lukasz Majewski34696952015-08-24 00:21:43 +020021#include <net/tftp.h>
wdenk3861aa52002-09-27 23:19:37 +000022#include "bootp.h"
Uri Mashiach2d8d1902017-01-19 10:51:45 +020023#ifdef CONFIG_LED_STATUS
wdenk3861aa52002-09-27 23:19:37 +000024#include <status_led.h>
25#endif
Kim Phillipsdb7720b2012-07-05 13:19:32 +000026#ifdef CONFIG_BOOTP_RANDOM_DELAY
27#include "net_rand.h"
28#endif
wdenk3861aa52002-09-27 23:19:37 +000029
Joe Hershberger3090b7e32012-05-15 08:59:06 +000030#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
wdenk3861aa52002-09-27 23:19:37 +000031
Stephen Warrenf59be6e2014-07-25 17:30:48 -060032/*
33 * The timeout for the initial BOOTP/DHCP request used to be described by a
34 * counter of fixed-length timeout periods. TIMEOUT_COUNT represents
35 * that counter
36 *
37 * Now that the timeout periods are variable (exponential backoff and retry)
38 * we convert the timeout count to the absolute time it would have take to
39 * execute that many retries, and keep sending retry packets until that time
40 * is reached.
41 */
wdenk232c1502004-03-12 00:14:09 +000042#ifndef CONFIG_NET_RETRY_COUNT
Joe Hershberger3090b7e32012-05-15 08:59:06 +000043# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenk3861aa52002-09-27 23:19:37 +000044#else
wdenk232c1502004-03-12 00:14:09 +000045# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
wdenk3861aa52002-09-27 23:19:37 +000046#endif
Stephen Warrenf59be6e2014-07-25 17:30:48 -060047#define TIMEOUT_MS ((3 + (TIMEOUT_COUNT * 5)) * 1000)
wdenk3861aa52002-09-27 23:19:37 +000048
Joe Hershberger3090b7e32012-05-15 08:59:06 +000049#define PORT_BOOTPS 67 /* BOOTP server UDP port */
50#define PORT_BOOTPC 68 /* BOOTP client UDP port */
wdenk3861aa52002-09-27 23:19:37 +000051
Joe Hershberger3090b7e32012-05-15 08:59:06 +000052#ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
wdenk232c1502004-03-12 00:14:09 +000053#define CONFIG_DHCP_MIN_EXT_LEN 64
wdenk3861aa52002-09-27 23:19:37 +000054#endif
55
Thierry Reding92ac8ac2014-08-19 10:21:24 +020056#ifndef CONFIG_BOOTP_ID_CACHE_SIZE
57#define CONFIG_BOOTP_ID_CACHE_SIZE 4
58#endif
59
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -050060u32 bootp_ids[CONFIG_BOOTP_ID_CACHE_SIZE];
Thierry Reding92ac8ac2014-08-19 10:21:24 +020061unsigned int bootp_num_ids;
Joe Hershberger7044c6b2015-04-08 01:41:09 -050062int bootp_try;
Stephen Warrenf59be6e2014-07-25 17:30:48 -060063ulong bootp_start;
64ulong bootp_timeout;
Joe Hershberger586cbe52015-04-08 01:41:03 -050065char net_nis_domain[32] = {0,}; /* Our NIS domain */
66char net_hostname[32] = {0,}; /* Our hostname */
67char net_root_path[64] = {0,}; /* Our bootpath */
wdenk3861aa52002-09-27 23:19:37 +000068
Alexandre Messier50768f52016-02-01 17:08:57 -050069static ulong time_taken_max;
70
Jon Loeliger643d1ab2007-07-09 17:45:14 -050071#if defined(CONFIG_CMD_DHCP)
Kim Phillips06370592012-10-29 13:34:33 +000072static dhcp_state_t dhcp_state = INIT;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -050073static u32 dhcp_leasetime;
Joe Hershberger049a95a2015-04-08 01:41:01 -050074static struct in_addr dhcp_server_ip;
Stefan Brünsec87b1b2015-09-04 00:31:48 +020075static u8 dhcp_option_overload;
76#define OVERLOAD_FILE 1
77#define OVERLOAD_SNAME 2
Joe Hershberger049a95a2015-04-08 01:41:01 -050078static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
79 unsigned src, unsigned len);
wdenk3861aa52002-09-27 23:19:37 +000080
81/* For Debug */
wdenk3e386912003-04-05 00:53:31 +000082#if 0
83static char *dhcpmsg2str(int type)
wdenk3861aa52002-09-27 23:19:37 +000084{
85 switch (type) {
wdenk232c1502004-03-12 00:14:09 +000086 case 1: return "DHCPDISCOVER"; break;
87 case 2: return "DHCPOFFER"; break;
88 case 3: return "DHCPREQUEST"; break;
89 case 4: return "DHCPDECLINE"; break;
90 case 5: return "DHCPACK"; break;
91 case 6: return "DHCPNACK"; break;
92 case 7: return "DHCPRELEASE"; break;
wdenk3861aa52002-09-27 23:19:37 +000093 default: return "UNKNOWN/INVALID MSG TYPE"; break;
94 }
95}
wdenk3e386912003-04-05 00:53:31 +000096#endif
Jon Loeliger610f2e92007-07-10 11:05:02 -050097#endif
wdenk3861aa52002-09-27 23:19:37 +000098
Thierry Reding92ac8ac2014-08-19 10:21:24 +020099static void bootp_add_id(ulong id)
100{
101 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
102 size_t size = sizeof(bootp_ids) - sizeof(id);
103
104 memmove(bootp_ids, &bootp_ids[1], size);
105 bootp_ids[bootp_num_ids - 1] = id;
106 } else {
107 bootp_ids[bootp_num_ids] = id;
108 bootp_num_ids++;
109 }
110}
111
112static bool bootp_match_id(ulong id)
113{
114 unsigned int i;
115
116 for (i = 0; i < bootp_num_ids; i++)
117 if (bootp_ids[i] == id)
118 return true;
119
120 return false;
121}
122
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200123static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
124 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000125{
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500126 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000127 int retval = 0;
128
129 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
130 retval = -1;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500131 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
wdenk3861aa52002-09-27 23:19:37 +0000132 retval = -2;
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200133 else if (bp->bp_op != OP_BOOTREPLY)
wdenk3861aa52002-09-27 23:19:37 +0000134 retval = -3;
wdenk3861aa52002-09-27 23:19:37 +0000135 else if (bp->bp_htype != HWT_ETHER)
136 retval = -4;
137 else if (bp->bp_hlen != HWL_ETHER)
138 retval = -5;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500139 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
wdenk3861aa52002-09-27 23:19:37 +0000140 retval = -6;
Anton Persson214cc902016-03-17 09:38:21 +0100141 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0)
142 retval = -7;
wdenk3861aa52002-09-27 23:19:37 +0000143
Robin Getz0ebf04c2009-07-23 03:01:03 -0400144 debug("Filtering pkt = %d\n", retval);
wdenk3861aa52002-09-27 23:19:37 +0000145
146 return retval;
147}
148
Lyle Franklinc8e251f2019-08-05 06:23:42 -0400149static void store_bootp_params(struct bootp_hdr *bp)
wdenk3861aa52002-09-27 23:19:37 +0000150{
Joe Hershberger049a95a2015-04-08 01:41:01 -0500151 struct in_addr tmp_ip;
Alexander Grafbdce3402018-06-15 10:29:28 +0200152 bool overwrite_serverip = true;
153
Simon Glass43407532021-12-18 11:27:52 -0700154 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP))
155 return;
156
Alexander Grafbdce3402018-06-15 10:29:28 +0200157#if defined(CONFIG_BOOTP_PREFER_SERVERIP)
158 overwrite_serverip = false;
159#endif
Joe Hershberger1752f0f2012-05-23 07:59:18 +0000160
Joe Hershberger049a95a2015-04-08 01:41:01 -0500161 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
Alexander Grafbdce3402018-06-15 10:29:28 +0200162 if (tmp_ip.s_addr != 0 && (overwrite_serverip || !net_server_ip.s_addr))
Joe Hershberger049a95a2015-04-08 01:41:01 -0500163 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500164 memcpy(net_server_ethaddr,
165 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200166 if (
167#if defined(CONFIG_CMD_DHCP)
168 !(dhcp_option_overload & OVERLOAD_FILE) &&
169#endif
Alexander Graf449312c2018-06-15 10:29:27 +0200170 (strlen(bp->bp_file) > 0) &&
171 !net_boot_file_name_explicit) {
Joe Hershberger14111572015-04-08 01:41:02 -0500172 copy_filename(net_boot_file_name, bp->bp_file,
173 sizeof(net_boot_file_name));
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200174 }
wdenk3861aa52002-09-27 23:19:37 +0000175
Joe Hershberger14111572015-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:
wdenk8bde7f72003-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 Hershberger14111572015-04-08 01:41:02 -0500182 if (*net_boot_file_name)
Simon Glass382bee52017-08-03 12:22:09 -0600183 env_set("bootfile", net_boot_file_name);
Lyle Franklinc8e251f2019-08-05 06:23:42 -0400184}
185
186/*
187 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
188 */
189static void store_net_params(struct bootp_hdr *bp)
190{
191#if !defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
192 store_bootp_params(bp);
193#endif
Joe Hershberger049a95a2015-04-08 01:41:01 -0500194 net_copy_ip(&net_ip, &bp->bp_yiaddr);
wdenk3861aa52002-09-27 23:19:37 +0000195}
196
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000197static int truncate_sz(const char *name, int maxlen, int curlen)
wdenk3861aa52002-09-27 23:19:37 +0000198{
199 if (curlen >= maxlen) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000200 printf("*** WARNING: %s is too long (%d - max: %d)"
201 " - truncated\n", name, curlen, maxlen);
wdenk3861aa52002-09-27 23:19:37 +0000202 curlen = maxlen - 1;
203 }
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000204 return curlen;
wdenk3861aa52002-09-27 23:19:37 +0000205}
206
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500207#if !defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000208
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500209static void bootp_process_vendor_field(u8 *ext)
wdenk3861aa52002-09-27 23:19:37 +0000210{
wdenk232c1502004-03-12 00:14:09 +0000211 int size = *(ext + 1);
wdenk3861aa52002-09-27 23:19:37 +0000212
Robin Getz0ebf04c2009-07-23 03:01:03 -0400213 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500214 *(ext + 1));
wdenk3861aa52002-09-27 23:19:37 +0000215
Joe Hershberger14111572015-04-08 01:41:02 -0500216 net_boot_file_expected_size_in_blocks = 0;
wdenk3861aa52002-09-27 23:19:37 +0000217
wdenk232c1502004-03-12 00:14:09 +0000218 switch (*ext) {
219 /* Fixed length fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000220 case 1: /* Subnet mask */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500221 if (net_netmask.s_addr == 0)
222 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000223 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000224 case 2: /* Time offset - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000225 break;
wdenk232c1502004-03-12 00:14:09 +0000226 /* Variable length fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000227 case 3: /* Gateways list */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500228 if (net_gateway.s_addr == 0)
229 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000230 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000231 case 4: /* Time server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000232 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000233 case 5: /* IEN-116 name server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000234 break;
235 case 6:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500236 if (net_dns_server.s_addr == 0)
237 net_copy_ip(&net_dns_server,
238 (struct in_addr *)(ext + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500239#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500240 if ((net_dns_server2.s_addr == 0) && (size > 4))
241 net_copy_ip(&net_dns_server2,
242 (struct in_addr *)(ext + 2 + 4));
stroesefe389a82003-08-28 14:17:32 +0000243#endif
wdenk3861aa52002-09-27 23:19:37 +0000244 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000245 case 7: /* Log server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000246 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000247 case 8: /* Cookie/Quote server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000248 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000249 case 9: /* LPR server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000250 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000251 case 10: /* Impress server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000252 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000253 case 11: /* RPL server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000254 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000255 case 12: /* Host name */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500256 if (net_hostname[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000257 size = truncate_sz("Host Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500258 sizeof(net_hostname), size);
259 memcpy(&net_hostname, ext + 2, size);
260 net_hostname[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000261 }
262 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000263 case 13: /* Boot file size */
wdenk3861aa52002-09-27 23:19:37 +0000264 if (size == 2)
Joe Hershberger14111572015-04-08 01:41:02 -0500265 net_boot_file_expected_size_in_blocks =
266 ntohs(*(ushort *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000267 else if (size == 4)
Joe Hershberger14111572015-04-08 01:41:02 -0500268 net_boot_file_expected_size_in_blocks =
269 ntohl(*(ulong *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000270 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000271 case 14: /* Merit dump file - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000272 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000273 case 15: /* Domain name - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000274 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000275 case 16: /* Swap server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000276 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000277 case 17: /* Root path */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500278 if (net_root_path[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000279 size = truncate_sz("Root Path",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500280 sizeof(net_root_path), size);
281 memcpy(&net_root_path, ext + 2, size);
282 net_root_path[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000283 }
284 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000285 case 18: /* Extension path - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000286 /*
wdenk8bde7f72003-06-27 21:31:46 +0000287 * This can be used to send the information of the
288 * vendor area in another file that the client can
289 * access via TFTP.
wdenk3861aa52002-09-27 23:19:37 +0000290 */
291 break;
wdenk232c1502004-03-12 00:14:09 +0000292 /* IP host layer fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000293 case 40: /* NIS Domain name */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500294 if (net_nis_domain[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000295 size = truncate_sz("NIS Domain Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500296 sizeof(net_nis_domain), size);
297 memcpy(&net_nis_domain, ext + 2, size);
298 net_nis_domain[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000299 }
300 break;
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000301#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
302 case 42: /* NTP server IP */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500303 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000304 break;
305#endif
wdenk232c1502004-03-12 00:14:09 +0000306 /* Application layer fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000307 case 43: /* Vendor specific info - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000308 /*
wdenk8bde7f72003-06-27 21:31:46 +0000309 * Binary information to exchange specific
310 * product information.
wdenk3861aa52002-09-27 23:19:37 +0000311 */
312 break;
wdenk232c1502004-03-12 00:14:09 +0000313 /* Reserved (custom) fields (128..254) */
314 }
wdenk3861aa52002-09-27 23:19:37 +0000315}
316
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500317static void bootp_process_vendor(u8 *ext, int size)
wdenk3861aa52002-09-27 23:19:37 +0000318{
wdenk232c1502004-03-12 00:14:09 +0000319 u8 *end = ext + size;
wdenk3861aa52002-09-27 23:19:37 +0000320
Robin Getz0ebf04c2009-07-23 03:01:03 -0400321 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
wdenk3861aa52002-09-27 23:19:37 +0000322
wdenk232c1502004-03-12 00:14:09 +0000323 while ((ext < end) && (*ext != 0xff)) {
324 if (*ext == 0) {
325 ext++;
326 } else {
327 u8 *opt = ext;
328
329 ext += ext[1] + 2;
330 if (ext <= end)
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500331 bootp_process_vendor_field(opt);
wdenk232c1502004-03-12 00:14:09 +0000332 }
wdenk3861aa52002-09-27 23:19:37 +0000333 }
wdenk3861aa52002-09-27 23:19:37 +0000334
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000335 debug("[BOOTP] Received fields:\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500336 if (net_netmask.s_addr)
337 debug("net_netmask : %pI4\n", &net_netmask);
wdenk3861aa52002-09-27 23:19:37 +0000338
Joe Hershberger049a95a2015-04-08 01:41:01 -0500339 if (net_gateway.s_addr)
340 debug("net_gateway : %pI4", &net_gateway);
wdenk3861aa52002-09-27 23:19:37 +0000341
Joe Hershberger14111572015-04-08 01:41:02 -0500342 if (net_boot_file_expected_size_in_blocks)
343 debug("net_boot_file_expected_size_in_blocks : %d\n",
344 net_boot_file_expected_size_in_blocks);
wdenk3861aa52002-09-27 23:19:37 +0000345
Joe Hershberger586cbe52015-04-08 01:41:03 -0500346 if (net_hostname[0])
347 debug("net_hostname : %s\n", net_hostname);
wdenk3861aa52002-09-27 23:19:37 +0000348
Joe Hershberger586cbe52015-04-08 01:41:03 -0500349 if (net_root_path[0])
350 debug("net_root_path : %s\n", net_root_path);
wdenk3861aa52002-09-27 23:19:37 +0000351
Joe Hershberger586cbe52015-04-08 01:41:03 -0500352 if (net_nis_domain[0])
353 debug("net_nis_domain : %s\n", net_nis_domain);
wdenk3861aa52002-09-27 23:19:37 +0000354
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000355#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
Chris Packham4b4dc522018-05-03 20:19:03 +1200356 if (net_ntp_server.s_addr)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500357 debug("net_ntp_server : %pI4\n", &net_ntp_server);
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000358#endif
wdenk3861aa52002-09-27 23:19:37 +0000359}
Simon Glass09349862011-06-13 16:13:12 -0700360
wdenk3861aa52002-09-27 23:19:37 +0000361/*
362 * Handle a BOOTP received packet.
363 */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500364static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
365 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000366{
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500367 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000368
Robin Getz0ebf04c2009-07-23 03:01:03 -0400369 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500370 src, dest, len, sizeof(struct bootp_hdr));
wdenk3861aa52002-09-27 23:19:37 +0000371
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500372 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000373
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000374 /* Filter out pkts we don't want */
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200375 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +0000376 return;
377
378 /*
wdenk232c1502004-03-12 00:14:09 +0000379 * Got a good BOOTP reply. Copy the data into our variables.
wdenk3861aa52002-09-27 23:19:37 +0000380 */
Uri Mashiach2d8d1902017-01-19 10:51:45 +0200381#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
382 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF);
wdenk3861aa52002-09-27 23:19:37 +0000383#endif
384
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500385 store_net_params(bp); /* Store net parameters from reply */
wdenk3861aa52002-09-27 23:19:37 +0000386
387 /* Retrieve extended information (we must parse the vendor area) */
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500388 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500389 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
wdenk3861aa52002-09-27 23:19:37 +0000390
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500391 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass573f14f2011-12-10 11:08:06 +0000392 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +0000393
Robin Getz0ebf04c2009-07-23 03:01:03 -0400394 debug("Got good BOOTP\n");
wdenk3861aa52002-09-27 23:19:37 +0000395
Simon Glasse4a3d572011-10-27 06:24:32 +0000396 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +0000397}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500398#endif
wdenk3861aa52002-09-27 23:19:37 +0000399
400/*
401 * Timeout on BOOTP/DHCP request.
402 */
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500403static void bootp_timeout_handler(void)
wdenk3861aa52002-09-27 23:19:37 +0000404{
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600405 ulong time_taken = get_timer(bootp_start);
406
Alexandre Messier50768f52016-02-01 17:08:57 -0500407 if (time_taken >= time_taken_max) {
Joe Hershberger2c00e092012-05-23 07:59:19 +0000408#ifdef CONFIG_BOOTP_MAY_FAIL
Joe Hershberger2099b9f2017-11-07 18:13:40 -0800409 char *ethrotate;
410
411 ethrotate = env_get("ethrotate");
412 if ((ethrotate && strcmp(ethrotate, "no") == 0) ||
413 net_restart_wrap) {
414 puts("\nRetry time exceeded\n");
415 net_set_state(NETLOOP_FAIL);
416 } else
Joe Hershberger2c00e092012-05-23 07:59:19 +0000417#endif
Joe Hershberger2099b9f2017-11-07 18:13:40 -0800418 {
419 puts("\nRetry time exceeded; starting again\n");
420 net_start_again();
421 }
wdenk3861aa52002-09-27 23:19:37 +0000422 } else {
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600423 bootp_timeout *= 2;
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200424 if (bootp_timeout > 2000)
425 bootp_timeout = 2000;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500426 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500427 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +0000428 }
429}
430
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000431#define put_vci(e, str) \
432 do { \
433 size_t vci_strlen = strlen(str); \
434 *e++ = 60; /* Vendor Class Identifier */ \
435 *e++ = vci_strlen; \
436 memcpy(e, str, vci_strlen); \
437 e += vci_strlen; \
438 } while (0)
439
Alexander Graf4570a992016-05-06 21:01:02 +0200440static u8 *add_vci(u8 *e)
441{
Alexander Graf20898ea2016-05-06 21:01:07 +0200442 char *vci = NULL;
Simon Glass00caae62017-08-03 12:22:12 -0600443 char *env_vci = env_get("bootp_vci");
Alexander Graf20898ea2016-05-06 21:01:07 +0200444
Alexander Graf4570a992016-05-06 21:01:02 +0200445#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
Alexander Graf20898ea2016-05-06 21:01:07 +0200446 vci = CONFIG_SPL_NET_VCI_STRING;
Alexander Graf4570a992016-05-06 21:01:02 +0200447#elif defined(CONFIG_BOOTP_VCI_STRING)
Alexander Graf20898ea2016-05-06 21:01:07 +0200448 vci = CONFIG_BOOTP_VCI_STRING;
Alexander Graf4570a992016-05-06 21:01:02 +0200449#endif
450
Alexander Graf20898ea2016-05-06 21:01:07 +0200451 if (env_vci)
452 vci = env_vci;
453
454 if (vci)
455 put_vci(e, vci);
456
Alexander Graf4570a992016-05-06 21:01:02 +0200457 return e;
458}
459
wdenk3861aa52002-09-27 23:19:37 +0000460/*
461 * Initialize BOOTP extension fields in the request.
462 */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500463#if defined(CONFIG_CMD_DHCP)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500464static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
465 struct in_addr requested_ip)
wdenk3861aa52002-09-27 23:19:37 +0000466{
wdenk232c1502004-03-12 00:14:09 +0000467 u8 *start = e;
468 u8 *cnt;
Alexander Grafbc6fc282016-05-12 15:51:45 +0200469#ifdef CONFIG_LIB_UUID
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000470 char *uuid;
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000471#endif
Alexander Grafbc6fc282016-05-12 15:51:45 +0200472 int clientarch = -1;
wdenk232c1502004-03-12 00:14:09 +0000473
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500474#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000475 u8 *x;
wdenk3861aa52002-09-27 23:19:37 +0000476#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500477#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200478 char *hostname;
stroesefe389a82003-08-28 14:17:32 +0000479#endif
wdenk3861aa52002-09-27 23:19:37 +0000480
wdenk232c1502004-03-12 00:14:09 +0000481 *e++ = 99; /* RFC1048 Magic Cookie */
482 *e++ = 130;
483 *e++ = 83;
484 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000485
wdenk232c1502004-03-12 00:14:09 +0000486 *e++ = 53; /* DHCP Message Type */
487 *e++ = 1;
488 *e++ = message_type;
wdenk3861aa52002-09-27 23:19:37 +0000489
wdenk232c1502004-03-12 00:14:09 +0000490 *e++ = 57; /* Maximum DHCP Message Size */
491 *e++ = 2;
Joe Hershbergerf8315732012-05-23 07:58:14 +0000492 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
493 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
wdenk3861aa52002-09-27 23:19:37 +0000494
Joe Hershberger049a95a2015-04-08 01:41:01 -0500495 if (server_ip.s_addr) {
496 int tmp = ntohl(server_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000497
wdenk232c1502004-03-12 00:14:09 +0000498 *e++ = 54; /* ServerID */
499 *e++ = 4;
500 *e++ = tmp >> 24;
501 *e++ = tmp >> 16;
502 *e++ = tmp >> 8;
503 *e++ = tmp & 0xff;
504 }
wdenk3861aa52002-09-27 23:19:37 +0000505
Joe Hershberger049a95a2015-04-08 01:41:01 -0500506 if (requested_ip.s_addr) {
507 int tmp = ntohl(requested_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000508
wdenk232c1502004-03-12 00:14:09 +0000509 *e++ = 50; /* Requested IP */
510 *e++ = 4;
511 *e++ = tmp >> 24;
512 *e++ = tmp >> 16;
513 *e++ = tmp >> 8;
514 *e++ = tmp & 0xff;
515 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500516#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Simon Glass00caae62017-08-03 12:22:12 -0600517 hostname = env_get("hostname");
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000518 if (hostname) {
519 int hostnamelen = strlen(hostname);
wdenk232c1502004-03-12 00:14:09 +0000520
521 *e++ = 12; /* Hostname */
522 *e++ = hostnamelen;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000523 memcpy(e, hostname, hostnamelen);
wdenk232c1502004-03-12 00:14:09 +0000524 e += hostnamelen;
525 }
stroesefe389a82003-08-28 14:17:32 +0000526#endif
527
Alexander Grafbc6fc282016-05-12 15:51:45 +0200528#ifdef CONFIG_BOOTP_PXE_CLIENTARCH
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000529 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
Alexander Grafbc6fc282016-05-12 15:51:45 +0200530#endif
531
Simon Glass00caae62017-08-03 12:22:12 -0600532 if (env_get("bootp_arch"))
Simon Glassbfebc8c2017-08-03 12:22:13 -0600533 clientarch = env_get_ulong("bootp_arch", 16, clientarch);
Alexander Grafbc6fc282016-05-12 15:51:45 +0200534
535 if (clientarch > 0) {
536 *e++ = 93; /* Client System Architecture */
537 *e++ = 2;
538 *e++ = (clientarch >> 8) & 0xff;
539 *e++ = clientarch & 0xff;
540 }
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000541
542 *e++ = 94; /* Client Network Interface Identifier */
543 *e++ = 3;
544 *e++ = 1; /* type field for UNDI */
545 *e++ = 0; /* major revision */
546 *e++ = 0; /* minor revision */
547
Alexander Grafbc6fc282016-05-12 15:51:45 +0200548#ifdef CONFIG_LIB_UUID
Simon Glass00caae62017-08-03 12:22:12 -0600549 uuid = env_get("pxeuuid");
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000550
551 if (uuid) {
552 if (uuid_str_valid(uuid)) {
553 *e++ = 97; /* Client Machine Identifier */
554 *e++ = 17;
555 *e++ = 0; /* type 0 - UUID */
556
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200557 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000558 e += 16;
559 } else {
560 printf("Invalid pxeuuid: %s\n", uuid);
561 }
562 }
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000563#endif
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000564
Alexander Graf4570a992016-05-06 21:01:02 +0200565 e = add_vci(e);
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000566
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500567#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000568 x = dhcp_vendorex_prep(e);
569 if (x)
wdenk232c1502004-03-12 00:14:09 +0000570 return x - start;
wdenk3861aa52002-09-27 23:19:37 +0000571#endif
572
wdenk232c1502004-03-12 00:14:09 +0000573 *e++ = 55; /* Parameter Request List */
574 cnt = e++; /* Pointer to count of requested items */
575 *cnt = 0;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500576#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000577 *e++ = 1; /* Subnet Mask */
578 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000579#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500580#if defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000581 *e++ = 2;
582 *cnt += 1;
583#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500584#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000585 *e++ = 3; /* Router Option */
586 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000587#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500588#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000589 *e++ = 6; /* DNS Server(s) */
590 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000591#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500592#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000593 *e++ = 12; /* Hostname */
594 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000595#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500596#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000597 *e++ = 13; /* Boot File Size */
598 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000599#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500600#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000601 *e++ = 17; /* Boot path */
602 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000603#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500604#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000605 *e++ = 40; /* NIS Domain name request */
606 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000607#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500608#if defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000609 *e++ = 42;
610 *cnt += 1;
611#endif
Jason Liu258ccd62010-11-14 12:23:09 +0800612 /* no options, so back up to avoid sending an empty request list */
613 if (*cnt == 0)
614 e -= 2;
615
wdenk232c1502004-03-12 00:14:09 +0000616 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000617
wdenk232c1502004-03-12 00:14:09 +0000618 /* Pad to minimal length */
wdenk3861aa52002-09-27 23:19:37 +0000619#ifdef CONFIG_DHCP_MIN_EXT_LEN
Simon Glass21076f62011-02-02 15:03:28 -0800620 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
wdenk232c1502004-03-12 00:14:09 +0000621 *e++ = 0;
wdenk3861aa52002-09-27 23:19:37 +0000622#endif
623
wdenk232c1502004-03-12 00:14:09 +0000624 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000625}
626
Jon Loeliger610f2e92007-07-10 11:05:02 -0500627#else
wdenk3861aa52002-09-27 23:19:37 +0000628/*
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000629 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
wdenk3861aa52002-09-27 23:19:37 +0000630 */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500631static int bootp_extended(u8 *e)
wdenk3861aa52002-09-27 23:19:37 +0000632{
wdenk232c1502004-03-12 00:14:09 +0000633 u8 *start = e;
wdenk3861aa52002-09-27 23:19:37 +0000634
wdenk232c1502004-03-12 00:14:09 +0000635 *e++ = 99; /* RFC1048 Magic Cookie */
636 *e++ = 130;
637 *e++ = 83;
638 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000639
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500640#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000641 *e++ = 53; /* DHCP Message Type */
642 *e++ = 1;
643 *e++ = DHCP_DISCOVER;
wdenk3861aa52002-09-27 23:19:37 +0000644
wdenk232c1502004-03-12 00:14:09 +0000645 *e++ = 57; /* Maximum DHCP Message Size */
646 *e++ = 2;
Joe Hershbergerf8315732012-05-23 07:58:14 +0000647 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
648 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500649#endif
wdenk3861aa52002-09-27 23:19:37 +0000650
Walter Stolld4a660a2021-10-12 11:01:59 +0000651 e = add_vci(e);
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000652
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500653#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000654 *e++ = 1; /* Subnet mask request */
655 *e++ = 4;
656 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000657#endif
658
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500659#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000660 *e++ = 3; /* Default gateway request */
661 *e++ = 4;
662 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000663#endif
664
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500665#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000666 *e++ = 6; /* Domain Name Server */
667 *e++ = 4;
668 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000669#endif
670
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500671#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000672 *e++ = 12; /* Host name request */
673 *e++ = 32;
674 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000675#endif
676
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500677#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000678 *e++ = 13; /* Boot file size */
679 *e++ = 2;
680 e += 2;
wdenk3861aa52002-09-27 23:19:37 +0000681#endif
682
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500683#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000684 *e++ = 17; /* Boot path */
685 *e++ = 32;
686 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000687#endif
688
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500689#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000690 *e++ = 40; /* NIS Domain name request */
691 *e++ = 32;
692 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000693#endif
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000694#if defined(CONFIG_BOOTP_NTPSERVER)
695 *e++ = 42;
696 *e++ = 4;
697 e += 4;
698#endif
wdenk3861aa52002-09-27 23:19:37 +0000699
wdenk232c1502004-03-12 00:14:09 +0000700 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000701
Andre Renaud166c4092016-05-05 07:28:08 -0600702 /*
703 * If nothing in list, remove it altogether. Some DHCP servers get
704 * upset by this minor faux pas and do not respond at all.
705 */
706 if (e == start + 3) {
707 printf("*** Warning: no DHCP options requested\n");
708 e -= 3;
709 }
710
wdenk232c1502004-03-12 00:14:09 +0000711 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000712}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500713#endif
wdenk3861aa52002-09-27 23:19:37 +0000714
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500715void bootp_reset(void)
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600716{
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200717 bootp_num_ids = 0;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500718 bootp_try = 0;
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600719 bootp_start = get_timer(0);
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200720 bootp_timeout = 250;
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600721}
722
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500723void bootp_request(void)
wdenk3861aa52002-09-27 23:19:37 +0000724{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000725 uchar *pkt, *iphdr;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500726 struct bootp_hdr *bp;
Joe Hershbergerae446f52012-05-23 07:59:10 +0000727 int extlen, pktlen, iplen;
728 int eth_hdr_size;
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000729#ifdef CONFIG_BOOTP_RANDOM_DELAY
Pavel Machek8e8d73b2014-07-11 11:39:37 +0200730 ulong rand_ms;
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000731#endif
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500732 u32 bootp_id;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500733 struct in_addr zero_ip;
734 struct in_addr bcast_ip;
Alexandre Messier50768f52016-02-01 17:08:57 -0500735 char *ep; /* Environment pointer */
wdenk3861aa52002-09-27 23:19:37 +0000736
Simon Glass573f14f2011-12-10 11:08:06 +0000737 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500738#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000739 dhcp_state = INIT;
740#endif
741
Simon Glass00caae62017-08-03 12:22:12 -0600742 ep = env_get("bootpretryperiod");
Alexandre Messier50768f52016-02-01 17:08:57 -0500743 if (ep != NULL)
Simon Glass0b1284e2021-07-24 09:03:30 -0600744 time_taken_max = dectoul(ep, NULL);
Alexandre Messier50768f52016-02-01 17:08:57 -0500745 else
746 time_taken_max = TIMEOUT_MS;
747
wdenk3861aa52002-09-27 23:19:37 +0000748#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500749 if (bootp_try == 0)
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000750 srand_mac();
wdenk3861aa52002-09-27 23:19:37 +0000751
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500752 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
753 rand_ms = rand() >> (22 - bootp_try);
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000754 else /* After 3rd BOOTP request max 8192 * 1ms */
755 rand_ms = rand() >> 19;
wdenk3861aa52002-09-27 23:19:37 +0000756
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000757 printf("Random delay: %ld ms...\n", rand_ms);
Pavel Machek8e8d73b2014-07-11 11:39:37 +0200758 mdelay(rand_ms);
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000759
wdenk3861aa52002-09-27 23:19:37 +0000760#endif /* CONFIG_BOOTP_RANDOM_DELAY */
761
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500762 printf("BOOTP broadcast %d\n", ++bootp_try);
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500763 pkt = net_tx_packet;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000764 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +0000765
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500766 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerae446f52012-05-23 07:59:10 +0000767 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +0000768
769 /*
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000770 * Next line results in incorrect packet size being transmitted,
771 * resulting in errors in some DHCP servers, reporting missing bytes.
772 * Size must be set in packet header after extension length has been
773 * determined.
wdenk3861aa52002-09-27 23:19:37 +0000774 * C. Hallinan, DS4.COM, Inc.
775 */
Joe Hershberger4b11c912012-05-23 07:59:07 +0000776 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500777 sizeof (struct bootp_hdr)); */
Joe Hershberger4b11c912012-05-23 07:59:07 +0000778 iphdr = pkt; /* We need this later for net_set_udp_header() */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000779 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000780
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500781 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000782 bp->bp_op = OP_BOOTREQUEST;
783 bp->bp_htype = HWT_ETHER;
784 bp->bp_hlen = HWL_ETHER;
785 bp->bp_hops = 0;
Stefan Brüns454d9d32015-08-27 23:57:18 +0200786 /*
787 * according to RFC1542, should be 0 on first request, secs since
788 * first request otherwise
789 */
790 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500791 zero_ip.s_addr = 0;
792 net_write_ip(&bp->bp_ciaddr, zero_ip);
793 net_write_ip(&bp->bp_yiaddr, zero_ip);
794 net_write_ip(&bp->bp_siaddr, zero_ip);
795 net_write_ip(&bp->bp_giaddr, zero_ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500796 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Joe Hershberger14111572015-04-08 01:41:02 -0500797 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +0000798
799 /* Request additional information from the BOOTP/DHCP server */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500800#if defined(CONFIG_CMD_DHCP)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500801 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
802 zero_ip);
wdenk3861aa52002-09-27 23:19:37 +0000803#else
Joe Hershberger049a95a2015-04-08 01:41:01 -0500804 extlen = bootp_extended((u8 *)bp->bp_vend);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500805#endif
wdenk3861aa52002-09-27 23:19:37 +0000806
807 /*
808 * Bootp ID is the lower 4 bytes of our ethernet address
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200809 * plus the current time in ms.
wdenk3861aa52002-09-27 23:19:37 +0000810 */
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500811 bootp_id = ((u32)net_ethaddr[2] << 24)
812 | ((u32)net_ethaddr[3] << 16)
813 | ((u32)net_ethaddr[4] << 8)
814 | (u32)net_ethaddr[5];
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500815 bootp_id += get_timer(0);
816 bootp_id = htonl(bootp_id);
817 bootp_add_id(bootp_id);
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500818 net_copy_u32(&bp->bp_id, &bootp_id);
wdenk3861aa52002-09-27 23:19:37 +0000819
820 /*
821 * Calculate proper packet lengths taking into account the
822 * variable size of the options field
823 */
Joe Hershbergerae446f52012-05-23 07:59:10 +0000824 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
825 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500826 bcast_ip.s_addr = 0xFFFFFFFFL;
827 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500828 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
wdenk3861aa52002-09-27 23:19:37 +0000829
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500830#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000831 dhcp_state = SELECTING;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500832 net_set_udp_handler(dhcp_handler);
wdenk3861aa52002-09-27 23:19:37 +0000833#else
Joe Hershberger049a95a2015-04-08 01:41:01 -0500834 net_set_udp_handler(bootp_handler);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500835#endif
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500836 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +0000837}
838
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500839#if defined(CONFIG_CMD_DHCP)
Stefan Brüns774c3e02015-09-04 00:31:49 +0200840static void dhcp_process_options(uchar *popt, uchar *end)
wdenk3861aa52002-09-27 23:19:37 +0000841{
wdenk3861aa52002-09-27 23:19:37 +0000842 int oplen, size;
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200843#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
844 int *to_ptr;
845#endif
wdenk3861aa52002-09-27 23:19:37 +0000846
wdenk232c1502004-03-12 00:14:09 +0000847 while (popt < end && *popt != 0xff) {
wdenk3861aa52002-09-27 23:19:37 +0000848 oplen = *(popt + 1);
wdenk232c1502004-03-12 00:14:09 +0000849 switch (*popt) {
Stefan Brünsc56eb572015-08-28 10:15:54 +0200850 case 0:
851 oplen = -1; /* Pad omits len byte */
852 break;
wdenk232c1502004-03-12 00:14:09 +0000853 case 1:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500854 net_copy_ip(&net_netmask, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000855 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500856#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000857 case 2: /* Time offset */
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500858 to_ptr = &net_ntp_time_offset;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500859 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500860 net_ntp_time_offset = ntohl(net_ntp_time_offset);
wdenkea287de2005-04-01 00:25:43 +0000861 break;
862#endif
wdenk232c1502004-03-12 00:14:09 +0000863 case 3:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500864 net_copy_ip(&net_gateway, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000865 break;
866 case 6:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500867 net_copy_ip(&net_dns_server, (popt + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500868#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000869 if (*(popt + 1) > 4)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500870 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
stroesefe389a82003-08-28 14:17:32 +0000871#endif
wdenk232c1502004-03-12 00:14:09 +0000872 break;
873 case 12:
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000874 size = truncate_sz("Host Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500875 sizeof(net_hostname), oplen);
876 memcpy(&net_hostname, popt + 2, size);
877 net_hostname[size] = 0;
wdenk232c1502004-03-12 00:14:09 +0000878 break;
879 case 15: /* Ignore Domain Name Option */
880 break;
881 case 17:
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000882 size = truncate_sz("Root Path",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500883 sizeof(net_root_path), oplen);
884 memcpy(&net_root_path, popt + 2, size);
885 net_root_path[size] = 0;
wdenk232c1502004-03-12 00:14:09 +0000886 break;
Brian Rzyckiee0f60d2012-09-11 09:22:53 +0000887 case 28: /* Ignore Broadcast Address Option */
888 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500889#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000890 case 42: /* NTP server IP */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500891 net_copy_ip(&net_ntp_server, (popt + 2));
wdenkea287de2005-04-01 00:25:43 +0000892 break;
893#endif
wdenk232c1502004-03-12 00:14:09 +0000894 case 51:
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500895 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000896 break;
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200897 case 52:
898 dhcp_option_overload = popt[2];
899 break;
wdenk232c1502004-03-12 00:14:09 +0000900 case 53: /* Ignore Message Type Option */
901 break;
902 case 54:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500903 net_copy_ip(&dhcp_server_ip, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000904 break;
905 case 58: /* Ignore Renewal Time Option */
906 break;
907 case 59: /* Ignore Rebinding Time Option */
908 break;
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100909 case 66: /* Ignore TFTP server name */
910 break;
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200911 case 67: /* Bootfile option */
Alexander Graf449312c2018-06-15 10:29:27 +0200912 if (!net_boot_file_name_explicit) {
913 size = truncate_sz("Bootfile",
914 sizeof(net_boot_file_name),
915 oplen);
916 memcpy(&net_boot_file_name, popt + 2, size);
917 net_boot_file_name[size] = 0;
918 }
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100919 break;
wdenk232c1502004-03-12 00:14:09 +0000920 default:
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500921#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000922 if (dhcp_vendorex_proc(popt))
wdenk8bde7f72003-06-27 21:31:46 +0000923 break;
wdenk3861aa52002-09-27 23:19:37 +0000924#endif
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000925 printf("*** Unhandled DHCP Option in OFFER/ACK:"
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500926 " %d\n", *popt);
wdenk232c1502004-03-12 00:14:09 +0000927 break;
wdenk3861aa52002-09-27 23:19:37 +0000928 }
929 popt += oplen + 2; /* Process next option */
930 }
931}
932
Stefan Brüns774c3e02015-09-04 00:31:49 +0200933static void dhcp_packet_process_options(struct bootp_hdr *bp)
934{
935 uchar *popt = (uchar *)&bp->bp_vend[4];
936 uchar *end = popt + BOOTP_HDR_SIZE;
937
938 if (net_read_u32((u32 *)&bp->bp_vend[0]) != htonl(BOOTP_VENDOR_MAGIC))
939 return;
940
941 dhcp_option_overload = 0;
942
943 /*
944 * The 'options' field MUST be interpreted first, 'file' next,
945 * 'sname' last.
946 */
947 dhcp_process_options(popt, end);
948
949 if (dhcp_option_overload & OVERLOAD_FILE) {
950 popt = (uchar *)bp->bp_file;
951 end = popt + sizeof(bp->bp_file);
952 dhcp_process_options(popt, end);
953 }
954
955 if (dhcp_option_overload & OVERLOAD_SNAME) {
956 popt = (uchar *)bp->bp_sname;
957 end = popt + sizeof(bp->bp_sname);
958 dhcp_process_options(popt, end);
959 }
960}
961
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500962static int dhcp_message_type(unsigned char *popt)
wdenk3861aa52002-09-27 23:19:37 +0000963{
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500964 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
wdenk3861aa52002-09-27 23:19:37 +0000965 return -1;
966
967 popt += 4;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000968 while (*popt != 0xff) {
969 if (*popt == 53) /* DHCP Message Type */
wdenk3861aa52002-09-27 23:19:37 +0000970 return *(popt + 2);
Stefan Brünsc56eb572015-08-28 10:15:54 +0200971 if (*popt == 0) {
972 /* Pad */
973 popt += 1;
974 } else {
975 /* Scan through all options */
976 popt += *(popt + 1) + 2;
977 }
wdenk3861aa52002-09-27 23:19:37 +0000978 }
979 return -1;
980}
981
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500982static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
wdenk3861aa52002-09-27 23:19:37 +0000983{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000984 uchar *pkt, *iphdr;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500985 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000986 int pktlen, iplen, extlen;
Joe Hershbergerae446f52012-05-23 07:59:10 +0000987 int eth_hdr_size;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500988 struct in_addr offered_ip;
989 struct in_addr zero_ip;
990 struct in_addr bcast_ip;
wdenk3861aa52002-09-27 23:19:37 +0000991
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500992 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500993 pkt = net_tx_packet;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000994 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +0000995
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500996 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerae446f52012-05-23 07:59:10 +0000997 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +0000998
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000999 iphdr = pkt; /* We'll need this later to set proper pkt size */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001000 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +00001001
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001002 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +00001003 bp->bp_op = OP_BOOTREQUEST;
1004 bp->bp_htype = HWT_ETHER;
1005 bp->bp_hlen = HWL_ETHER;
1006 bp->bp_hops = 0;
Stefan Brüns454d9d32015-08-27 23:57:18 +02001007 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001008 /* Do not set the client IP, your IP, or server IP yet, since it
1009 * hasn't been ACK'ed by the server yet */
Justin Flammiae5c794e2007-10-29 17:40:35 -04001010
Wolfgang Denkc6686702006-10-12 00:01:08 +02001011 /*
Wolfgang Denkd82718f2006-10-09 01:26:14 +02001012 * RFC3046 requires Relay Agents to discard packets with
1013 * nonzero and offered giaddr
1014 */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001015 zero_ip.s_addr = 0;
1016 net_write_ip(&bp->bp_giaddr, zero_ip);
Wolfgang Denkd82718f2006-10-09 01:26:14 +02001017
Joe Hershberger0adb5b72015-04-08 01:41:04 -05001018 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Alexandre Messierb2b7fbc2016-01-28 11:19:02 -05001019 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +00001020
1021 /*
1022 * ID is the id of the OFFER packet
1023 */
1024
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -05001025 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
wdenk3861aa52002-09-27 23:19:37 +00001026
1027 /*
1028 * Copy options from OFFER packet if present
1029 */
Justin Flammiae5c794e2007-10-29 17:40:35 -04001030
1031 /* Copy offered IP into the parameters request list */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001032 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
1033 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
1034 dhcp_server_ip, offered_ip);
wdenk3861aa52002-09-27 23:19:37 +00001035
Joe Hershbergerae446f52012-05-23 07:59:10 +00001036 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
1037 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger049a95a2015-04-08 01:41:01 -05001038 bcast_ip.s_addr = 0xFFFFFFFFL;
1039 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
wdenk3861aa52002-09-27 23:19:37 +00001040
Aras Vaichasd9a2f412008-03-26 09:43:57 +11001041#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
1042 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
1043#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
Joe Hershbergerf9623222012-05-23 07:59:11 +00001044 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
Joe Hershberger1203fcc2015-04-08 01:41:05 -05001045 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +00001046}
1047
1048/*
1049 * Handle DHCP received packets.
1050 */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001051static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
1052 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +00001053{
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001054 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +00001055
Robin Getz0ebf04c2009-07-23 03:01:03 -04001056 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001057 src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001058
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001059 /* Filter out pkts we don't want */
Stefan Brüns867d6ae2015-08-27 23:53:26 +02001060 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +00001061 return;
1062
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001063 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
1064 "%d\n", src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001065
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001066 if (net_read_ip(&bp->bp_yiaddr).s_addr == 0) {
1067#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1068 store_bootp_params(bp);
1069#endif
Peng Fan44c42dd2016-01-07 15:28:23 +08001070 return;
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001071 }
Peng Fan44c42dd2016-01-07 15:28:23 +08001072
wdenk3861aa52002-09-27 23:19:37 +00001073 switch (dhcp_state) {
1074 case SELECTING:
1075 /*
1076 * Wait an appropriate time for any potential DHCPOFFER packets
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001077 * to arrive. Then select one, and generate DHCPREQUEST
1078 * response. If filename is in format we recognize, assume it
1079 * is a valid OFFER from a server we want.
wdenk3861aa52002-09-27 23:19:37 +00001080 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001081 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001082#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001083 if (strncmp(bp->bp_file,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001084 CONFIG_SYS_BOOTFILE_PREFIX,
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001085 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001086#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
Stefan Brüns774c3e02015-09-04 00:31:49 +02001087 dhcp_packet_process_options(bp);
Alexander Graf0efe1bc2016-05-06 21:01:01 +02001088 efi_net_set_dhcp_ack(pkt, len);
wdenk3861aa52002-09-27 23:19:37 +00001089
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001090#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1091 if (!net_server_ip.s_addr)
1092 udelay(CONFIG_SERVERIP_FROM_PROXYDHCP_DELAY_MS *
1093 1000);
1094#endif /* CONFIG_SERVERIP_FROM_PROXYDHCP */
1095
Robin Getz0ebf04c2009-07-23 03:01:03 -04001096 debug("TRANSITIONING TO REQUESTING STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001097 dhcp_state = REQUESTING;
stroese759a51b2003-04-10 13:26:44 +00001098
Joe Hershbergerbc0571f2015-04-08 01:41:21 -05001099 net_set_timeout_handler(5000, bootp_timeout_handler);
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001100 dhcp_send_request_packet(bp);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001101#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001102 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001103#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +00001104
1105 return;
1106 break;
1107 case REQUESTING:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001108 debug("DHCP State: REQUESTING\n");
wdenk3861aa52002-09-27 23:19:37 +00001109
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001110 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
Stefan Brüns774c3e02015-09-04 00:31:49 +02001111 dhcp_packet_process_options(bp);
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001112 /* Store net params from reply */
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001113 store_net_params(bp);
wdenk3861aa52002-09-27 23:19:37 +00001114 dhcp_state = BOUND;
Thierry Reding92ac8ac2014-08-19 10:21:24 +02001115 printf("DHCP client bound to address %pI4 (%lu ms)\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001116 &net_ip, get_timer(bootp_start));
Stefan Brüns4f28c9b2015-08-30 17:47:17 +02001117 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass573f14f2011-12-10 11:08:06 +00001118 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001119 "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +00001120
Simon Glasse4a3d572011-10-27 06:24:32 +00001121 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +00001122 return;
1123 }
1124 break;
Remy Bohmer51dfe132008-08-20 11:30:28 +02001125 case BOUND:
1126 /* DHCP client bound to address */
1127 break;
wdenk3861aa52002-09-27 23:19:37 +00001128 default:
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001129 puts("DHCP: INVALID STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001130 break;
1131 }
wdenk3861aa52002-09-27 23:19:37 +00001132}
1133
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001134void dhcp_request(void)
wdenk3861aa52002-09-27 23:19:37 +00001135{
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001136 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +00001137}
Wolfgang Denk992742a2007-11-03 23:09:27 +01001138#endif /* CONFIG_CMD_DHCP */