blob: 680029096349d1c8b4c6ae5ab0a605337df33e06 [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
Sean Edmond91953952023-07-25 16:20:30 -070029#include <malloc.h>
wdenk3861aa52002-09-27 23:19:37 +000030
Joe Hershberger3090b7e32012-05-15 08:59:06 +000031#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
wdenk3861aa52002-09-27 23:19:37 +000032
Stephen Warrenf59be6e2014-07-25 17:30:48 -060033/*
34 * The timeout for the initial BOOTP/DHCP request used to be described by a
Tom Rini01d1b992022-03-11 09:12:02 -050035 * counter of fixed-length timeout periods. CONFIG_NET_RETRY_COUNT represents
Stephen Warrenf59be6e2014-07-25 17:30:48 -060036 * that counter
37 *
38 * Now that the timeout periods are variable (exponential backoff and retry)
39 * we convert the timeout count to the absolute time it would have take to
40 * execute that many retries, and keep sending retry packets until that time
41 * is reached.
42 */
Tom Rini01d1b992022-03-11 09:12:02 -050043#define TIMEOUT_MS ((3 + (CONFIG_NET_RETRY_COUNT * 5)) * 1000)
wdenk3861aa52002-09-27 23:19:37 +000044
Tom Rini6e7df1d2023-01-10 11:19:45 -050045#ifndef CFG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
46#define CFG_DHCP_MIN_EXT_LEN 64
wdenk3861aa52002-09-27 23:19:37 +000047#endif
48
Tom Rini6e7df1d2023-01-10 11:19:45 -050049#ifndef CFG_BOOTP_ID_CACHE_SIZE
50#define CFG_BOOTP_ID_CACHE_SIZE 4
Thierry Reding92ac8ac2014-08-19 10:21:24 +020051#endif
52
Tom Rini6e7df1d2023-01-10 11:19:45 -050053u32 bootp_ids[CFG_BOOTP_ID_CACHE_SIZE];
Thierry Reding92ac8ac2014-08-19 10:21:24 +020054unsigned int bootp_num_ids;
Joe Hershberger7044c6b2015-04-08 01:41:09 -050055int bootp_try;
Stephen Warrenf59be6e2014-07-25 17:30:48 -060056ulong bootp_start;
57ulong bootp_timeout;
Joe Hershberger586cbe52015-04-08 01:41:03 -050058char net_nis_domain[32] = {0,}; /* Our NIS domain */
59char net_hostname[32] = {0,}; /* Our hostname */
Andre Kalb5e6e41b2022-01-28 09:40:32 +010060char net_root_path[CONFIG_BOOTP_MAX_ROOT_PATH_LEN] = {0,}; /* Our bootpath */
wdenk3861aa52002-09-27 23:19:37 +000061
Alexandre Messier50768f52016-02-01 17:08:57 -050062static ulong time_taken_max;
63
Jon Loeliger643d1ab2007-07-09 17:45:14 -050064#if defined(CONFIG_CMD_DHCP)
Kim Phillips06370592012-10-29 13:34:33 +000065static dhcp_state_t dhcp_state = INIT;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -050066static u32 dhcp_leasetime;
Joe Hershberger049a95a2015-04-08 01:41:01 -050067static struct in_addr dhcp_server_ip;
Stefan Brünsec87b1b2015-09-04 00:31:48 +020068static u8 dhcp_option_overload;
69#define OVERLOAD_FILE 1
70#define OVERLOAD_SNAME 2
Joe Hershberger049a95a2015-04-08 01:41:01 -050071static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
72 unsigned src, unsigned len);
wdenk3861aa52002-09-27 23:19:37 +000073
74/* For Debug */
wdenk3e386912003-04-05 00:53:31 +000075#if 0
76static char *dhcpmsg2str(int type)
wdenk3861aa52002-09-27 23:19:37 +000077{
78 switch (type) {
wdenk232c1502004-03-12 00:14:09 +000079 case 1: return "DHCPDISCOVER"; break;
80 case 2: return "DHCPOFFER"; break;
81 case 3: return "DHCPREQUEST"; break;
82 case 4: return "DHCPDECLINE"; break;
83 case 5: return "DHCPACK"; break;
84 case 6: return "DHCPNACK"; break;
85 case 7: return "DHCPRELEASE"; break;
wdenk3861aa52002-09-27 23:19:37 +000086 default: return "UNKNOWN/INVALID MSG TYPE"; break;
87 }
88}
wdenk3e386912003-04-05 00:53:31 +000089#endif
Jon Loeliger610f2e92007-07-10 11:05:02 -050090#endif
wdenk3861aa52002-09-27 23:19:37 +000091
Thierry Reding92ac8ac2014-08-19 10:21:24 +020092static void bootp_add_id(ulong id)
93{
94 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
95 size_t size = sizeof(bootp_ids) - sizeof(id);
96
97 memmove(bootp_ids, &bootp_ids[1], size);
98 bootp_ids[bootp_num_ids - 1] = id;
99 } else {
100 bootp_ids[bootp_num_ids] = id;
101 bootp_num_ids++;
102 }
103}
104
105static bool bootp_match_id(ulong id)
106{
107 unsigned int i;
108
109 for (i = 0; i < bootp_num_ids; i++)
110 if (bootp_ids[i] == id)
111 return true;
112
113 return false;
114}
115
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200116static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
117 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000118{
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500119 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000120 int retval = 0;
121
122 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
123 retval = -1;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500124 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
wdenk3861aa52002-09-27 23:19:37 +0000125 retval = -2;
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200126 else if (bp->bp_op != OP_BOOTREPLY)
wdenk3861aa52002-09-27 23:19:37 +0000127 retval = -3;
wdenk3861aa52002-09-27 23:19:37 +0000128 else if (bp->bp_htype != HWT_ETHER)
129 retval = -4;
130 else if (bp->bp_hlen != HWL_ETHER)
131 retval = -5;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500132 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
wdenk3861aa52002-09-27 23:19:37 +0000133 retval = -6;
Anton Persson214cc902016-03-17 09:38:21 +0100134 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0)
135 retval = -7;
wdenk3861aa52002-09-27 23:19:37 +0000136
Robin Getz0ebf04c2009-07-23 03:01:03 -0400137 debug("Filtering pkt = %d\n", retval);
wdenk3861aa52002-09-27 23:19:37 +0000138
139 return retval;
140}
141
Lyle Franklinc8e251f2019-08-05 06:23:42 -0400142static void store_bootp_params(struct bootp_hdr *bp)
wdenk3861aa52002-09-27 23:19:37 +0000143{
Joe Hershberger049a95a2015-04-08 01:41:01 -0500144 struct in_addr tmp_ip;
Alexander Grafbdce3402018-06-15 10:29:28 +0200145 bool overwrite_serverip = true;
146
Simon Glass43407532021-12-18 11:27:52 -0700147 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP))
148 return;
149
Alexander Grafbdce3402018-06-15 10:29:28 +0200150#if defined(CONFIG_BOOTP_PREFER_SERVERIP)
151 overwrite_serverip = false;
152#endif
Joe Hershberger1752f0f2012-05-23 07:59:18 +0000153
Joe Hershberger049a95a2015-04-08 01:41:01 -0500154 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
Alexander Grafbdce3402018-06-15 10:29:28 +0200155 if (tmp_ip.s_addr != 0 && (overwrite_serverip || !net_server_ip.s_addr))
Joe Hershberger049a95a2015-04-08 01:41:01 -0500156 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500157 memcpy(net_server_ethaddr,
158 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200159 if (
160#if defined(CONFIG_CMD_DHCP)
161 !(dhcp_option_overload & OVERLOAD_FILE) &&
162#endif
Alexander Graf449312c2018-06-15 10:29:27 +0200163 (strlen(bp->bp_file) > 0) &&
164 !net_boot_file_name_explicit) {
Joe Hershberger14111572015-04-08 01:41:02 -0500165 copy_filename(net_boot_file_name, bp->bp_file,
166 sizeof(net_boot_file_name));
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200167 }
wdenk3861aa52002-09-27 23:19:37 +0000168
Joe Hershberger14111572015-04-08 01:41:02 -0500169 debug("net_boot_file_name: %s\n", net_boot_file_name);
wdenk3861aa52002-09-27 23:19:37 +0000170
171 /* Propagate to environment:
wdenk8bde7f72003-06-27 21:31:46 +0000172 * don't delete exising entry when BOOTP / DHCP reply does
wdenk3861aa52002-09-27 23:19:37 +0000173 * not contain a new value
174 */
Joe Hershberger14111572015-04-08 01:41:02 -0500175 if (*net_boot_file_name)
Simon Glass382bee52017-08-03 12:22:09 -0600176 env_set("bootfile", net_boot_file_name);
Lyle Franklinc8e251f2019-08-05 06:23:42 -0400177}
178
179/*
180 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
181 */
182static void store_net_params(struct bootp_hdr *bp)
183{
184#if !defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
185 store_bootp_params(bp);
186#endif
Joe Hershberger049a95a2015-04-08 01:41:01 -0500187 net_copy_ip(&net_ip, &bp->bp_yiaddr);
wdenk3861aa52002-09-27 23:19:37 +0000188}
189
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000190static int truncate_sz(const char *name, int maxlen, int curlen)
wdenk3861aa52002-09-27 23:19:37 +0000191{
192 if (curlen >= maxlen) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000193 printf("*** WARNING: %s is too long (%d - max: %d)"
194 " - truncated\n", name, curlen, maxlen);
wdenk3861aa52002-09-27 23:19:37 +0000195 curlen = maxlen - 1;
196 }
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000197 return curlen;
wdenk3861aa52002-09-27 23:19:37 +0000198}
199
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500200#if !defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000201
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500202static void bootp_process_vendor_field(u8 *ext)
wdenk3861aa52002-09-27 23:19:37 +0000203{
wdenk232c1502004-03-12 00:14:09 +0000204 int size = *(ext + 1);
wdenk3861aa52002-09-27 23:19:37 +0000205
Robin Getz0ebf04c2009-07-23 03:01:03 -0400206 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500207 *(ext + 1));
wdenk3861aa52002-09-27 23:19:37 +0000208
Joe Hershberger14111572015-04-08 01:41:02 -0500209 net_boot_file_expected_size_in_blocks = 0;
wdenk3861aa52002-09-27 23:19:37 +0000210
wdenk232c1502004-03-12 00:14:09 +0000211 switch (*ext) {
212 /* Fixed length fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000213 case 1: /* Subnet mask */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500214 if (net_netmask.s_addr == 0)
215 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000216 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000217 case 2: /* Time offset - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000218 break;
wdenk232c1502004-03-12 00:14:09 +0000219 /* Variable length fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000220 case 3: /* Gateways list */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500221 if (net_gateway.s_addr == 0)
222 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000223 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000224 case 4: /* Time server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000225 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000226 case 5: /* IEN-116 name server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000227 break;
228 case 6:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500229 if (net_dns_server.s_addr == 0)
230 net_copy_ip(&net_dns_server,
231 (struct in_addr *)(ext + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500232#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500233 if ((net_dns_server2.s_addr == 0) && (size > 4))
234 net_copy_ip(&net_dns_server2,
235 (struct in_addr *)(ext + 2 + 4));
stroesefe389a82003-08-28 14:17:32 +0000236#endif
wdenk3861aa52002-09-27 23:19:37 +0000237 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000238 case 7: /* Log server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000239 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000240 case 8: /* Cookie/Quote server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000241 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000242 case 9: /* LPR server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000243 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000244 case 10: /* Impress server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000245 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000246 case 11: /* RPL server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000247 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000248 case 12: /* Host name */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500249 if (net_hostname[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000250 size = truncate_sz("Host Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500251 sizeof(net_hostname), size);
252 memcpy(&net_hostname, ext + 2, size);
253 net_hostname[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000254 }
255 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000256 case 13: /* Boot file size */
wdenk3861aa52002-09-27 23:19:37 +0000257 if (size == 2)
Joe Hershberger14111572015-04-08 01:41:02 -0500258 net_boot_file_expected_size_in_blocks =
259 ntohs(*(ushort *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000260 else if (size == 4)
Joe Hershberger14111572015-04-08 01:41:02 -0500261 net_boot_file_expected_size_in_blocks =
262 ntohl(*(ulong *)(ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000263 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000264 case 14: /* Merit dump file - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000265 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000266 case 15: /* Domain name - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000267 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000268 case 16: /* Swap server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000269 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000270 case 17: /* Root path */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500271 if (net_root_path[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000272 size = truncate_sz("Root Path",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500273 sizeof(net_root_path), size);
274 memcpy(&net_root_path, ext + 2, size);
275 net_root_path[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000276 }
277 break;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000278 case 18: /* Extension path - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000279 /*
wdenk8bde7f72003-06-27 21:31:46 +0000280 * This can be used to send the information of the
281 * vendor area in another file that the client can
282 * access via TFTP.
wdenk3861aa52002-09-27 23:19:37 +0000283 */
284 break;
wdenk232c1502004-03-12 00:14:09 +0000285 /* IP host layer fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000286 case 40: /* NIS Domain name */
Joe Hershberger586cbe52015-04-08 01:41:03 -0500287 if (net_nis_domain[0] == 0) {
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000288 size = truncate_sz("NIS Domain Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500289 sizeof(net_nis_domain), size);
290 memcpy(&net_nis_domain, ext + 2, size);
291 net_nis_domain[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000292 }
293 break;
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000294#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
295 case 42: /* NTP server IP */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500296 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000297 break;
298#endif
wdenk232c1502004-03-12 00:14:09 +0000299 /* Application layer fields */
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000300 case 43: /* Vendor specific info - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000301 /*
wdenk8bde7f72003-06-27 21:31:46 +0000302 * Binary information to exchange specific
303 * product information.
wdenk3861aa52002-09-27 23:19:37 +0000304 */
305 break;
wdenk232c1502004-03-12 00:14:09 +0000306 /* Reserved (custom) fields (128..254) */
307 }
wdenk3861aa52002-09-27 23:19:37 +0000308}
309
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500310static void bootp_process_vendor(u8 *ext, int size)
wdenk3861aa52002-09-27 23:19:37 +0000311{
wdenk232c1502004-03-12 00:14:09 +0000312 u8 *end = ext + size;
wdenk3861aa52002-09-27 23:19:37 +0000313
Robin Getz0ebf04c2009-07-23 03:01:03 -0400314 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
wdenk3861aa52002-09-27 23:19:37 +0000315
wdenk232c1502004-03-12 00:14:09 +0000316 while ((ext < end) && (*ext != 0xff)) {
317 if (*ext == 0) {
318 ext++;
319 } else {
320 u8 *opt = ext;
321
322 ext += ext[1] + 2;
323 if (ext <= end)
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500324 bootp_process_vendor_field(opt);
wdenk232c1502004-03-12 00:14:09 +0000325 }
wdenk3861aa52002-09-27 23:19:37 +0000326 }
wdenk3861aa52002-09-27 23:19:37 +0000327
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000328 debug("[BOOTP] Received fields:\n");
Joe Hershberger049a95a2015-04-08 01:41:01 -0500329 if (net_netmask.s_addr)
330 debug("net_netmask : %pI4\n", &net_netmask);
wdenk3861aa52002-09-27 23:19:37 +0000331
Joe Hershberger049a95a2015-04-08 01:41:01 -0500332 if (net_gateway.s_addr)
333 debug("net_gateway : %pI4", &net_gateway);
wdenk3861aa52002-09-27 23:19:37 +0000334
Joe Hershberger14111572015-04-08 01:41:02 -0500335 if (net_boot_file_expected_size_in_blocks)
336 debug("net_boot_file_expected_size_in_blocks : %d\n",
337 net_boot_file_expected_size_in_blocks);
wdenk3861aa52002-09-27 23:19:37 +0000338
Joe Hershberger586cbe52015-04-08 01:41:03 -0500339 if (net_hostname[0])
340 debug("net_hostname : %s\n", net_hostname);
wdenk3861aa52002-09-27 23:19:37 +0000341
Joe Hershberger586cbe52015-04-08 01:41:03 -0500342 if (net_root_path[0])
343 debug("net_root_path : %s\n", net_root_path);
wdenk3861aa52002-09-27 23:19:37 +0000344
Joe Hershberger586cbe52015-04-08 01:41:03 -0500345 if (net_nis_domain[0])
346 debug("net_nis_domain : %s\n", net_nis_domain);
wdenk3861aa52002-09-27 23:19:37 +0000347
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000348#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
Chris Packham4b4dc522018-05-03 20:19:03 +1200349 if (net_ntp_server.s_addr)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500350 debug("net_ntp_server : %pI4\n", &net_ntp_server);
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000351#endif
wdenk3861aa52002-09-27 23:19:37 +0000352}
Simon Glass09349862011-06-13 16:13:12 -0700353
wdenk3861aa52002-09-27 23:19:37 +0000354/*
355 * Handle a BOOTP received packet.
356 */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500357static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
358 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000359{
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500360 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000361
Robin Getz0ebf04c2009-07-23 03:01:03 -0400362 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500363 src, dest, len, sizeof(struct bootp_hdr));
wdenk3861aa52002-09-27 23:19:37 +0000364
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500365 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000366
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000367 /* Filter out pkts we don't want */
Stefan Brüns867d6ae2015-08-27 23:53:26 +0200368 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +0000369 return;
370
371 /*
wdenk232c1502004-03-12 00:14:09 +0000372 * Got a good BOOTP reply. Copy the data into our variables.
wdenk3861aa52002-09-27 23:19:37 +0000373 */
Uri Mashiach2d8d1902017-01-19 10:51:45 +0200374#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
375 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF);
wdenk3861aa52002-09-27 23:19:37 +0000376#endif
377
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500378 store_net_params(bp); /* Store net parameters from reply */
wdenk3861aa52002-09-27 23:19:37 +0000379
380 /* Retrieve extended information (we must parse the vendor area) */
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500381 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500382 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
wdenk3861aa52002-09-27 23:19:37 +0000383
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500384 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass573f14f2011-12-10 11:08:06 +0000385 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +0000386
Robin Getz0ebf04c2009-07-23 03:01:03 -0400387 debug("Got good BOOTP\n");
wdenk3861aa52002-09-27 23:19:37 +0000388
Simon Glasse4a3d572011-10-27 06:24:32 +0000389 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +0000390}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500391#endif
wdenk3861aa52002-09-27 23:19:37 +0000392
393/*
394 * Timeout on BOOTP/DHCP request.
395 */
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500396static void bootp_timeout_handler(void)
wdenk3861aa52002-09-27 23:19:37 +0000397{
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600398 ulong time_taken = get_timer(bootp_start);
399
Alexandre Messier50768f52016-02-01 17:08:57 -0500400 if (time_taken >= time_taken_max) {
Joe Hershberger2c00e092012-05-23 07:59:19 +0000401#ifdef CONFIG_BOOTP_MAY_FAIL
Joe Hershberger2099b9f2017-11-07 18:13:40 -0800402 char *ethrotate;
403
404 ethrotate = env_get("ethrotate");
405 if ((ethrotate && strcmp(ethrotate, "no") == 0) ||
406 net_restart_wrap) {
407 puts("\nRetry time exceeded\n");
408 net_set_state(NETLOOP_FAIL);
409 } else
Joe Hershberger2c00e092012-05-23 07:59:19 +0000410#endif
Joe Hershberger2099b9f2017-11-07 18:13:40 -0800411 {
412 puts("\nRetry time exceeded; starting again\n");
413 net_start_again();
414 }
wdenk3861aa52002-09-27 23:19:37 +0000415 } else {
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600416 bootp_timeout *= 2;
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200417 if (bootp_timeout > 2000)
418 bootp_timeout = 2000;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500419 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500420 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +0000421 }
422}
423
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000424#define put_vci(e, str) \
425 do { \
426 size_t vci_strlen = strlen(str); \
427 *e++ = 60; /* Vendor Class Identifier */ \
428 *e++ = vci_strlen; \
429 memcpy(e, str, vci_strlen); \
430 e += vci_strlen; \
431 } while (0)
432
Alexander Graf4570a992016-05-06 21:01:02 +0200433static u8 *add_vci(u8 *e)
434{
Alexander Graf20898ea2016-05-06 21:01:07 +0200435 char *vci = NULL;
Simon Glass00caae62017-08-03 12:22:12 -0600436 char *env_vci = env_get("bootp_vci");
Alexander Graf20898ea2016-05-06 21:01:07 +0200437
Alexander Graf4570a992016-05-06 21:01:02 +0200438#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
Alexander Graf20898ea2016-05-06 21:01:07 +0200439 vci = CONFIG_SPL_NET_VCI_STRING;
Alexander Graf4570a992016-05-06 21:01:02 +0200440#elif defined(CONFIG_BOOTP_VCI_STRING)
Alexander Graf20898ea2016-05-06 21:01:07 +0200441 vci = CONFIG_BOOTP_VCI_STRING;
Alexander Graf4570a992016-05-06 21:01:02 +0200442#endif
443
Alexander Graf20898ea2016-05-06 21:01:07 +0200444 if (env_vci)
445 vci = env_vci;
446
447 if (vci)
448 put_vci(e, vci);
449
Alexander Graf4570a992016-05-06 21:01:02 +0200450 return e;
451}
452
wdenk3861aa52002-09-27 23:19:37 +0000453/*
454 * Initialize BOOTP extension fields in the request.
455 */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500456#if defined(CONFIG_CMD_DHCP)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500457static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
458 struct in_addr requested_ip)
wdenk3861aa52002-09-27 23:19:37 +0000459{
wdenk232c1502004-03-12 00:14:09 +0000460 u8 *start = e;
461 u8 *cnt;
Alexander Grafbc6fc282016-05-12 15:51:45 +0200462#ifdef CONFIG_LIB_UUID
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000463 char *uuid;
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000464#endif
Alexander Grafbc6fc282016-05-12 15:51:45 +0200465 int clientarch = -1;
wdenk232c1502004-03-12 00:14:09 +0000466
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500467#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000468 u8 *x;
wdenk3861aa52002-09-27 23:19:37 +0000469#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500470#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200471 char *hostname;
stroesefe389a82003-08-28 14:17:32 +0000472#endif
wdenk3861aa52002-09-27 23:19:37 +0000473
wdenk232c1502004-03-12 00:14:09 +0000474 *e++ = 99; /* RFC1048 Magic Cookie */
475 *e++ = 130;
476 *e++ = 83;
477 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000478
wdenk232c1502004-03-12 00:14:09 +0000479 *e++ = 53; /* DHCP Message Type */
480 *e++ = 1;
481 *e++ = message_type;
wdenk3861aa52002-09-27 23:19:37 +0000482
wdenk232c1502004-03-12 00:14:09 +0000483 *e++ = 57; /* Maximum DHCP Message Size */
484 *e++ = 2;
Joe Hershbergerf8315732012-05-23 07:58:14 +0000485 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
486 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
wdenk3861aa52002-09-27 23:19:37 +0000487
Joe Hershberger049a95a2015-04-08 01:41:01 -0500488 if (server_ip.s_addr) {
489 int tmp = ntohl(server_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000490
wdenk232c1502004-03-12 00:14:09 +0000491 *e++ = 54; /* ServerID */
492 *e++ = 4;
493 *e++ = tmp >> 24;
494 *e++ = tmp >> 16;
495 *e++ = tmp >> 8;
496 *e++ = tmp & 0xff;
497 }
wdenk3861aa52002-09-27 23:19:37 +0000498
Joe Hershberger049a95a2015-04-08 01:41:01 -0500499 if (requested_ip.s_addr) {
500 int tmp = ntohl(requested_ip.s_addr);
wdenk3861aa52002-09-27 23:19:37 +0000501
wdenk232c1502004-03-12 00:14:09 +0000502 *e++ = 50; /* Requested IP */
503 *e++ = 4;
504 *e++ = tmp >> 24;
505 *e++ = tmp >> 16;
506 *e++ = tmp >> 8;
507 *e++ = tmp & 0xff;
508 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500509#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Simon Glass00caae62017-08-03 12:22:12 -0600510 hostname = env_get("hostname");
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000511 if (hostname) {
512 int hostnamelen = strlen(hostname);
wdenk232c1502004-03-12 00:14:09 +0000513
514 *e++ = 12; /* Hostname */
515 *e++ = hostnamelen;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000516 memcpy(e, hostname, hostnamelen);
wdenk232c1502004-03-12 00:14:09 +0000517 e += hostnamelen;
518 }
stroesefe389a82003-08-28 14:17:32 +0000519#endif
520
Alexander Grafbc6fc282016-05-12 15:51:45 +0200521#ifdef CONFIG_BOOTP_PXE_CLIENTARCH
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000522 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
Alexander Grafbc6fc282016-05-12 15:51:45 +0200523#endif
524
Simon Glass00caae62017-08-03 12:22:12 -0600525 if (env_get("bootp_arch"))
Simon Glassbfebc8c2017-08-03 12:22:13 -0600526 clientarch = env_get_ulong("bootp_arch", 16, clientarch);
Alexander Grafbc6fc282016-05-12 15:51:45 +0200527
528 if (clientarch > 0) {
529 *e++ = 93; /* Client System Architecture */
530 *e++ = 2;
531 *e++ = (clientarch >> 8) & 0xff;
532 *e++ = clientarch & 0xff;
533 }
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000534
535 *e++ = 94; /* Client Network Interface Identifier */
536 *e++ = 3;
537 *e++ = 1; /* type field for UNDI */
538 *e++ = 0; /* major revision */
539 *e++ = 0; /* minor revision */
540
Alexander Grafbc6fc282016-05-12 15:51:45 +0200541#ifdef CONFIG_LIB_UUID
Simon Glass00caae62017-08-03 12:22:12 -0600542 uuid = env_get("pxeuuid");
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000543
544 if (uuid) {
545 if (uuid_str_valid(uuid)) {
546 *e++ = 97; /* Client Machine Identifier */
547 *e++ = 17;
548 *e++ = 0; /* type 0 - UUID */
549
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200550 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000551 e += 16;
552 } else {
553 printf("Invalid pxeuuid: %s\n", uuid);
554 }
555 }
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000556#endif
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000557
Alexander Graf4570a992016-05-06 21:01:02 +0200558 e = add_vci(e);
Jason Hobbsd2b5d5c2011-08-31 05:37:31 +0000559
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500560#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000561 x = dhcp_vendorex_prep(e);
562 if (x)
wdenk232c1502004-03-12 00:14:09 +0000563 return x - start;
wdenk3861aa52002-09-27 23:19:37 +0000564#endif
565
wdenk232c1502004-03-12 00:14:09 +0000566 *e++ = 55; /* Parameter Request List */
567 cnt = e++; /* Pointer to count of requested items */
568 *cnt = 0;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500569#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000570 *e++ = 1; /* Subnet Mask */
571 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000572#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500573#if defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000574 *e++ = 2;
575 *cnt += 1;
576#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500577#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000578 *e++ = 3; /* Router Option */
579 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000580#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500581#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000582 *e++ = 6; /* DNS Server(s) */
583 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000584#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500585#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000586 *e++ = 12; /* Hostname */
587 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000588#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500589#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000590 *e++ = 13; /* Boot File Size */
591 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000592#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500593#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000594 *e++ = 17; /* Boot path */
595 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000596#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500597#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000598 *e++ = 40; /* NIS Domain name request */
599 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000600#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500601#if defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000602 *e++ = 42;
603 *cnt += 1;
604#endif
Sean Edmond91953952023-07-25 16:20:30 -0700605 if (IS_ENABLED(CONFIG_BOOTP_PXE_DHCP_OPTION)) {
606 *e++ = 209; /* PXELINUX Config File */
607 *cnt += 1;
608 }
Jason Liu258ccd62010-11-14 12:23:09 +0800609 /* no options, so back up to avoid sending an empty request list */
610 if (*cnt == 0)
611 e -= 2;
612
wdenk232c1502004-03-12 00:14:09 +0000613 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000614
wdenk232c1502004-03-12 00:14:09 +0000615 /* Pad to minimal length */
Tom Rini6e7df1d2023-01-10 11:19:45 -0500616#ifdef CFG_DHCP_MIN_EXT_LEN
617 while ((e - start) < CFG_DHCP_MIN_EXT_LEN)
wdenk232c1502004-03-12 00:14:09 +0000618 *e++ = 0;
wdenk3861aa52002-09-27 23:19:37 +0000619#endif
620
wdenk232c1502004-03-12 00:14:09 +0000621 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000622}
623
Jon Loeliger610f2e92007-07-10 11:05:02 -0500624#else
wdenk3861aa52002-09-27 23:19:37 +0000625/*
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000626 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
wdenk3861aa52002-09-27 23:19:37 +0000627 */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500628static int bootp_extended(u8 *e)
wdenk3861aa52002-09-27 23:19:37 +0000629{
wdenk232c1502004-03-12 00:14:09 +0000630 u8 *start = e;
wdenk3861aa52002-09-27 23:19:37 +0000631
wdenk232c1502004-03-12 00:14:09 +0000632 *e++ = 99; /* RFC1048 Magic Cookie */
633 *e++ = 130;
634 *e++ = 83;
635 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000636
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500637#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000638 *e++ = 53; /* DHCP Message Type */
639 *e++ = 1;
640 *e++ = DHCP_DISCOVER;
wdenk3861aa52002-09-27 23:19:37 +0000641
wdenk232c1502004-03-12 00:14:09 +0000642 *e++ = 57; /* Maximum DHCP Message Size */
643 *e++ = 2;
Joe Hershbergerf8315732012-05-23 07:58:14 +0000644 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
645 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500646#endif
wdenk3861aa52002-09-27 23:19:37 +0000647
Walter Stolld4a660a2021-10-12 11:01:59 +0000648 e = add_vci(e);
Ilya Yanok9ace17c2012-09-17 10:26:25 +0000649
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500650#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000651 *e++ = 1; /* Subnet mask request */
652 *e++ = 4;
653 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000654#endif
655
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500656#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000657 *e++ = 3; /* Default gateway request */
658 *e++ = 4;
659 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000660#endif
661
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500662#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000663 *e++ = 6; /* Domain Name Server */
664 *e++ = 4;
665 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000666#endif
667
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500668#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000669 *e++ = 12; /* Host name request */
670 *e++ = 32;
671 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000672#endif
673
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500674#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000675 *e++ = 13; /* Boot file size */
676 *e++ = 2;
677 e += 2;
wdenk3861aa52002-09-27 23:19:37 +0000678#endif
679
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500680#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000681 *e++ = 17; /* Boot path */
682 *e++ = 32;
683 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000684#endif
685
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500686#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000687 *e++ = 40; /* NIS Domain name request */
688 *e++ = 32;
689 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000690#endif
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000691#if defined(CONFIG_BOOTP_NTPSERVER)
692 *e++ = 42;
693 *e++ = 4;
694 e += 4;
695#endif
wdenk3861aa52002-09-27 23:19:37 +0000696
wdenk232c1502004-03-12 00:14:09 +0000697 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000698
Andre Renaud166c4092016-05-05 07:28:08 -0600699 /*
700 * If nothing in list, remove it altogether. Some DHCP servers get
701 * upset by this minor faux pas and do not respond at all.
702 */
703 if (e == start + 3) {
704 printf("*** Warning: no DHCP options requested\n");
705 e -= 3;
706 }
707
wdenk232c1502004-03-12 00:14:09 +0000708 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000709}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500710#endif
wdenk3861aa52002-09-27 23:19:37 +0000711
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500712void bootp_reset(void)
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600713{
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200714 bootp_num_ids = 0;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500715 bootp_try = 0;
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600716 bootp_start = get_timer(0);
Thierry Reding92ac8ac2014-08-19 10:21:24 +0200717 bootp_timeout = 250;
Stephen Warrenf59be6e2014-07-25 17:30:48 -0600718}
719
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500720void bootp_request(void)
wdenk3861aa52002-09-27 23:19:37 +0000721{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000722 uchar *pkt, *iphdr;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500723 struct bootp_hdr *bp;
Joe Hershbergerae446f52012-05-23 07:59:10 +0000724 int extlen, pktlen, iplen;
725 int eth_hdr_size;
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000726#ifdef CONFIG_BOOTP_RANDOM_DELAY
Pavel Machek8e8d73b2014-07-11 11:39:37 +0200727 ulong rand_ms;
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000728#endif
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500729 u32 bootp_id;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500730 struct in_addr zero_ip;
731 struct in_addr bcast_ip;
Alexandre Messier50768f52016-02-01 17:08:57 -0500732 char *ep; /* Environment pointer */
wdenk3861aa52002-09-27 23:19:37 +0000733
Simon Glass573f14f2011-12-10 11:08:06 +0000734 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500735#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000736 dhcp_state = INIT;
737#endif
738
Simon Glass00caae62017-08-03 12:22:12 -0600739 ep = env_get("bootpretryperiod");
Alexandre Messier50768f52016-02-01 17:08:57 -0500740 if (ep != NULL)
Simon Glass0b1284e2021-07-24 09:03:30 -0600741 time_taken_max = dectoul(ep, NULL);
Alexandre Messier50768f52016-02-01 17:08:57 -0500742 else
743 time_taken_max = TIMEOUT_MS;
744
wdenk3861aa52002-09-27 23:19:37 +0000745#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500746 if (bootp_try == 0)
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000747 srand_mac();
wdenk3861aa52002-09-27 23:19:37 +0000748
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500749 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
750 rand_ms = rand() >> (22 - bootp_try);
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000751 else /* After 3rd BOOTP request max 8192 * 1ms */
752 rand_ms = rand() >> 19;
wdenk3861aa52002-09-27 23:19:37 +0000753
Joe Hershbergereafc8db2012-05-23 07:57:58 +0000754 printf("Random delay: %ld ms...\n", rand_ms);
Pavel Machek8e8d73b2014-07-11 11:39:37 +0200755 mdelay(rand_ms);
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000756
wdenk3861aa52002-09-27 23:19:37 +0000757#endif /* CONFIG_BOOTP_RANDOM_DELAY */
758
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500759 printf("BOOTP broadcast %d\n", ++bootp_try);
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500760 pkt = net_tx_packet;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000761 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +0000762
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500763 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerae446f52012-05-23 07:59:10 +0000764 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +0000765
766 /*
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000767 * Next line results in incorrect packet size being transmitted,
768 * resulting in errors in some DHCP servers, reporting missing bytes.
769 * Size must be set in packet header after extension length has been
770 * determined.
wdenk3861aa52002-09-27 23:19:37 +0000771 * C. Hallinan, DS4.COM, Inc.
772 */
Joe Hershberger4b11c912012-05-23 07:59:07 +0000773 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500774 sizeof (struct bootp_hdr)); */
Joe Hershberger4b11c912012-05-23 07:59:07 +0000775 iphdr = pkt; /* We need this later for net_set_udp_header() */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000776 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000777
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500778 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +0000779 bp->bp_op = OP_BOOTREQUEST;
780 bp->bp_htype = HWT_ETHER;
781 bp->bp_hlen = HWL_ETHER;
782 bp->bp_hops = 0;
Stefan Brüns454d9d32015-08-27 23:57:18 +0200783 /*
784 * according to RFC1542, should be 0 on first request, secs since
785 * first request otherwise
786 */
787 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500788 zero_ip.s_addr = 0;
789 net_write_ip(&bp->bp_ciaddr, zero_ip);
790 net_write_ip(&bp->bp_yiaddr, zero_ip);
791 net_write_ip(&bp->bp_siaddr, zero_ip);
792 net_write_ip(&bp->bp_giaddr, zero_ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500793 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Joe Hershberger14111572015-04-08 01:41:02 -0500794 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +0000795
796 /* Request additional information from the BOOTP/DHCP server */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500797#if defined(CONFIG_CMD_DHCP)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500798 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
799 zero_ip);
wdenk3861aa52002-09-27 23:19:37 +0000800#else
Joe Hershberger049a95a2015-04-08 01:41:01 -0500801 extlen = bootp_extended((u8 *)bp->bp_vend);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500802#endif
wdenk3861aa52002-09-27 23:19:37 +0000803
804 /*
805 * Bootp ID is the lower 4 bytes of our ethernet address
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200806 * plus the current time in ms.
wdenk3861aa52002-09-27 23:19:37 +0000807 */
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500808 bootp_id = ((u32)net_ethaddr[2] << 24)
809 | ((u32)net_ethaddr[3] << 16)
810 | ((u32)net_ethaddr[4] << 8)
811 | (u32)net_ethaddr[5];
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500812 bootp_id += get_timer(0);
813 bootp_id = htonl(bootp_id);
814 bootp_add_id(bootp_id);
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500815 net_copy_u32(&bp->bp_id, &bootp_id);
wdenk3861aa52002-09-27 23:19:37 +0000816
817 /*
818 * Calculate proper packet lengths taking into account the
819 * variable size of the options field
820 */
Joe Hershbergerae446f52012-05-23 07:59:10 +0000821 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
822 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500823 bcast_ip.s_addr = 0xFFFFFFFFL;
824 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500825 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
wdenk3861aa52002-09-27 23:19:37 +0000826
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500827#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000828 dhcp_state = SELECTING;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500829 net_set_udp_handler(dhcp_handler);
wdenk3861aa52002-09-27 23:19:37 +0000830#else
Joe Hershberger049a95a2015-04-08 01:41:01 -0500831 net_set_udp_handler(bootp_handler);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500832#endif
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500833 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +0000834}
835
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500836#if defined(CONFIG_CMD_DHCP)
Stefan Brüns774c3e02015-09-04 00:31:49 +0200837static void dhcp_process_options(uchar *popt, uchar *end)
wdenk3861aa52002-09-27 23:19:37 +0000838{
wdenk3861aa52002-09-27 23:19:37 +0000839 int oplen, size;
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200840#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
841 int *to_ptr;
842#endif
wdenk3861aa52002-09-27 23:19:37 +0000843
wdenk232c1502004-03-12 00:14:09 +0000844 while (popt < end && *popt != 0xff) {
wdenk3861aa52002-09-27 23:19:37 +0000845 oplen = *(popt + 1);
wdenk232c1502004-03-12 00:14:09 +0000846 switch (*popt) {
Stefan Brünsc56eb572015-08-28 10:15:54 +0200847 case 0:
848 oplen = -1; /* Pad omits len byte */
849 break;
wdenk232c1502004-03-12 00:14:09 +0000850 case 1:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500851 net_copy_ip(&net_netmask, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000852 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500853#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000854 case 2: /* Time offset */
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500855 to_ptr = &net_ntp_time_offset;
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500856 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500857 net_ntp_time_offset = ntohl(net_ntp_time_offset);
wdenkea287de2005-04-01 00:25:43 +0000858 break;
859#endif
wdenk232c1502004-03-12 00:14:09 +0000860 case 3:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500861 net_copy_ip(&net_gateway, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000862 break;
863 case 6:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500864 net_copy_ip(&net_dns_server, (popt + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500865#if defined(CONFIG_BOOTP_DNS2)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000866 if (*(popt + 1) > 4)
Joe Hershberger049a95a2015-04-08 01:41:01 -0500867 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
stroesefe389a82003-08-28 14:17:32 +0000868#endif
wdenk232c1502004-03-12 00:14:09 +0000869 break;
870 case 12:
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000871 size = truncate_sz("Host Name",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500872 sizeof(net_hostname), oplen);
873 memcpy(&net_hostname, popt + 2, size);
874 net_hostname[size] = 0;
wdenk232c1502004-03-12 00:14:09 +0000875 break;
876 case 15: /* Ignore Domain Name Option */
877 break;
878 case 17:
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000879 size = truncate_sz("Root Path",
Joe Hershberger586cbe52015-04-08 01:41:03 -0500880 sizeof(net_root_path), oplen);
881 memcpy(&net_root_path, popt + 2, size);
882 net_root_path[size] = 0;
wdenk232c1502004-03-12 00:14:09 +0000883 break;
Brian Rzyckiee0f60d2012-09-11 09:22:53 +0000884 case 28: /* Ignore Broadcast Address Option */
885 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500886#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000887 case 42: /* NTP server IP */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500888 net_copy_ip(&net_ntp_server, (popt + 2));
wdenkea287de2005-04-01 00:25:43 +0000889 break;
890#endif
wdenk232c1502004-03-12 00:14:09 +0000891 case 51:
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500892 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000893 break;
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200894 case 52:
895 dhcp_option_overload = popt[2];
896 break;
wdenk232c1502004-03-12 00:14:09 +0000897 case 53: /* Ignore Message Type Option */
898 break;
899 case 54:
Joe Hershberger049a95a2015-04-08 01:41:01 -0500900 net_copy_ip(&dhcp_server_ip, (popt + 2));
wdenk232c1502004-03-12 00:14:09 +0000901 break;
902 case 58: /* Ignore Renewal Time Option */
903 break;
904 case 59: /* Ignore Rebinding Time Option */
905 break;
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100906 case 66: /* Ignore TFTP server name */
907 break;
Stefan Brünsec87b1b2015-09-04 00:31:48 +0200908 case 67: /* Bootfile option */
Alexander Graf449312c2018-06-15 10:29:27 +0200909 if (!net_boot_file_name_explicit) {
910 size = truncate_sz("Bootfile",
911 sizeof(net_boot_file_name),
912 oplen);
913 memcpy(&net_boot_file_name, popt + 2, size);
914 net_boot_file_name[size] = 0;
915 }
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100916 break;
Sean Edmond91953952023-07-25 16:20:30 -0700917 case 209: /* PXELINUX Config File */
918 if (IS_ENABLED(CONFIG_BOOTP_PXE_DHCP_OPTION)) {
919 /* In case it has already been allocated when get DHCP Offer packet,
920 * free first to avoid memory leak.
921 */
922 if (pxelinux_configfile)
923 free(pxelinux_configfile);
924
925 pxelinux_configfile = (char *)malloc((oplen + 1) * sizeof(char));
926
927 if (pxelinux_configfile)
928 strlcpy(pxelinux_configfile, popt + 2, oplen + 1);
929 else
930 printf("Error: Failed to allocate pxelinux_configfile\n");
931 }
932 break;
wdenk232c1502004-03-12 00:14:09 +0000933 default:
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500934#if defined(CONFIG_BOOTP_VENDOREX)
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000935 if (dhcp_vendorex_proc(popt))
wdenk8bde7f72003-06-27 21:31:46 +0000936 break;
wdenk3861aa52002-09-27 23:19:37 +0000937#endif
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000938 printf("*** Unhandled DHCP Option in OFFER/ACK:"
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500939 " %d\n", *popt);
wdenk232c1502004-03-12 00:14:09 +0000940 break;
wdenk3861aa52002-09-27 23:19:37 +0000941 }
942 popt += oplen + 2; /* Process next option */
943 }
944}
945
Stefan Brüns774c3e02015-09-04 00:31:49 +0200946static void dhcp_packet_process_options(struct bootp_hdr *bp)
947{
948 uchar *popt = (uchar *)&bp->bp_vend[4];
949 uchar *end = popt + BOOTP_HDR_SIZE;
950
951 if (net_read_u32((u32 *)&bp->bp_vend[0]) != htonl(BOOTP_VENDOR_MAGIC))
952 return;
953
954 dhcp_option_overload = 0;
955
956 /*
957 * The 'options' field MUST be interpreted first, 'file' next,
958 * 'sname' last.
959 */
960 dhcp_process_options(popt, end);
961
962 if (dhcp_option_overload & OVERLOAD_FILE) {
963 popt = (uchar *)bp->bp_file;
964 end = popt + sizeof(bp->bp_file);
965 dhcp_process_options(popt, end);
966 }
967
968 if (dhcp_option_overload & OVERLOAD_SNAME) {
969 popt = (uchar *)bp->bp_sname;
970 end = popt + sizeof(bp->bp_sname);
971 dhcp_process_options(popt, end);
972 }
973}
974
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500975static int dhcp_message_type(unsigned char *popt)
wdenk3861aa52002-09-27 23:19:37 +0000976{
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -0500977 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
wdenk3861aa52002-09-27 23:19:37 +0000978 return -1;
979
980 popt += 4;
Joe Hershberger3090b7e32012-05-15 08:59:06 +0000981 while (*popt != 0xff) {
982 if (*popt == 53) /* DHCP Message Type */
wdenk3861aa52002-09-27 23:19:37 +0000983 return *(popt + 2);
Stefan Brünsc56eb572015-08-28 10:15:54 +0200984 if (*popt == 0) {
985 /* Pad */
986 popt += 1;
987 } else {
988 /* Scan through all options */
989 popt += *(popt + 1) + 2;
990 }
wdenk3861aa52002-09-27 23:19:37 +0000991 }
992 return -1;
993}
994
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500995static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
wdenk3861aa52002-09-27 23:19:37 +0000996{
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000997 uchar *pkt, *iphdr;
Joe Hershberger7044c6b2015-04-08 01:41:09 -0500998 struct bootp_hdr *bp;
wdenk3861aa52002-09-27 23:19:37 +0000999 int pktlen, iplen, extlen;
Joe Hershbergerae446f52012-05-23 07:59:10 +00001000 int eth_hdr_size;
Joe Hershberger049a95a2015-04-08 01:41:01 -05001001 struct in_addr offered_ip;
1002 struct in_addr zero_ip;
1003 struct in_addr bcast_ip;
wdenk3861aa52002-09-27 23:19:37 +00001004
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001005 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
Joe Hershberger1203fcc2015-04-08 01:41:05 -05001006 pkt = net_tx_packet;
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001007 memset((void *)pkt, 0, PKTSIZE);
wdenk3861aa52002-09-27 23:19:37 +00001008
Joe Hershberger1203fcc2015-04-08 01:41:05 -05001009 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
Joe Hershbergerae446f52012-05-23 07:59:10 +00001010 pkt += eth_hdr_size;
wdenk3861aa52002-09-27 23:19:37 +00001011
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001012 iphdr = pkt; /* We'll need this later to set proper pkt size */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001013 pkt += IP_UDP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +00001014
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001015 bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +00001016 bp->bp_op = OP_BOOTREQUEST;
1017 bp->bp_htype = HWT_ETHER;
1018 bp->bp_hlen = HWL_ETHER;
1019 bp->bp_hops = 0;
Stefan Brüns454d9d32015-08-27 23:57:18 +02001020 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001021 /* Do not set the client IP, your IP, or server IP yet, since it
1022 * hasn't been ACK'ed by the server yet */
Justin Flammiae5c794e2007-10-29 17:40:35 -04001023
Wolfgang Denkc6686702006-10-12 00:01:08 +02001024 /*
Wolfgang Denkd82718f2006-10-09 01:26:14 +02001025 * RFC3046 requires Relay Agents to discard packets with
1026 * nonzero and offered giaddr
1027 */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001028 zero_ip.s_addr = 0;
1029 net_write_ip(&bp->bp_giaddr, zero_ip);
Wolfgang Denkd82718f2006-10-09 01:26:14 +02001030
Joe Hershberger0adb5b72015-04-08 01:41:04 -05001031 memcpy(bp->bp_chaddr, net_ethaddr, 6);
Alexandre Messierb2b7fbc2016-01-28 11:19:02 -05001032 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
wdenk3861aa52002-09-27 23:19:37 +00001033
1034 /*
1035 * ID is the id of the OFFER packet
1036 */
1037
Sergey Temerkhanov5917e7d2015-04-08 01:41:22 -05001038 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
wdenk3861aa52002-09-27 23:19:37 +00001039
1040 /*
1041 * Copy options from OFFER packet if present
1042 */
Justin Flammiae5c794e2007-10-29 17:40:35 -04001043
1044 /* Copy offered IP into the parameters request list */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001045 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
1046 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
1047 dhcp_server_ip, offered_ip);
wdenk3861aa52002-09-27 23:19:37 +00001048
Joe Hershbergerae446f52012-05-23 07:59:10 +00001049 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
1050 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
Joe Hershberger049a95a2015-04-08 01:41:01 -05001051 bcast_ip.s_addr = 0xFFFFFFFFL;
1052 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
wdenk3861aa52002-09-27 23:19:37 +00001053
Joe Hershbergerf9623222012-05-23 07:59:11 +00001054 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
Joe Hershberger1203fcc2015-04-08 01:41:05 -05001055 net_send_packet(net_tx_packet, pktlen);
wdenk3861aa52002-09-27 23:19:37 +00001056}
1057
1058/*
1059 * Handle DHCP received packets.
1060 */
Joe Hershberger049a95a2015-04-08 01:41:01 -05001061static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
1062 unsigned src, unsigned len)
wdenk3861aa52002-09-27 23:19:37 +00001063{
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001064 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
wdenk3861aa52002-09-27 23:19:37 +00001065
Robin Getz0ebf04c2009-07-23 03:01:03 -04001066 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001067 src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001068
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001069 /* Filter out pkts we don't want */
Stefan Brüns867d6ae2015-08-27 23:53:26 +02001070 if (check_reply_packet(pkt, dest, src, len))
wdenk3861aa52002-09-27 23:19:37 +00001071 return;
1072
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001073 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
1074 "%d\n", src, dest, len, dhcp_state);
wdenk3861aa52002-09-27 23:19:37 +00001075
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001076 if (net_read_ip(&bp->bp_yiaddr).s_addr == 0) {
1077#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1078 store_bootp_params(bp);
1079#endif
Peng Fan44c42dd2016-01-07 15:28:23 +08001080 return;
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001081 }
Peng Fan44c42dd2016-01-07 15:28:23 +08001082
wdenk3861aa52002-09-27 23:19:37 +00001083 switch (dhcp_state) {
1084 case SELECTING:
1085 /*
1086 * Wait an appropriate time for any potential DHCPOFFER packets
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001087 * to arrive. Then select one, and generate DHCPREQUEST
1088 * response. If filename is in format we recognize, assume it
1089 * is a valid OFFER from a server we want.
wdenk3861aa52002-09-27 23:19:37 +00001090 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001091 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001092#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001093 if (strncmp(bp->bp_file,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001094 CONFIG_SYS_BOOTFILE_PREFIX,
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001095 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001096#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
Sean Andersonacb96c12023-10-14 16:47:53 -04001097 if (CONFIG_IS_ENABLED(UNIT_TEST) &&
1098 dhcp_message_type((u8 *)bp->bp_vend) == -1) {
1099 debug("got BOOTP response; transitioning to BOUND\n");
1100 goto dhcp_got_bootp;
1101 }
Stefan Brüns774c3e02015-09-04 00:31:49 +02001102 dhcp_packet_process_options(bp);
Jan Kiszka77b5c4a2022-10-14 18:10:06 +02001103 if (CONFIG_IS_ENABLED(EFI_LOADER) &&
Simon Glassf00d5802023-02-05 15:40:20 -07001104 IS_ENABLED(CONFIG_NETDEVICES))
Jan Kiszka77b5c4a2022-10-14 18:10:06 +02001105 efi_net_set_dhcp_ack(pkt, len);
wdenk3861aa52002-09-27 23:19:37 +00001106
Lyle Franklinc8e251f2019-08-05 06:23:42 -04001107#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1108 if (!net_server_ip.s_addr)
1109 udelay(CONFIG_SERVERIP_FROM_PROXYDHCP_DELAY_MS *
1110 1000);
1111#endif /* CONFIG_SERVERIP_FROM_PROXYDHCP */
1112
Robin Getz0ebf04c2009-07-23 03:01:03 -04001113 debug("TRANSITIONING TO REQUESTING STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001114 dhcp_state = REQUESTING;
stroese759a51b2003-04-10 13:26:44 +00001115
Joe Hershbergerbc0571f2015-04-08 01:41:21 -05001116 net_set_timeout_handler(5000, bootp_timeout_handler);
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001117 dhcp_send_request_packet(bp);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001118#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +00001119 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001120#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +00001121
1122 return;
1123 break;
1124 case REQUESTING:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001125 debug("DHCP State: REQUESTING\n");
wdenk3861aa52002-09-27 23:19:37 +00001126
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001127 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
Sean Andersonacb96c12023-10-14 16:47:53 -04001128dhcp_got_bootp:
Stefan Brüns774c3e02015-09-04 00:31:49 +02001129 dhcp_packet_process_options(bp);
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001130 /* Store net params from reply */
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001131 store_net_params(bp);
wdenk3861aa52002-09-27 23:19:37 +00001132 dhcp_state = BOUND;
Thierry Reding92ac8ac2014-08-19 10:21:24 +02001133 printf("DHCP client bound to address %pI4 (%lu ms)\n",
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001134 &net_ip, get_timer(bootp_start));
Stefan Brüns4f28c9b2015-08-30 17:47:17 +02001135 net_set_timeout_handler(0, (thand_f *)0);
Simon Glass573f14f2011-12-10 11:08:06 +00001136 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001137 "bootp_stop");
wdenk3861aa52002-09-27 23:19:37 +00001138
Simon Glasse4a3d572011-10-27 06:24:32 +00001139 net_auto_load();
wdenk3861aa52002-09-27 23:19:37 +00001140 return;
1141 }
1142 break;
Remy Bohmer51dfe132008-08-20 11:30:28 +02001143 case BOUND:
1144 /* DHCP client bound to address */
1145 break;
wdenk3861aa52002-09-27 23:19:37 +00001146 default:
Joe Hershberger3090b7e32012-05-15 08:59:06 +00001147 puts("DHCP: INVALID STATE\n");
wdenk3861aa52002-09-27 23:19:37 +00001148 break;
1149 }
wdenk3861aa52002-09-27 23:19:37 +00001150}
1151
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001152void dhcp_request(void)
wdenk3861aa52002-09-27 23:19:37 +00001153{
Joe Hershberger7044c6b2015-04-08 01:41:09 -05001154 bootp_request();
wdenk3861aa52002-09-27 23:19:37 +00001155}
Wolfgang Denk992742a2007-11-03 23:09:27 +01001156#endif /* CONFIG_CMD_DHCP */