]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/bootp.c
Blackfin: bfin_mac: force boards to setup the MAC themselves
[people/ms/u-boot.git] / net / bootp.c
CommitLineData
3861aa5c
WD
1/*
2 * Based on LiMon - BOOTP.
3 *
4 * Copyright 1994, 1995, 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
232c150a 8 * Copyright 2000-2004 Wolfgang Denk, wd@denx.de
3861aa5c
WD
9 */
10
11#if 0
232c150a
WD
12#define DEBUG 1 /* general debug */
13#define DEBUG_BOOTP_EXT 1 /* Debug received vendor fields */
3861aa5c
WD
14#endif
15
16#ifdef DEBUG_BOOTP_EXT
17#define debug_ext(fmt,args...) printf (fmt ,##args)
18#else
19#define debug_ext(fmt,args...)
20#endif
21
22#include <common.h>
23#include <command.h>
24#include <net.h>
25#include "bootp.h"
26#include "tftp.h"
232c150a 27#include "nfs.h"
3861aa5c
WD
28#ifdef CONFIG_STATUS_LED
29#include <status_led.h>
30#endif
31
232c150a 32#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
3861aa5c 33
643d1ab2 34#if defined(CONFIG_CMD_NET)
3861aa5c 35
49f3bdbb 36#define TIMEOUT 5000UL /* Milliseconds before trying BOOTP again */
232c150a 37#ifndef CONFIG_NET_RETRY_COUNT
3861aa5c
WD
38# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
39#else
232c150a 40# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
3861aa5c
WD
41#endif
42
43#define PORT_BOOTPS 67 /* BOOTP server UDP port */
44#define PORT_BOOTPC 68 /* BOOTP client UDP port */
45
46#ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */
232c150a 47#define CONFIG_DHCP_MIN_EXT_LEN 64
3861aa5c
WD
48#endif
49
50ulong BootpID;
51int BootpTry;
52#ifdef CONFIG_BOOTP_RANDOM_DELAY
53ulong seed1, seed2;
54#endif
55
643d1ab2 56#if defined(CONFIG_CMD_DHCP)
3861aa5c 57dhcp_state_t dhcp_state = INIT;
682011ff 58unsigned long dhcp_leasetime = 0;
759a51b4 59IPaddr_t NetDHCPServerIP = 0;
3861aa5c
WD
60static void DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len);
61
62/* For Debug */
3e38691e
WD
63#if 0
64static char *dhcpmsg2str(int type)
3861aa5c
WD
65{
66 switch (type) {
232c150a
WD
67 case 1: return "DHCPDISCOVER"; break;
68 case 2: return "DHCPOFFER"; break;
69 case 3: return "DHCPREQUEST"; break;
70 case 4: return "DHCPDECLINE"; break;
71 case 5: return "DHCPACK"; break;
72 case 6: return "DHCPNACK"; break;
73 case 7: return "DHCPRELEASE"; break;
3861aa5c
WD
74 default: return "UNKNOWN/INVALID MSG TYPE"; break;
75 }
76}
3e38691e 77#endif
3861aa5c 78
1fe80d79 79#if defined(CONFIG_BOOTP_VENDOREX)
3861aa5c
WD
80extern u8 *dhcp_vendorex_prep (u8 *e); /*rtn new e after add own opts. */
81extern u8 *dhcp_vendorex_proc (u8 *e); /*rtn next e if mine,else NULL */
82#endif
83
610f2e9c 84#endif
3861aa5c
WD
85
86static int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len)
87{
88 Bootp_t *bp = (Bootp_t *) pkt;
89 int retval = 0;
90
91 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
92 retval = -1;
93 else if (len < sizeof (Bootp_t) - OPT_SIZE)
94 retval = -2;
95 else if (bp->bp_op != OP_BOOTREQUEST &&
96 bp->bp_op != OP_BOOTREPLY &&
97 bp->bp_op != DHCP_OFFER &&
98 bp->bp_op != DHCP_ACK &&
99 bp->bp_op != DHCP_NAK ) {
100 retval = -3;
101 }
102 else if (bp->bp_htype != HWT_ETHER)
103 retval = -4;
104 else if (bp->bp_hlen != HWL_ETHER)
105 retval = -5;
106 else if (NetReadLong((ulong*)&bp->bp_id) != BootpID) {
107 retval = -6;
108 }
109
110 debug ("Filtering pkt = %d\n", retval);
111
112 return retval;
113}
114
115/*
116 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
117 */
3e38691e 118static void BootpCopyNetParams(Bootp_t *bp)
3861aa5c 119{
3d3befa7
WD
120 IPaddr_t tmp_ip;
121
3861aa5c 122 NetCopyIP(&NetOurIP, &bp->bp_yiaddr);
5d110f0a 123#if !defined(CONFIG_BOOTP_SERVERIP)
3d3befa7
WD
124 NetCopyIP(&tmp_ip, &bp->bp_siaddr);
125 if (tmp_ip != 0)
126 NetCopyIP(&NetServerIP, &bp->bp_siaddr);
3861aa5c 127 memcpy (NetServerEther, ((Ethernet_t *)NetRxPkt)->et_src, 6);
5d110f0a 128#endif
3d3befa7
WD
129 if (strlen(bp->bp_file) > 0)
130 copy_filename (BootFile, bp->bp_file, sizeof(BootFile));
3861aa5c
WD
131
132 debug ("Bootfile: %s\n", BootFile);
133
134 /* Propagate to environment:
8bde7f77 135 * don't delete exising entry when BOOTP / DHCP reply does
3861aa5c
WD
136 * not contain a new value
137 */
138 if (*BootFile) {
139 setenv ("bootfile", BootFile);
140 }
141}
142
143static int truncate_sz (const char *name, int maxlen, int curlen)
144{
145 if (curlen >= maxlen) {
146 printf("*** WARNING: %s is too long (%d - max: %d) - truncated\n",
147 name, curlen, maxlen);
148 curlen = maxlen - 1;
149 }
150 return (curlen);
151}
152
643d1ab2 153#if !defined(CONFIG_CMD_DHCP)
3861aa5c 154
232c150a 155static void BootpVendorFieldProcess (u8 * ext)
3861aa5c 156{
232c150a 157 int size = *(ext + 1);
3861aa5c 158
232c150a
WD
159 debug_ext ("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
160 *(ext + 1));
3861aa5c 161
232c150a 162 NetBootFileSize = 0;
3861aa5c 163
232c150a
WD
164 switch (*ext) {
165 /* Fixed length fields */
1aeed8d7 166 case 1: /* Subnet mask */
3861aa5c 167 if (NetOurSubnetMask == 0)
232c150a 168 NetCopyIP (&NetOurSubnetMask, (IPaddr_t *) (ext + 2));
3861aa5c 169 break;
1aeed8d7 170 case 2: /* Time offset - Not yet supported */
3861aa5c 171 break;
232c150a 172 /* Variable length fields */
1aeed8d7 173 case 3: /* Gateways list */
3861aa5c 174 if (NetOurGatewayIP == 0) {
232c150a 175 NetCopyIP (&NetOurGatewayIP, (IPaddr_t *) (ext + 2));
3861aa5c
WD
176 }
177 break;
1aeed8d7 178 case 4: /* Time server - Not yet supported */
3861aa5c 179 break;
1aeed8d7 180 case 5: /* IEN-116 name server - Not yet supported */
3861aa5c
WD
181 break;
182 case 6:
183 if (NetOurDNSIP == 0) {
232c150a 184 NetCopyIP (&NetOurDNSIP, (IPaddr_t *) (ext + 2));
3861aa5c 185 }
1fe80d79 186#if defined(CONFIG_BOOTP_DNS2)
fe389a82 187 if ((NetOurDNS2IP == 0) && (size > 4)) {
232c150a 188 NetCopyIP (&NetOurDNS2IP, (IPaddr_t *) (ext + 2 + 4));
fe389a82
SR
189 }
190#endif
3861aa5c 191 break;
1aeed8d7 192 case 7: /* Log server - Not yet supported */
3861aa5c 193 break;
1aeed8d7 194 case 8: /* Cookie/Quote server - Not yet supported */
3861aa5c 195 break;
1aeed8d7 196 case 9: /* LPR server - Not yet supported */
3861aa5c 197 break;
1aeed8d7 198 case 10: /* Impress server - Not yet supported */
3861aa5c 199 break;
1aeed8d7 200 case 11: /* RPL server - Not yet supported */
3861aa5c 201 break;
1aeed8d7 202 case 12: /* Host name */
3861aa5c 203 if (NetOurHostName[0] == 0) {
232c150a
WD
204 size = truncate_sz ("Host Name", sizeof (NetOurHostName), size);
205 memcpy (&NetOurHostName, ext + 2, size);
206 NetOurHostName[size] = 0;
3861aa5c
WD
207 }
208 break;
1aeed8d7 209 case 13: /* Boot file size */
3861aa5c 210 if (size == 2)
232c150a 211 NetBootFileSize = ntohs (*(ushort *) (ext + 2));
3861aa5c 212 else if (size == 4)
232c150a 213 NetBootFileSize = ntohl (*(ulong *) (ext + 2));
3861aa5c 214 break;
1aeed8d7 215 case 14: /* Merit dump file - Not yet supported */
3861aa5c 216 break;
1aeed8d7 217 case 15: /* Domain name - Not yet supported */
3861aa5c 218 break;
1aeed8d7 219 case 16: /* Swap server - Not yet supported */
3861aa5c 220 break;
1aeed8d7 221 case 17: /* Root path */
3861aa5c 222 if (NetOurRootPath[0] == 0) {
232c150a
WD
223 size = truncate_sz ("Root Path", sizeof (NetOurRootPath), size);
224 memcpy (&NetOurRootPath, ext + 2, size);
225 NetOurRootPath[size] = 0;
3861aa5c
WD
226 }
227 break;
1aeed8d7 228 case 18: /* Extension path - Not yet supported */
3861aa5c 229 /*
8bde7f77
WD
230 * This can be used to send the information of the
231 * vendor area in another file that the client can
232 * access via TFTP.
3861aa5c
WD
233 */
234 break;
232c150a 235 /* IP host layer fields */
1aeed8d7 236 case 40: /* NIS Domain name */
3861aa5c 237 if (NetOurNISDomain[0] == 0) {
232c150a
WD
238 size = truncate_sz ("NIS Domain Name", sizeof (NetOurNISDomain), size);
239 memcpy (&NetOurNISDomain, ext + 2, size);
240 NetOurNISDomain[size] = 0;
3861aa5c
WD
241 }
242 break;
232c150a 243 /* Application layer fields */
1aeed8d7 244 case 43: /* Vendor specific info - Not yet supported */
3861aa5c 245 /*
8bde7f77
WD
246 * Binary information to exchange specific
247 * product information.
3861aa5c
WD
248 */
249 break;
232c150a
WD
250 /* Reserved (custom) fields (128..254) */
251 }
3861aa5c
WD
252}
253
232c150a 254static void BootpVendorProcess (u8 * ext, int size)
3861aa5c 255{
232c150a 256 u8 *end = ext + size;
3861aa5c 257
232c150a 258 debug_ext ("[BOOTP] Checking extension (%d bytes)...\n", size);
3861aa5c 259
232c150a
WD
260 while ((ext < end) && (*ext != 0xff)) {
261 if (*ext == 0) {
262 ext++;
263 } else {
264 u8 *opt = ext;
265
266 ext += ext[1] + 2;
267 if (ext <= end)
268 BootpVendorFieldProcess (opt);
269 }
3861aa5c 270 }
3861aa5c
WD
271
272#ifdef DEBUG_BOOTP_EXT
4b9206ed 273 puts ("[BOOTP] Received fields: \n");
b6446b67
MF
274 if (NetOurSubnetMask)
275 printf ("NetOurSubnetMask : %pI4\n", &NetOurSubnetMask);
232c150a 276
b6446b67
MF
277 if (NetOurGatewayIP)
278 printf ("NetOurGatewayIP : %pI4", &NetOurGatewayIP);
232c150a
WD
279
280 if (NetBootFileSize) {
281 printf ("NetBootFileSize : %d\n", NetBootFileSize);
282 }
3861aa5c 283
232c150a
WD
284 if (NetOurHostName[0]) {
285 printf ("NetOurHostName : %s\n", NetOurHostName);
286 }
287
288 if (NetOurRootPath[0]) {
289 printf ("NetOurRootPath : %s\n", NetOurRootPath);
290 }
291
292 if (NetOurNISDomain[0]) {
293 printf ("NetOurNISDomain : %s\n", NetOurNISDomain);
294 }
295
296 if (NetBootFileSize) {
297 printf ("NetBootFileSize: %d\n", NetBootFileSize);
298 }
299#endif /* DEBUG_BOOTP_EXT */
300}
3861aa5c
WD
301/*
302 * Handle a BOOTP received packet.
303 */
304static void
305BootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
306{
307 Bootp_t *bp;
308 char *s;
309
b64f190b 310 debug ("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
3861aa5c
WD
311 src, dest, len, sizeof (Bootp_t));
312
313 bp = (Bootp_t *)pkt;
314
232c150a 315 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
3861aa5c
WD
316 return;
317
318 /*
232c150a 319 * Got a good BOOTP reply. Copy the data into our variables.
3861aa5c
WD
320 */
321#ifdef CONFIG_STATUS_LED
322 status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF);
323#endif
324
325 BootpCopyNetParams(bp); /* Store net parameters from reply */
326
327 /* Retrieve extended information (we must parse the vendor area) */
328 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
77ddac94 329 BootpVendorProcess((uchar *)&bp->bp_vend[4], len);
3861aa5c
WD
330
331 NetSetTimeout(0, (thand_f *)0);
332
333 debug ("Got good BOOTP\n");
334
132ba5fd
WD
335 if ((s = getenv("autoload")) != NULL) {
336 if (*s == 'n') {
337 /*
338 * Just use BOOTP to configure system;
339 * Do not use TFTP to load the bootfile.
340 */
341 NetState = NETLOOP_SUCCESS;
342 return;
643d1ab2 343#if defined(CONFIG_CMD_NFS)
132ba5fd
WD
344 } else if (strcmp(s, "NFS") == 0) {
345 /*
346 * Use NFS to load the bootfile.
347 */
348 NfsStart();
349 return;
0e6d798c 350#endif
132ba5fd 351 }
3861aa5c
WD
352 }
353
73a8b27c 354 TftpStart();
3861aa5c 355}
610f2e9c 356#endif
3861aa5c
WD
357
358/*
359 * Timeout on BOOTP/DHCP request.
360 */
361static void
362BootpTimeout(void)
363{
364 if (BootpTry >= TIMEOUT_COUNT) {
365 puts ("\nRetry count exceeded; starting again\n");
366 NetStartAgain ();
367 } else {
49f3bdbb 368 NetSetTimeout (TIMEOUT, BootpTimeout);
3861aa5c
WD
369 BootpRequest ();
370 }
371}
372
373/*
374 * Initialize BOOTP extension fields in the request.
375 */
643d1ab2 376#if defined(CONFIG_CMD_DHCP)
232c150a 377static int DhcpExtended (u8 * e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP)
3861aa5c 378{
232c150a
WD
379 u8 *start = e;
380 u8 *cnt;
381
1fe80d79 382#if defined(CONFIG_BOOTP_VENDOREX)
232c150a 383 u8 *x;
3861aa5c 384#endif
1fe80d79 385#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
77ddac94 386 char *hostname;
fe389a82 387#endif
3861aa5c 388
232c150a
WD
389 *e++ = 99; /* RFC1048 Magic Cookie */
390 *e++ = 130;
391 *e++ = 83;
392 *e++ = 99;
3861aa5c 393
232c150a
WD
394 *e++ = 53; /* DHCP Message Type */
395 *e++ = 1;
396 *e++ = message_type;
3861aa5c 397
232c150a
WD
398 *e++ = 57; /* Maximum DHCP Message Size */
399 *e++ = 2;
400 *e++ = (576 - 312 + OPT_SIZE) >> 8;
401 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
3861aa5c 402
232c150a
WD
403 if (ServerID) {
404 int tmp = ntohl (ServerID);
3861aa5c 405
232c150a
WD
406 *e++ = 54; /* ServerID */
407 *e++ = 4;
408 *e++ = tmp >> 24;
409 *e++ = tmp >> 16;
410 *e++ = tmp >> 8;
411 *e++ = tmp & 0xff;
412 }
3861aa5c 413
232c150a
WD
414 if (RequestedIP) {
415 int tmp = ntohl (RequestedIP);
3861aa5c 416
232c150a
WD
417 *e++ = 50; /* Requested IP */
418 *e++ = 4;
419 *e++ = tmp >> 24;
420 *e++ = tmp >> 16;
421 *e++ = tmp >> 8;
422 *e++ = tmp & 0xff;
423 }
1fe80d79 424#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
232c150a
WD
425 if ((hostname = getenv ("hostname"))) {
426 int hostnamelen = strlen (hostname);
427
428 *e++ = 12; /* Hostname */
429 *e++ = hostnamelen;
430 memcpy (e, hostname, hostnamelen);
431 e += hostnamelen;
432 }
fe389a82
SR
433#endif
434
1fe80d79 435#if defined(CONFIG_BOOTP_VENDOREX)
232c150a
WD
436 if ((x = dhcp_vendorex_prep (e)))
437 return x - start;
3861aa5c
WD
438#endif
439
232c150a
WD
440 *e++ = 55; /* Parameter Request List */
441 cnt = e++; /* Pointer to count of requested items */
442 *cnt = 0;
1fe80d79 443#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
444 *e++ = 1; /* Subnet Mask */
445 *cnt += 1;
3861aa5c 446#endif
1fe80d79 447#if defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb
WD
448 *e++ = 2;
449 *cnt += 1;
450#endif
1fe80d79 451#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
452 *e++ = 3; /* Router Option */
453 *cnt += 1;
3861aa5c 454#endif
1fe80d79 455#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
456 *e++ = 6; /* DNS Server(s) */
457 *cnt += 1;
3861aa5c 458#endif
1fe80d79 459#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
460 *e++ = 12; /* Hostname */
461 *cnt += 1;
3861aa5c 462#endif
1fe80d79 463#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
464 *e++ = 13; /* Boot File Size */
465 *cnt += 1;
3861aa5c 466#endif
1fe80d79 467#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
468 *e++ = 17; /* Boot path */
469 *cnt += 1;
3861aa5c 470#endif
1fe80d79 471#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
472 *e++ = 40; /* NIS Domain name request */
473 *cnt += 1;
ea287deb 474#endif
1fe80d79 475#if defined(CONFIG_BOOTP_NTPSERVER)
ea287deb
WD
476 *e++ = 42;
477 *cnt += 1;
3861aa5c 478#endif
232c150a 479 *e++ = 255; /* End of the list */
3861aa5c 480
232c150a 481 /* Pad to minimal length */
3861aa5c 482#ifdef CONFIG_DHCP_MIN_EXT_LEN
232c150a
WD
483 while ((e - start) <= CONFIG_DHCP_MIN_EXT_LEN)
484 *e++ = 0;
3861aa5c
WD
485#endif
486
232c150a 487 return e - start;
3861aa5c
WD
488}
489
610f2e9c 490#else
3861aa5c 491/*
1fe80d79 492 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
3861aa5c 493 */
232c150a 494static int BootpExtended (u8 * e)
3861aa5c 495{
232c150a 496 u8 *start = e;
3861aa5c 497
232c150a
WD
498 *e++ = 99; /* RFC1048 Magic Cookie */
499 *e++ = 130;
500 *e++ = 83;
501 *e++ = 99;
3861aa5c 502
643d1ab2 503#if defined(CONFIG_CMD_DHCP)
232c150a
WD
504 *e++ = 53; /* DHCP Message Type */
505 *e++ = 1;
506 *e++ = DHCP_DISCOVER;
507
508 *e++ = 57; /* Maximum DHCP Message Size */
509 *e++ = 2;
510 *e++ = (576 - 312 + OPT_SIZE) >> 16;
511 *e++ = (576 - 312 + OPT_SIZE) & 0xff;
610f2e9c 512#endif
3861aa5c 513
1fe80d79 514#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
515 *e++ = 1; /* Subnet mask request */
516 *e++ = 4;
517 e += 4;
3861aa5c
WD
518#endif
519
1fe80d79 520#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
521 *e++ = 3; /* Default gateway request */
522 *e++ = 4;
523 e += 4;
3861aa5c
WD
524#endif
525
1fe80d79 526#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
527 *e++ = 6; /* Domain Name Server */
528 *e++ = 4;
529 e += 4;
3861aa5c
WD
530#endif
531
1fe80d79 532#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
533 *e++ = 12; /* Host name request */
534 *e++ = 32;
535 e += 32;
3861aa5c
WD
536#endif
537
1fe80d79 538#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
539 *e++ = 13; /* Boot file size */
540 *e++ = 2;
541 e += 2;
3861aa5c
WD
542#endif
543
1fe80d79 544#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
545 *e++ = 17; /* Boot path */
546 *e++ = 32;
547 e += 32;
3861aa5c
WD
548#endif
549
1fe80d79 550#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
551 *e++ = 40; /* NIS Domain name request */
552 *e++ = 32;
553 e += 32;
3861aa5c
WD
554#endif
555
232c150a 556 *e++ = 255; /* End of the list */
3861aa5c 557
232c150a 558 return e - start;
3861aa5c 559}
610f2e9c 560#endif
3861aa5c
WD
561
562void
563BootpRequest (void)
564{
565 volatile uchar *pkt, *iphdr;
566 Bootp_t *bp;
567 int ext_len, pktlen, iplen;
568
643d1ab2 569#if defined(CONFIG_CMD_DHCP)
3861aa5c
WD
570 dhcp_state = INIT;
571#endif
572
573#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
574 unsigned char bi_enetaddr[6];
575 int reg;
576 char *e,*s;
77ddac94 577 char tmp[64];
3861aa5c
WD
578 ulong tst1, tst2, sum, m_mask, m_value = 0;
579
580 if (BootpTry ==0) {
581 /* get our mac */
582 reg = getenv_r ("ethaddr", tmp, sizeof(tmp));
583 s = (reg > 0) ? tmp : NULL;
584
585 for (reg=0; reg<6; ++reg) {
586 bi_enetaddr[reg] = s ? simple_strtoul(s, &e, 16) : 0;
587 if (s) {
588 s = (*e) ? e+1 : e;
589 }
590 }
591#ifdef DEBUG
4b9206ed 592 puts ("BootpRequest => Our Mac: ");
3861aa5c
WD
593 for (reg=0; reg<6; reg++) {
594 printf ("%x%c",
595 bi_enetaddr[reg],
596 reg==5 ? '\n' : ':');
597 }
598#endif /* DEBUG */
599
600 /* Mac-Manipulation 2 get seed1 */
601 tst1=0;
602 tst2=0;
603 for (reg=2; reg<6; reg++) {
604 tst1 = tst1 << 8;
605 tst1 = tst1 | bi_enetaddr[reg];
606 }
607 for (reg=0; reg<2; reg++) {
608 tst2 = tst2 | bi_enetaddr[reg];
609 tst2 = tst2 << 8;
610 }
611
612 seed1 = tst1^tst2;
613
614 /* Mirror seed1*/
615 m_mask=0x1;
616 for (reg=1;reg<=32;reg++) {
617 m_value |= (m_mask & seed1);
618 seed1 = seed1 >> 1;
619 m_value = m_value << 1;
620 }
621 seed1 = m_value;
622 seed2 = 0xB78D0945;
623 }
624
625 /* Random Number Generator */
626
627 for (reg=0;reg<=0;reg++) {
628 sum = seed1 + seed2;
629 if (sum < seed1 || sum < seed2)
630 sum++;
8bde7f77 631 seed2 = seed1;
3861aa5c
WD
632 seed1 = sum;
633
634 if (BootpTry<=2) { /* Start with max 1024 * 1ms */
635 sum = sum >> (22-BootpTry);
636 } else { /*After 3rd BOOTP request max 8192 * 1ms */
637 sum = sum >> 19;
638 }
639 }
640
641 printf ("Random delay: %ld ms...\n", sum);
642 for (reg=0; reg <sum; reg++) {
643 udelay(1000); /*Wait 1ms*/
644 }
645#endif /* CONFIG_BOOTP_RANDOM_DELAY */
646
647 printf("BOOTP broadcast %d\n", ++BootpTry);
648 pkt = NetTxPacket;
649 memset ((void*)pkt, 0, PKTSIZE);
650
a3d991bd 651 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
3861aa5c
WD
652
653 /*
654 * Next line results in incorrect packet size being transmitted, resulting
655 * in errors in some DHCP servers, reporting missing bytes. Size must be
656 * set in packet header after extension length has been determined.
657 * C. Hallinan, DS4.COM, Inc.
658 */
659 /* NetSetIP(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, sizeof (Bootp_t)); */
660 iphdr = pkt; /* We need this later for NetSetIP() */
661 pkt += IP_HDR_SIZE;
662
663 bp = (Bootp_t *)pkt;
664 bp->bp_op = OP_BOOTREQUEST;
665 bp->bp_htype = HWT_ETHER;
666 bp->bp_hlen = HWL_ETHER;
667 bp->bp_hops = 0;
49f3bdbb 668 bp->bp_secs = htons(get_timer(0) / 1000);
3861aa5c
WD
669 NetWriteIP(&bp->bp_ciaddr, 0);
670 NetWriteIP(&bp->bp_yiaddr, 0);
671 NetWriteIP(&bp->bp_siaddr, 0);
672 NetWriteIP(&bp->bp_giaddr, 0);
673 memcpy (bp->bp_chaddr, NetOurEther, 6);
674 copy_filename (bp->bp_file, BootFile, sizeof(bp->bp_file));
675
676 /* Request additional information from the BOOTP/DHCP server */
643d1ab2 677#if defined(CONFIG_CMD_DHCP)
77ddac94 678 ext_len = DhcpExtended((u8 *)bp->bp_vend, DHCP_DISCOVER, 0, 0);
3861aa5c 679#else
77ddac94 680 ext_len = BootpExtended((u8 *)bp->bp_vend);
610f2e9c 681#endif
3861aa5c
WD
682
683 /*
684 * Bootp ID is the lower 4 bytes of our ethernet address
49f3bdbb 685 * plus the current time in ms.
3861aa5c
WD
686 */
687 BootpID = ((ulong)NetOurEther[2] << 24)
688 | ((ulong)NetOurEther[3] << 16)
689 | ((ulong)NetOurEther[4] << 8)
690 | (ulong)NetOurEther[5];
691 BootpID += get_timer(0);
232c150a 692 BootpID = htonl(BootpID);
3861aa5c
WD
693 NetCopyLong(&bp->bp_id, &BootpID);
694
695 /*
696 * Calculate proper packet lengths taking into account the
697 * variable size of the options field
698 */
699 pktlen = BOOTP_SIZE - sizeof(bp->bp_vend) + ext_len;
700 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len;
701 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
49f3bdbb 702 NetSetTimeout(SELECT_TIMEOUT, BootpTimeout);
3861aa5c 703
643d1ab2 704#if defined(CONFIG_CMD_DHCP)
3861aa5c
WD
705 dhcp_state = SELECTING;
706 NetSetHandler(DhcpHandler);
707#else
708 NetSetHandler(BootpHandler);
610f2e9c 709#endif
3861aa5c
WD
710 NetSendPacket(NetTxPacket, pktlen);
711}
712
643d1ab2 713#if defined(CONFIG_CMD_DHCP)
3b2e4fd9 714static void DhcpOptionsProcess (uchar * popt, Bootp_t *bp)
3861aa5c 715{
3e38691e 716 uchar *end = popt + BOOTP_HDR_SIZE;
3861aa5c
WD
717 int oplen, size;
718
232c150a 719 while (popt < end && *popt != 0xff) {
3861aa5c 720 oplen = *(popt + 1);
232c150a
WD
721 switch (*popt) {
722 case 1:
723 NetCopyIP (&NetOurSubnetMask, (popt + 2));
724 break;
1fe80d79 725#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb 726 case 2: /* Time offset */
135e19bc 727 NetCopyLong ((ulong *)&NetTimeOffset, (ulong *) (popt + 2));
ea287deb
WD
728 NetTimeOffset = ntohl (NetTimeOffset);
729 break;
730#endif
232c150a
WD
731 case 3:
732 NetCopyIP (&NetOurGatewayIP, (popt + 2));
733 break;
734 case 6:
735 NetCopyIP (&NetOurDNSIP, (popt + 2));
1fe80d79 736#if defined(CONFIG_BOOTP_DNS2)
232c150a
WD
737 if (*(popt + 1) > 4) {
738 NetCopyIP (&NetOurDNS2IP, (popt + 2 + 4));
739 }
fe389a82 740#endif
232c150a
WD
741 break;
742 case 12:
743 size = truncate_sz ("Host Name", sizeof (NetOurHostName), oplen);
744 memcpy (&NetOurHostName, popt + 2, size);
745 NetOurHostName[size] = 0;
746 break;
747 case 15: /* Ignore Domain Name Option */
748 break;
749 case 17:
750 size = truncate_sz ("Root Path", sizeof (NetOurRootPath), oplen);
751 memcpy (&NetOurRootPath, popt + 2, size);
752 NetOurRootPath[size] = 0;
753 break;
1fe80d79 754#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
ea287deb
WD
755 case 42: /* NTP server IP */
756 NetCopyIP (&NetNtpServerIP, (popt + 2));
757 break;
758#endif
232c150a
WD
759 case 51:
760 NetCopyLong (&dhcp_leasetime, (ulong *) (popt + 2));
761 break;
762 case 53: /* Ignore Message Type Option */
763 break;
764 case 54:
765 NetCopyIP (&NetDHCPServerIP, (popt + 2));
766 break;
767 case 58: /* Ignore Renewal Time Option */
768 break;
769 case 59: /* Ignore Rebinding Time Option */
770 break;
3b2e4fd9
WD
771 case 66: /* Ignore TFTP server name */
772 break;
773 case 67: /* vendor opt bootfile */
774 /*
775 * I can't use dhcp_vendorex_proc here because I need
776 * to write into the bootp packet - even then I had to
777 * pass the bootp packet pointer into here as the
778 * second arg
779 */
780 size = truncate_sz ("Opt Boot File",
781 sizeof(bp->bp_file),
782 oplen);
783 if (bp->bp_file[0] == '\0' && size > 0) {
784 /*
785 * only use vendor boot file if we didn't
786 * receive a boot file in the main non-vendor
787 * part of the packet - god only knows why
788 * some vendors chose not to use this perfectly
789 * good spot to store the boot file (join on
790 * Tru64 Unix) it seems mind bogglingly crazy
791 * to me
792 */
793 printf("*** WARNING: using vendor "
794 "optional boot file\n");
795 memcpy(bp->bp_file, popt + 2, size);
796 bp->bp_file[size] = '\0';
797 }
798 break;
232c150a 799 default:
1fe80d79 800#if defined(CONFIG_BOOTP_VENDOREX)
232c150a 801 if (dhcp_vendorex_proc (popt))
8bde7f77 802 break;
3861aa5c 803#endif
232c150a
WD
804 printf ("*** Unhandled DHCP Option in OFFER/ACK: %d\n", *popt);
805 break;
3861aa5c
WD
806 }
807 popt += oplen + 2; /* Process next option */
808 }
809}
810
811static int DhcpMessageType(unsigned char *popt)
812{
813 if (NetReadLong((ulong*)popt) != htonl(BOOTP_VENDOR_MAGIC))
814 return -1;
815
816 popt += 4;
817 while ( *popt != 0xff ) {
818 if ( *popt == 53 ) /* DHCP Message Type */
819 return *(popt + 2);
820 popt += *(popt + 1) + 2; /* Scan through all options */
821 }
822 return -1;
823}
824
3e38691e 825static void DhcpSendRequestPkt(Bootp_t *bp_offer)
3861aa5c
WD
826{
827 volatile uchar *pkt, *iphdr;
828 Bootp_t *bp;
829 int pktlen, iplen, extlen;
47cd00fa 830 IPaddr_t OfferedIP;
3861aa5c
WD
831
832 debug ("DhcpSendRequestPkt: Sending DHCPREQUEST\n");
833 pkt = NetTxPacket;
834 memset ((void*)pkt, 0, PKTSIZE);
835
a3d991bd 836 pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP);
3861aa5c
WD
837
838 iphdr = pkt; /* We'll need this later to set proper pkt size */
839 pkt += IP_HDR_SIZE;
840
841 bp = (Bootp_t *)pkt;
842 bp->bp_op = OP_BOOTREQUEST;
843 bp->bp_htype = HWT_ETHER;
844 bp->bp_hlen = HWL_ETHER;
845 bp->bp_hops = 0;
49f3bdbb 846 bp->bp_secs = htons(get_timer(0) / 1000);
e5c794e4
JF
847 /* Do not set the client IP, your IP, or server IP yet, since it hasn't been ACK'ed by
848 * the server yet */
849
c6686703 850 /*
d82718fe
WD
851 * RFC3046 requires Relay Agents to discard packets with
852 * nonzero and offered giaddr
853 */
854 NetWriteIP(&bp->bp_giaddr, 0);
855
3861aa5c
WD
856 memcpy (bp->bp_chaddr, NetOurEther, 6);
857
858 /*
859 * ID is the id of the OFFER packet
860 */
861
862 NetCopyLong(&bp->bp_id, &bp_offer->bp_id);
863
864 /*
865 * Copy options from OFFER packet if present
866 */
e5c794e4
JF
867
868 /* Copy offered IP into the parameters request list */
869 NetCopyIP(&OfferedIP, &bp_offer->bp_yiaddr);
77ddac94 870 extlen = DhcpExtended((u8 *)bp->bp_vend, DHCP_REQUEST, NetDHCPServerIP, OfferedIP);
3861aa5c
WD
871
872 pktlen = BOOTP_SIZE - sizeof(bp->bp_vend) + extlen;
873 iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen;
874 NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen);
875
1aeed8d7 876 debug ("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
d9a2f416
AV
877#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
878 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
879#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
3861aa5c
WD
880 NetSendPacket(NetTxPacket, pktlen);
881}
882
883/*
884 * Handle DHCP received packets.
885 */
886static void
887DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
888{
889 Bootp_t *bp = (Bootp_t *)pkt;
890
891 debug ("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
892 src, dest, len, dhcp_state);
893
232c150a 894 if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */
3861aa5c
WD
895 return;
896
897 debug ("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: %d\n",
898 src, dest, len, dhcp_state);
899
900 switch (dhcp_state) {
901 case SELECTING:
902 /*
903 * Wait an appropriate time for any potential DHCPOFFER packets
904 * to arrive. Then select one, and generate DHCPREQUEST response.
905 * If filename is in format we recognize, assume it is a valid
906 * OFFER from a server we want.
907 */
908 debug ("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
6d0f6bcf 909#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 910 if (strncmp(bp->bp_file,
6d0f6bcf
JCPV
911 CONFIG_SYS_BOOTFILE_PREFIX,
912 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0 ) {
913#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
3861aa5c
WD
914
915 debug ("TRANSITIONING TO REQUESTING STATE\n");
916 dhcp_state = REQUESTING;
759a51b4 917
3861aa5c 918 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
3b2e4fd9 919 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
3861aa5c 920
49f3bdbb 921 NetSetTimeout(TIMEOUT, BootpTimeout);
3861aa5c 922 DhcpSendRequestPkt(bp);
6d0f6bcf 923#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 924 }
6d0f6bcf 925#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
3861aa5c
WD
926
927 return;
928 break;
929 case REQUESTING:
930 debug ("DHCP State: REQUESTING\n");
931
77ddac94 932 if ( DhcpMessageType((u8 *)bp->bp_vend) == DHCP_ACK ) {
3861aa5c
WD
933 char *s;
934
935 if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
3b2e4fd9 936 DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp);
232c150a 937 BootpCopyNetParams(bp); /* Store net params from reply */
3861aa5c 938 dhcp_state = BOUND;
b6446b67 939 printf ("DHCP client bound to address %pI4\n", &NetOurIP);
3861aa5c
WD
940
941 /* Obey the 'autoload' setting */
132ba5fd
WD
942 if ((s = getenv("autoload")) != NULL) {
943 if (*s == 'n') {
944 /*
945 * Just use BOOTP to configure system;
946 * Do not use TFTP to load the bootfile.
947 */
948 NetState = NETLOOP_SUCCESS;
949 return;
643d1ab2 950#if defined(CONFIG_CMD_NFS)
132ba5fd
WD
951 } else if (strcmp(s, "NFS") == 0) {
952 /*
953 * Use NFS to load the bootfile.
954 */
955 NfsStart();
956 return;
0e6d798c 957#endif
132ba5fd 958 }
3861aa5c 959 }
73a8b27c 960 TftpStart();
3861aa5c
WD
961 return;
962 }
963 break;
51dfe138
RB
964 case BOUND:
965 /* DHCP client bound to address */
966 break;
3861aa5c 967 default:
4b9206ed 968 puts ("DHCP: INVALID STATE\n");
3861aa5c
WD
969 break;
970 }
971
972}
973
974void DhcpRequest(void)
975{
976 BootpRequest();
977}
992742a5 978#endif /* CONFIG_CMD_DHCP */
e5c794e4 979
992742a5 980#endif /* CONFIG_CMD_NET */