blob: 45eaab1e0582c272a075b2adb57e67b9ea0d5926 [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;
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000231#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
232 case 42: /* NTP server IP */
233 NetCopyIP(&NetNtpServerIP, (IPaddr_t *) (ext + 2));
234 break;
235#endif
wdenk232c1502004-03-12 00:14:09 +0000236 /* Application layer fields */
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -0700237 case 43: /* Vendor specific info - Not yet supported */
wdenk3861aa52002-09-27 23:19:37 +0000238 /*
wdenk8bde7f72003-06-27 21:31:46 +0000239 * Binary information to exchange specific
240 * product information.
wdenk3861aa52002-09-27 23:19:37 +0000241 */
242 break;
wdenk232c1502004-03-12 00:14:09 +0000243 /* Reserved (custom) fields (128..254) */
244 }
wdenk3861aa52002-09-27 23:19:37 +0000245}
246
wdenk232c1502004-03-12 00:14:09 +0000247static void BootpVendorProcess (u8 * ext, int size)
wdenk3861aa52002-09-27 23:19:37 +0000248{
wdenk232c1502004-03-12 00:14:09 +0000249 u8 *end = ext + size;
wdenk3861aa52002-09-27 23:19:37 +0000250
Robin Getz0ebf04c2009-07-23 03:01:03 -0400251 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
wdenk3861aa52002-09-27 23:19:37 +0000252
wdenk232c1502004-03-12 00:14:09 +0000253 while ((ext < end) && (*ext != 0xff)) {
254 if (*ext == 0) {
255 ext++;
256 } else {
257 u8 *opt = ext;
258
259 ext += ext[1] + 2;
260 if (ext <= end)
261 BootpVendorFieldProcess (opt);
262 }
wdenk3861aa52002-09-27 23:19:37 +0000263 }
wdenk3861aa52002-09-27 23:19:37 +0000264
Robin Getz0ebf04c2009-07-23 03:01:03 -0400265 debug("[BOOTP] Received fields: \n");
Mike Frysingerb6446b62009-02-17 00:00:53 -0500266 if (NetOurSubnetMask)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400267 debug("NetOurSubnetMask : %pI4\n", &NetOurSubnetMask);
wdenk3861aa52002-09-27 23:19:37 +0000268
Mike Frysingerb6446b62009-02-17 00:00:53 -0500269 if (NetOurGatewayIP)
Robin Getz0ebf04c2009-07-23 03:01:03 -0400270 debug("NetOurGatewayIP : %pI4", &NetOurGatewayIP);
wdenk3861aa52002-09-27 23:19:37 +0000271
Robin Getz0ebf04c2009-07-23 03:01:03 -0400272 if (NetBootFileSize)
273 debug("NetBootFileSize : %d\n", NetBootFileSize);
wdenk3861aa52002-09-27 23:19:37 +0000274
Robin Getz0ebf04c2009-07-23 03:01:03 -0400275 if (NetOurHostName[0])
276 debug("NetOurHostName : %s\n", NetOurHostName);
wdenk3861aa52002-09-27 23:19:37 +0000277
Robin Getz0ebf04c2009-07-23 03:01:03 -0400278 if (NetOurRootPath[0])
279 debug("NetOurRootPath : %s\n", NetOurRootPath);
wdenk3861aa52002-09-27 23:19:37 +0000280
Robin Getz0ebf04c2009-07-23 03:01:03 -0400281 if (NetOurNISDomain[0])
282 debug("NetOurNISDomain : %s\n", NetOurNISDomain);
wdenk3861aa52002-09-27 23:19:37 +0000283
Robin Getz0ebf04c2009-07-23 03:01:03 -0400284 if (NetBootFileSize)
285 debug("NetBootFileSize: %d\n", NetBootFileSize);
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000286
287#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
288 if (NetNtpServerIP)
289 debug("NetNtpServerIP : %pI4\n", &NetNtpServerIP);
290#endif
wdenk3861aa52002-09-27 23:19:37 +0000291}
wdenk3861aa52002-09-27 23:19:37 +0000292/*
293 * Handle a BOOTP received packet.
294 */
295static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000296BootpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
297 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000298{
299 Bootp_t *bp;
300 char *s;
301
Robin Getz0ebf04c2009-07-23 03:01:03 -0400302 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
wdenk3861aa52002-09-27 23:19:37 +0000303 src, dest, len, sizeof (Bootp_t));
304
305 bp = (Bootp_t *)pkt;
306
wdenk232c1502004-03-12 00:14:09 +0000307 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
wdenk3861aa52002-09-27 23:19:37 +0000308 return;
309
310 /*
wdenk232c1502004-03-12 00:14:09 +0000311 * Got a good BOOTP reply. Copy the data into our variables.
wdenk3861aa52002-09-27 23:19:37 +0000312 */
313#ifdef CONFIG_STATUS_LED
314 status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF);
315#endif
316
317 BootpCopyNetParams(bp); /* Store net parameters from reply */
318
319 /* Retrieve extended information (we must parse the vendor area) */
320 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200321 BootpVendorProcess((uchar *)&bp->bp_vend[4], len);
wdenk3861aa52002-09-27 23:19:37 +0000322
323 NetSetTimeout(0, (thand_f *)0);
324
Robin Getz0ebf04c2009-07-23 03:01:03 -0400325 debug("Got good BOOTP\n");
wdenk3861aa52002-09-27 23:19:37 +0000326
wdenk132ba5f2004-02-27 08:20:54 +0000327 if ((s = getenv("autoload")) != NULL) {
328 if (*s == 'n') {
329 /*
330 * Just use BOOTP to configure system;
331 * Do not use TFTP to load the bootfile.
332 */
333 NetState = NETLOOP_SUCCESS;
334 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500335#if defined(CONFIG_CMD_NFS)
wdenk132ba5f2004-02-27 08:20:54 +0000336 } else if (strcmp(s, "NFS") == 0) {
337 /*
338 * Use NFS to load the bootfile.
339 */
340 NfsStart();
341 return;
wdenk0e6d7982004-03-14 00:07:33 +0000342#endif
wdenk132ba5f2004-02-27 08:20:54 +0000343 }
wdenk3861aa52002-09-27 23:19:37 +0000344 }
345
wdenk73a8b272003-06-05 19:27:42 +0000346 TftpStart();
wdenk3861aa52002-09-27 23:19:37 +0000347}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500348#endif
wdenk3861aa52002-09-27 23:19:37 +0000349
350/*
351 * Timeout on BOOTP/DHCP request.
352 */
353static void
354BootpTimeout(void)
355{
356 if (BootpTry >= TIMEOUT_COUNT) {
357 puts ("\nRetry count exceeded; starting again\n");
358 NetStartAgain ();
359 } else {
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200360 NetSetTimeout (TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000361 BootpRequest ();
362 }
363}
364
365/*
366 * Initialize BOOTP extension fields in the request.
367 */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500368#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000369static int DhcpExtended (u8 * e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP)
wdenk3861aa52002-09-27 23:19:37 +0000370{
wdenk232c1502004-03-12 00:14:09 +0000371 u8 *start = e;
372 u8 *cnt;
373
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500374#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000375 u8 *x;
wdenk3861aa52002-09-27 23:19:37 +0000376#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500377#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200378 char *hostname;
stroesefe389a82003-08-28 14:17:32 +0000379#endif
wdenk3861aa52002-09-27 23:19:37 +0000380
wdenk232c1502004-03-12 00:14:09 +0000381 *e++ = 99; /* RFC1048 Magic Cookie */
382 *e++ = 130;
383 *e++ = 83;
384 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000385
wdenk232c1502004-03-12 00:14:09 +0000386 *e++ = 53; /* DHCP Message Type */
387 *e++ = 1;
388 *e++ = message_type;
wdenk3861aa52002-09-27 23:19:37 +0000389
wdenk232c1502004-03-12 00:14:09 +0000390 *e++ = 57; /* Maximum DHCP Message Size */
391 *e++ = 2;
392 *e++ = (576 - 312 + OPT_SIZE) >> 8;
393 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
wdenk3861aa52002-09-27 23:19:37 +0000394
wdenk232c1502004-03-12 00:14:09 +0000395 if (ServerID) {
396 int tmp = ntohl (ServerID);
wdenk3861aa52002-09-27 23:19:37 +0000397
wdenk232c1502004-03-12 00:14:09 +0000398 *e++ = 54; /* ServerID */
399 *e++ = 4;
400 *e++ = tmp >> 24;
401 *e++ = tmp >> 16;
402 *e++ = tmp >> 8;
403 *e++ = tmp & 0xff;
404 }
wdenk3861aa52002-09-27 23:19:37 +0000405
wdenk232c1502004-03-12 00:14:09 +0000406 if (RequestedIP) {
407 int tmp = ntohl (RequestedIP);
wdenk3861aa52002-09-27 23:19:37 +0000408
wdenk232c1502004-03-12 00:14:09 +0000409 *e++ = 50; /* Requested IP */
410 *e++ = 4;
411 *e++ = tmp >> 24;
412 *e++ = tmp >> 16;
413 *e++ = tmp >> 8;
414 *e++ = tmp & 0xff;
415 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500416#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000417 if ((hostname = getenv ("hostname"))) {
418 int hostnamelen = strlen (hostname);
419
420 *e++ = 12; /* Hostname */
421 *e++ = hostnamelen;
422 memcpy (e, hostname, hostnamelen);
423 e += hostnamelen;
424 }
stroesefe389a82003-08-28 14:17:32 +0000425#endif
426
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500427#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000428 if ((x = dhcp_vendorex_prep (e)))
429 return x - start;
wdenk3861aa52002-09-27 23:19:37 +0000430#endif
431
wdenk232c1502004-03-12 00:14:09 +0000432 *e++ = 55; /* Parameter Request List */
433 cnt = e++; /* Pointer to count of requested items */
434 *cnt = 0;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500435#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000436 *e++ = 1; /* Subnet Mask */
437 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000438#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500439#if defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000440 *e++ = 2;
441 *cnt += 1;
442#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500443#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000444 *e++ = 3; /* Router Option */
445 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000446#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500447#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000448 *e++ = 6; /* DNS Server(s) */
449 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000450#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500451#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000452 *e++ = 12; /* Hostname */
453 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000454#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500455#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000456 *e++ = 13; /* Boot File Size */
457 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000458#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500459#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000460 *e++ = 17; /* Boot path */
461 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000462#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500463#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000464 *e++ = 40; /* NIS Domain name request */
465 *cnt += 1;
wdenk3861aa52002-09-27 23:19:37 +0000466#endif
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500467#if defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000468 *e++ = 42;
469 *cnt += 1;
470#endif
Jason Liu258ccd62010-11-14 12:23:09 +0800471 /* no options, so back up to avoid sending an empty request list */
472 if (*cnt == 0)
473 e -= 2;
474
wdenk232c1502004-03-12 00:14:09 +0000475 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000476
wdenk232c1502004-03-12 00:14:09 +0000477 /* Pad to minimal length */
wdenk3861aa52002-09-27 23:19:37 +0000478#ifdef CONFIG_DHCP_MIN_EXT_LEN
Simon Glass21076f62011-02-02 15:03:28 -0800479 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
wdenk232c1502004-03-12 00:14:09 +0000480 *e++ = 0;
wdenk3861aa52002-09-27 23:19:37 +0000481#endif
482
wdenk232c1502004-03-12 00:14:09 +0000483 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000484}
485
Jon Loeliger610f2e92007-07-10 11:05:02 -0500486#else
wdenk3861aa52002-09-27 23:19:37 +0000487/*
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500488 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
wdenk3861aa52002-09-27 23:19:37 +0000489 */
wdenk232c1502004-03-12 00:14:09 +0000490static int BootpExtended (u8 * e)
wdenk3861aa52002-09-27 23:19:37 +0000491{
wdenk232c1502004-03-12 00:14:09 +0000492 u8 *start = e;
wdenk3861aa52002-09-27 23:19:37 +0000493
wdenk232c1502004-03-12 00:14:09 +0000494 *e++ = 99; /* RFC1048 Magic Cookie */
495 *e++ = 130;
496 *e++ = 83;
497 *e++ = 99;
wdenk3861aa52002-09-27 23:19:37 +0000498
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500499#if defined(CONFIG_CMD_DHCP)
wdenk232c1502004-03-12 00:14:09 +0000500 *e++ = 53; /* DHCP Message Type */
501 *e++ = 1;
502 *e++ = DHCP_DISCOVER;
wdenk3861aa52002-09-27 23:19:37 +0000503
wdenk232c1502004-03-12 00:14:09 +0000504 *e++ = 57; /* Maximum DHCP Message Size */
505 *e++ = 2;
506 *e++ = (576 - 312 + OPT_SIZE) >> 16;
507 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500508#endif
wdenk3861aa52002-09-27 23:19:37 +0000509
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500510#if defined(CONFIG_BOOTP_SUBNETMASK)
wdenk232c1502004-03-12 00:14:09 +0000511 *e++ = 1; /* Subnet mask request */
512 *e++ = 4;
513 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000514#endif
515
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500516#if defined(CONFIG_BOOTP_GATEWAY)
wdenk232c1502004-03-12 00:14:09 +0000517 *e++ = 3; /* Default gateway request */
518 *e++ = 4;
519 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000520#endif
521
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500522#if defined(CONFIG_BOOTP_DNS)
wdenk232c1502004-03-12 00:14:09 +0000523 *e++ = 6; /* Domain Name Server */
524 *e++ = 4;
525 e += 4;
wdenk3861aa52002-09-27 23:19:37 +0000526#endif
527
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500528#if defined(CONFIG_BOOTP_HOSTNAME)
wdenk232c1502004-03-12 00:14:09 +0000529 *e++ = 12; /* Host name request */
530 *e++ = 32;
531 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000532#endif
533
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500534#if defined(CONFIG_BOOTP_BOOTFILESIZE)
wdenk232c1502004-03-12 00:14:09 +0000535 *e++ = 13; /* Boot file size */
536 *e++ = 2;
537 e += 2;
wdenk3861aa52002-09-27 23:19:37 +0000538#endif
539
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500540#if defined(CONFIG_BOOTP_BOOTPATH)
wdenk232c1502004-03-12 00:14:09 +0000541 *e++ = 17; /* Boot path */
542 *e++ = 32;
543 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000544#endif
545
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500546#if defined(CONFIG_BOOTP_NISDOMAIN)
wdenk232c1502004-03-12 00:14:09 +0000547 *e++ = 40; /* NIS Domain name request */
548 *e++ = 32;
549 e += 32;
wdenk3861aa52002-09-27 23:19:37 +0000550#endif
Luuk Paulussen09e3a672011-05-16 18:29:19 +0000551#if defined(CONFIG_BOOTP_NTPSERVER)
552 *e++ = 42;
553 *e++ = 4;
554 e += 4;
555#endif
wdenk3861aa52002-09-27 23:19:37 +0000556
wdenk232c1502004-03-12 00:14:09 +0000557 *e++ = 255; /* End of the list */
wdenk3861aa52002-09-27 23:19:37 +0000558
wdenk232c1502004-03-12 00:14:09 +0000559 return e - start;
wdenk3861aa52002-09-27 23:19:37 +0000560}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500561#endif
wdenk3861aa52002-09-27 23:19:37 +0000562
563void
564BootpRequest (void)
565{
566 volatile uchar *pkt, *iphdr;
567 Bootp_t *bp;
568 int ext_len, pktlen, iplen;
569
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500570#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000571 dhcp_state = INIT;
572#endif
573
574#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
575 unsigned char bi_enetaddr[6];
576 int reg;
wdenk3861aa52002-09-27 23:19:37 +0000577 ulong tst1, tst2, sum, m_mask, m_value = 0;
578
579 if (BootpTry ==0) {
580 /* get our mac */
Mike Frysinger95823ca2009-02-11 18:23:48 -0500581 eth_getenv_enetaddr("ethaddr", bi_enetaddr);
wdenk3861aa52002-09-27 23:19:37 +0000582
Robin Getz0ebf04c2009-07-23 03:01:03 -0400583 debug("BootpRequest => Our Mac: ");
584 for (reg=0; reg<6; reg++)
585 debug("%x%c", bi_enetaddr[reg], reg==5 ? '\n' : ':');
wdenk3861aa52002-09-27 23:19:37 +0000586
587 /* Mac-Manipulation 2 get seed1 */
588 tst1=0;
589 tst2=0;
590 for (reg=2; reg<6; reg++) {
591 tst1 = tst1 << 8;
592 tst1 = tst1 | bi_enetaddr[reg];
593 }
594 for (reg=0; reg<2; reg++) {
595 tst2 = tst2 | bi_enetaddr[reg];
596 tst2 = tst2 << 8;
597 }
598
599 seed1 = tst1^tst2;
600
601 /* Mirror seed1*/
602 m_mask=0x1;
603 for (reg=1;reg<=32;reg++) {
604 m_value |= (m_mask & seed1);
605 seed1 = seed1 >> 1;
606 m_value = m_value << 1;
607 }
608 seed1 = m_value;
609 seed2 = 0xB78D0945;
610 }
611
612 /* Random Number Generator */
613
614 for (reg=0;reg<=0;reg++) {
615 sum = seed1 + seed2;
616 if (sum < seed1 || sum < seed2)
617 sum++;
wdenk8bde7f72003-06-27 21:31:46 +0000618 seed2 = seed1;
wdenk3861aa52002-09-27 23:19:37 +0000619 seed1 = sum;
620
621 if (BootpTry<=2) { /* Start with max 1024 * 1ms */
622 sum = sum >> (22-BootpTry);
623 } else { /*After 3rd BOOTP request max 8192 * 1ms */
624 sum = sum >> 19;
625 }
626 }
627
628 printf ("Random delay: %ld ms...\n", sum);
629 for (reg=0; reg <sum; reg++) {
630 udelay(1000); /*Wait 1ms*/
631 }
632#endif /* CONFIG_BOOTP_RANDOM_DELAY */
633
634 printf("BOOTP broadcast %d\n", ++BootpTry);
635 pkt = NetTxPacket;
636 memset ((void*)pkt, 0, PKTSIZE);
637
wdenka3d991b2004-04-15 21:48:45 +0000638 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
wdenk3861aa52002-09-27 23:19:37 +0000639
640 /*
641 * Next line results in incorrect packet size being transmitted, resulting
642 * in errors in some DHCP servers, reporting missing bytes. Size must be
643 * set in packet header after extension length has been determined.
644 * C. Hallinan, DS4.COM, Inc.
645 */
646 /* NetSetIP(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, sizeof (Bootp_t)); */
647 iphdr = pkt; /* We need this later for NetSetIP() */
648 pkt += IP_HDR_SIZE;
649
650 bp = (Bootp_t *)pkt;
651 bp->bp_op = OP_BOOTREQUEST;
652 bp->bp_htype = HWT_ETHER;
653 bp->bp_hlen = HWL_ETHER;
654 bp->bp_hops = 0;
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200655 bp->bp_secs = htons(get_timer(0) / 1000);
wdenk3861aa52002-09-27 23:19:37 +0000656 NetWriteIP(&bp->bp_ciaddr, 0);
657 NetWriteIP(&bp->bp_yiaddr, 0);
658 NetWriteIP(&bp->bp_siaddr, 0);
659 NetWriteIP(&bp->bp_giaddr, 0);
660 memcpy (bp->bp_chaddr, NetOurEther, 6);
661 copy_filename (bp->bp_file, BootFile, sizeof(bp->bp_file));
662
663 /* Request additional information from the BOOTP/DHCP server */
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500664#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200665 ext_len = DhcpExtended((u8 *)bp->bp_vend, DHCP_DISCOVER, 0, 0);
wdenk3861aa52002-09-27 23:19:37 +0000666#else
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200667 ext_len = BootpExtended((u8 *)bp->bp_vend);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500668#endif
wdenk3861aa52002-09-27 23:19:37 +0000669
670 /*
671 * Bootp ID is the lower 4 bytes of our ethernet address
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200672 * plus the current time in ms.
wdenk3861aa52002-09-27 23:19:37 +0000673 */
674 BootpID = ((ulong)NetOurEther[2] << 24)
675 | ((ulong)NetOurEther[3] << 16)
676 | ((ulong)NetOurEther[4] << 8)
677 | (ulong)NetOurEther[5];
678 BootpID += get_timer(0);
wdenk232c1502004-03-12 00:14:09 +0000679 BootpID = htonl(BootpID);
wdenk3861aa52002-09-27 23:19:37 +0000680 NetCopyLong(&bp->bp_id, &BootpID);
681
682 /*
683 * Calculate proper packet lengths taking into account the
684 * variable size of the options field
685 */
Norbert van Bolhuisc9a2aab2009-06-04 09:39:48 +0200686 pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
wdenk3861aa52002-09-27 23:19:37 +0000687 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
688 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200689 NetSetTimeout(SELECT_TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000690
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500691#if defined(CONFIG_CMD_DHCP)
wdenk3861aa52002-09-27 23:19:37 +0000692 dhcp_state = SELECTING;
693 NetSetHandler(DhcpHandler);
694#else
695 NetSetHandler(BootpHandler);
Jon Loeliger610f2e92007-07-10 11:05:02 -0500696#endif
wdenk3861aa52002-09-27 23:19:37 +0000697 NetSendPacket(NetTxPacket, pktlen);
698}
699
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500700#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100701static void DhcpOptionsProcess (uchar * popt, Bootp_t *bp)
wdenk3861aa52002-09-27 23:19:37 +0000702{
wdenk3e386912003-04-05 00:53:31 +0000703 uchar *end = popt + BOOTP_HDR_SIZE;
wdenk3861aa52002-09-27 23:19:37 +0000704 int oplen, size;
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200705#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
706 int *to_ptr;
707#endif
wdenk3861aa52002-09-27 23:19:37 +0000708
wdenk232c1502004-03-12 00:14:09 +0000709 while (popt < end && *popt != 0xff) {
wdenk3861aa52002-09-27 23:19:37 +0000710 oplen = *(popt + 1);
wdenk232c1502004-03-12 00:14:09 +0000711 switch (*popt) {
712 case 1:
713 NetCopyIP (&NetOurSubnetMask, (popt + 2));
714 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500715#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000716 case 2: /* Time offset */
Wolfgang Denkd8d87242009-09-11 09:05:32 +0200717 to_ptr = &NetTimeOffset;
718 NetCopyLong ((ulong *)to_ptr, (ulong *)(popt + 2));
wdenkea287de2005-04-01 00:25:43 +0000719 NetTimeOffset = ntohl (NetTimeOffset);
720 break;
721#endif
wdenk232c1502004-03-12 00:14:09 +0000722 case 3:
723 NetCopyIP (&NetOurGatewayIP, (popt + 2));
724 break;
725 case 6:
726 NetCopyIP (&NetOurDNSIP, (popt + 2));
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500727#if defined(CONFIG_BOOTP_DNS2)
wdenk232c1502004-03-12 00:14:09 +0000728 if (*(popt + 1) > 4) {
729 NetCopyIP (&NetOurDNS2IP, (popt + 2 + 4));
730 }
stroesefe389a82003-08-28 14:17:32 +0000731#endif
wdenk232c1502004-03-12 00:14:09 +0000732 break;
733 case 12:
734 size = truncate_sz ("Host Name", sizeof (NetOurHostName), oplen);
735 memcpy (&NetOurHostName, popt + 2, size);
736 NetOurHostName[size] = 0;
737 break;
738 case 15: /* Ignore Domain Name Option */
739 break;
740 case 17:
741 size = truncate_sz ("Root Path", sizeof (NetOurRootPath), oplen);
742 memcpy (&NetOurRootPath, popt + 2, size);
743 NetOurRootPath[size] = 0;
744 break;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500745#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000746 case 42: /* NTP server IP */
747 NetCopyIP (&NetNtpServerIP, (popt + 2));
748 break;
749#endif
wdenk232c1502004-03-12 00:14:09 +0000750 case 51:
751 NetCopyLong (&dhcp_leasetime, (ulong *) (popt + 2));
752 break;
753 case 53: /* Ignore Message Type Option */
754 break;
755 case 54:
756 NetCopyIP (&NetDHCPServerIP, (popt + 2));
757 break;
758 case 58: /* Ignore Renewal Time Option */
759 break;
760 case 59: /* Ignore Rebinding Time Option */
761 break;
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100762 case 66: /* Ignore TFTP server name */
763 break;
764 case 67: /* vendor opt bootfile */
765 /*
766 * I can't use dhcp_vendorex_proc here because I need
767 * to write into the bootp packet - even then I had to
768 * pass the bootp packet pointer into here as the
769 * second arg
770 */
771 size = truncate_sz ("Opt Boot File",
772 sizeof(bp->bp_file),
773 oplen);
774 if (bp->bp_file[0] == '\0' && size > 0) {
775 /*
776 * only use vendor boot file if we didn't
777 * receive a boot file in the main non-vendor
778 * part of the packet - god only knows why
779 * some vendors chose not to use this perfectly
780 * good spot to store the boot file (join on
781 * Tru64 Unix) it seems mind bogglingly crazy
782 * to me
783 */
784 printf("*** WARNING: using vendor "
785 "optional boot file\n");
786 memcpy(bp->bp_file, popt + 2, size);
787 bp->bp_file[size] = '\0';
788 }
789 break;
wdenk232c1502004-03-12 00:14:09 +0000790 default:
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500791#if defined(CONFIG_BOOTP_VENDOREX)
wdenk232c1502004-03-12 00:14:09 +0000792 if (dhcp_vendorex_proc (popt))
wdenk8bde7f72003-06-27 21:31:46 +0000793 break;
wdenk3861aa52002-09-27 23:19:37 +0000794#endif
wdenk232c1502004-03-12 00:14:09 +0000795 printf ("*** Unhandled DHCP Option in OFFER/ACK: %d\n", *popt);
796 break;
wdenk3861aa52002-09-27 23:19:37 +0000797 }
798 popt += oplen + 2; /* Process next option */
799 }
800}
801
802static int DhcpMessageType(unsigned char *popt)
803{
804 if (NetReadLong((ulong*)popt) != htonl(BOOTP_VENDOR_MAGIC))
805 return -1;
806
807 popt += 4;
808 while ( *popt != 0xff ) {
809 if ( *popt == 53 ) /* DHCP Message Type */
810 return *(popt + 2);
811 popt += *(popt + 1) + 2; /* Scan through all options */
812 }
813 return -1;
814}
815
wdenk3e386912003-04-05 00:53:31 +0000816static void DhcpSendRequestPkt(Bootp_t *bp_offer)
wdenk3861aa52002-09-27 23:19:37 +0000817{
818 volatile uchar *pkt, *iphdr;
819 Bootp_t *bp;
820 int pktlen, iplen, extlen;
wdenk47cd00f2003-03-06 13:39:27 +0000821 IPaddr_t OfferedIP;
wdenk3861aa52002-09-27 23:19:37 +0000822
Robin Getz0ebf04c2009-07-23 03:01:03 -0400823 debug("DhcpSendRequestPkt: Sending DHCPREQUEST\n");
wdenk3861aa52002-09-27 23:19:37 +0000824 pkt = NetTxPacket;
825 memset ((void*)pkt, 0, PKTSIZE);
826
wdenka3d991b2004-04-15 21:48:45 +0000827 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
wdenk3861aa52002-09-27 23:19:37 +0000828
829 iphdr = pkt; /* We'll need this later to set proper pkt size */
830 pkt += IP_HDR_SIZE;
831
832 bp = (Bootp_t *)pkt;
833 bp->bp_op = OP_BOOTREQUEST;
834 bp->bp_htype = HWT_ETHER;
835 bp->bp_hlen = HWL_ETHER;
836 bp->bp_hops = 0;
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200837 bp->bp_secs = htons(get_timer(0) / 1000);
Justin Flammiae5c794e2007-10-29 17:40:35 -0400838 /* Do not set the client IP, your IP, or server IP yet, since it hasn't been ACK'ed by
839 * the server yet */
840
Wolfgang Denkc6686702006-10-12 00:01:08 +0200841 /*
Wolfgang Denkd82718f2006-10-09 01:26:14 +0200842 * RFC3046 requires Relay Agents to discard packets with
843 * nonzero and offered giaddr
844 */
845 NetWriteIP(&bp->bp_giaddr, 0);
846
wdenk3861aa52002-09-27 23:19:37 +0000847 memcpy (bp->bp_chaddr, NetOurEther, 6);
848
849 /*
850 * ID is the id of the OFFER packet
851 */
852
853 NetCopyLong(&bp->bp_id, &bp_offer->bp_id);
854
855 /*
856 * Copy options from OFFER packet if present
857 */
Justin Flammiae5c794e2007-10-29 17:40:35 -0400858
859 /* Copy offered IP into the parameters request list */
860 NetCopyIP(&OfferedIP, &bp_offer->bp_yiaddr);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200861 extlen = DhcpExtended((u8 *)bp->bp_vend, DHCP_REQUEST, NetDHCPServerIP, OfferedIP);
wdenk3861aa52002-09-27 23:19:37 +0000862
Norbert van Bolhuisc9a2aab2009-06-04 09:39:48 +0200863 pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
wdenk3861aa52002-09-27 23:19:37 +0000864 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
865 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
866
Robin Getz0ebf04c2009-07-23 03:01:03 -0400867 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
Aras Vaichasd9a2f412008-03-26 09:43:57 +1100868#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
869 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
870#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
wdenk3861aa52002-09-27 23:19:37 +0000871 NetSendPacket(NetTxPacket, pktlen);
872}
873
874/*
875 * Handle DHCP received packets.
876 */
877static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000878DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
879 unsigned len)
wdenk3861aa52002-09-27 23:19:37 +0000880{
881 Bootp_t *bp = (Bootp_t *)pkt;
882
Robin Getz0ebf04c2009-07-23 03:01:03 -0400883 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
wdenk3861aa52002-09-27 23:19:37 +0000884 src, dest, len, dhcp_state);
885
wdenk232c1502004-03-12 00:14:09 +0000886 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
wdenk3861aa52002-09-27 23:19:37 +0000887 return;
888
Robin Getz0ebf04c2009-07-23 03:01:03 -0400889 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: %d\n",
wdenk3861aa52002-09-27 23:19:37 +0000890 src, dest, len, dhcp_state);
891
892 switch (dhcp_state) {
893 case SELECTING:
894 /*
895 * Wait an appropriate time for any potential DHCPOFFER packets
896 * to arrive. Then select one, and generate DHCPREQUEST response.
897 * If filename is in format we recognize, assume it is a valid
898 * OFFER from a server we want.
899 */
Robin Getz0ebf04c2009-07-23 03:01:03 -0400900 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200901#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +0000902 if (strncmp(bp->bp_file,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200903 CONFIG_SYS_BOOTFILE_PREFIX,
904 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0 ) {
905#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +0000906
Robin Getz0ebf04c2009-07-23 03:01:03 -0400907 debug("TRANSITIONING TO REQUESTING STATE\n");
wdenk3861aa52002-09-27 23:19:37 +0000908 dhcp_state = REQUESTING;
stroese759a51b2003-04-10 13:26:44 +0000909
wdenk3861aa52002-09-27 23:19:37 +0000910 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100911 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
wdenk3861aa52002-09-27 23:19:37 +0000912
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200913 NetSetTimeout(TIMEOUT, BootpTimeout);
wdenk3861aa52002-09-27 23:19:37 +0000914 DhcpSendRequestPkt(bp);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200915#ifdef CONFIG_SYS_BOOTFILE_PREFIX
wdenk3861aa52002-09-27 23:19:37 +0000916 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200917#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
wdenk3861aa52002-09-27 23:19:37 +0000918
919 return;
920 break;
921 case REQUESTING:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400922 debug("DHCP State: REQUESTING\n");
wdenk3861aa52002-09-27 23:19:37 +0000923
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200924 if ( DhcpMessageType((u8 *)bp->bp_vend) == DHCP_ACK ) {
wdenk3861aa52002-09-27 23:19:37 +0000925 char *s;
926
927 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
Wolfgang Denk3b2e4fd2006-03-12 18:26:46 +0100928 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
wdenk232c1502004-03-12 00:14:09 +0000929 BootpCopyNetParams(bp); /* Store net params from reply */
wdenk3861aa52002-09-27 23:19:37 +0000930 dhcp_state = BOUND;
Mike Frysingerb6446b62009-02-17 00:00:53 -0500931 printf ("DHCP client bound to address %pI4\n", &NetOurIP);
wdenk3861aa52002-09-27 23:19:37 +0000932
933 /* Obey the 'autoload' setting */
wdenk132ba5f2004-02-27 08:20:54 +0000934 if ((s = getenv("autoload")) != NULL) {
935 if (*s == 'n') {
936 /*
937 * Just use BOOTP to configure system;
938 * Do not use TFTP to load the bootfile.
939 */
940 NetState = NETLOOP_SUCCESS;
941 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500942#if defined(CONFIG_CMD_NFS)
wdenk132ba5f2004-02-27 08:20:54 +0000943 } else if (strcmp(s, "NFS") == 0) {
944 /*
945 * Use NFS to load the bootfile.
946 */
947 NfsStart();
948 return;
wdenk0e6d7982004-03-14 00:07:33 +0000949#endif
wdenk132ba5f2004-02-27 08:20:54 +0000950 }
wdenk3861aa52002-09-27 23:19:37 +0000951 }
wdenk73a8b272003-06-05 19:27:42 +0000952 TftpStart();
wdenk3861aa52002-09-27 23:19:37 +0000953 return;
954 }
955 break;
Remy Bohmer51dfe132008-08-20 11:30:28 +0200956 case BOUND:
957 /* DHCP client bound to address */
958 break;
wdenk3861aa52002-09-27 23:19:37 +0000959 default:
wdenk4b9206e2004-03-23 22:14:11 +0000960 puts ("DHCP: INVALID STATE\n");
wdenk3861aa52002-09-27 23:19:37 +0000961 break;
962 }
963
964}
965
966void DhcpRequest(void)
967{
968 BootpRequest();
969}
Wolfgang Denk992742a2007-11-03 23:09:27 +0100970#endif /* CONFIG_CMD_DHCP */