2 * Based on LiMon - BOOTP.
4 * Copyright 1994, 1995, 2000 Neil Russell.
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2004 Wolfgang Denk, wd@denx.de
13 #include <efi_loader.h>
18 #ifdef CONFIG_STATUS_LED
19 #include <status_led.h>
21 #ifdef CONFIG_BOOTP_RANDOM_DELAY
25 #define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
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
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
37 #ifndef CONFIG_NET_RETRY_COUNT
38 # define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
40 # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
42 #define TIMEOUT_MS ((3 + (TIMEOUT_COUNT * 5)) * 1000)
44 #define PORT_BOOTPS 67 /* BOOTP server UDP port */
45 #define PORT_BOOTPC 68 /* BOOTP client UDP port */
47 #ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
48 #define CONFIG_DHCP_MIN_EXT_LEN 64
51 #ifndef CONFIG_BOOTP_ID_CACHE_SIZE
52 #define CONFIG_BOOTP_ID_CACHE_SIZE 4
55 u32 bootp_ids[CONFIG_BOOTP_ID_CACHE_SIZE];
56 unsigned int bootp_num_ids;
60 char net_nis_domain[32] = {0,}; /* Our NIS domain */
61 char net_hostname[32] = {0,}; /* Our hostname */
62 char net_root_path[64] = {0,}; /* Our bootpath */
64 static ulong time_taken_max;
66 #if defined(CONFIG_CMD_DHCP)
67 static dhcp_state_t dhcp_state = INIT;
68 static u32 dhcp_leasetime;
69 static struct in_addr dhcp_server_ip;
70 static u8 dhcp_option_overload;
71 #define OVERLOAD_FILE 1
72 #define OVERLOAD_SNAME 2
73 static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
74 unsigned src, unsigned len);
78 static char *dhcpmsg2str(int type)
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;
88 default: return "UNKNOWN/INVALID MSG TYPE"; break;
94 static void bootp_add_id(ulong id)
96 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
97 size_t size = sizeof(bootp_ids) - sizeof(id);
99 memmove(bootp_ids, &bootp_ids[1], size);
100 bootp_ids[bootp_num_ids - 1] = id;
102 bootp_ids[bootp_num_ids] = id;
107 static bool bootp_match_id(ulong id)
111 for (i = 0; i < bootp_num_ids; i++)
112 if (bootp_ids[i] == id)
118 static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
121 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
124 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
126 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
128 else if (bp->bp_op != OP_BOOTREPLY)
130 else if (bp->bp_htype != HWT_ETHER)
132 else if (bp->bp_hlen != HWL_ETHER)
134 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
136 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0)
139 debug("Filtering pkt = %d\n", retval);
145 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
147 static void store_net_params(struct bootp_hdr *bp)
149 #if !defined(CONFIG_BOOTP_SERVERIP)
150 struct in_addr tmp_ip;
152 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
153 if (tmp_ip.s_addr != 0)
154 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
155 memcpy(net_server_ethaddr,
156 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
158 #if defined(CONFIG_CMD_DHCP)
159 !(dhcp_option_overload & OVERLOAD_FILE) &&
161 (strlen(bp->bp_file) > 0)) {
162 copy_filename(net_boot_file_name, bp->bp_file,
163 sizeof(net_boot_file_name));
166 debug("net_boot_file_name: %s\n", net_boot_file_name);
168 /* Propagate to environment:
169 * don't delete exising entry when BOOTP / DHCP reply does
170 * not contain a new value
172 if (*net_boot_file_name)
173 setenv("bootfile", net_boot_file_name);
175 net_copy_ip(&net_ip, &bp->bp_yiaddr);
178 static int truncate_sz(const char *name, int maxlen, int curlen)
180 if (curlen >= maxlen) {
181 printf("*** WARNING: %s is too long (%d - max: %d)"
182 " - truncated\n", name, curlen, maxlen);
188 #if !defined(CONFIG_CMD_DHCP)
190 static void bootp_process_vendor_field(u8 *ext)
192 int size = *(ext + 1);
194 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
197 net_boot_file_expected_size_in_blocks = 0;
200 /* Fixed length fields */
201 case 1: /* Subnet mask */
202 if (net_netmask.s_addr == 0)
203 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
205 case 2: /* Time offset - Not yet supported */
207 /* Variable length fields */
208 case 3: /* Gateways list */
209 if (net_gateway.s_addr == 0)
210 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
212 case 4: /* Time server - Not yet supported */
214 case 5: /* IEN-116 name server - Not yet supported */
217 if (net_dns_server.s_addr == 0)
218 net_copy_ip(&net_dns_server,
219 (struct in_addr *)(ext + 2));
220 #if defined(CONFIG_BOOTP_DNS2)
221 if ((net_dns_server2.s_addr == 0) && (size > 4))
222 net_copy_ip(&net_dns_server2,
223 (struct in_addr *)(ext + 2 + 4));
226 case 7: /* Log server - Not yet supported */
228 case 8: /* Cookie/Quote server - Not yet supported */
230 case 9: /* LPR server - Not yet supported */
232 case 10: /* Impress server - Not yet supported */
234 case 11: /* RPL server - Not yet supported */
236 case 12: /* Host name */
237 if (net_hostname[0] == 0) {
238 size = truncate_sz("Host Name",
239 sizeof(net_hostname), size);
240 memcpy(&net_hostname, ext + 2, size);
241 net_hostname[size] = 0;
244 case 13: /* Boot file size */
246 net_boot_file_expected_size_in_blocks =
247 ntohs(*(ushort *)(ext + 2));
249 net_boot_file_expected_size_in_blocks =
250 ntohl(*(ulong *)(ext + 2));
252 case 14: /* Merit dump file - Not yet supported */
254 case 15: /* Domain name - Not yet supported */
256 case 16: /* Swap server - Not yet supported */
258 case 17: /* Root path */
259 if (net_root_path[0] == 0) {
260 size = truncate_sz("Root Path",
261 sizeof(net_root_path), size);
262 memcpy(&net_root_path, ext + 2, size);
263 net_root_path[size] = 0;
266 case 18: /* Extension path - Not yet supported */
268 * This can be used to send the information of the
269 * vendor area in another file that the client can
273 /* IP host layer fields */
274 case 40: /* NIS Domain name */
275 if (net_nis_domain[0] == 0) {
276 size = truncate_sz("NIS Domain Name",
277 sizeof(net_nis_domain), size);
278 memcpy(&net_nis_domain, ext + 2, size);
279 net_nis_domain[size] = 0;
282 #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
283 case 42: /* NTP server IP */
284 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
287 /* Application layer fields */
288 case 43: /* Vendor specific info - Not yet supported */
290 * Binary information to exchange specific
291 * product information.
294 /* Reserved (custom) fields (128..254) */
298 static void bootp_process_vendor(u8 *ext, int size)
300 u8 *end = ext + size;
302 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
304 while ((ext < end) && (*ext != 0xff)) {
312 bootp_process_vendor_field(opt);
316 debug("[BOOTP] Received fields:\n");
317 if (net_netmask.s_addr)
318 debug("net_netmask : %pI4\n", &net_netmask);
320 if (net_gateway.s_addr)
321 debug("net_gateway : %pI4", &net_gateway);
323 if (net_boot_file_expected_size_in_blocks)
324 debug("net_boot_file_expected_size_in_blocks : %d\n",
325 net_boot_file_expected_size_in_blocks);
328 debug("net_hostname : %s\n", net_hostname);
330 if (net_root_path[0])
331 debug("net_root_path : %s\n", net_root_path);
333 if (net_nis_domain[0])
334 debug("net_nis_domain : %s\n", net_nis_domain);
336 #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
338 debug("net_ntp_server : %pI4\n", &net_ntp_server);
343 * Handle a BOOTP received packet.
345 static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
346 unsigned src, unsigned len)
348 struct bootp_hdr *bp;
350 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
351 src, dest, len, sizeof(struct bootp_hdr));
353 bp = (struct bootp_hdr *)pkt;
355 /* Filter out pkts we don't want */
356 if (check_reply_packet(pkt, dest, src, len))
360 * Got a good BOOTP reply. Copy the data into our variables.
362 #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
363 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
366 store_net_params(bp); /* Store net parameters from reply */
368 /* Retrieve extended information (we must parse the vendor area) */
369 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
370 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
372 net_set_timeout_handler(0, (thand_f *)0);
373 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
375 debug("Got good BOOTP\n");
382 * Timeout on BOOTP/DHCP request.
384 static void bootp_timeout_handler(void)
386 ulong time_taken = get_timer(bootp_start);
388 if (time_taken >= time_taken_max) {
389 #ifdef CONFIG_BOOTP_MAY_FAIL
390 puts("\nRetry time exceeded\n");
391 net_set_state(NETLOOP_FAIL);
393 puts("\nRetry time exceeded; starting again\n");
398 if (bootp_timeout > 2000)
399 bootp_timeout = 2000;
400 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
405 #define put_vci(e, str) \
407 size_t vci_strlen = strlen(str); \
408 *e++ = 60; /* Vendor Class Identifier */ \
410 memcpy(e, str, vci_strlen); \
414 static u8 *add_vci(u8 *e)
417 char *env_vci = getenv("bootp_vci");
419 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
420 vci = CONFIG_SPL_NET_VCI_STRING;
421 #elif defined(CONFIG_BOOTP_VCI_STRING)
422 vci = CONFIG_BOOTP_VCI_STRING;
435 * Initialize BOOTP extension fields in the request.
437 #if defined(CONFIG_CMD_DHCP)
438 static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
439 struct in_addr requested_ip)
443 #if defined(CONFIG_BOOTP_PXE)
448 #if defined(CONFIG_BOOTP_VENDOREX)
451 #if defined(CONFIG_BOOTP_SEND_HOSTNAME)
455 *e++ = 99; /* RFC1048 Magic Cookie */
460 *e++ = 53; /* DHCP Message Type */
464 *e++ = 57; /* Maximum DHCP Message Size */
466 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
467 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
469 if (server_ip.s_addr) {
470 int tmp = ntohl(server_ip.s_addr);
472 *e++ = 54; /* ServerID */
480 if (requested_ip.s_addr) {
481 int tmp = ntohl(requested_ip.s_addr);
483 *e++ = 50; /* Requested IP */
490 #if defined(CONFIG_BOOTP_SEND_HOSTNAME)
491 hostname = getenv("hostname");
493 int hostnamelen = strlen(hostname);
495 *e++ = 12; /* Hostname */
497 memcpy(e, hostname, hostnamelen);
502 #if defined(CONFIG_BOOTP_PXE)
503 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
504 *e++ = 93; /* Client System Architecture */
506 *e++ = (clientarch >> 8) & 0xff;
507 *e++ = clientarch & 0xff;
509 *e++ = 94; /* Client Network Interface Identifier */
511 *e++ = 1; /* type field for UNDI */
512 *e++ = 0; /* major revision */
513 *e++ = 0; /* minor revision */
515 uuid = getenv("pxeuuid");
518 if (uuid_str_valid(uuid)) {
519 *e++ = 97; /* Client Machine Identifier */
521 *e++ = 0; /* type 0 - UUID */
523 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
526 printf("Invalid pxeuuid: %s\n", uuid);
533 #if defined(CONFIG_BOOTP_VENDOREX)
534 x = dhcp_vendorex_prep(e);
539 *e++ = 55; /* Parameter Request List */
540 cnt = e++; /* Pointer to count of requested items */
542 #if defined(CONFIG_BOOTP_SUBNETMASK)
543 *e++ = 1; /* Subnet Mask */
546 #if defined(CONFIG_BOOTP_TIMEOFFSET)
550 #if defined(CONFIG_BOOTP_GATEWAY)
551 *e++ = 3; /* Router Option */
554 #if defined(CONFIG_BOOTP_DNS)
555 *e++ = 6; /* DNS Server(s) */
558 #if defined(CONFIG_BOOTP_HOSTNAME)
559 *e++ = 12; /* Hostname */
562 #if defined(CONFIG_BOOTP_BOOTFILESIZE)
563 *e++ = 13; /* Boot File Size */
566 #if defined(CONFIG_BOOTP_BOOTPATH)
567 *e++ = 17; /* Boot path */
570 #if defined(CONFIG_BOOTP_NISDOMAIN)
571 *e++ = 40; /* NIS Domain name request */
574 #if defined(CONFIG_BOOTP_NTPSERVER)
578 /* no options, so back up to avoid sending an empty request list */
582 *e++ = 255; /* End of the list */
584 /* Pad to minimal length */
585 #ifdef CONFIG_DHCP_MIN_EXT_LEN
586 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
595 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
597 static int bootp_extended(u8 *e)
601 *e++ = 99; /* RFC1048 Magic Cookie */
606 #if defined(CONFIG_CMD_DHCP)
607 *e++ = 53; /* DHCP Message Type */
609 *e++ = DHCP_DISCOVER;
611 *e++ = 57; /* Maximum DHCP Message Size */
613 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
614 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
619 #if defined(CONFIG_BOOTP_SUBNETMASK)
620 *e++ = 1; /* Subnet mask request */
625 #if defined(CONFIG_BOOTP_GATEWAY)
626 *e++ = 3; /* Default gateway request */
631 #if defined(CONFIG_BOOTP_DNS)
632 *e++ = 6; /* Domain Name Server */
637 #if defined(CONFIG_BOOTP_HOSTNAME)
638 *e++ = 12; /* Host name request */
643 #if defined(CONFIG_BOOTP_BOOTFILESIZE)
644 *e++ = 13; /* Boot file size */
649 #if defined(CONFIG_BOOTP_BOOTPATH)
650 *e++ = 17; /* Boot path */
655 #if defined(CONFIG_BOOTP_NISDOMAIN)
656 *e++ = 40; /* NIS Domain name request */
660 #if defined(CONFIG_BOOTP_NTPSERVER)
666 *e++ = 255; /* End of the list */
672 void bootp_reset(void)
676 bootp_start = get_timer(0);
680 void bootp_request(void)
683 struct bootp_hdr *bp;
684 int extlen, pktlen, iplen;
686 #ifdef CONFIG_BOOTP_RANDOM_DELAY
690 struct in_addr zero_ip;
691 struct in_addr bcast_ip;
692 char *ep; /* Environment pointer */
694 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
695 #if defined(CONFIG_CMD_DHCP)
699 ep = getenv("bootpretryperiod");
701 time_taken_max = simple_strtoul(ep, NULL, 10);
703 time_taken_max = TIMEOUT_MS;
705 #ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
709 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
710 rand_ms = rand() >> (22 - bootp_try);
711 else /* After 3rd BOOTP request max 8192 * 1ms */
712 rand_ms = rand() >> 19;
714 printf("Random delay: %ld ms...\n", rand_ms);
717 #endif /* CONFIG_BOOTP_RANDOM_DELAY */
719 printf("BOOTP broadcast %d\n", ++bootp_try);
721 memset((void *)pkt, 0, PKTSIZE);
723 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
727 * Next line results in incorrect packet size being transmitted,
728 * resulting in errors in some DHCP servers, reporting missing bytes.
729 * Size must be set in packet header after extension length has been
731 * C. Hallinan, DS4.COM, Inc.
733 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
734 sizeof (struct bootp_hdr)); */
735 iphdr = pkt; /* We need this later for net_set_udp_header() */
736 pkt += IP_UDP_HDR_SIZE;
738 bp = (struct bootp_hdr *)pkt;
739 bp->bp_op = OP_BOOTREQUEST;
740 bp->bp_htype = HWT_ETHER;
741 bp->bp_hlen = HWL_ETHER;
744 * according to RFC1542, should be 0 on first request, secs since
745 * first request otherwise
747 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
749 net_write_ip(&bp->bp_ciaddr, zero_ip);
750 net_write_ip(&bp->bp_yiaddr, zero_ip);
751 net_write_ip(&bp->bp_siaddr, zero_ip);
752 net_write_ip(&bp->bp_giaddr, zero_ip);
753 memcpy(bp->bp_chaddr, net_ethaddr, 6);
754 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
756 /* Request additional information from the BOOTP/DHCP server */
757 #if defined(CONFIG_CMD_DHCP)
758 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
761 extlen = bootp_extended((u8 *)bp->bp_vend);
765 * Bootp ID is the lower 4 bytes of our ethernet address
766 * plus the current time in ms.
768 bootp_id = ((u32)net_ethaddr[2] << 24)
769 | ((u32)net_ethaddr[3] << 16)
770 | ((u32)net_ethaddr[4] << 8)
771 | (u32)net_ethaddr[5];
772 bootp_id += get_timer(0);
773 bootp_id = htonl(bootp_id);
774 bootp_add_id(bootp_id);
775 net_copy_u32(&bp->bp_id, &bootp_id);
778 * Calculate proper packet lengths taking into account the
779 * variable size of the options field
781 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
782 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
783 bcast_ip.s_addr = 0xFFFFFFFFL;
784 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
785 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
787 #if defined(CONFIG_CMD_DHCP)
788 dhcp_state = SELECTING;
789 net_set_udp_handler(dhcp_handler);
791 net_set_udp_handler(bootp_handler);
793 net_send_packet(net_tx_packet, pktlen);
796 #if defined(CONFIG_CMD_DHCP)
797 static void dhcp_process_options(uchar *popt, uchar *end)
800 #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
804 while (popt < end && *popt != 0xff) {
808 oplen = -1; /* Pad omits len byte */
811 net_copy_ip(&net_netmask, (popt + 2));
813 #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
814 case 2: /* Time offset */
815 to_ptr = &net_ntp_time_offset;
816 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
817 net_ntp_time_offset = ntohl(net_ntp_time_offset);
821 net_copy_ip(&net_gateway, (popt + 2));
824 net_copy_ip(&net_dns_server, (popt + 2));
825 #if defined(CONFIG_BOOTP_DNS2)
827 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
831 size = truncate_sz("Host Name",
832 sizeof(net_hostname), oplen);
833 memcpy(&net_hostname, popt + 2, size);
834 net_hostname[size] = 0;
836 case 15: /* Ignore Domain Name Option */
839 size = truncate_sz("Root Path",
840 sizeof(net_root_path), oplen);
841 memcpy(&net_root_path, popt + 2, size);
842 net_root_path[size] = 0;
844 case 28: /* Ignore Broadcast Address Option */
846 #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
847 case 42: /* NTP server IP */
848 net_copy_ip(&net_ntp_server, (popt + 2));
852 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
855 dhcp_option_overload = popt[2];
857 case 53: /* Ignore Message Type Option */
860 net_copy_ip(&dhcp_server_ip, (popt + 2));
862 case 58: /* Ignore Renewal Time Option */
864 case 59: /* Ignore Rebinding Time Option */
866 case 66: /* Ignore TFTP server name */
868 case 67: /* Bootfile option */
869 size = truncate_sz("Bootfile",
870 sizeof(net_boot_file_name), oplen);
871 memcpy(&net_boot_file_name, popt + 2, size);
872 net_boot_file_name[size] = 0;
875 #if defined(CONFIG_BOOTP_VENDOREX)
876 if (dhcp_vendorex_proc(popt))
879 printf("*** Unhandled DHCP Option in OFFER/ACK:"
883 popt += oplen + 2; /* Process next option */
887 static void dhcp_packet_process_options(struct bootp_hdr *bp)
889 uchar *popt = (uchar *)&bp->bp_vend[4];
890 uchar *end = popt + BOOTP_HDR_SIZE;
892 if (net_read_u32((u32 *)&bp->bp_vend[0]) != htonl(BOOTP_VENDOR_MAGIC))
895 dhcp_option_overload = 0;
898 * The 'options' field MUST be interpreted first, 'file' next,
901 dhcp_process_options(popt, end);
903 if (dhcp_option_overload & OVERLOAD_FILE) {
904 popt = (uchar *)bp->bp_file;
905 end = popt + sizeof(bp->bp_file);
906 dhcp_process_options(popt, end);
909 if (dhcp_option_overload & OVERLOAD_SNAME) {
910 popt = (uchar *)bp->bp_sname;
911 end = popt + sizeof(bp->bp_sname);
912 dhcp_process_options(popt, end);
916 static int dhcp_message_type(unsigned char *popt)
918 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
922 while (*popt != 0xff) {
923 if (*popt == 53) /* DHCP Message Type */
929 /* Scan through all options */
930 popt += *(popt + 1) + 2;
936 static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
939 struct bootp_hdr *bp;
940 int pktlen, iplen, extlen;
942 struct in_addr offered_ip;
943 struct in_addr zero_ip;
944 struct in_addr bcast_ip;
946 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
948 memset((void *)pkt, 0, PKTSIZE);
950 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
953 iphdr = pkt; /* We'll need this later to set proper pkt size */
954 pkt += IP_UDP_HDR_SIZE;
956 bp = (struct bootp_hdr *)pkt;
957 bp->bp_op = OP_BOOTREQUEST;
958 bp->bp_htype = HWT_ETHER;
959 bp->bp_hlen = HWL_ETHER;
961 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
962 /* Do not set the client IP, your IP, or server IP yet, since it
963 * hasn't been ACK'ed by the server yet */
966 * RFC3046 requires Relay Agents to discard packets with
967 * nonzero and offered giaddr
970 net_write_ip(&bp->bp_giaddr, zero_ip);
972 memcpy(bp->bp_chaddr, net_ethaddr, 6);
973 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
976 * ID is the id of the OFFER packet
979 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
982 * Copy options from OFFER packet if present
985 /* Copy offered IP into the parameters request list */
986 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
987 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
988 dhcp_server_ip, offered_ip);
990 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
991 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
992 bcast_ip.s_addr = 0xFFFFFFFFL;
993 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
995 #ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
996 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
997 #endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
998 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
999 net_send_packet(net_tx_packet, pktlen);
1003 * Handle DHCP received packets.
1005 static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
1006 unsigned src, unsigned len)
1008 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
1010 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
1011 src, dest, len, dhcp_state);
1013 /* Filter out pkts we don't want */
1014 if (check_reply_packet(pkt, dest, src, len))
1017 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
1018 "%d\n", src, dest, len, dhcp_state);
1020 if (net_read_ip(&bp->bp_yiaddr).s_addr == 0)
1023 switch (dhcp_state) {
1026 * Wait an appropriate time for any potential DHCPOFFER packets
1027 * to arrive. Then select one, and generate DHCPREQUEST
1028 * response. If filename is in format we recognize, assume it
1029 * is a valid OFFER from a server we want.
1031 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
1032 #ifdef CONFIG_SYS_BOOTFILE_PREFIX
1033 if (strncmp(bp->bp_file,
1034 CONFIG_SYS_BOOTFILE_PREFIX,
1035 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
1036 #endif /* CONFIG_SYS_BOOTFILE_PREFIX */
1037 dhcp_packet_process_options(bp);
1038 efi_net_set_dhcp_ack(pkt, len);
1040 debug("TRANSITIONING TO REQUESTING STATE\n");
1041 dhcp_state = REQUESTING;
1043 net_set_timeout_handler(5000, bootp_timeout_handler);
1044 dhcp_send_request_packet(bp);
1045 #ifdef CONFIG_SYS_BOOTFILE_PREFIX
1047 #endif /* CONFIG_SYS_BOOTFILE_PREFIX */
1052 debug("DHCP State: REQUESTING\n");
1054 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
1055 dhcp_packet_process_options(bp);
1056 /* Store net params from reply */
1057 store_net_params(bp);
1059 printf("DHCP client bound to address %pI4 (%lu ms)\n",
1060 &net_ip, get_timer(bootp_start));
1061 net_set_timeout_handler(0, (thand_f *)0);
1062 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
1070 /* DHCP client bound to address */
1073 puts("DHCP: INVALID STATE\n");
1078 void dhcp_request(void)
1082 #endif /* CONFIG_CMD_DHCP */