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