]> Git Repo - J-u-boot.git/blame - net/bootp.c
Merge patch series "cmd: avoid duplicate weak functions"
[J-u-boot.git] / net / bootp.c
CommitLineData
3861aa5c
WD
1/*
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
232c150a 8 * Copyright 2000-2004 Wolfgang Denk, [email protected]
3861aa5c
WD
9 */
10
52f24238 11#include <bootstage.h>
3861aa5c 12#include <command.h>
9eef56db 13#include <env.h>
0efe1bcf 14#include <efi_loader.h>
f7ae49fc 15#include <log.h>
3861aa5c 16#include <net.h>
90526e9f 17#include <rand.h>
ba06b3c5 18#include <uuid.h>
c05ed00a 19#include <linux/delay.h>
34696958 20#include <net/tftp.h>
3861aa5c 21#include "bootp.h"
2d8d190c 22#ifdef CONFIG_LED_STATUS
3861aa5c
WD
23#include <status_led.h>
24#endif
db7720ba
KP
25#ifdef CONFIG_BOOTP_RANDOM_DELAY
26#include "net_rand.h"
27#endif
91953956 28#include <malloc.h>
3861aa5c 29
3090b7e3 30#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
3861aa5c 31
f59be6e8
SW
32/*
33 * The timeout for the initial BOOTP/DHCP request used to be described by a
01d1b99c 34 * counter of fixed-length timeout periods. CONFIG_NET_RETRY_COUNT represents
f59be6e8
SW
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 */
01d1b99c 42#define TIMEOUT_MS ((3 + (CONFIG_NET_RETRY_COUNT * 5)) * 1000)
3861aa5c 43
6e7df1d1
TR
44#ifndef CFG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
45#define CFG_DHCP_MIN_EXT_LEN 64
3861aa5c
WD
46#endif
47
6e7df1d1
TR
48#ifndef CFG_BOOTP_ID_CACHE_SIZE
49#define CFG_BOOTP_ID_CACHE_SIZE 4
92ac8acc
TR
50#endif
51
6e7df1d1 52u32 bootp_ids[CFG_BOOTP_ID_CACHE_SIZE];
92ac8acc 53unsigned int bootp_num_ids;
7044c6bb 54int bootp_try;
f59be6e8
SW
55ulong bootp_start;
56ulong bootp_timeout;
586cbe51
JH
57char net_nis_domain[32] = {0,}; /* Our NIS domain */
58char net_hostname[32] = {0,}; /* Our hostname */
5e6e41b3 59char net_root_path[CONFIG_BOOTP_MAX_ROOT_PATH_LEN] = {0,}; /* Our bootpath */
3861aa5c 60
50768f5b
AM
61static ulong time_taken_max;
62
643d1ab2 63#if defined(CONFIG_CMD_DHCP)
06370590 64static dhcp_state_t dhcp_state = INIT;
5917e7d1 65static u32 dhcp_leasetime;
049a95a7 66static struct in_addr dhcp_server_ip;
ec87b1b3
SB
67static u8 dhcp_option_overload;
68#define OVERLOAD_FILE 1
69#define OVERLOAD_SNAME 2
049a95a7
JH
70static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
71 unsigned src, unsigned len);
3861aa5c
WD
72
73/* For Debug */
3e38691e
WD
74#if 0
75static char *dhcpmsg2str(int type)
3861aa5c
WD
76{
77 switch (type) {
232c150a
WD
78 case 1: return "DHCPDISCOVER"; break;
79 case 2: return "DHCPOFFER"; break;
80 case 3: return "DHCPREQUEST"; break;
81 case 4: return "DHCPDECLINE"; break;
82 case 5: return "DHCPACK"; break;
83 case 6: return "DHCPNACK"; break;
84 case 7: return "DHCPRELEASE"; break;
3861aa5c
WD
85 default: return "UNKNOWN/INVALID MSG TYPE"; break;
86 }
87}
3e38691e 88#endif
610f2e9c 89#endif
3861aa5c 90
92ac8acc
TR
91static void bootp_add_id(ulong id)
92{
93 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
94 size_t size = sizeof(bootp_ids) - sizeof(id);
95
96 memmove(bootp_ids, &bootp_ids[1], size);
97 bootp_ids[bootp_num_ids - 1] = id;
98 } else {
99 bootp_ids[bootp_num_ids] = id;
100 bootp_num_ids++;
101 }
102}
103
104static bool bootp_match_id(ulong id)
105{
106 unsigned int i;
107
108 for (i = 0; i < bootp_num_ids; i++)
109 if (bootp_ids[i] == id)
110 return true;
111
112 return false;
113}
114
867d6ae2
SB
115static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
116 unsigned len)
3861aa5c 117{
7044c6bb 118 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
119 int retval = 0;
120
121 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
122 retval = -1;
7044c6bb 123 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
3861aa5c 124 retval = -2;
867d6ae2 125 else if (bp->bp_op != OP_BOOTREPLY)
3861aa5c 126 retval = -3;
3861aa5c
WD
127 else if (bp->bp_htype != HWT_ETHER)
128 retval = -4;
129 else if (bp->bp_hlen != HWL_ETHER)
130 retval = -5;
5917e7d1 131 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
3861aa5c 132 retval = -6;
214cc905
AP
133 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0)
134 retval = -7;
3861aa5c 135
0ebf04c6 136 debug("Filtering pkt = %d\n", retval);
3861aa5c
WD
137
138 return retval;
139}
140
c8e251f8 141static void store_bootp_params(struct bootp_hdr *bp)
3861aa5c 142{
049a95a7 143 struct in_addr tmp_ip;
bdce340c
AG
144 bool overwrite_serverip = true;
145
43407539
SG
146 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP))
147 return;
148
bdce340c
AG
149#if defined(CONFIG_BOOTP_PREFER_SERVERIP)
150 overwrite_serverip = false;
151#endif
1752f0fd 152
049a95a7 153 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
bdce340c 154 if (tmp_ip.s_addr != 0 && (overwrite_serverip || !net_server_ip.s_addr))
049a95a7 155 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
1203fcce
JH
156 memcpy(net_server_ethaddr,
157 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
ec87b1b3
SB
158 if (
159#if defined(CONFIG_CMD_DHCP)
160 !(dhcp_option_overload & OVERLOAD_FILE) &&
161#endif
449312c1
AG
162 (strlen(bp->bp_file) > 0) &&
163 !net_boot_file_name_explicit) {
1411157d
JH
164 copy_filename(net_boot_file_name, bp->bp_file,
165 sizeof(net_boot_file_name));
ec87b1b3 166 }
3861aa5c 167
1411157d 168 debug("net_boot_file_name: %s\n", net_boot_file_name);
3861aa5c
WD
169
170 /* Propagate to environment:
8bde7f77 171 * don't delete exising entry when BOOTP / DHCP reply does
3861aa5c
WD
172 * not contain a new value
173 */
1411157d 174 if (*net_boot_file_name)
382bee57 175 env_set("bootfile", net_boot_file_name);
c8e251f8
LF
176}
177
178/*
179 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
180 */
181static void store_net_params(struct bootp_hdr *bp)
182{
183#if !defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
184 store_bootp_params(bp);
ecec4e9c 185#endif
049a95a7 186 net_copy_ip(&net_ip, &bp->bp_yiaddr);
3861aa5c
WD
187}
188
3090b7e3 189static int truncate_sz(const char *name, int maxlen, int curlen)
3861aa5c
WD
190{
191 if (curlen >= maxlen) {
3090b7e3
JH
192 printf("*** WARNING: %s is too long (%d - max: %d)"
193 " - truncated\n", name, curlen, maxlen);
3861aa5c
WD
194 curlen = maxlen - 1;
195 }
3090b7e3 196 return curlen;
3861aa5c
WD
197}
198
643d1ab2 199#if !defined(CONFIG_CMD_DHCP)
3861aa5c 200
7044c6bb 201static void bootp_process_vendor_field(u8 *ext)
3861aa5c 202{
232c150a 203 int size = *(ext + 1);
3861aa5c 204
0ebf04c6 205 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
7044c6bb 206 *(ext + 1));
3861aa5c 207
1411157d 208 net_boot_file_expected_size_in_blocks = 0;
3861aa5c 209
232c150a
WD
210 switch (*ext) {
211 /* Fixed length fields */
3090b7e3 212 case 1: /* Subnet mask */
049a95a7
JH
213 if (net_netmask.s_addr == 0)
214 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
3861aa5c 215 break;
3090b7e3 216 case 2: /* Time offset - Not yet supported */
3861aa5c 217 break;
232c150a 218 /* Variable length fields */
3090b7e3 219 case 3: /* Gateways list */
049a95a7
JH
220 if (net_gateway.s_addr == 0)
221 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
3861aa5c 222 break;
3090b7e3 223 case 4: /* Time server - Not yet supported */
3861aa5c 224 break;
3090b7e3 225 case 5: /* IEN-116 name server - Not yet supported */
3861aa5c
WD
226 break;
227 case 6:
049a95a7
JH
228 if (net_dns_server.s_addr == 0)
229 net_copy_ip(&net_dns_server,
230 (struct in_addr *)(ext + 2));
1fe80d79 231#if defined(CONFIG_BOOTP_DNS2)
049a95a7
JH
232 if ((net_dns_server2.s_addr == 0) && (size > 4))
233 net_copy_ip(&net_dns_server2,
234 (struct in_addr *)(ext + 2 + 4));
fe389a82 235#endif
3861aa5c 236 break;
3090b7e3 237 case 7: /* Log server - Not yet supported */
3861aa5c 238 break;
3090b7e3 239 case 8: /* Cookie/Quote server - Not yet supported */
3861aa5c 240 break;
3090b7e3 241 case 9: /* LPR server - Not yet supported */
3861aa5c 242 break;
3090b7e3 243 case 10: /* Impress server - Not yet supported */
3861aa5c 244 break;
3090b7e3 245 case 11: /* RPL server - Not yet supported */
3861aa5c 246 break;
3090b7e3 247 case 12: /* Host name */
586cbe51 248 if (net_hostname[0] == 0) {
3090b7e3 249 size = truncate_sz("Host Name",
586cbe51
JH
250 sizeof(net_hostname), size);
251 memcpy(&net_hostname, ext + 2, size);
252 net_hostname[size] = 0;
3861aa5c
WD
253 }
254 break;
3090b7e3 255 case 13: /* Boot file size */
3861aa5c 256 if (size == 2)
1411157d
JH
257 net_boot_file_expected_size_in_blocks =
258 ntohs(*(ushort *)(ext + 2));
3861aa5c 259 else if (size == 4)
1411157d
JH
260 net_boot_file_expected_size_in_blocks =
261 ntohl(*(ulong *)(ext + 2));
3861aa5c 262 break;
3090b7e3 263 case 14: /* Merit dump file - Not yet supported */
3861aa5c 264 break;
3090b7e3 265 case 15: /* Domain name - Not yet supported */
3861aa5c 266 break;
3090b7e3 267 case 16: /* Swap server - Not yet supported */
3861aa5c 268 break;
3090b7e3 269 case 17: /* Root path */
586cbe51 270 if (net_root_path[0] == 0) {
3090b7e3 271 size = truncate_sz("Root Path",
586cbe51
JH
272 sizeof(net_root_path), size);
273 memcpy(&net_root_path, ext + 2, size);
274 net_root_path[size] = 0;
3861aa5c
WD
275 }
276 break;
3090b7e3 277 case 18: /* Extension path - Not yet supported */
3861aa5c 278 /*
8bde7f77
WD
279 * This can be used to send the information of the
280 * vendor area in another file that the client can
281 * access via TFTP.
3861aa5c
WD
282 */
283 break;
232c150a 284 /* IP host layer fields */
3090b7e3 285 case 40: /* NIS Domain name */
586cbe51 286 if (net_nis_domain[0] == 0) {
3090b7e3 287 size = truncate_sz("NIS Domain Name",
586cbe51
JH
288 sizeof(net_nis_domain), size);
289 memcpy(&net_nis_domain, ext + 2, size);
290 net_nis_domain[size] = 0;
3861aa5c
WD
291 }
292 break;
09e3a67d
LP
293#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
294 case 42: /* NTP server IP */
049a95a7 295 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
09e3a67d
LP
296 break;
297#endif
232c150a 298 /* Application layer fields */
3090b7e3 299 case 43: /* Vendor specific info - Not yet supported */
3861aa5c 300 /*
8bde7f77
WD
301 * Binary information to exchange specific
302 * product information.
3861aa5c
WD
303 */
304 break;
232c150a
WD
305 /* Reserved (custom) fields (128..254) */
306 }
3861aa5c
WD
307}
308
7044c6bb 309static void bootp_process_vendor(u8 *ext, int size)
3861aa5c 310{
232c150a 311 u8 *end = ext + size;
3861aa5c 312
0ebf04c6 313 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
3861aa5c 314
232c150a
WD
315 while ((ext < end) && (*ext != 0xff)) {
316 if (*ext == 0) {
317 ext++;
318 } else {
319 u8 *opt = ext;
320
321 ext += ext[1] + 2;
322 if (ext <= end)
7044c6bb 323 bootp_process_vendor_field(opt);
232c150a 324 }
3861aa5c 325 }
3861aa5c 326
3090b7e3 327 debug("[BOOTP] Received fields:\n");
049a95a7
JH
328 if (net_netmask.s_addr)
329 debug("net_netmask : %pI4\n", &net_netmask);
232c150a 330
049a95a7
JH
331 if (net_gateway.s_addr)
332 debug("net_gateway : %pI4", &net_gateway);
232c150a 333
1411157d
JH
334 if (net_boot_file_expected_size_in_blocks)
335 debug("net_boot_file_expected_size_in_blocks : %d\n",
336 net_boot_file_expected_size_in_blocks);
3861aa5c 337
586cbe51
JH
338 if (net_hostname[0])
339 debug("net_hostname : %s\n", net_hostname);
232c150a 340
586cbe51
JH
341 if (net_root_path[0])
342 debug("net_root_path : %s\n", net_root_path);
232c150a 343
586cbe51
JH
344 if (net_nis_domain[0])
345 debug("net_nis_domain : %s\n", net_nis_domain);
232c150a 346
09e3a67d 347#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
4b4dc521 348 if (net_ntp_server.s_addr)
049a95a7 349 debug("net_ntp_server : %pI4\n", &net_ntp_server);
09e3a67d 350#endif
232c150a 351}
09349866 352
3861aa5c
WD
353/*
354 * Handle a BOOTP received packet.
355 */
049a95a7
JH
356static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
357 unsigned src, unsigned len)
3861aa5c 358{
7044c6bb 359 struct bootp_hdr *bp;
3861aa5c 360
0ebf04c6 361 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
7044c6bb 362 src, dest, len, sizeof(struct bootp_hdr));
3861aa5c 363
7044c6bb 364 bp = (struct bootp_hdr *)pkt;
3861aa5c 365
3090b7e3 366 /* Filter out pkts we don't want */
867d6ae2 367 if (check_reply_packet(pkt, dest, src, len))
3861aa5c
WD
368 return;
369
370 /*
232c150a 371 * Got a good BOOTP reply. Copy the data into our variables.
3861aa5c 372 */
2d8d190c
UM
373#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
374 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF);
3861aa5c
WD
375#endif
376
7044c6bb 377 store_net_params(bp); /* Store net parameters from reply */
3861aa5c
WD
378
379 /* Retrieve extended information (we must parse the vendor area) */
5917e7d1 380 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
7044c6bb 381 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
3861aa5c 382
bc0571fc 383 net_set_timeout_handler(0, (thand_f *)0);
573f14fe 384 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
3861aa5c 385
0ebf04c6 386 debug("Got good BOOTP\n");
3861aa5c 387
e4a3d57d 388 net_auto_load();
3861aa5c 389}
610f2e9c 390#endif
3861aa5c
WD
391
392/*
393 * Timeout on BOOTP/DHCP request.
394 */
7044c6bb 395static void bootp_timeout_handler(void)
3861aa5c 396{
f59be6e8
SW
397 ulong time_taken = get_timer(bootp_start);
398
50768f5b 399 if (time_taken >= time_taken_max) {
2c00e099 400#ifdef CONFIG_BOOTP_MAY_FAIL
2099b9f2
JH
401 char *ethrotate;
402
403 ethrotate = env_get("ethrotate");
404 if ((ethrotate && strcmp(ethrotate, "no") == 0) ||
405 net_restart_wrap) {
406 puts("\nRetry time exceeded\n");
407 net_set_state(NETLOOP_FAIL);
408 } else
2c00e099 409#endif
2099b9f2
JH
410 {
411 puts("\nRetry time exceeded; starting again\n");
412 net_start_again();
413 }
3861aa5c 414 } else {
f59be6e8 415 bootp_timeout *= 2;
92ac8acc
TR
416 if (bootp_timeout > 2000)
417 bootp_timeout = 2000;
bc0571fc 418 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
7044c6bb 419 bootp_request();
3861aa5c
WD
420 }
421}
422
9ace17c8
IY
423#define put_vci(e, str) \
424 do { \
425 size_t vci_strlen = strlen(str); \
426 *e++ = 60; /* Vendor Class Identifier */ \
427 *e++ = vci_strlen; \
428 memcpy(e, str, vci_strlen); \
429 e += vci_strlen; \
430 } while (0)
431
4570a993
AG
432static u8 *add_vci(u8 *e)
433{
20898ea9 434 char *vci = NULL;
00caae6d 435 char *env_vci = env_get("bootp_vci");
20898ea9 436
4570a993 437#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
20898ea9 438 vci = CONFIG_SPL_NET_VCI_STRING;
4570a993 439#elif defined(CONFIG_BOOTP_VCI_STRING)
20898ea9 440 vci = CONFIG_BOOTP_VCI_STRING;
4570a993
AG
441#endif
442
20898ea9
AG
443 if (env_vci)
444 vci = env_vci;
445
446 if (vci)
447 put_vci(e, vci);
448
4570a993
AG
449 return e;
450}
451
3861aa5c
WD
452/*
453 * Initialize BOOTP extension fields in the request.
454 */
643d1ab2 455#if defined(CONFIG_CMD_DHCP)
049a95a7
JH
456static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
457 struct in_addr requested_ip)
3861aa5c 458{
232c150a
WD
459 u8 *start = e;
460 u8 *cnt;
bc6fc28b 461#ifdef CONFIG_LIB_UUID
d2b5d5c4 462 char *uuid;
d2b5d5c4 463#endif
bc6fc28b 464 int clientarch = -1;
232c150a 465
1fe80d79 466#if defined(CONFIG_BOOTP_VENDOREX)
232c150a 467 u8 *x;
3861aa5c 468#endif
1fe80d79 469#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
77ddac94 470 char *hostname;
fe389a82 471#endif
3861aa5c 472
232c150a
WD
473 *e++ = 99; /* RFC1048 Magic Cookie */
474 *e++ = 130;
475 *e++ = 83;
476 *e++ = 99;
3861aa5c 477
232c150a
WD
478 *e++ = 53; /* DHCP Message Type */
479 *e++ = 1;
480 *e++ = message_type;
3861aa5c 481
232c150a
WD
482 *e++ = 57; /* Maximum DHCP Message Size */
483 *e++ = 2;
f8315731
JH
484 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
485 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
3861aa5c 486
049a95a7
JH
487 if (server_ip.s_addr) {
488 int tmp = ntohl(server_ip.s_addr);
3861aa5c 489
232c150a
WD
490 *e++ = 54; /* ServerID */
491 *e++ = 4;
492 *e++ = tmp >> 24;
493 *e++ = tmp >> 16;
494 *e++ = tmp >> 8;
495 *e++ = tmp & 0xff;
496 }
3861aa5c 497
049a95a7
JH
498 if (requested_ip.s_addr) {
499 int tmp = ntohl(requested_ip.s_addr);
3861aa5c 500
232c150a
WD
501 *e++ = 50; /* Requested IP */
502 *e++ = 4;
503 *e++ = tmp >> 24;
504 *e++ = tmp >> 16;
505 *e++ = tmp >> 8;
506 *e++ = tmp & 0xff;
507 }
1fe80d79 508#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
00caae6d 509 hostname = env_get("hostname");
3090b7e3
JH
510 if (hostname) {
511 int hostnamelen = strlen(hostname);
232c150a
WD
512
513 *e++ = 12; /* Hostname */
514 *e++ = hostnamelen;
3090b7e3 515 memcpy(e, hostname, hostnamelen);
232c150a
WD
516 e += hostnamelen;
517 }
fe389a82
SR
518#endif
519
bc6fc28b 520#ifdef CONFIG_BOOTP_PXE_CLIENTARCH
d2b5d5c4 521 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
bc6fc28b
AG
522#endif
523
00caae6d 524 if (env_get("bootp_arch"))
bfebc8c9 525 clientarch = env_get_ulong("bootp_arch", 16, clientarch);
bc6fc28b
AG
526
527 if (clientarch > 0) {
528 *e++ = 93; /* Client System Architecture */
529 *e++ = 2;
530 *e++ = (clientarch >> 8) & 0xff;
531 *e++ = clientarch & 0xff;
532 }
d2b5d5c4
JH
533
534 *e++ = 94; /* Client Network Interface Identifier */
535 *e++ = 3;
536 *e++ = 1; /* type field for UNDI */
537 *e++ = 0; /* major revision */
538 *e++ = 0; /* minor revision */
539
bc6fc28b 540#ifdef CONFIG_LIB_UUID
00caae6d 541 uuid = env_get("pxeuuid");
d2b5d5c4
JH
542
543 if (uuid) {
544 if (uuid_str_valid(uuid)) {
545 *e++ = 97; /* Client Machine Identifier */
546 *e++ = 17;
547 *e++ = 0; /* type 0 - UUID */
548
d718ded0 549 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
d2b5d5c4
JH
550 e += 16;
551 } else {
552 printf("Invalid pxeuuid: %s\n", uuid);
553 }
554 }
9ace17c8 555#endif
d2b5d5c4 556
4570a993 557 e = add_vci(e);
d2b5d5c4 558
1fe80d79 559#if defined(CONFIG_BOOTP_VENDOREX)
3090b7e3
JH
560 x = dhcp_vendorex_prep(e);
561 if (x)
232c150a 562 return x - start;
3861aa5c
WD
563#endif
564
232c150a
WD
565 *e++ = 55; /* Parameter Request List */
566 cnt = e++; /* Pointer to count of requested items */
567 *cnt = 0;
1fe80d79 568#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
569 *e++ = 1; /* Subnet Mask */
570 *cnt += 1;
3861aa5c 571#endif
1fe80d79 572#if defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb
WD
573 *e++ = 2;
574 *cnt += 1;
575#endif
1fe80d79 576#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
577 *e++ = 3; /* Router Option */
578 *cnt += 1;
3861aa5c 579#endif
1fe80d79 580#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
581 *e++ = 6; /* DNS Server(s) */
582 *cnt += 1;
3861aa5c 583#endif
1fe80d79 584#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
585 *e++ = 12; /* Hostname */
586 *cnt += 1;
3861aa5c 587#endif
1fe80d79 588#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
589 *e++ = 13; /* Boot File Size */
590 *cnt += 1;
3861aa5c 591#endif
1fe80d79 592#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
593 *e++ = 17; /* Boot path */
594 *cnt += 1;
3861aa5c 595#endif
1fe80d79 596#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
597 *e++ = 40; /* NIS Domain name request */
598 *cnt += 1;
ea287deb 599#endif
1fe80d79 600#if defined(CONFIG_BOOTP_NTPSERVER)
ea287deb
WD
601 *e++ = 42;
602 *cnt += 1;
3861aa5c 603#endif
91953956
SE
604 if (IS_ENABLED(CONFIG_BOOTP_PXE_DHCP_OPTION)) {
605 *e++ = 209; /* PXELINUX Config File */
606 *cnt += 1;
607 }
258ccd68
JL
608 /* no options, so back up to avoid sending an empty request list */
609 if (*cnt == 0)
610 e -= 2;
611
232c150a 612 *e++ = 255; /* End of the list */
3861aa5c 613
232c150a 614 /* Pad to minimal length */
6e7df1d1
TR
615#ifdef CFG_DHCP_MIN_EXT_LEN
616 while ((e - start) < CFG_DHCP_MIN_EXT_LEN)
232c150a 617 *e++ = 0;
3861aa5c
WD
618#endif
619
232c150a 620 return e - start;
3861aa5c
WD
621}
622
610f2e9c 623#else
3861aa5c 624/*
3090b7e3 625 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
3861aa5c 626 */
049a95a7 627static int bootp_extended(u8 *e)
3861aa5c 628{
232c150a 629 u8 *start = e;
3861aa5c 630
232c150a
WD
631 *e++ = 99; /* RFC1048 Magic Cookie */
632 *e++ = 130;
633 *e++ = 83;
634 *e++ = 99;
3861aa5c 635
643d1ab2 636#if defined(CONFIG_CMD_DHCP)
232c150a
WD
637 *e++ = 53; /* DHCP Message Type */
638 *e++ = 1;
639 *e++ = DHCP_DISCOVER;
640
641 *e++ = 57; /* Maximum DHCP Message Size */
642 *e++ = 2;
f8315731
JH
643 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
644 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
610f2e9c 645#endif
3861aa5c 646
d4a660aa 647 e = add_vci(e);
9ace17c8 648
1fe80d79 649#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
650 *e++ = 1; /* Subnet mask request */
651 *e++ = 4;
652 e += 4;
3861aa5c
WD
653#endif
654
1fe80d79 655#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
656 *e++ = 3; /* Default gateway request */
657 *e++ = 4;
658 e += 4;
3861aa5c
WD
659#endif
660
1fe80d79 661#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
662 *e++ = 6; /* Domain Name Server */
663 *e++ = 4;
664 e += 4;
3861aa5c
WD
665#endif
666
1fe80d79 667#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
668 *e++ = 12; /* Host name request */
669 *e++ = 32;
670 e += 32;
3861aa5c
WD
671#endif
672
1fe80d79 673#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
674 *e++ = 13; /* Boot file size */
675 *e++ = 2;
676 e += 2;
3861aa5c
WD
677#endif
678
1fe80d79 679#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
680 *e++ = 17; /* Boot path */
681 *e++ = 32;
682 e += 32;
3861aa5c
WD
683#endif
684
1fe80d79 685#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
686 *e++ = 40; /* NIS Domain name request */
687 *e++ = 32;
688 e += 32;
3861aa5c 689#endif
09e3a67d
LP
690#if defined(CONFIG_BOOTP_NTPSERVER)
691 *e++ = 42;
692 *e++ = 4;
693 e += 4;
694#endif
3861aa5c 695
232c150a 696 *e++ = 255; /* End of the list */
3861aa5c 697
166c409b
AR
698 /*
699 * If nothing in list, remove it altogether. Some DHCP servers get
700 * upset by this minor faux pas and do not respond at all.
701 */
702 if (e == start + 3) {
703 printf("*** Warning: no DHCP options requested\n");
704 e -= 3;
705 }
706
232c150a 707 return e - start;
3861aa5c 708}
610f2e9c 709#endif
3861aa5c 710
7044c6bb 711void bootp_reset(void)
f59be6e8 712{
92ac8acc 713 bootp_num_ids = 0;
7044c6bb 714 bootp_try = 0;
f59be6e8 715 bootp_start = get_timer(0);
92ac8acc 716 bootp_timeout = 250;
f59be6e8
SW
717}
718
7044c6bb 719void bootp_request(void)
3861aa5c 720{
db288a96 721 uchar *pkt, *iphdr;
7044c6bb 722 struct bootp_hdr *bp;
ae446f56
JH
723 int extlen, pktlen, iplen;
724 int eth_hdr_size;
eafc8db0 725#ifdef CONFIG_BOOTP_RANDOM_DELAY
8e8d73b4 726 ulong rand_ms;
eafc8db0 727#endif
5917e7d1 728 u32 bootp_id;
049a95a7
JH
729 struct in_addr zero_ip;
730 struct in_addr bcast_ip;
50768f5b 731 char *ep; /* Environment pointer */
3861aa5c 732
573f14fe 733 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
643d1ab2 734#if defined(CONFIG_CMD_DHCP)
3861aa5c
WD
735 dhcp_state = INIT;
736#endif
737
00caae6d 738 ep = env_get("bootpretryperiod");
50768f5b 739 if (ep != NULL)
0b1284eb 740 time_taken_max = dectoul(ep, NULL);
50768f5b
AM
741 else
742 time_taken_max = TIMEOUT_MS;
743
3861aa5c 744#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
7044c6bb 745 if (bootp_try == 0)
eafc8db0 746 srand_mac();
3861aa5c 747
7044c6bb
JH
748 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
749 rand_ms = rand() >> (22 - bootp_try);
eafc8db0
JH
750 else /* After 3rd BOOTP request max 8192 * 1ms */
751 rand_ms = rand() >> 19;
3861aa5c 752
eafc8db0 753 printf("Random delay: %ld ms...\n", rand_ms);
8e8d73b4 754 mdelay(rand_ms);
3090b7e3 755
3861aa5c
WD
756#endif /* CONFIG_BOOTP_RANDOM_DELAY */
757
7044c6bb 758 printf("BOOTP broadcast %d\n", ++bootp_try);
1203fcce 759 pkt = net_tx_packet;
3090b7e3 760 memset((void *)pkt, 0, PKTSIZE);
3861aa5c 761
1203fcce 762 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
ae446f56 763 pkt += eth_hdr_size;
3861aa5c
WD
764
765 /*
3090b7e3
JH
766 * Next line results in incorrect packet size being transmitted,
767 * resulting in errors in some DHCP servers, reporting missing bytes.
768 * Size must be set in packet header after extension length has been
769 * determined.
3861aa5c
WD
770 * C. Hallinan, DS4.COM, Inc.
771 */
4b11c916 772 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
7044c6bb 773 sizeof (struct bootp_hdr)); */
4b11c916 774 iphdr = pkt; /* We need this later for net_set_udp_header() */
594c26f8 775 pkt += IP_UDP_HDR_SIZE;
3861aa5c 776
7044c6bb 777 bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
778 bp->bp_op = OP_BOOTREQUEST;
779 bp->bp_htype = HWT_ETHER;
780 bp->bp_hlen = HWL_ETHER;
781 bp->bp_hops = 0;
454d9d3e
SB
782 /*
783 * according to RFC1542, should be 0 on first request, secs since
784 * first request otherwise
785 */
786 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
049a95a7
JH
787 zero_ip.s_addr = 0;
788 net_write_ip(&bp->bp_ciaddr, zero_ip);
789 net_write_ip(&bp->bp_yiaddr, zero_ip);
790 net_write_ip(&bp->bp_siaddr, zero_ip);
791 net_write_ip(&bp->bp_giaddr, zero_ip);
0adb5b76 792 memcpy(bp->bp_chaddr, net_ethaddr, 6);
1411157d 793 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
3861aa5c
WD
794
795 /* Request additional information from the BOOTP/DHCP server */
643d1ab2 796#if defined(CONFIG_CMD_DHCP)
049a95a7
JH
797 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
798 zero_ip);
3861aa5c 799#else
049a95a7 800 extlen = bootp_extended((u8 *)bp->bp_vend);
610f2e9c 801#endif
3861aa5c
WD
802
803 /*
804 * Bootp ID is the lower 4 bytes of our ethernet address
49f3bdbb 805 * plus the current time in ms.
3861aa5c 806 */
5917e7d1
ST
807 bootp_id = ((u32)net_ethaddr[2] << 24)
808 | ((u32)net_ethaddr[3] << 16)
809 | ((u32)net_ethaddr[4] << 8)
810 | (u32)net_ethaddr[5];
7044c6bb
JH
811 bootp_id += get_timer(0);
812 bootp_id = htonl(bootp_id);
813 bootp_add_id(bootp_id);
5917e7d1 814 net_copy_u32(&bp->bp_id, &bootp_id);
3861aa5c
WD
815
816 /*
817 * Calculate proper packet lengths taking into account the
818 * variable size of the options field
819 */
ae446f56
JH
820 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
821 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
049a95a7
JH
822 bcast_ip.s_addr = 0xFFFFFFFFL;
823 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
bc0571fc 824 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
3861aa5c 825
643d1ab2 826#if defined(CONFIG_CMD_DHCP)
3861aa5c 827 dhcp_state = SELECTING;
049a95a7 828 net_set_udp_handler(dhcp_handler);
3861aa5c 829#else
049a95a7 830 net_set_udp_handler(bootp_handler);
610f2e9c 831#endif
1203fcce 832 net_send_packet(net_tx_packet, pktlen);
3861aa5c
WD
833}
834
643d1ab2 835#if defined(CONFIG_CMD_DHCP)
774c3e05 836static void dhcp_process_options(uchar *popt, uchar *end)
3861aa5c 837{
3861aa5c 838 int oplen, size;
d8d8724b
WD
839#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
840 int *to_ptr;
841#endif
3861aa5c 842
232c150a 843 while (popt < end && *popt != 0xff) {
3861aa5c 844 oplen = *(popt + 1);
232c150a 845 switch (*popt) {
c56eb573
SB
846 case 0:
847 oplen = -1; /* Pad omits len byte */
848 break;
232c150a 849 case 1:
049a95a7 850 net_copy_ip(&net_netmask, (popt + 2));
232c150a 851 break;
1fe80d79 852#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb 853 case 2: /* Time offset */
bc0571fc 854 to_ptr = &net_ntp_time_offset;
5917e7d1 855 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
bc0571fc 856 net_ntp_time_offset = ntohl(net_ntp_time_offset);
ea287deb
WD
857 break;
858#endif
232c150a 859 case 3:
049a95a7 860 net_copy_ip(&net_gateway, (popt + 2));
232c150a
WD
861 break;
862 case 6:
049a95a7 863 net_copy_ip(&net_dns_server, (popt + 2));
1fe80d79 864#if defined(CONFIG_BOOTP_DNS2)
3090b7e3 865 if (*(popt + 1) > 4)
049a95a7 866 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
fe389a82 867#endif
232c150a
WD
868 break;
869 case 12:
3090b7e3 870 size = truncate_sz("Host Name",
586cbe51
JH
871 sizeof(net_hostname), oplen);
872 memcpy(&net_hostname, popt + 2, size);
873 net_hostname[size] = 0;
232c150a
WD
874 break;
875 case 15: /* Ignore Domain Name Option */
876 break;
877 case 17:
3090b7e3 878 size = truncate_sz("Root Path",
586cbe51
JH
879 sizeof(net_root_path), oplen);
880 memcpy(&net_root_path, popt + 2, size);
881 net_root_path[size] = 0;
232c150a 882 break;
ee0f60df
BR
883 case 28: /* Ignore Broadcast Address Option */
884 break;
8ab388bf
CH
885 case 40: /* NIS Domain name */
886 if (net_nis_domain[0] == 0) {
887 size = truncate_sz("NIS Domain Name",
e69b1874 888 sizeof(net_nis_domain), oplen);
8ab388bf
CH
889 memcpy(&net_nis_domain, popt + 2, size);
890 net_nis_domain[size] = 0;
891 }
892 break;
1fe80d79 893#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
ea287deb 894 case 42: /* NTP server IP */
049a95a7 895 net_copy_ip(&net_ntp_server, (popt + 2));
ea287deb
WD
896 break;
897#endif
232c150a 898 case 51:
5917e7d1 899 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
232c150a 900 break;
ec87b1b3
SB
901 case 52:
902 dhcp_option_overload = popt[2];
903 break;
232c150a
WD
904 case 53: /* Ignore Message Type Option */
905 break;
906 case 54:
049a95a7 907 net_copy_ip(&dhcp_server_ip, (popt + 2));
232c150a
WD
908 break;
909 case 58: /* Ignore Renewal Time Option */
910 break;
911 case 59: /* Ignore Rebinding Time Option */
912 break;
3b2e4fd9
WD
913 case 66: /* Ignore TFTP server name */
914 break;
ec87b1b3 915 case 67: /* Bootfile option */
449312c1
AG
916 if (!net_boot_file_name_explicit) {
917 size = truncate_sz("Bootfile",
918 sizeof(net_boot_file_name),
919 oplen);
920 memcpy(&net_boot_file_name, popt + 2, size);
921 net_boot_file_name[size] = 0;
922 }
3b2e4fd9 923 break;
91953956
SE
924 case 209: /* PXELINUX Config File */
925 if (IS_ENABLED(CONFIG_BOOTP_PXE_DHCP_OPTION)) {
926 /* In case it has already been allocated when get DHCP Offer packet,
927 * free first to avoid memory leak.
928 */
929 if (pxelinux_configfile)
930 free(pxelinux_configfile);
931
932 pxelinux_configfile = (char *)malloc((oplen + 1) * sizeof(char));
933
934 if (pxelinux_configfile)
935 strlcpy(pxelinux_configfile, popt + 2, oplen + 1);
936 else
937 printf("Error: Failed to allocate pxelinux_configfile\n");
938 }
939 break;
232c150a 940 default:
1fe80d79 941#if defined(CONFIG_BOOTP_VENDOREX)
3090b7e3 942 if (dhcp_vendorex_proc(popt))
8bde7f77 943 break;
3861aa5c 944#endif
3090b7e3 945 printf("*** Unhandled DHCP Option in OFFER/ACK:"
7044c6bb 946 " %d\n", *popt);
232c150a 947 break;
3861aa5c
WD
948 }
949 popt += oplen + 2; /* Process next option */
950 }
951}
952
774c3e05
SB
953static void dhcp_packet_process_options(struct bootp_hdr *bp)
954{
955 uchar *popt = (uchar *)&bp->bp_vend[4];
956 uchar *end = popt + BOOTP_HDR_SIZE;
957
958 if (net_read_u32((u32 *)&bp->bp_vend[0]) != htonl(BOOTP_VENDOR_MAGIC))
959 return;
960
961 dhcp_option_overload = 0;
962
963 /*
964 * The 'options' field MUST be interpreted first, 'file' next,
965 * 'sname' last.
966 */
967 dhcp_process_options(popt, end);
968
969 if (dhcp_option_overload & OVERLOAD_FILE) {
970 popt = (uchar *)bp->bp_file;
971 end = popt + sizeof(bp->bp_file);
972 dhcp_process_options(popt, end);
973 }
974
975 if (dhcp_option_overload & OVERLOAD_SNAME) {
976 popt = (uchar *)bp->bp_sname;
977 end = popt + sizeof(bp->bp_sname);
978 dhcp_process_options(popt, end);
979 }
980}
981
7044c6bb 982static int dhcp_message_type(unsigned char *popt)
3861aa5c 983{
5917e7d1 984 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
3861aa5c
WD
985 return -1;
986
987 popt += 4;
3090b7e3
JH
988 while (*popt != 0xff) {
989 if (*popt == 53) /* DHCP Message Type */
3861aa5c 990 return *(popt + 2);
c56eb573
SB
991 if (*popt == 0) {
992 /* Pad */
993 popt += 1;
994 } else {
995 /* Scan through all options */
996 popt += *(popt + 1) + 2;
997 }
3861aa5c
WD
998 }
999 return -1;
1000}
1001
7044c6bb 1002static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
3861aa5c 1003{
db288a96 1004 uchar *pkt, *iphdr;
7044c6bb 1005 struct bootp_hdr *bp;
3861aa5c 1006 int pktlen, iplen, extlen;
ae446f56 1007 int eth_hdr_size;
049a95a7
JH
1008 struct in_addr offered_ip;
1009 struct in_addr zero_ip;
1010 struct in_addr bcast_ip;
3861aa5c 1011
7044c6bb 1012 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
1203fcce 1013 pkt = net_tx_packet;
3090b7e3 1014 memset((void *)pkt, 0, PKTSIZE);
3861aa5c 1015
1203fcce 1016 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
ae446f56 1017 pkt += eth_hdr_size;
3861aa5c 1018
3090b7e3 1019 iphdr = pkt; /* We'll need this later to set proper pkt size */
594c26f8 1020 pkt += IP_UDP_HDR_SIZE;
3861aa5c 1021
7044c6bb 1022 bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
1023 bp->bp_op = OP_BOOTREQUEST;
1024 bp->bp_htype = HWT_ETHER;
1025 bp->bp_hlen = HWL_ETHER;
1026 bp->bp_hops = 0;
454d9d3e 1027 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
3090b7e3
JH
1028 /* Do not set the client IP, your IP, or server IP yet, since it
1029 * hasn't been ACK'ed by the server yet */
e5c794e4 1030
c6686703 1031 /*
d82718fe
WD
1032 * RFC3046 requires Relay Agents to discard packets with
1033 * nonzero and offered giaddr
1034 */
049a95a7
JH
1035 zero_ip.s_addr = 0;
1036 net_write_ip(&bp->bp_giaddr, zero_ip);
d82718fe 1037
0adb5b76 1038 memcpy(bp->bp_chaddr, net_ethaddr, 6);
b2b7fbc3 1039 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
3861aa5c
WD
1040
1041 /*
1042 * ID is the id of the OFFER packet
1043 */
1044
5917e7d1 1045 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
3861aa5c
WD
1046
1047 /*
1048 * Copy options from OFFER packet if present
1049 */
e5c794e4
JF
1050
1051 /* Copy offered IP into the parameters request list */
049a95a7
JH
1052 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
1053 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
1054 dhcp_server_ip, offered_ip);
3861aa5c 1055
ae446f56
JH
1056 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
1057 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
049a95a7
JH
1058 bcast_ip.s_addr = 0xFFFFFFFFL;
1059 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
3861aa5c 1060
f9623229 1061 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
1203fcce 1062 net_send_packet(net_tx_packet, pktlen);
3861aa5c
WD
1063}
1064
1065/*
1066 * Handle DHCP received packets.
1067 */
049a95a7
JH
1068static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
1069 unsigned src, unsigned len)
3861aa5c 1070{
7044c6bb 1071 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
3861aa5c 1072
0ebf04c6 1073 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
7044c6bb 1074 src, dest, len, dhcp_state);
3861aa5c 1075
3090b7e3 1076 /* Filter out pkts we don't want */
867d6ae2 1077 if (check_reply_packet(pkt, dest, src, len))
3861aa5c
WD
1078 return;
1079
7044c6bb
JH
1080 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
1081 "%d\n", src, dest, len, dhcp_state);
3861aa5c 1082
c8e251f8
LF
1083 if (net_read_ip(&bp->bp_yiaddr).s_addr == 0) {
1084#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1085 store_bootp_params(bp);
1086#endif
44c42dd4 1087 return;
c8e251f8 1088 }
44c42dd4 1089
3861aa5c
WD
1090 switch (dhcp_state) {
1091 case SELECTING:
1092 /*
1093 * Wait an appropriate time for any potential DHCPOFFER packets
3090b7e3
JH
1094 * to arrive. Then select one, and generate DHCPREQUEST
1095 * response. If filename is in format we recognize, assume it
1096 * is a valid OFFER from a server we want.
3861aa5c 1097 */
0ebf04c6 1098 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
6d0f6bcf 1099#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 1100 if (strncmp(bp->bp_file,
6d0f6bcf 1101 CONFIG_SYS_BOOTFILE_PREFIX,
3090b7e3 1102 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
6d0f6bcf 1103#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
acb96c17
SA
1104 if (CONFIG_IS_ENABLED(UNIT_TEST) &&
1105 dhcp_message_type((u8 *)bp->bp_vend) == -1) {
1106 debug("got BOOTP response; transitioning to BOUND\n");
1107 goto dhcp_got_bootp;
1108 }
774c3e05 1109 dhcp_packet_process_options(bp);
77b5c4a5 1110 if (CONFIG_IS_ENABLED(EFI_LOADER) &&
f00d5801 1111 IS_ENABLED(CONFIG_NETDEVICES))
77b5c4a5 1112 efi_net_set_dhcp_ack(pkt, len);
3861aa5c 1113
c8e251f8
LF
1114#if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)
1115 if (!net_server_ip.s_addr)
1116 udelay(CONFIG_SERVERIP_FROM_PROXYDHCP_DELAY_MS *
1117 1000);
1118#endif /* CONFIG_SERVERIP_FROM_PROXYDHCP */
1119
0ebf04c6 1120 debug("TRANSITIONING TO REQUESTING STATE\n");
3861aa5c 1121 dhcp_state = REQUESTING;
759a51b4 1122
bc0571fc 1123 net_set_timeout_handler(5000, bootp_timeout_handler);
7044c6bb 1124 dhcp_send_request_packet(bp);
6d0f6bcf 1125#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 1126 }
6d0f6bcf 1127#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
3861aa5c
WD
1128
1129 return;
1130 break;
1131 case REQUESTING:
0ebf04c6 1132 debug("DHCP State: REQUESTING\n");
3861aa5c 1133
7044c6bb 1134 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
acb96c17 1135dhcp_got_bootp:
774c3e05 1136 dhcp_packet_process_options(bp);
3090b7e3 1137 /* Store net params from reply */
7044c6bb 1138 store_net_params(bp);
3861aa5c 1139 dhcp_state = BOUND;
92ac8acc 1140 printf("DHCP client bound to address %pI4 (%lu ms)\n",
7044c6bb 1141 &net_ip, get_timer(bootp_start));
4f28c9b1 1142 net_set_timeout_handler(0, (thand_f *)0);
573f14fe 1143 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
7044c6bb 1144 "bootp_stop");
3861aa5c 1145
e4a3d57d 1146 net_auto_load();
3861aa5c
WD
1147 return;
1148 }
1149 break;
51dfe138
RB
1150 case BOUND:
1151 /* DHCP client bound to address */
1152 break;
3861aa5c 1153 default:
3090b7e3 1154 puts("DHCP: INVALID STATE\n");
3861aa5c
WD
1155 break;
1156 }
3861aa5c
WD
1157}
1158
7044c6bb 1159void dhcp_request(void)
3861aa5c 1160{
7044c6bb 1161 bootp_request();
3861aa5c 1162}
992742a5 1163#endif /* CONFIG_CMD_DHCP */
This page took 0.690916 seconds and 4 git commands to generate.