blob: 4db63cbbe64c65dd6722d94b91b5e2fb9aeb863a [file] [log] [blame]
wdenk3861aa52002-09-27 23:19:37 +00001/*
2 * Based on LiMon - BOOTP.
3 *
4 * Copyright 1994, 1995, 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
wdenk232c1502004-03-12 00:14:09 +00008 * Copyright 2000-2004 Wolfgang Denk, wd@denx.de
wdenk3861aa52002-09-27 23:19:37 +00009 */
10
wdenk3861aa52002-09-27 23:19:37 +000011#include <common.h>
12#include <command.h>
13#include <net.h>
14#include "bootp.h"
15#include "tftp.h"
wdenk232c1502004-03-12 00:14:09 +000016#include "nfs.h"
wdenk3861aa52002-09-27 23:19:37 +000017#ifdef CONFIG_STATUS_LED
18#include <status_led.h>
19#endif
20
wdenk232c1502004-03-12 00:14:09 +000021#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
wdenk3861aa52002-09-27 23:19:37 +000022
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +020023#define TIMEOUT 5000UL /* Milliseconds before trying BOOTP again */
wdenk232c1502004-03-12 00:14:09 +000024#ifndef CONFIG_NET_RETRY_COUNT
wdenk3861aa52002-09-27 23:19:37 +000025# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
26#else
wdenk232c1502004-03-12 00:14:09 +000027# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
wdenk3861aa52002-09-27 23:19:37 +000028#endif
29
30#define PORT_BOOTPS 67 /* BOOTP server UDP port */
31#define PORT_BOOTPC 68 /* BOOTP client UDP port */
32
33#ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
wdenk232c1502004-03-12 00:14:09 +000034#define CONFIG_DHCP_MIN_EXT_LEN 64
wdenk3861aa52002-09-27 23:19:37 +000035#endif
36
37ulong BootpID;
38int BootpTry;
39#ifdef CONFIG_BOOTP_RANDOM_DELAY
40ulong seed1, seed2;
41#endif
42
Jon Loeliger643d1ab2007-07-09 17:45:14 -050043#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +000044dhcp_state_t dhcp_state = INIT;
wdenk682011f2003-06-03 23:54:09 +000045unsigned long dhcp_leasetime = 0;
stroese759a51b2003-04-10 13:26:44 +000046IPaddr_t NetDHCPServerIP = 0;
Luca Ceresoli03eb1292011-04-18 06:19:50 +000047static void DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
48 unsigned len);
wdenk3861aa52002-09-27 23:19:37 +000049
50/* For Debug */
wdenk3e386912003-04-05 00:53:31 +000051#if 0
52static char *dhcpmsg2str(int type)
wdenk3861aa52002-09-27 23:19:37 +000053{
54 switch (type) {
wdenk232c1502004-03-12 00:14:09 +000055 case 1: return "DHCPDISCOVER"; break;
56 case 2: return "DHCPOFFER"; break;
57 case 3: return "DHCPREQUEST"; break;
58 case 4: return "DHCPDECLINE"; break;
59 case 5: return "DHCPACK"; break;
60 case 6: return "DHCPNACK"; break;
61 case 7: return "DHCPRELEASE"; break;
wdenk3861aa52002-09-27 23:19:37 +000062 default: return "UNKNOWN/INVALID MSG TYPE"; break;
63 }
64}
wdenk3e386912003-04-05 00:53:31 +000065#endif
wdenk3861aa52002-09-27 23:19:37 +000066
Jon Loeliger1fe80d72007-07-09 22:08:34 -050067#if defined(CONFIG_BOOTP_VENDOREX)
wdenk3861aa52002-09-27 23:19:37 +000068extern u8 *dhcp_vendorex_prep (u8 *e); /*rtn new e after add own opts. */
69extern u8 *dhcp_vendorex_proc (u8 *e); /*rtn next e if mine,else NULL */
70#endif
71
Jon Loeliger610f2e92007-07-10 11:05:02 -050072#endif
wdenk3861aa52002-09-27 23:19:37 +000073
74static int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len)
75{
76 Bootp_t *bp = (Bootp_t *) pkt;
77 int retval = 0;
78
79 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
80 retval = -1;
81 else if (len < sizeof (Bootp_t) - OPT_SIZE)
82 retval = -2;
83 else if (bp->bp_op != OP_BOOTREQUEST &&
84 bp->bp_op != OP_BOOTREPLY &&
85 bp->bp_op != DHCP_OFFER &&
86 bp->bp_op != DHCP_ACK &&
87 bp->bp_op != DHCP_NAK ) {
88 retval = -3;
89 }
90 else if (bp->bp_htype != HWT_ETHER)
91 retval = -4;
92 else if (bp->bp_hlen != HWL_ETHER)
93 retval = -5;
94 else if (NetReadLong((ulong*)&bp->bp_id) != BootpID) {
95 retval = -6;
96 }
97
Robin Getz0ebf04c2009-07-23 03:01:03 -040098 debug("Filtering pkt = %d\n", retval);
wdenk3861aa52002-09-27 23:19:37 +000099
100 return retval;
101}
102
103/*
104 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
105 */
wdenk3e386912003-04-05 00:53:31 +0000106static void BootpCopyNetParams(Bootp_t *bp)
wdenk3861aa52002-09-27 23:19:37 +0000107{
wdenk3d3befa2004-03-14 15:06:13 +0000108 IPaddr_t tmp_ip;
109
wdenk3861aa52002-09-27 23:19:37 +0000110 NetCopyIP(&NetOurIP, &bp->bp_yiaddr);
Wilson Callan5d110f02007-07-28 10:56:13 -0400111#if !defined(CONFIG_BOOTP_SERVERIP)
wdenk3d3befa2004-03-14 15:06:13 +0000112 NetCopyIP(&tmp_ip, &bp->bp_siaddr);
113 if (tmp_ip != 0)
114 NetCopyIP(&NetServerIP, &bp->bp_siaddr);
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400115 memcpy (NetServerEther, ((Ethernet_t *)NetRxPacket)->et_src, 6);
Wilson Callan5d110f02007-07-28 10:56:13 -0400116#endif
wdenk3d3befa2004-03-14 15:06:13 +0000117 if (strlen(bp->bp_file) > 0)
118 copy_filename (BootFile, bp->bp_file, sizeof(BootFile));
wdenk3861aa52002-09-27 23:19:37 +0000119
Robin Getz0ebf04c2009-07-23 03:01:03 -0400120 debug("Bootfile: %s\n", BootFile);
wdenk3861aa52002-09-27 23:19:37 +0000121
122 /* Propagate to environment:
wdenk8bde7f72003-06-27 21:31:46 +0000123 * don't delete exising entry when BOOTP / DHCP reply does
wdenk3861aa52002-09-27 23:19:37 +0000124 * not contain a new value
125 */
126 if (*BootFile) {
127 setenv ("bootfile", BootFile);
128 }
129}
130
131static int truncate_sz (const char *name, int maxlen, int curlen)
132{
133 if (curlen >= maxlen) {
134 printf("*** WARNING: %s is too long (%d - max: %d) - truncated\n",
135 name, curlen, maxlen);
136 curlen = maxlen - 1;
137 }
138 return (curlen);
139}
140
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500141#if !defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000142
wdenk232c1502004-03-12 00:14:09 +0000143static void BootpVendorFieldProcess (u8 * ext)
wdenk3861aa52002-09-27 23:19:37 +0000144{
wdenk232c1502004-03-12 00:14:09 +0000145 int size = *(ext + 1);
wdenk3861aa52002-09-27 23:19:37 +0000146
Robin Getz0ebf04c2009-07-23 03:01:03 -0400147 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
wdenk232c1502004-03-12 00:14:09 +0000148 *(ext + 1));
wdenk3861aa52002-09-27 23:19:37 +0000149
wdenk232c1502004-03-12 00:14:09 +0000150 NetBootFileSize = 0;
wdenk3861aa52002-09-27 23:19:37 +0000151
wdenk232c1502004-03-12 00:14:09 +0000152 switch (*ext) {
153 /* Fixed length fields */
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700154 case 1: /* Subnet mask */
wdenk3861aa52002-09-27 23:19:37 +0000155 if (NetOurSubnetMask == 0)
wdenk232c1502004-03-12 00:14:09 +0000156 NetCopyIP (&NetOurSubnetMask, (IPaddr_t *) (ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000157 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700158 case 2: /* Time offset - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000159 break;
wdenk232c1502004-03-12 00:14:09 +0000160 /* Variable length fields */
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700161 case 3: /* Gateways list */
wdenk3861aa52002-09-27 23:19:37 +0000162 if (NetOurGatewayIP == 0) {
wdenk232c1502004-03-12 00:14:09 +0000163 NetCopyIP (&NetOurGatewayIP, (IPaddr_t *) (ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000164 }
165 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700166 case 4: /* Time server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000167 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700168 case 5: /* IEN-116 name server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000169 break;
170 case 6:
171 if (NetOurDNSIP == 0) {
wdenk232c1502004-03-12 00:14:09 +0000172 NetCopyIP (&NetOurDNSIP, (IPaddr_t *) (ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000173 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500174#if defined(CONFIG_BOOTP_DNS2)
stroesefe389a82003-08-28 14:17:32 +0000175 if ((NetOurDNS2IP == 0) && (size > 4)) {
wdenk232c1502004-03-12 00:14:09 +0000176 NetCopyIP (&NetOurDNS2IP, (IPaddr_t *) (ext + 2 + 4));
stroesefe389a82003-08-28 14:17:32 +0000177 }
178#endif
wdenk3861aa52002-09-27 23:19:37 +0000179 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700180 case 7: /* Log server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000181 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700182 case 8: /* Cookie/Quote server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000183 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700184 case 9: /* LPR server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000185 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700186 case 10: /* Impress server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000187 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700188 case 11: /* RPL server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000189 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700190 case 12: /* Host name */
wdenk3861aa52002-09-27 23:19:37 +0000191 if (NetOurHostName[0] == 0) {
wdenk232c1502004-03-12 00:14:09 +0000192 size = truncate_sz ("Host Name", sizeof (NetOurHostName), size);
193 memcpy (&NetOurHostName, ext + 2, size);
194 NetOurHostName[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000195 }
196 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700197 case 13: /* Boot file size */
wdenk3861aa52002-09-27 23:19:37 +0000198 if (size == 2)
wdenk232c1502004-03-12 00:14:09 +0000199 NetBootFileSize = ntohs (*(ushort *) (ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000200 else if (size == 4)
wdenk232c1502004-03-12 00:14:09 +0000201 NetBootFileSize = ntohl (*(ulong *) (ext + 2));
wdenk3861aa52002-09-27 23:19:37 +0000202 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700203 case 14: /* Merit dump file - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000204 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700205 case 15: /* Domain name - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000206 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700207 case 16: /* Swap server - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000208 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700209 case 17: /* Root path */
wdenk3861aa52002-09-27 23:19:37 +0000210 if (NetOurRootPath[0] == 0) {
wdenk232c1502004-03-12 00:14:09 +0000211 size = truncate_sz ("Root Path", sizeof (NetOurRootPath), size);
212 memcpy (&NetOurRootPath, ext + 2, size);
213 NetOurRootPath[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000214 }
215 break;
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700216 case 18: /* Extension path - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000217 /*
wdenk8bde7f72003-06-27 21:31:46 +0000218 * This can be used to send the information of the
219 * vendor area in another file that the client can
220 * access via TFTP.
wdenk3861aa52002-09-27 23:19:37 +0000221 */
222 break;
wdenk232c1502004-03-12 00:14:09 +0000223 /* IP host layer fields */
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700224 case 40: /* NIS Domain name */
wdenk3861aa52002-09-27 23:19:37 +0000225 if (NetOurNISDomain[0] == 0) {
wdenk232c1502004-03-12 00:14:09 +0000226 size = truncate_sz ("NIS Domain Name", sizeof (NetOurNISDomain), size);
227 memcpy (&NetOurNISDomain, ext + 2, size);
228 NetOurNISDomain[size] = 0;
wdenk3861aa52002-09-27 23:19:37 +0000229 }
230 break;
wdenk232c1502004-03-12 00:14:09 +0000231 /* Application layer fields */
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700232 case 43: /* Vendor specific info - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000233 /*
wdenk8bde7f72003-06-27 21:31:46 +0000234 * Binary information to exchange specific
235 * product information.
wdenk3861aa52002-09-27 23:19:37 +0000236 */
237 break;
wdenk232c1502004-03-12 00:14:09 +0000238 /* Reserved (custom) fields (128..254) */
239 }
wdenk3861aa52002-09-27 23:19:37 +0000240}
241
wdenk232c1502004-03-12 00:14:09 +0000242static void BootpVendorProcess (u8 * ext, int size)
wdenk3861aa52002-09-27 23:19:37 +0000243{
wdenk232c1502004-03-12 00:14:09 +0000244 u8 *end = ext + size;
wdenk3861aa52002-09-27 23:19:37 +0000245
Robin Getz0ebf04c2009-07-23 03:01:03 -0400246 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
wdenk3861aa52002-09-27 23:19:37 +0000247
wdenk232c1502004-03-12 00:14:09 +0000248 while ((ext < end) && (*ext != 0xff)) {
249 if (*ext == 0) {
250 ext++;
251 } else {
252 u8 *opt = ext;
253
254 ext += ext[1] + 2;
255 if (ext <= end)
256 BootpVendorFieldProcess (opt);
257 }
wdenk3861aa52002-09-27 23:19:37 +0000258 }
wdenk3861aa52002-09-27 23:19:37 +0000259
Robin Getz0ebf04c2009-07-23 03:01:03 -0400260 debug("[BOOTP] Received fields: \n");
Mike Frysingerb6446b62009-02-17 00:00:53 -0500261 if (NetOurSubnetMask)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400262 debug("NetOurSubnetMask : %pI4\n", &NetOurSubnetMask);
wdenk3861aa52002-09-27 23:19:37 +0000263
Mike Frysingerb6446b62009-02-17 00:00:53 -0500264 if (NetOurGatewayIP)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400265 debug("NetOurGatewayIP : %pI4", &NetOurGatewayIP);
wdenk3861aa52002-09-27 23:19:37 +0000266
Robin Getz0ebf04c2009-07-23 03:01:03 -0400267 if (NetBootFileSize)
268 debug("NetBootFileSize : %d\n", NetBootFileSize);
wdenk3861aa52002-09-27 23:19:37 +0000269
Robin Getz0ebf04c2009-07-23 03:01:03 -0400270 if (NetOurHostName[0])
271 debug("NetOurHostName : %s\n", NetOurHostName);
wdenk3861aa52002-09-27 23:19:37 +0000272
Robin Getz0ebf04c2009-07-23 03:01:03 -0400273 if (NetOurRootPath[0])
274 debug("NetOurRootPath : %s\n", NetOurRootPath);
wdenk3861aa52002-09-27 23:19:37 +0000275
Robin Getz0ebf04c2009-07-23 03:01:03 -0400276 if (NetOurNISDomain[0])
277 debug("NetOurNISDomain : %s\n", NetOurNISDomain);
wdenk3861aa52002-09-27 23:19:37 +0000278
Robin Getz0ebf04c2009-07-23 03:01:03 -0400279 if (NetBootFileSize)
280 debug("NetBootFileSize: %d\n", NetBootFileSize);
wdenk3861aa52002-09-27 23:19:37 +0000281}
wdenk3861aa52002-09-27 23:19:37 +0000282/*
283 * Handle a BOOTP received packet.
284 */
285static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000286BootpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
287 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000288{
289 Bootp_t *bp;
290 char *s;
291
Robin Getz0ebf04c2009-07-23 03:01:03 -0400292 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
wdenk3861aa52002-09-27 23:19:37 +0000293 src, dest, len, sizeof (Bootp_t));
294
295 bp = (Bootp_t *)pkt;
296
wdenk232c1502004-03-12 00:14:09 +0000297 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
wdenk3861aa52002-09-27 23:19:37 +0000298 return;
299
300 /*
wdenk232c1502004-03-12 00:14:09 +0000301 * Got a good BOOTP reply. Copy the data into our variables.
wdenk3861aa52002-09-27 23:19:37 +0000302 */
303#ifdef CONFIG_STATUS_LED
304 status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF);
305#endif
306
307 BootpCopyNetParams(bp); /* Store net parameters from reply */
308
309 /* Retrieve extended information (we must parse the vendor area) */
310 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200311 BootpVendorProcess((uchar *)&bp->bp_vend[4], len);
wdenk3861aa52002-09-27 23:19:37 +0000312
313 NetSetTimeout(0, (thand_f *)0);
314
Robin Getz0ebf04c2009-07-23 03:01:03 -0400315 debug("Got good BOOTP\n");
wdenk3861aa52002-09-27 23:19:37 +0000316
wdenk132ba5f2004-02-27 08:20:54 +0000317 if ((s = getenv("autoload")) != NULL) {
318 if (*s == 'n') {
319 /*
320 * Just use BOOTP to configure system;
321 * Do not use TFTP to load the bootfile.
322 */
323 NetState = NETLOOP_SUCCESS;
324 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500325#if defined(CONFIG_CMD_NFS)
wdenk132ba5f2004-02-27 08:20:54 +0000326 } else if (strcmp(s, "NFS") == 0) {
327 /*
328 * Use NFS to load the bootfile.
329 */
330 NfsStart();
331 return;
wdenk0e6d7982004-03-14 00:07:33 +0000332#endif
wdenk132ba5f2004-02-27 08:20:54 +0000333 }
wdenk3861aa52002-09-27 23:19:37 +0000334 }
335
wdenk73a8b272003-06-05 19:27:42 +0000336 TftpStart();
wdenk3861aa52002-09-27 23:19:37 +0000337}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500338#endif
wdenk3861aa52002-09-27 23:19:37 +0000339
340/*
341 * Timeout on BOOTP/DHCP request.
342 */
343static void
344BootpTimeout(void)
345{
346 if (BootpTry >= TIMEOUT_COUNT) {
347 puts ("\nRetry count exceeded; starting again\n");
348 NetStartAgain ();
349 } else {
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200350 NetSetTimeout (TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000351 BootpRequest ();
352 }
353}
354
355/*
356 * Initialize BOOTP extension fields in the request.
357 */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500358#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000359static int DhcpExtended (u8 * e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP)
wdenk3861aa52002-09-27 23:19:37 +0000360{
wdenk232c1502004-03-12 00:14:09 +0000361 u8 *start = e;
362 u8 *cnt;
363
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500364#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000365 u8 *x;
wdenk3861aa52002-09-27 23:19:37 +0000366#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500367#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200368 char *hostname;
stroesefe389a82003-08-28 14:17:32 +0000369#endif
wdenk3861aa52002-09-27 23:19:37 +0000370
wdenk232c1502004-03-12 00:14:09 +0000371 *e++ = 99; /* RFC1048 Magic Cookie */
372 *e++ = 130;
373 *e++ = 83;
374 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000375
wdenk232c1502004-03-12 00:14:09 +0000376 *e++ = 53; /* DHCP Message Type */
377 *e++ = 1;
378 *e++ = message_type;
wdenk3861aa52002-09-27 23:19:37 +0000379
wdenk232c1502004-03-12 00:14:09 +0000380 *e++ = 57; /* Maximum DHCP Message Size */
381 *e++ = 2;
382 *e++ = (576 - 312 + OPT_SIZE) >> 8;
383 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
wdenk3861aa52002-09-27 23:19:37 +0000384
wdenk232c1502004-03-12 00:14:09 +0000385 if (ServerID) {
386 int tmp = ntohl (ServerID);
wdenk3861aa52002-09-27 23:19:37 +0000387
wdenk232c1502004-03-12 00:14:09 +0000388 *e++ = 54; /* ServerID */
389 *e++ = 4;
390 *e++ = tmp >> 24;
391 *e++ = tmp >> 16;
392 *e++ = tmp >> 8;
393 *e++ = tmp & 0xff;
394 }
wdenk3861aa52002-09-27 23:19:37 +0000395
wdenk232c1502004-03-12 00:14:09 +0000396 if (RequestedIP) {
397 int tmp = ntohl (RequestedIP);
wdenk3861aa52002-09-27 23:19:37 +0000398
wdenk232c1502004-03-12 00:14:09 +0000399 *e++ = 50; /* Requested IP */
400 *e++ = 4;
401 *e++ = tmp >> 24;
402 *e++ = tmp >> 16;
403 *e++ = tmp >> 8;
404 *e++ = tmp & 0xff;
405 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500406#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000407 if ((hostname = getenv ("hostname"))) {
408 int hostnamelen = strlen (hostname);
409
410 *e++ = 12; /* Hostname */
411 *e++ = hostnamelen;
412 memcpy (e, hostname, hostnamelen);
413 e += hostnamelen;
414 }
stroesefe389a82003-08-28 14:17:32 +0000415#endif
416
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500417#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000418 if ((x = dhcp_vendorex_prep (e)))
419 return x - start;
wdenk3861aa52002-09-27 23:19:37 +0000420#endif
421
wdenk232c1502004-03-12 00:14:09 +0000422 *e++ = 55; /* Parameter Request List */
423 cnt = e++; /* Pointer to count of requested items */
424 *cnt = 0;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500425#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000426 *e++ = 1; /* Subnet Mask */
427 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000428#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500429#if defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000430 *e++ = 2;
431 *cnt += 1;
432#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500433#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000434 *e++ = 3; /* Router Option */
435 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000436#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500437#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000438 *e++ = 6; /* DNS Server(s) */
439 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000440#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500441#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000442 *e++ = 12; /* Hostname */
443 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000444#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500445#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000446 *e++ = 13; /* Boot File Size */
447 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000448#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500449#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000450 *e++ = 17; /* Boot path */
451 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000452#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500453#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000454 *e++ = 40; /* NIS Domain name request */
455 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000456#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500457#if defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000458 *e++ = 42;
459 *cnt += 1;
460#endif
Jason Liu258ccd62010-11-14 12:23:09 +0800461 /* no options, so back up to avoid sending an empty request list */
462 if (*cnt == 0)
463 e -= 2;
464
wdenk232c1502004-03-12 00:14:09 +0000465 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000466
wdenk232c1502004-03-12 00:14:09 +0000467 /* Pad to minimal length */
wdenk3861aa52002-09-27 23:19:37 +0000468#ifdef CONFIG_DHCP_MIN_EXT_LEN
Simon Glass21076f62011-02-02 15:03:28 -0800469 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
wdenk232c1502004-03-12 00:14:09 +0000470 *e++ = 0;
wdenk3861aa52002-09-27 23:19:37 +0000471#endif
472
wdenk232c1502004-03-12 00:14:09 +0000473 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000474}
475
Jon Loeliger610f2e92007-07-10 11:05:02 -0500476#else
wdenk3861aa52002-09-27 23:19:37 +0000477/*
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500478 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
wdenk3861aa52002-09-27 23:19:37 +0000479 */
wdenk232c1502004-03-12 00:14:09 +0000480static int BootpExtended (u8 * e)
wdenk3861aa52002-09-27 23:19:37 +0000481{
wdenk232c1502004-03-12 00:14:09 +0000482 u8 *start = e;
wdenk3861aa52002-09-27 23:19:37 +0000483
wdenk232c1502004-03-12 00:14:09 +0000484 *e++ = 99; /* RFC1048 Magic Cookie */
485 *e++ = 130;
486 *e++ = 83;
487 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000488
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500489#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000490 *e++ = 53; /* DHCP Message Type */
491 *e++ = 1;
492 *e++ = DHCP_DISCOVER;
wdenk3861aa52002-09-27 23:19:37 +0000493
wdenk232c1502004-03-12 00:14:09 +0000494 *e++ = 57; /* Maximum DHCP Message Size */
495 *e++ = 2;
496 *e++ = (576 - 312 + OPT_SIZE) >> 16;
497 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500498#endif
wdenk3861aa52002-09-27 23:19:37 +0000499
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500500#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000501 *e++ = 1; /* Subnet mask request */
502 *e++ = 4;
503 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000504#endif
505
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500506#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000507 *e++ = 3; /* Default gateway request */
508 *e++ = 4;
509 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000510#endif
511
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500512#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000513 *e++ = 6; /* Domain Name Server */
514 *e++ = 4;
515 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000516#endif
517
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500518#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000519 *e++ = 12; /* Host name request */
520 *e++ = 32;
521 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000522#endif
523
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500524#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000525 *e++ = 13; /* Boot file size */
526 *e++ = 2;
527 e += 2;
wdenk3861aa52002-09-27 23:19:37 +0000528#endif
529
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500530#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000531 *e++ = 17; /* Boot path */
532 *e++ = 32;
533 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000534#endif
535
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500536#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000537 *e++ = 40; /* NIS Domain name request */
538 *e++ = 32;
539 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000540#endif
541
wdenk232c1502004-03-12 00:14:09 +0000542 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000543
wdenk232c1502004-03-12 00:14:09 +0000544 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000545}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500546#endif
wdenk3861aa52002-09-27 23:19:37 +0000547
548void
549BootpRequest (void)
550{
551 volatile uchar *pkt, *iphdr;
552 Bootp_t *bp;
553 int ext_len, pktlen, iplen;
554
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500555#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000556 dhcp_state = INIT;
557#endif
558
559#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
560 unsigned char bi_enetaddr[6];
561 int reg;
wdenk3861aa52002-09-27 23:19:37 +0000562 ulong tst1, tst2, sum, m_mask, m_value = 0;
563
564 if (BootpTry ==0) {
565 /* get our mac */
Mike Frysinger95823ca2009-02-11 18:23:48 -0500566 eth_getenv_enetaddr("ethaddr", bi_enetaddr);
wdenk3861aa52002-09-27 23:19:37 +0000567
Robin Getz0ebf04c2009-07-23 03:01:03 -0400568 debug("BootpRequest => Our Mac: ");
569 for (reg=0; reg<6; reg++)
570 debug("%x%c", bi_enetaddr[reg], reg==5 ? '\n' : ':');
wdenk3861aa52002-09-27 23:19:37 +0000571
572 /* Mac-Manipulation 2 get seed1 */
573 tst1=0;
574 tst2=0;
575 for (reg=2; reg<6; reg++) {
576 tst1 = tst1 << 8;
577 tst1 = tst1 | bi_enetaddr[reg];
578 }
579 for (reg=0; reg<2; reg++) {
580 tst2 = tst2 | bi_enetaddr[reg];
581 tst2 = tst2 << 8;
582 }
583
584 seed1 = tst1^tst2;
585
586 /* Mirror seed1*/
587 m_mask=0x1;
588 for (reg=1;reg<=32;reg++) {
589 m_value |= (m_mask & seed1);
590 seed1 = seed1 >> 1;
591 m_value = m_value << 1;
592 }
593 seed1 = m_value;
594 seed2 = 0xB78D0945;
595 }
596
597 /* Random Number Generator */
598
599 for (reg=0;reg<=0;reg++) {
600 sum = seed1 + seed2;
601 if (sum < seed1 || sum < seed2)
602 sum++;
wdenk8bde7f72003-06-27 21:31:46 +0000603 seed2 = seed1;
wdenk3861aa52002-09-27 23:19:37 +0000604 seed1 = sum;
605
606 if (BootpTry<=2) { /* Start with max 1024 * 1ms */
607 sum = sum >> (22-BootpTry);
608 } else { /*After 3rd BOOTP request max 8192 * 1ms */
609 sum = sum >> 19;
610 }
611 }
612
613 printf ("Random delay: %ld ms...\n", sum);
614 for (reg=0; reg <sum; reg++) {
615 udelay(1000); /*Wait 1ms*/
616 }
617#endif /* CONFIG_BOOTP_RANDOM_DELAY */
618
619 printf("BOOTP broadcast %d\n", ++BootpTry);
620 pkt = NetTxPacket;
621 memset ((void*)pkt, 0, PKTSIZE);
622
wdenka3d991b2004-04-15 21:48:45 +0000623 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
wdenk3861aa52002-09-27 23:19:37 +0000624
625 /*
626 * Next line results in incorrect packet size being transmitted, resulting
627 * in errors in some DHCP servers, reporting missing bytes. Size must be
628 * set in packet header after extension length has been determined.
629 * C. Hallinan, DS4.COM, Inc.
630 */
631 /* NetSetIP(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, sizeof (Bootp_t)); */
632 iphdr = pkt; /* We need this later for NetSetIP() */
633 pkt += IP_HDR_SIZE;
634
635 bp = (Bootp_t *)pkt;
636 bp->bp_op = OP_BOOTREQUEST;
637 bp->bp_htype = HWT_ETHER;
638 bp->bp_hlen = HWL_ETHER;
639 bp->bp_hops = 0;
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200640 bp->bp_secs = htons(get_timer(0) / 1000);
wdenk3861aa52002-09-27 23:19:37 +0000641 NetWriteIP(&bp->bp_ciaddr, 0);
642 NetWriteIP(&bp->bp_yiaddr, 0);
643 NetWriteIP(&bp->bp_siaddr, 0);
644 NetWriteIP(&bp->bp_giaddr, 0);
645 memcpy (bp->bp_chaddr, NetOurEther, 6);
646 copy_filename (bp->bp_file, BootFile, sizeof(bp->bp_file));
647
648 /* Request additional information from the BOOTP/DHCP server */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500649#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200650 ext_len = DhcpExtended((u8 *)bp->bp_vend, DHCP_DISCOVER, 0, 0);
wdenk3861aa52002-09-27 23:19:37 +0000651#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200652 ext_len = BootpExtended((u8 *)bp->bp_vend);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500653#endif
wdenk3861aa52002-09-27 23:19:37 +0000654
655 /*
656 * Bootp ID is the lower 4 bytes of our ethernet address
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200657 * plus the current time in ms.
wdenk3861aa52002-09-27 23:19:37 +0000658 */
659 BootpID = ((ulong)NetOurEther[2] << 24)
660 | ((ulong)NetOurEther[3] << 16)
661 | ((ulong)NetOurEther[4] << 8)
662 | (ulong)NetOurEther[5];
663 BootpID += get_timer(0);
wdenk232c1502004-03-12 00:14:09 +0000664 BootpID = htonl(BootpID);
wdenk3861aa52002-09-27 23:19:37 +0000665 NetCopyLong(&bp->bp_id, &BootpID);
666
667 /*
668 * Calculate proper packet lengths taking into account the
669 * variable size of the options field
670 */
Norbert van Bolhuisc9a2aab2009-06-04 09:39:48 +0200671 pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
wdenk3861aa52002-09-27 23:19:37 +0000672 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
673 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200674 NetSetTimeout(SELECT_TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000675
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500676#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000677 dhcp_state = SELECTING;
678 NetSetHandler(DhcpHandler);
679#else
680 NetSetHandler(BootpHandler);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500681#endif
wdenk3861aa52002-09-27 23:19:37 +0000682 NetSendPacket(NetTxPacket, pktlen);
683}
684
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500685#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100686static void DhcpOptionsProcess (uchar * popt, Bootp_t *bp)
wdenk3861aa52002-09-27 23:19:37 +0000687{
wdenk3e386912003-04-05 00:53:31 +0000688 uchar *end = popt + BOOTP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000689 int oplen, size;
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200690#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
691 int *to_ptr;
692#endif
wdenk3861aa52002-09-27 23:19:37 +0000693
wdenk232c1502004-03-12 00:14:09 +0000694 while (popt < end && *popt != 0xff) {
wdenk3861aa52002-09-27 23:19:37 +0000695 oplen = *(popt + 1);
wdenk232c1502004-03-12 00:14:09 +0000696 switch (*popt) {
697 case 1:
698 NetCopyIP (&NetOurSubnetMask, (popt + 2));
699 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500700#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000701 case 2: /* Time offset */
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200702 to_ptr = &NetTimeOffset;
703 NetCopyLong ((ulong *)to_ptr, (ulong *)(popt + 2));
wdenkea287de2005-04-01 00:25:43 +0000704 NetTimeOffset = ntohl (NetTimeOffset);
705 break;
706#endif
wdenk232c1502004-03-12 00:14:09 +0000707 case 3:
708 NetCopyIP (&NetOurGatewayIP, (popt + 2));
709 break;
710 case 6:
711 NetCopyIP (&NetOurDNSIP, (popt + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500712#if defined(CONFIG_BOOTP_DNS2)
wdenk232c1502004-03-12 00:14:09 +0000713 if (*(popt + 1) > 4) {
714 NetCopyIP (&NetOurDNS2IP, (popt + 2 + 4));
715 }
stroesefe389a82003-08-28 14:17:32 +0000716#endif
wdenk232c1502004-03-12 00:14:09 +0000717 break;
718 case 12:
719 size = truncate_sz ("Host Name", sizeof (NetOurHostName), oplen);
720 memcpy (&NetOurHostName, popt + 2, size);
721 NetOurHostName[size] = 0;
722 break;
723 case 15: /* Ignore Domain Name Option */
724 break;
725 case 17:
726 size = truncate_sz ("Root Path", sizeof (NetOurRootPath), oplen);
727 memcpy (&NetOurRootPath, popt + 2, size);
728 NetOurRootPath[size] = 0;
729 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500730#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000731 case 42: /* NTP server IP */
732 NetCopyIP (&NetNtpServerIP, (popt + 2));
733 break;
734#endif
wdenk232c1502004-03-12 00:14:09 +0000735 case 51:
736 NetCopyLong (&dhcp_leasetime, (ulong *) (popt + 2));
737 break;
738 case 53: /* Ignore Message Type Option */
739 break;
740 case 54:
741 NetCopyIP (&NetDHCPServerIP, (popt + 2));
742 break;
743 case 58: /* Ignore Renewal Time Option */
744 break;
745 case 59: /* Ignore Rebinding Time Option */
746 break;
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100747 case 66: /* Ignore TFTP server name */
748 break;
749 case 67: /* vendor opt bootfile */
750 /*
751 * I can't use dhcp_vendorex_proc here because I need
752 * to write into the bootp packet - even then I had to
753 * pass the bootp packet pointer into here as the
754 * second arg
755 */
756 size = truncate_sz ("Opt Boot File",
757 sizeof(bp->bp_file),
758 oplen);
759 if (bp->bp_file[0] == '\0' && size > 0) {
760 /*
761 * only use vendor boot file if we didn't
762 * receive a boot file in the main non-vendor
763 * part of the packet - god only knows why
764 * some vendors chose not to use this perfectly
765 * good spot to store the boot file (join on
766 * Tru64 Unix) it seems mind bogglingly crazy
767 * to me
768 */
769 printf("*** WARNING: using vendor "
770 "optional boot file\n");
771 memcpy(bp->bp_file, popt + 2, size);
772 bp->bp_file[size] = '\0';
773 }
774 break;
wdenk232c1502004-03-12 00:14:09 +0000775 default:
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500776#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000777 if (dhcp_vendorex_proc (popt))
wdenk8bde7f72003-06-27 21:31:46 +0000778 break;
wdenk3861aa52002-09-27 23:19:37 +0000779#endif
wdenk232c1502004-03-12 00:14:09 +0000780 printf ("*** Unhandled DHCP Option in OFFER/ACK: %d\n", *popt);
781 break;
wdenk3861aa52002-09-27 23:19:37 +0000782 }
783 popt += oplen + 2; /* Process next option */
784 }
785}
786
787static int DhcpMessageType(unsigned char *popt)
788{
789 if (NetReadLong((ulong*)popt) != htonl(BOOTP_VENDOR_MAGIC))
790 return -1;
791
792 popt += 4;
793 while ( *popt != 0xff ) {
794 if ( *popt == 53 ) /* DHCP Message Type */
795 return *(popt + 2);
796 popt += *(popt + 1) + 2; /* Scan through all options */
797 }
798 return -1;
799}
800
wdenk3e386912003-04-05 00:53:31 +0000801static void DhcpSendRequestPkt(Bootp_t *bp_offer)
wdenk3861aa52002-09-27 23:19:37 +0000802{
803 volatile uchar *pkt, *iphdr;
804 Bootp_t *bp;
805 int pktlen, iplen, extlen;
wdenk47cd00f2003-03-06 13:39:27 +0000806 IPaddr_t OfferedIP;
wdenk3861aa52002-09-27 23:19:37 +0000807
Robin Getz0ebf04c2009-07-23 03:01:03 -0400808 debug("DhcpSendRequestPkt: Sending DHCPREQUEST\n");
wdenk3861aa52002-09-27 23:19:37 +0000809 pkt = NetTxPacket;
810 memset ((void*)pkt, 0, PKTSIZE);
811
wdenka3d991b2004-04-15 21:48:45 +0000812 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
wdenk3861aa52002-09-27 23:19:37 +0000813
814 iphdr = pkt; /* We'll need this later to set proper pkt size */
815 pkt += IP_HDR_SIZE;
816
817 bp = (Bootp_t *)pkt;
818 bp->bp_op = OP_BOOTREQUEST;
819 bp->bp_htype = HWT_ETHER;
820 bp->bp_hlen = HWL_ETHER;
821 bp->bp_hops = 0;
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200822 bp->bp_secs = htons(get_timer(0) / 1000);
Justin Flammiae5c794e2007-10-29 17:40:35 -0400823 /* Do not set the client IP, your IP, or server IP yet, since it hasn't been ACK'ed by
824 * the server yet */
825
Wolfgang Denkc6686702006-10-12 00:01:08 +0200826 /*
Wolfgang Denkd82718f2006-10-09 01:26:14 +0200827 * RFC3046 requires Relay Agents to discard packets with
828 * nonzero and offered giaddr
829 */
830 NetWriteIP(&bp->bp_giaddr, 0);
831
wdenk3861aa52002-09-27 23:19:37 +0000832 memcpy (bp->bp_chaddr, NetOurEther, 6);
833
834 /*
835 * ID is the id of the OFFER packet
836 */
837
838 NetCopyLong(&bp->bp_id, &bp_offer->bp_id);
839
840 /*
841 * Copy options from OFFER packet if present
842 */
Justin Flammiae5c794e2007-10-29 17:40:35 -0400843
844 /* Copy offered IP into the parameters request list */
845 NetCopyIP(&OfferedIP, &bp_offer->bp_yiaddr);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200846 extlen = DhcpExtended((u8 *)bp->bp_vend, DHCP_REQUEST, NetDHCPServerIP, OfferedIP);
wdenk3861aa52002-09-27 23:19:37 +0000847
Norbert van Bolhuisc9a2aab2009-06-04 09:39:48 +0200848 pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
wdenk3861aa52002-09-27 23:19:37 +0000849 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
850 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
851
Robin Getz0ebf04c2009-07-23 03:01:03 -0400852 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
Aras Vaichasd9a2f412008-03-26 09:43:57 +1100853#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
854 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
855#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
wdenk3861aa52002-09-27 23:19:37 +0000856 NetSendPacket(NetTxPacket, pktlen);
857}
858
859/*
860 * Handle DHCP received packets.
861 */
862static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000863DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
864 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000865{
866 Bootp_t *bp = (Bootp_t *)pkt;
867
Robin Getz0ebf04c2009-07-23 03:01:03 -0400868 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
wdenk3861aa52002-09-27 23:19:37 +0000869 src, dest, len, dhcp_state);
870
wdenk232c1502004-03-12 00:14:09 +0000871 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
wdenk3861aa52002-09-27 23:19:37 +0000872 return;
873
Robin Getz0ebf04c2009-07-23 03:01:03 -0400874 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: %d\n",
wdenk3861aa52002-09-27 23:19:37 +0000875 src, dest, len, dhcp_state);
876
877 switch (dhcp_state) {
878 case SELECTING:
879 /*
880 * Wait an appropriate time for any potential DHCPOFFER packets
881 * to arrive. Then select one, and generate DHCPREQUEST response.
882 * If filename is in format we recognize, assume it is a valid
883 * OFFER from a server we want.
884 */
Robin Getz0ebf04c2009-07-23 03:01:03 -0400885 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200886#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +0000887 if (strncmp(bp->bp_file,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200888 CONFIG_SYS_BOOTFILE_PREFIX,
889 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0 ) {
890#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +0000891
Robin Getz0ebf04c2009-07-23 03:01:03 -0400892 debug("TRANSITIONING TO REQUESTING STATE\n");
wdenk3861aa52002-09-27 23:19:37 +0000893 dhcp_state = REQUESTING;
stroese759a51b2003-04-10 13:26:44 +0000894
wdenk3861aa52002-09-27 23:19:37 +0000895 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100896 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
wdenk3861aa52002-09-27 23:19:37 +0000897
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200898 NetSetTimeout(TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000899 DhcpSendRequestPkt(bp);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200900#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +0000901 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200902#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +0000903
904 return;
905 break;
906 case REQUESTING:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400907 debug("DHCP State: REQUESTING\n");
wdenk3861aa52002-09-27 23:19:37 +0000908
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200909 if ( DhcpMessageType((u8 *)bp->bp_vend) == DHCP_ACK ) {
wdenk3861aa52002-09-27 23:19:37 +0000910 char *s;
911
912 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100913 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
wdenk232c1502004-03-12 00:14:09 +0000914 BootpCopyNetParams(bp); /* Store net params from reply */
wdenk3861aa52002-09-27 23:19:37 +0000915 dhcp_state = BOUND;
Mike Frysingerb6446b62009-02-17 00:00:53 -0500916 printf ("DHCP client bound to address %pI4\n", &NetOurIP);
wdenk3861aa52002-09-27 23:19:37 +0000917
918 /* Obey the 'autoload' setting */
wdenk132ba5f2004-02-27 08:20:54 +0000919 if ((s = getenv("autoload")) != NULL) {
920 if (*s == 'n') {
921 /*
922 * Just use BOOTP to configure system;
923 * Do not use TFTP to load the bootfile.
924 */
925 NetState = NETLOOP_SUCCESS;
926 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500927#if defined(CONFIG_CMD_NFS)
wdenk132ba5f2004-02-27 08:20:54 +0000928 } else if (strcmp(s, "NFS") == 0) {
929 /*
930 * Use NFS to load the bootfile.
931 */
932 NfsStart();
933 return;
wdenk0e6d7982004-03-14 00:07:33 +0000934#endif
wdenk132ba5f2004-02-27 08:20:54 +0000935 }
wdenk3861aa52002-09-27 23:19:37 +0000936 }
wdenk73a8b272003-06-05 19:27:42 +0000937 TftpStart();
wdenk3861aa52002-09-27 23:19:37 +0000938 return;
939 }
940 break;
Remy Bohmer51dfe132008-08-20 11:30:28 +0200941 case BOUND:
942 /* DHCP client bound to address */
943 break;
wdenk3861aa52002-09-27 23:19:37 +0000944 default:
wdenk4b9206e2004-03-23 22:14:11 +0000945 puts ("DHCP: INVALID STATE\n");
wdenk3861aa52002-09-27 23:19:37 +0000946 break;
947 }
948
949}
950
951void DhcpRequest(void)
952{
953 BootpRequest();
954}
Wolfgang Denk992742a2007-11-03 23:09:27 +0100955#endif /* CONFIG_CMD_DHCP */