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-2002 Wolfgang Denk, wd@denx.de
12 #define DEBUG 1 /* general debug */
13 #define DEBUG_BOOTP_EXT 1 /* Debug received vendor fields */
16 #ifdef DEBUG_BOOTP_EXT
17 #define debug_ext(fmt,args...) printf (fmt ,##args)
19 #define debug_ext(fmt,args...)
27 #ifdef CONFIG_STATUS_LED
28 #include <status_led.h>
31 #define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
33 #if (CONFIG_COMMANDS & CFG_CMD_NET)
35 #define TIMEOUT 5 /* Seconds before trying BOOTP again */
36 #ifndef CONFIG_NET_RETRY_COUNT
37 # define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
39 # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
42 #define PORT_BOOTPS 67 /* BOOTP server UDP port */
43 #define PORT_BOOTPC 68 /* BOOTP client UDP port */
45 #ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
46 #define CONFIG_DHCP_MIN_EXT_LEN 64
51 #ifdef CONFIG_BOOTP_RANDOM_DELAY
55 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
56 dhcp_state_t dhcp_state = INIT;
57 unsigned long dhcp_leasetime = 0;
58 IPaddr_t NetDHCPServerIP = 0;
59 static void DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len);
63 static char *dhcpmsg2str(int type)
66 case 1: return "DHCPDISCOVER"; break;
67 case 2: return "DHCPOFFER"; break;
68 case 3: return "DHCPREQUEST"; break;
69 case 4: return "DHCPDECLINE"; break;
70 case 5: return "DHCPACK"; break;
71 case 6: return "DHCPNACK"; break;
72 case 7: return "DHCPRELEASE"; break;
73 default: return "UNKNOWN/INVALID MSG TYPE"; break;
78 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_VENDOREX)
79 extern u8 *dhcp_vendorex_prep (u8 *e); /*rtn new e after add own opts. */
80 extern u8 *dhcp_vendorex_proc (u8 *e); /*rtn next e if mine,else NULL */
83 #endif /* CFG_CMD_DHCP */
85 static int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len)
87 Bootp_t *bp = (Bootp_t *) pkt;
90 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
92 else if (len < sizeof (Bootp_t) - OPT_SIZE)
94 else if (bp->bp_op != OP_BOOTREQUEST &&
95 bp->bp_op != OP_BOOTREPLY &&
96 bp->bp_op != DHCP_OFFER &&
97 bp->bp_op != DHCP_ACK &&
98 bp->bp_op != DHCP_NAK ) {
101 else if (bp->bp_htype != HWT_ETHER)
103 else if (bp->bp_hlen != HWL_ETHER)
105 else if (NetReadLong((ulong*)&bp->bp_id) != BootpID) {
109 debug ("Filtering pkt = %d\n", retval);
115 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
117 static void BootpCopyNetParams(Bootp_t *bp)
119 NetCopyIP(&NetOurIP, &bp->bp_yiaddr);
120 NetCopyIP(&NetServerIP, &bp->bp_siaddr);
121 memcpy (NetServerEther, ((Ethernet_t *)NetRxPkt)->et_src, 6);
122 copy_filename (BootFile, bp->bp_file, sizeof(BootFile));
124 debug ("Bootfile: %s\n", BootFile);
126 /* Propagate to environment:
127 * don't delete exising entry when BOOTP / DHCP reply does
128 * not contain a new value
131 setenv ("bootfile", BootFile);
135 static int truncate_sz (const char *name, int maxlen, int curlen)
137 if (curlen >= maxlen) {
138 printf("*** WARNING: %s is too long (%d - max: %d) - truncated\n",
139 name, curlen, maxlen);
145 #if !(CONFIG_COMMANDS & CFG_CMD_DHCP)
147 static void BootpVendorFieldProcess(u8 *ext)
149 int size = *(ext+1) ;
151 debug_ext ("[BOOTP] Processing extension %d... (%d bytes)\n", *ext, *(ext+1));
156 /* Fixed length fields */
157 case 1: /* Subnet mask */
158 if (NetOurSubnetMask == 0)
159 NetCopyIP(&NetOurSubnetMask, (IPaddr_t*)(ext+2));
161 case 2: /* Time offset - Not yet supported */
163 /* Variable length fields */
164 case 3: /* Gateways list */
165 if (NetOurGatewayIP == 0) {
166 NetCopyIP(&NetOurGatewayIP, (IPaddr_t*)(ext+2));
169 case 4: /* Time server - Not yet supported */
171 case 5: /* IEN-116 name server - Not yet supported */
174 if (NetOurDNSIP == 0) {
175 NetCopyIP(&NetOurDNSIP, (IPaddr_t*)(ext+2));
177 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS2)
178 if ((NetOurDNS2IP == 0) && (size > 4)) {
179 NetCopyIP(&NetOurDNS2IP, (IPaddr_t*)(ext+2+4));
183 case 7: /* Log server - Not yet supported */
185 case 8: /* Cookie/Quote server - Not yet supported */
187 case 9: /* LPR server - Not yet supported */
189 case 10: /* Impress server - Not yet supported */
191 case 11: /* RPL server - Not yet supported */
193 case 12: /* Host name */
194 if (NetOurHostName[0] == 0) {
195 size = truncate_sz("Host Name", sizeof(NetOurHostName), size);
196 memcpy(&NetOurHostName, ext+2, size);
197 NetOurHostName[size] = 0 ;
200 case 13: /* Boot file size */
202 NetBootFileSize = ntohs(*(ushort*)(ext+2));
204 NetBootFileSize = ntohl(*(ulong*)(ext+2));
206 case 14: /* Merit dump file - Not yet supported */
208 case 15: /* Domain name - Not yet supported */
210 case 16: /* Swap server - Not yet supported */
212 case 17: /* Root path */
213 if (NetOurRootPath[0] == 0) {
214 size = truncate_sz("Root Path", sizeof(NetOurRootPath), size);
215 memcpy(&NetOurRootPath, ext+2, size);
216 NetOurRootPath[size] = 0 ;
219 case 18: /* Extension path - Not yet supported */
221 * This can be used to send the information of the
222 * vendor area in another file that the client can
226 /* IP host layer fields */
227 case 40: /* NIS Domain name */
228 if (NetOurNISDomain[0] == 0) {
229 size = truncate_sz ("NIS Domain Name",
230 sizeof(NetOurNISDomain),
232 memcpy(&NetOurNISDomain, ext+2, size);
233 NetOurNISDomain[size] = 0 ;
236 /* Application layer fields */
237 case 43: /* Vendor specific info - Not yet supported */
239 * Binary information to exchange specific
240 * product information.
243 /* Reserved (custom) fields (128..254) */
247 static void BootpVendorProcess(u8 *ext, int size)
249 u8 *end = ext + size ;
251 debug_ext ("[BOOTP] Checking extension (%d bytes)...\n", size);
253 while ((ext < end) && (*ext != 0xff)) {
260 BootpVendorFieldProcess (opt) ;
264 #ifdef DEBUG_BOOTP_EXT
265 printf("[BOOTP] Received fields: \n");
266 if (NetOurSubnetMask) {
267 puts ("NetOurSubnetMask : ");
268 print_IPaddr (NetOurSubnetMask);
272 if (NetOurGatewayIP) {
273 puts ("NetOurGatewayIP : ");
274 print_IPaddr (NetOurGatewayIP);
278 if (NetBootFileSize) {
279 printf("NetBootFileSize : %d\n", NetBootFileSize);
282 if (NetOurHostName[0]) {
283 printf("NetOurHostName : %s\n", NetOurHostName);
286 if (NetOurRootPath[0]) {
287 printf("NetOurRootPath : %s\n", NetOurRootPath);
290 if (NetOurNISDomain[0]) {
291 printf("NetOurNISDomain : %s\n", NetOurNISDomain);
294 if (NetBootFileSize) {
295 printf("NetBootFileSize: %d\n", NetBootFileSize);
297 #endif /* DEBUG_BOOTP_EXT */
301 * Handle a BOOTP received packet.
304 BootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
309 debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%d)\n",
310 src, dest, len, sizeof (Bootp_t));
314 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
318 * Got a good BOOTP reply. Copy the data into our variables.
320 #ifdef CONFIG_STATUS_LED
321 status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF);
324 BootpCopyNetParams(bp); /* Store net parameters from reply */
326 /* Retrieve extended information (we must parse the vendor area) */
327 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
328 BootpVendorProcess(&bp->bp_vend[4], len);
330 NetSetTimeout(0, (thand_f *)0);
332 debug ("Got good BOOTP\n");
334 if ((s = getenv("autoload")) != NULL) {
337 * Just use BOOTP to configure system;
338 * Do not use TFTP to load the bootfile.
340 NetState = NETLOOP_SUCCESS;
342 } else if (strcmp(s, "NFS") == 0) {
344 * Use NFS to load the bootfile.
353 #endif /* !CFG_CMD_DHCP */
356 * Timeout on BOOTP/DHCP request.
361 if (BootpTry >= TIMEOUT_COUNT) {
362 puts ("\nRetry count exceeded; starting again\n");
365 NetSetTimeout (TIMEOUT * CFG_HZ, BootpTimeout);
371 * Initialize BOOTP extension fields in the request.
373 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
374 static int DhcpExtended(u8 *e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP)
378 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_VENDOREX)
381 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_SEND_HOSTNAME)
385 *e++ = 99; /* RFC1048 Magic Cookie */
390 *e++ = 53; /* DHCP Message Type */
394 *e++ = 57; /* Maximum DHCP Message Size */
396 *e++ = (576-312+OPT_SIZE) >> 8;
397 *e++ = (576-312+OPT_SIZE) & 0xff;
400 int tmp = ntohl(ServerID);
402 *e++ = 54; /* ServerID */
411 int tmp = ntohl(RequestedIP);
413 *e++ = 50; /* Requested IP */
421 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_SEND_HOSTNAME)
422 if ( (hostname = getenv("hostname")) ) {
423 int hostnamelen = strlen(hostname);
424 *e++ = 12; /* Hostname */
426 memcpy(e,hostname,hostnamelen);
431 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_VENDOREX)
432 if ((x = dhcp_vendorex_prep (e)))
436 *e++ = 55; /* Parameter Request List */
437 cnt = e++; /* Pointer to count of requested items */
439 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_SUBNETMASK)
440 *e++ = 1; /* Subnet Mask */
443 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_GATEWAY)
444 *e++ = 3; /* Router Option */
447 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS)
448 *e++ = 6; /* DNS Server(s) */
451 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_HOSTNAME)
452 *e++ = 12; /* Hostname */
455 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_BOOTFILESIZE)
456 *e++ = 13; /* Boot File Size */
459 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_BOOTPATH)
460 *e++ = 17; /* Boot path */
463 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NISDOMAIN)
464 *e++ = 40; /* NIS Domain name request */
467 *e++ = 255; /* End of the list */
469 /* Pad to minimal length */
470 #ifdef CONFIG_DHCP_MIN_EXT_LEN
471 while ((e - start) <= CONFIG_DHCP_MIN_EXT_LEN)
478 #else /* CFG_CMD_DHCP */
480 * Warning: no field size check - change CONFIG_BOOTP_MASK at your own risk!
482 static int BootpExtended (u8 *e)
486 *e++ = 99; /* RFC1048 Magic Cookie */
491 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
492 *e++ = 53; /* DHCP Message Type */
494 *e++ = DHCP_DISCOVER;
496 *e++ = 57; /* Maximum DHCP Message Size */
498 *e++ = (576-312+OPT_SIZE) >> 16;
499 *e++ = (576-312+OPT_SIZE) & 0xff;
500 #endif /* CFG_CMD_DHCP */
502 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_SUBNETMASK)
503 *e++ = 1; /* Subnet mask request */
508 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_GATEWAY)
509 *e++ = 3; /* Default gateway request */
514 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS)
515 *e++ = 6; /* Domain Name Server */
520 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_HOSTNAME)
521 *e++ = 12; /* Host name request */
526 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_BOOTFILESIZE)
527 *e++ = 13; /* Boot file size */
532 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_BOOTPATH)
533 *e++ = 17; /* Boot path */
538 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NISDOMAIN)
539 *e++ = 40; /* NIS Domain name request */
544 *e++ = 255; /* End of the list */
548 #endif /* CFG_CMD_DHCP */
553 volatile uchar *pkt, *iphdr;
555 int ext_len, pktlen, iplen;
557 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
561 #ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
562 unsigned char bi_enetaddr[6];
566 ulong tst1, tst2, sum, m_mask, m_value = 0;
570 reg = getenv_r ("ethaddr", tmp, sizeof(tmp));
571 s = (reg > 0) ? tmp : NULL;
573 for (reg=0; reg<6; ++reg) {
574 bi_enetaddr[reg] = s ? simple_strtoul(s, &e, 16) : 0;
580 printf("BootpRequest => Our Mac: ");
581 for (reg=0; reg<6; reg++) {
584 reg==5 ? '\n' : ':');
588 /* Mac-Manipulation 2 get seed1 */
591 for (reg=2; reg<6; reg++) {
593 tst1 = tst1 | bi_enetaddr[reg];
595 for (reg=0; reg<2; reg++) {
596 tst2 = tst2 | bi_enetaddr[reg];
604 for (reg=1;reg<=32;reg++) {
605 m_value |= (m_mask & seed1);
607 m_value = m_value << 1;
613 /* Random Number Generator */
615 for (reg=0;reg<=0;reg++) {
617 if (sum < seed1 || sum < seed2)
622 if (BootpTry<=2) { /* Start with max 1024 * 1ms */
623 sum = sum >> (22-BootpTry);
624 } else { /*After 3rd BOOTP request max 8192 * 1ms */
629 printf ("Random delay: %ld ms...\n", sum);
630 for (reg=0; reg <sum; reg++) {
631 udelay(1000); /*Wait 1ms*/
633 #endif /* CONFIG_BOOTP_RANDOM_DELAY */
635 printf("BOOTP broadcast %d\n", ++BootpTry);
637 memset ((void*)pkt, 0, PKTSIZE);
639 NetSetEther(pkt, NetBcastAddr, PROT_IP);
640 pkt += ETHER_HDR_SIZE;
643 * Next line results in incorrect packet size being transmitted, resulting
644 * in errors in some DHCP servers, reporting missing bytes. Size must be
645 * set in packet header after extension length has been determined.
646 * C. Hallinan, DS4.COM, Inc.
648 /* NetSetIP(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, sizeof (Bootp_t)); */
649 iphdr = pkt; /* We need this later for NetSetIP() */
653 bp->bp_op = OP_BOOTREQUEST;
654 bp->bp_htype = HWT_ETHER;
655 bp->bp_hlen = HWL_ETHER;
657 bp->bp_secs = htons(get_timer(0) / CFG_HZ);
658 NetWriteIP(&bp->bp_ciaddr, 0);
659 NetWriteIP(&bp->bp_yiaddr, 0);
660 NetWriteIP(&bp->bp_siaddr, 0);
661 NetWriteIP(&bp->bp_giaddr, 0);
662 memcpy (bp->bp_chaddr, NetOurEther, 6);
663 copy_filename (bp->bp_file, BootFile, sizeof(bp->bp_file));
665 /* Request additional information from the BOOTP/DHCP server */
666 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
667 ext_len = DhcpExtended(bp->bp_vend, DHCP_DISCOVER, 0, 0);
669 ext_len = BootpExtended(bp->bp_vend);
670 #endif /* CFG_CMD_DHCP */
673 * Bootp ID is the lower 4 bytes of our ethernet address
674 * plus the current time in HZ.
676 BootpID = ((ulong)NetOurEther[2] << 24)
677 | ((ulong)NetOurEther[3] << 16)
678 | ((ulong)NetOurEther[4] << 8)
679 | (ulong)NetOurEther[5];
680 BootpID += get_timer(0);
681 BootpID = htonl(BootpID);
682 NetCopyLong(&bp->bp_id, &BootpID);
685 * Calculate proper packet lengths taking into account the
686 * variable size of the options field
688 pktlen = BOOTP_SIZE - sizeof(bp->bp_vend) + ext_len;
689 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
690 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
691 NetSetTimeout(SELECT_TIMEOUT * CFG_HZ, BootpTimeout);
693 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
694 dhcp_state = SELECTING;
695 NetSetHandler(DhcpHandler);
697 NetSetHandler(BootpHandler);
698 #endif /* CFG_CMD_DHCP */
699 NetSendPacket(NetTxPacket, pktlen);
702 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
703 static void DhcpOptionsProcess(uchar *popt)
705 uchar *end = popt + BOOTP_HDR_SIZE;
708 while ( popt < end && *popt != 0xff ) {
712 NetCopyIP(&NetOurSubnetMask, (popt+2));
715 NetCopyIP(&NetOurGatewayIP, (popt+2));
718 NetCopyIP(&NetOurDNSIP, (popt+2));
719 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS2)
720 if ( *(popt+1) > 4 ) {
721 NetCopyIP(&NetOurDNS2IP, (popt+2+4));
726 size = truncate_sz ("Host Name",
727 sizeof(NetOurHostName),
729 memcpy(&NetOurHostName, popt+2, size);
730 NetOurHostName[size] = 0 ;
732 case 15: /* Ignore Domain Name Option */
735 size = truncate_sz ("Root Path",
736 sizeof(NetOurRootPath),
738 memcpy(&NetOurRootPath, popt+2, size);
739 NetOurRootPath[size] = 0 ;
742 NetCopyLong (&dhcp_leasetime, (ulong *)(popt + 2));
744 case 53: /* Ignore Message Type Option */
747 NetCopyIP(&NetDHCPServerIP, (popt+2));
749 case 58: /* Ignore Renewal Time Option */
751 case 59: /* Ignore Rebinding Time Option */
754 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_VENDOREX)
755 if (dhcp_vendorex_proc(popt))
758 printf("*** Unhandled DHCP Option in OFFER/ACK: %d\n",
762 popt += oplen + 2; /* Process next option */
766 static int DhcpMessageType(unsigned char *popt)
768 if (NetReadLong((ulong*)popt) != htonl(BOOTP_VENDOR_MAGIC))
772 while ( *popt != 0xff ) {
773 if ( *popt == 53 ) /* DHCP Message Type */
775 popt += *(popt + 1) + 2; /* Scan through all options */
780 static void DhcpSendRequestPkt(Bootp_t *bp_offer)
782 volatile uchar *pkt, *iphdr;
784 int pktlen, iplen, extlen;
787 debug ("DhcpSendRequestPkt: Sending DHCPREQUEST\n");
789 memset ((void*)pkt, 0, PKTSIZE);
791 NetSetEther(pkt, NetBcastAddr, PROT_IP);
792 pkt += ETHER_HDR_SIZE;
794 iphdr = pkt; /* We'll need this later to set proper pkt size */
798 bp->bp_op = OP_BOOTREQUEST;
799 bp->bp_htype = HWT_ETHER;
800 bp->bp_hlen = HWL_ETHER;
802 bp->bp_secs = htons(get_timer(0) / CFG_HZ);
803 NetCopyIP(&bp->bp_ciaddr, &bp_offer->bp_ciaddr); /* both in network byte order */
804 NetCopyIP(&bp->bp_yiaddr, &bp_offer->bp_yiaddr);
805 NetCopyIP(&bp->bp_siaddr, &bp_offer->bp_siaddr);
806 NetCopyIP(&bp->bp_giaddr, &bp_offer->bp_giaddr);
807 memcpy (bp->bp_chaddr, NetOurEther, 6);
810 * ID is the id of the OFFER packet
813 NetCopyLong(&bp->bp_id, &bp_offer->bp_id);
816 * Copy options from OFFER packet if present
818 NetCopyIP(&OfferedIP, &bp->bp_yiaddr);
819 extlen = DhcpExtended(bp->bp_vend, DHCP_REQUEST, NetDHCPServerIP, OfferedIP);
821 pktlen = BOOTP_SIZE - sizeof(bp->bp_vend) + extlen;
822 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
823 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
825 debug ("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
826 NetSendPacket(NetTxPacket, pktlen);
830 * Handle DHCP received packets.
833 DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
835 Bootp_t *bp = (Bootp_t *)pkt;
837 debug ("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
838 src, dest, len, dhcp_state);
840 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
843 debug ("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: %d\n",
844 src, dest, len, dhcp_state);
846 switch (dhcp_state) {
849 * Wait an appropriate time for any potential DHCPOFFER packets
850 * to arrive. Then select one, and generate DHCPREQUEST response.
851 * If filename is in format we recognize, assume it is a valid
852 * OFFER from a server we want.
854 debug ("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
855 #ifdef CFG_BOOTFILE_PREFIX
856 if (strncmp(bp->bp_file,
858 strlen(CFG_BOOTFILE_PREFIX)) == 0 ) {
859 #endif /* CFG_BOOTFILE_PREFIX */
861 debug ("TRANSITIONING TO REQUESTING STATE\n");
862 dhcp_state = REQUESTING;
864 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
865 DhcpOptionsProcess(&bp->bp_vend[4]);
867 BootpCopyNetParams(bp); /* Store net params from reply */
869 NetSetTimeout(TIMEOUT * CFG_HZ, BootpTimeout);
870 DhcpSendRequestPkt(bp);
871 #ifdef CFG_BOOTFILE_PREFIX
873 #endif /* CFG_BOOTFILE_PREFIX */
878 debug ("DHCP State: REQUESTING\n");
880 if ( DhcpMessageType(bp->bp_vend) == DHCP_ACK ) {
883 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
884 DhcpOptionsProcess(&bp->bp_vend[4]);
885 BootpCopyNetParams(bp); /* Store net params from reply */
887 printf("DHCP client bound to address ");
888 print_IPaddr(NetOurIP);
891 /* Obey the 'autoload' setting */
892 if ((s = getenv("autoload")) != NULL) {
895 * Just use BOOTP to configure system;
896 * Do not use TFTP to load the bootfile.
898 NetState = NETLOOP_SUCCESS;
900 } else if (strcmp(s, "NFS") == 0) {
902 * Use NFS to load the bootfile.
913 printf("DHCP: INVALID STATE\n");
919 void DhcpRequest(void)
923 #endif /* CFG_CMD_DHCP */
925 #endif /* CFG_CMD_NET */