]> git.ipfire.org Git - people/ms/u-boot.git/blame - net/bootp.c
net: send RFC1542 compliant value for bootp requests
[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
3861aa5c
WD
11#include <common.h>
12#include <command.h>
13#include <net.h>
34696958 14#include <net/tftp.h>
3861aa5c 15#include "bootp.h"
232c150a 16#include "nfs.h"
3861aa5c
WD
17#ifdef CONFIG_STATUS_LED
18#include <status_led.h>
19#endif
db7720ba
KP
20#ifdef CONFIG_BOOTP_RANDOM_DELAY
21#include "net_rand.h"
22#endif
3861aa5c 23
3090b7e3 24#define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */
3861aa5c 25
f59be6e8
SW
26/*
27 * The timeout for the initial BOOTP/DHCP request used to be described by a
28 * counter of fixed-length timeout periods. TIMEOUT_COUNT represents
29 * that counter
30 *
31 * Now that the timeout periods are variable (exponential backoff and retry)
32 * we convert the timeout count to the absolute time it would have take to
33 * execute that many retries, and keep sending retry packets until that time
34 * is reached.
35 */
232c150a 36#ifndef CONFIG_NET_RETRY_COUNT
3090b7e3 37# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
3861aa5c 38#else
232c150a 39# define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
3861aa5c 40#endif
f59be6e8 41#define TIMEOUT_MS ((3 + (TIMEOUT_COUNT * 5)) * 1000)
3861aa5c 42
3090b7e3
JH
43#define PORT_BOOTPS 67 /* BOOTP server UDP port */
44#define PORT_BOOTPC 68 /* BOOTP client UDP port */
3861aa5c 45
3090b7e3 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
92ac8acc
TR
50#ifndef CONFIG_BOOTP_ID_CACHE_SIZE
51#define CONFIG_BOOTP_ID_CACHE_SIZE 4
52#endif
53
5917e7d1 54u32 bootp_ids[CONFIG_BOOTP_ID_CACHE_SIZE];
92ac8acc 55unsigned int bootp_num_ids;
7044c6bb 56int bootp_try;
f59be6e8
SW
57ulong bootp_start;
58ulong bootp_timeout;
586cbe51
JH
59char net_nis_domain[32] = {0,}; /* Our NIS domain */
60char net_hostname[32] = {0,}; /* Our hostname */
61char net_root_path[64] = {0,}; /* Our bootpath */
3861aa5c 62
643d1ab2 63#if defined(CONFIG_CMD_DHCP)
06370590 64static dhcp_state_t dhcp_state = INIT;
5917e7d1 65static u32 dhcp_leasetime;
049a95a7
JH
66static struct in_addr dhcp_server_ip;
67static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
68 unsigned src, unsigned len);
3861aa5c
WD
69
70/* For Debug */
3e38691e
WD
71#if 0
72static char *dhcpmsg2str(int type)
3861aa5c
WD
73{
74 switch (type) {
232c150a
WD
75 case 1: return "DHCPDISCOVER"; break;
76 case 2: return "DHCPOFFER"; break;
77 case 3: return "DHCPREQUEST"; break;
78 case 4: return "DHCPDECLINE"; break;
79 case 5: return "DHCPACK"; break;
80 case 6: return "DHCPNACK"; break;
81 case 7: return "DHCPRELEASE"; break;
3861aa5c
WD
82 default: return "UNKNOWN/INVALID MSG TYPE"; break;
83 }
84}
3e38691e 85#endif
610f2e9c 86#endif
3861aa5c 87
92ac8acc
TR
88static void bootp_add_id(ulong id)
89{
90 if (bootp_num_ids >= ARRAY_SIZE(bootp_ids)) {
91 size_t size = sizeof(bootp_ids) - sizeof(id);
92
93 memmove(bootp_ids, &bootp_ids[1], size);
94 bootp_ids[bootp_num_ids - 1] = id;
95 } else {
96 bootp_ids[bootp_num_ids] = id;
97 bootp_num_ids++;
98 }
99}
100
101static bool bootp_match_id(ulong id)
102{
103 unsigned int i;
104
105 for (i = 0; i < bootp_num_ids; i++)
106 if (bootp_ids[i] == id)
107 return true;
108
109 return false;
110}
111
867d6ae2
SB
112static int check_reply_packet(uchar *pkt, unsigned dest, unsigned src,
113 unsigned len)
3861aa5c 114{
7044c6bb 115 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
116 int retval = 0;
117
118 if (dest != PORT_BOOTPC || src != PORT_BOOTPS)
119 retval = -1;
7044c6bb 120 else if (len < sizeof(struct bootp_hdr) - OPT_FIELD_SIZE)
3861aa5c 121 retval = -2;
867d6ae2 122 else if (bp->bp_op != OP_BOOTREPLY)
3861aa5c 123 retval = -3;
3861aa5c
WD
124 else if (bp->bp_htype != HWT_ETHER)
125 retval = -4;
126 else if (bp->bp_hlen != HWL_ETHER)
127 retval = -5;
5917e7d1 128 else if (!bootp_match_id(net_read_u32(&bp->bp_id)))
3861aa5c 129 retval = -6;
3861aa5c 130
0ebf04c6 131 debug("Filtering pkt = %d\n", retval);
3861aa5c
WD
132
133 return retval;
134}
135
136/*
137 * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet
138 */
7044c6bb 139static void store_net_params(struct bootp_hdr *bp)
3861aa5c 140{
5d110f0a 141#if !defined(CONFIG_BOOTP_SERVERIP)
049a95a7 142 struct in_addr tmp_ip;
1752f0fd 143
049a95a7
JH
144 net_copy_ip(&tmp_ip, &bp->bp_siaddr);
145 if (tmp_ip.s_addr != 0)
146 net_copy_ip(&net_server_ip, &bp->bp_siaddr);
1203fcce
JH
147 memcpy(net_server_ethaddr,
148 ((struct ethernet_hdr *)net_rx_packet)->et_src, 6);
3d3befa7 149 if (strlen(bp->bp_file) > 0)
1411157d
JH
150 copy_filename(net_boot_file_name, bp->bp_file,
151 sizeof(net_boot_file_name));
3861aa5c 152
1411157d 153 debug("net_boot_file_name: %s\n", net_boot_file_name);
3861aa5c
WD
154
155 /* Propagate to environment:
8bde7f77 156 * don't delete exising entry when BOOTP / DHCP reply does
3861aa5c
WD
157 * not contain a new value
158 */
1411157d
JH
159 if (*net_boot_file_name)
160 setenv("bootfile", net_boot_file_name);
ecec4e9c 161#endif
049a95a7 162 net_copy_ip(&net_ip, &bp->bp_yiaddr);
3861aa5c
WD
163}
164
3090b7e3 165static int truncate_sz(const char *name, int maxlen, int curlen)
3861aa5c
WD
166{
167 if (curlen >= maxlen) {
3090b7e3
JH
168 printf("*** WARNING: %s is too long (%d - max: %d)"
169 " - truncated\n", name, curlen, maxlen);
3861aa5c
WD
170 curlen = maxlen - 1;
171 }
3090b7e3 172 return curlen;
3861aa5c
WD
173}
174
643d1ab2 175#if !defined(CONFIG_CMD_DHCP)
3861aa5c 176
7044c6bb 177static void bootp_process_vendor_field(u8 *ext)
3861aa5c 178{
232c150a 179 int size = *(ext + 1);
3861aa5c 180
0ebf04c6 181 debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext,
7044c6bb 182 *(ext + 1));
3861aa5c 183
1411157d 184 net_boot_file_expected_size_in_blocks = 0;
3861aa5c 185
232c150a
WD
186 switch (*ext) {
187 /* Fixed length fields */
3090b7e3 188 case 1: /* Subnet mask */
049a95a7
JH
189 if (net_netmask.s_addr == 0)
190 net_copy_ip(&net_netmask, (struct in_addr *)(ext + 2));
3861aa5c 191 break;
3090b7e3 192 case 2: /* Time offset - Not yet supported */
3861aa5c 193 break;
232c150a 194 /* Variable length fields */
3090b7e3 195 case 3: /* Gateways list */
049a95a7
JH
196 if (net_gateway.s_addr == 0)
197 net_copy_ip(&net_gateway, (struct in_addr *)(ext + 2));
3861aa5c 198 break;
3090b7e3 199 case 4: /* Time server - Not yet supported */
3861aa5c 200 break;
3090b7e3 201 case 5: /* IEN-116 name server - Not yet supported */
3861aa5c
WD
202 break;
203 case 6:
049a95a7
JH
204 if (net_dns_server.s_addr == 0)
205 net_copy_ip(&net_dns_server,
206 (struct in_addr *)(ext + 2));
1fe80d79 207#if defined(CONFIG_BOOTP_DNS2)
049a95a7
JH
208 if ((net_dns_server2.s_addr == 0) && (size > 4))
209 net_copy_ip(&net_dns_server2,
210 (struct in_addr *)(ext + 2 + 4));
fe389a82 211#endif
3861aa5c 212 break;
3090b7e3 213 case 7: /* Log server - Not yet supported */
3861aa5c 214 break;
3090b7e3 215 case 8: /* Cookie/Quote server - Not yet supported */
3861aa5c 216 break;
3090b7e3 217 case 9: /* LPR server - Not yet supported */
3861aa5c 218 break;
3090b7e3 219 case 10: /* Impress server - Not yet supported */
3861aa5c 220 break;
3090b7e3 221 case 11: /* RPL server - Not yet supported */
3861aa5c 222 break;
3090b7e3 223 case 12: /* Host name */
586cbe51 224 if (net_hostname[0] == 0) {
3090b7e3 225 size = truncate_sz("Host Name",
586cbe51
JH
226 sizeof(net_hostname), size);
227 memcpy(&net_hostname, ext + 2, size);
228 net_hostname[size] = 0;
3861aa5c
WD
229 }
230 break;
3090b7e3 231 case 13: /* Boot file size */
3861aa5c 232 if (size == 2)
1411157d
JH
233 net_boot_file_expected_size_in_blocks =
234 ntohs(*(ushort *)(ext + 2));
3861aa5c 235 else if (size == 4)
1411157d
JH
236 net_boot_file_expected_size_in_blocks =
237 ntohl(*(ulong *)(ext + 2));
3861aa5c 238 break;
3090b7e3 239 case 14: /* Merit dump file - Not yet supported */
3861aa5c 240 break;
3090b7e3 241 case 15: /* Domain name - Not yet supported */
3861aa5c 242 break;
3090b7e3 243 case 16: /* Swap server - Not yet supported */
3861aa5c 244 break;
3090b7e3 245 case 17: /* Root path */
586cbe51 246 if (net_root_path[0] == 0) {
3090b7e3 247 size = truncate_sz("Root Path",
586cbe51
JH
248 sizeof(net_root_path), size);
249 memcpy(&net_root_path, ext + 2, size);
250 net_root_path[size] = 0;
3861aa5c
WD
251 }
252 break;
3090b7e3 253 case 18: /* Extension path - Not yet supported */
3861aa5c 254 /*
8bde7f77
WD
255 * This can be used to send the information of the
256 * vendor area in another file that the client can
257 * access via TFTP.
3861aa5c
WD
258 */
259 break;
232c150a 260 /* IP host layer fields */
3090b7e3 261 case 40: /* NIS Domain name */
586cbe51 262 if (net_nis_domain[0] == 0) {
3090b7e3 263 size = truncate_sz("NIS Domain Name",
586cbe51
JH
264 sizeof(net_nis_domain), size);
265 memcpy(&net_nis_domain, ext + 2, size);
266 net_nis_domain[size] = 0;
3861aa5c
WD
267 }
268 break;
09e3a67d
LP
269#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
270 case 42: /* NTP server IP */
049a95a7 271 net_copy_ip(&net_ntp_server, (struct in_addr *)(ext + 2));
09e3a67d
LP
272 break;
273#endif
232c150a 274 /* Application layer fields */
3090b7e3 275 case 43: /* Vendor specific info - Not yet supported */
3861aa5c 276 /*
8bde7f77
WD
277 * Binary information to exchange specific
278 * product information.
3861aa5c
WD
279 */
280 break;
232c150a
WD
281 /* Reserved (custom) fields (128..254) */
282 }
3861aa5c
WD
283}
284
7044c6bb 285static void bootp_process_vendor(u8 *ext, int size)
3861aa5c 286{
232c150a 287 u8 *end = ext + size;
3861aa5c 288
0ebf04c6 289 debug("[BOOTP] Checking extension (%d bytes)...\n", size);
3861aa5c 290
232c150a
WD
291 while ((ext < end) && (*ext != 0xff)) {
292 if (*ext == 0) {
293 ext++;
294 } else {
295 u8 *opt = ext;
296
297 ext += ext[1] + 2;
298 if (ext <= end)
7044c6bb 299 bootp_process_vendor_field(opt);
232c150a 300 }
3861aa5c 301 }
3861aa5c 302
3090b7e3 303 debug("[BOOTP] Received fields:\n");
049a95a7
JH
304 if (net_netmask.s_addr)
305 debug("net_netmask : %pI4\n", &net_netmask);
232c150a 306
049a95a7
JH
307 if (net_gateway.s_addr)
308 debug("net_gateway : %pI4", &net_gateway);
232c150a 309
1411157d
JH
310 if (net_boot_file_expected_size_in_blocks)
311 debug("net_boot_file_expected_size_in_blocks : %d\n",
312 net_boot_file_expected_size_in_blocks);
3861aa5c 313
586cbe51
JH
314 if (net_hostname[0])
315 debug("net_hostname : %s\n", net_hostname);
232c150a 316
586cbe51
JH
317 if (net_root_path[0])
318 debug("net_root_path : %s\n", net_root_path);
232c150a 319
586cbe51
JH
320 if (net_nis_domain[0])
321 debug("net_nis_domain : %s\n", net_nis_domain);
232c150a 322
09e3a67d 323#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
049a95a7
JH
324 if (net_ntp_server)
325 debug("net_ntp_server : %pI4\n", &net_ntp_server);
09e3a67d 326#endif
232c150a 327}
09349866 328
3861aa5c
WD
329/*
330 * Handle a BOOTP received packet.
331 */
049a95a7
JH
332static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
333 unsigned src, unsigned len)
3861aa5c 334{
7044c6bb 335 struct bootp_hdr *bp;
3861aa5c 336
0ebf04c6 337 debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n",
7044c6bb 338 src, dest, len, sizeof(struct bootp_hdr));
3861aa5c 339
7044c6bb 340 bp = (struct bootp_hdr *)pkt;
3861aa5c 341
3090b7e3 342 /* Filter out pkts we don't want */
867d6ae2 343 if (check_reply_packet(pkt, dest, src, len))
3861aa5c
WD
344 return;
345
346 /*
232c150a 347 * Got a good BOOTP reply. Copy the data into our variables.
3861aa5c 348 */
82953328 349#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
3090b7e3 350 status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
3861aa5c
WD
351#endif
352
7044c6bb 353 store_net_params(bp); /* Store net parameters from reply */
3861aa5c
WD
354
355 /* Retrieve extended information (we must parse the vendor area) */
5917e7d1 356 if (net_read_u32((u32 *)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC))
7044c6bb 357 bootp_process_vendor((uchar *)&bp->bp_vend[4], len);
3861aa5c 358
bc0571fc 359 net_set_timeout_handler(0, (thand_f *)0);
573f14fe 360 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP, "bootp_stop");
3861aa5c 361
0ebf04c6 362 debug("Got good BOOTP\n");
3861aa5c 363
e4a3d57d 364 net_auto_load();
3861aa5c 365}
610f2e9c 366#endif
3861aa5c
WD
367
368/*
369 * Timeout on BOOTP/DHCP request.
370 */
7044c6bb 371static void bootp_timeout_handler(void)
3861aa5c 372{
f59be6e8
SW
373 ulong time_taken = get_timer(bootp_start);
374
375 if (time_taken >= TIMEOUT_MS) {
2c00e099 376#ifdef CONFIG_BOOTP_MAY_FAIL
f59be6e8 377 puts("\nRetry time exceeded\n");
b977aa80 378 net_set_state(NETLOOP_FAIL);
2c00e099 379#else
f59be6e8 380 puts("\nRetry time exceeded; starting again\n");
bc0571fc 381 net_start_again();
2c00e099 382#endif
3861aa5c 383 } else {
f59be6e8 384 bootp_timeout *= 2;
92ac8acc
TR
385 if (bootp_timeout > 2000)
386 bootp_timeout = 2000;
bc0571fc 387 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
7044c6bb 388 bootp_request();
3861aa5c
WD
389 }
390}
391
9ace17c8
IY
392#define put_vci(e, str) \
393 do { \
394 size_t vci_strlen = strlen(str); \
395 *e++ = 60; /* Vendor Class Identifier */ \
396 *e++ = vci_strlen; \
397 memcpy(e, str, vci_strlen); \
398 e += vci_strlen; \
399 } while (0)
400
3861aa5c
WD
401/*
402 * Initialize BOOTP extension fields in the request.
403 */
643d1ab2 404#if defined(CONFIG_CMD_DHCP)
049a95a7
JH
405static int dhcp_extended(u8 *e, int message_type, struct in_addr server_ip,
406 struct in_addr requested_ip)
3861aa5c 407{
232c150a
WD
408 u8 *start = e;
409 u8 *cnt;
d2b5d5c4
JH
410#if defined(CONFIG_BOOTP_PXE)
411 char *uuid;
d2b5d5c4
JH
412 u16 clientarch;
413#endif
232c150a 414
1fe80d79 415#if defined(CONFIG_BOOTP_VENDOREX)
232c150a 416 u8 *x;
3861aa5c 417#endif
1fe80d79 418#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
77ddac94 419 char *hostname;
fe389a82 420#endif
3861aa5c 421
232c150a
WD
422 *e++ = 99; /* RFC1048 Magic Cookie */
423 *e++ = 130;
424 *e++ = 83;
425 *e++ = 99;
3861aa5c 426
232c150a
WD
427 *e++ = 53; /* DHCP Message Type */
428 *e++ = 1;
429 *e++ = message_type;
3861aa5c 430
232c150a
WD
431 *e++ = 57; /* Maximum DHCP Message Size */
432 *e++ = 2;
f8315731
JH
433 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 8;
434 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
3861aa5c 435
049a95a7
JH
436 if (server_ip.s_addr) {
437 int tmp = ntohl(server_ip.s_addr);
3861aa5c 438
232c150a
WD
439 *e++ = 54; /* ServerID */
440 *e++ = 4;
441 *e++ = tmp >> 24;
442 *e++ = tmp >> 16;
443 *e++ = tmp >> 8;
444 *e++ = tmp & 0xff;
445 }
3861aa5c 446
049a95a7
JH
447 if (requested_ip.s_addr) {
448 int tmp = ntohl(requested_ip.s_addr);
3861aa5c 449
232c150a
WD
450 *e++ = 50; /* Requested IP */
451 *e++ = 4;
452 *e++ = tmp >> 24;
453 *e++ = tmp >> 16;
454 *e++ = tmp >> 8;
455 *e++ = tmp & 0xff;
456 }
1fe80d79 457#if defined(CONFIG_BOOTP_SEND_HOSTNAME)
3090b7e3
JH
458 hostname = getenv("hostname");
459 if (hostname) {
460 int hostnamelen = strlen(hostname);
232c150a
WD
461
462 *e++ = 12; /* Hostname */
463 *e++ = hostnamelen;
3090b7e3 464 memcpy(e, hostname, hostnamelen);
232c150a
WD
465 e += hostnamelen;
466 }
fe389a82
SR
467#endif
468
d2b5d5c4
JH
469#if defined(CONFIG_BOOTP_PXE)
470 clientarch = CONFIG_BOOTP_PXE_CLIENTARCH;
471 *e++ = 93; /* Client System Architecture */
472 *e++ = 2;
473 *e++ = (clientarch >> 8) & 0xff;
474 *e++ = clientarch & 0xff;
475
476 *e++ = 94; /* Client Network Interface Identifier */
477 *e++ = 3;
478 *e++ = 1; /* type field for UNDI */
479 *e++ = 0; /* major revision */
480 *e++ = 0; /* minor revision */
481
482 uuid = getenv("pxeuuid");
483
484 if (uuid) {
485 if (uuid_str_valid(uuid)) {
486 *e++ = 97; /* Client Machine Identifier */
487 *e++ = 17;
488 *e++ = 0; /* type 0 - UUID */
489
d718ded0 490 uuid_str_to_bin(uuid, e, UUID_STR_FORMAT_STD);
d2b5d5c4
JH
491 e += 16;
492 } else {
493 printf("Invalid pxeuuid: %s\n", uuid);
494 }
495 }
9ace17c8 496#endif
d2b5d5c4 497
214dc1da
HP
498#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)
499 put_vci(e, CONFIG_SPL_NET_VCI_STRING);
500#elif defined(CONFIG_BOOTP_VCI_STRING)
9ace17c8 501 put_vci(e, CONFIG_BOOTP_VCI_STRING);
d2b5d5c4
JH
502#endif
503
1fe80d79 504#if defined(CONFIG_BOOTP_VENDOREX)
3090b7e3
JH
505 x = dhcp_vendorex_prep(e);
506 if (x)
232c150a 507 return x - start;
3861aa5c
WD
508#endif
509
232c150a
WD
510 *e++ = 55; /* Parameter Request List */
511 cnt = e++; /* Pointer to count of requested items */
512 *cnt = 0;
1fe80d79 513#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
514 *e++ = 1; /* Subnet Mask */
515 *cnt += 1;
3861aa5c 516#endif
1fe80d79 517#if defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb
WD
518 *e++ = 2;
519 *cnt += 1;
520#endif
1fe80d79 521#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
522 *e++ = 3; /* Router Option */
523 *cnt += 1;
3861aa5c 524#endif
1fe80d79 525#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
526 *e++ = 6; /* DNS Server(s) */
527 *cnt += 1;
3861aa5c 528#endif
1fe80d79 529#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
530 *e++ = 12; /* Hostname */
531 *cnt += 1;
3861aa5c 532#endif
1fe80d79 533#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
534 *e++ = 13; /* Boot File Size */
535 *cnt += 1;
3861aa5c 536#endif
1fe80d79 537#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
538 *e++ = 17; /* Boot path */
539 *cnt += 1;
3861aa5c 540#endif
1fe80d79 541#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
542 *e++ = 40; /* NIS Domain name request */
543 *cnt += 1;
ea287deb 544#endif
1fe80d79 545#if defined(CONFIG_BOOTP_NTPSERVER)
ea287deb
WD
546 *e++ = 42;
547 *cnt += 1;
3861aa5c 548#endif
258ccd68
JL
549 /* no options, so back up to avoid sending an empty request list */
550 if (*cnt == 0)
551 e -= 2;
552
232c150a 553 *e++ = 255; /* End of the list */
3861aa5c 554
232c150a 555 /* Pad to minimal length */
3861aa5c 556#ifdef CONFIG_DHCP_MIN_EXT_LEN
21076f61 557 while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN)
232c150a 558 *e++ = 0;
3861aa5c
WD
559#endif
560
232c150a 561 return e - start;
3861aa5c
WD
562}
563
610f2e9c 564#else
3861aa5c 565/*
3090b7e3 566 * Warning: no field size check - change CONFIG_BOOTP_* at your own risk!
3861aa5c 567 */
049a95a7 568static int bootp_extended(u8 *e)
3861aa5c 569{
232c150a 570 u8 *start = e;
3861aa5c 571
232c150a
WD
572 *e++ = 99; /* RFC1048 Magic Cookie */
573 *e++ = 130;
574 *e++ = 83;
575 *e++ = 99;
3861aa5c 576
643d1ab2 577#if defined(CONFIG_CMD_DHCP)
232c150a
WD
578 *e++ = 53; /* DHCP Message Type */
579 *e++ = 1;
580 *e++ = DHCP_DISCOVER;
581
582 *e++ = 57; /* Maximum DHCP Message Size */
583 *e++ = 2;
f8315731
JH
584 *e++ = (576 - 312 + OPT_FIELD_SIZE) >> 16;
585 *e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;
610f2e9c 586#endif
3861aa5c 587
7ac2fe2d
IY
588#if defined(CONFIG_BOOTP_VCI_STRING) || \
589 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING))
590#ifdef CONFIG_SPL_BUILD
591 put_vci(e, CONFIG_SPL_NET_VCI_STRING);
592#else
9ace17c8
IY
593 put_vci(e, CONFIG_BOOTP_VCI_STRING);
594#endif
7ac2fe2d 595#endif
9ace17c8 596
1fe80d79 597#if defined(CONFIG_BOOTP_SUBNETMASK)
232c150a
WD
598 *e++ = 1; /* Subnet mask request */
599 *e++ = 4;
600 e += 4;
3861aa5c
WD
601#endif
602
1fe80d79 603#if defined(CONFIG_BOOTP_GATEWAY)
232c150a
WD
604 *e++ = 3; /* Default gateway request */
605 *e++ = 4;
606 e += 4;
3861aa5c
WD
607#endif
608
1fe80d79 609#if defined(CONFIG_BOOTP_DNS)
232c150a
WD
610 *e++ = 6; /* Domain Name Server */
611 *e++ = 4;
612 e += 4;
3861aa5c
WD
613#endif
614
1fe80d79 615#if defined(CONFIG_BOOTP_HOSTNAME)
232c150a
WD
616 *e++ = 12; /* Host name request */
617 *e++ = 32;
618 e += 32;
3861aa5c
WD
619#endif
620
1fe80d79 621#if defined(CONFIG_BOOTP_BOOTFILESIZE)
232c150a
WD
622 *e++ = 13; /* Boot file size */
623 *e++ = 2;
624 e += 2;
3861aa5c
WD
625#endif
626
1fe80d79 627#if defined(CONFIG_BOOTP_BOOTPATH)
232c150a
WD
628 *e++ = 17; /* Boot path */
629 *e++ = 32;
630 e += 32;
3861aa5c
WD
631#endif
632
1fe80d79 633#if defined(CONFIG_BOOTP_NISDOMAIN)
232c150a
WD
634 *e++ = 40; /* NIS Domain name request */
635 *e++ = 32;
636 e += 32;
3861aa5c 637#endif
09e3a67d
LP
638#if defined(CONFIG_BOOTP_NTPSERVER)
639 *e++ = 42;
640 *e++ = 4;
641 e += 4;
642#endif
3861aa5c 643
232c150a 644 *e++ = 255; /* End of the list */
3861aa5c 645
232c150a 646 return e - start;
3861aa5c 647}
610f2e9c 648#endif
3861aa5c 649
7044c6bb 650void bootp_reset(void)
f59be6e8 651{
92ac8acc 652 bootp_num_ids = 0;
7044c6bb 653 bootp_try = 0;
f59be6e8 654 bootp_start = get_timer(0);
92ac8acc 655 bootp_timeout = 250;
f59be6e8
SW
656}
657
7044c6bb 658void bootp_request(void)
3861aa5c 659{
db288a96 660 uchar *pkt, *iphdr;
7044c6bb 661 struct bootp_hdr *bp;
ae446f56
JH
662 int extlen, pktlen, iplen;
663 int eth_hdr_size;
eafc8db0 664#ifdef CONFIG_BOOTP_RANDOM_DELAY
8e8d73b4 665 ulong rand_ms;
eafc8db0 666#endif
5917e7d1 667 u32 bootp_id;
049a95a7
JH
668 struct in_addr zero_ip;
669 struct in_addr bcast_ip;
3861aa5c 670
573f14fe 671 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_START, "bootp_start");
643d1ab2 672#if defined(CONFIG_CMD_DHCP)
3861aa5c
WD
673 dhcp_state = INIT;
674#endif
675
676#ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */
7044c6bb 677 if (bootp_try == 0)
eafc8db0 678 srand_mac();
3861aa5c 679
7044c6bb
JH
680 if (bootp_try <= 2) /* Start with max 1024 * 1ms */
681 rand_ms = rand() >> (22 - bootp_try);
eafc8db0
JH
682 else /* After 3rd BOOTP request max 8192 * 1ms */
683 rand_ms = rand() >> 19;
3861aa5c 684
eafc8db0 685 printf("Random delay: %ld ms...\n", rand_ms);
8e8d73b4 686 mdelay(rand_ms);
3090b7e3 687
3861aa5c
WD
688#endif /* CONFIG_BOOTP_RANDOM_DELAY */
689
7044c6bb 690 printf("BOOTP broadcast %d\n", ++bootp_try);
1203fcce 691 pkt = net_tx_packet;
3090b7e3 692 memset((void *)pkt, 0, PKTSIZE);
3861aa5c 693
1203fcce 694 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
ae446f56 695 pkt += eth_hdr_size;
3861aa5c
WD
696
697 /*
3090b7e3
JH
698 * Next line results in incorrect packet size being transmitted,
699 * resulting in errors in some DHCP servers, reporting missing bytes.
700 * Size must be set in packet header after extension length has been
701 * determined.
3861aa5c
WD
702 * C. Hallinan, DS4.COM, Inc.
703 */
4b11c916 704 /* net_set_udp_header(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC,
7044c6bb 705 sizeof (struct bootp_hdr)); */
4b11c916 706 iphdr = pkt; /* We need this later for net_set_udp_header() */
594c26f8 707 pkt += IP_UDP_HDR_SIZE;
3861aa5c 708
7044c6bb 709 bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
710 bp->bp_op = OP_BOOTREQUEST;
711 bp->bp_htype = HWT_ETHER;
712 bp->bp_hlen = HWL_ETHER;
713 bp->bp_hops = 0;
454d9d3e
SB
714 /*
715 * according to RFC1542, should be 0 on first request, secs since
716 * first request otherwise
717 */
718 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
049a95a7
JH
719 zero_ip.s_addr = 0;
720 net_write_ip(&bp->bp_ciaddr, zero_ip);
721 net_write_ip(&bp->bp_yiaddr, zero_ip);
722 net_write_ip(&bp->bp_siaddr, zero_ip);
723 net_write_ip(&bp->bp_giaddr, zero_ip);
0adb5b76 724 memcpy(bp->bp_chaddr, net_ethaddr, 6);
1411157d 725 copy_filename(bp->bp_file, net_boot_file_name, sizeof(bp->bp_file));
3861aa5c
WD
726
727 /* Request additional information from the BOOTP/DHCP server */
643d1ab2 728#if defined(CONFIG_CMD_DHCP)
049a95a7
JH
729 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_DISCOVER, zero_ip,
730 zero_ip);
3861aa5c 731#else
049a95a7 732 extlen = bootp_extended((u8 *)bp->bp_vend);
610f2e9c 733#endif
3861aa5c
WD
734
735 /*
736 * Bootp ID is the lower 4 bytes of our ethernet address
49f3bdbb 737 * plus the current time in ms.
3861aa5c 738 */
5917e7d1
ST
739 bootp_id = ((u32)net_ethaddr[2] << 24)
740 | ((u32)net_ethaddr[3] << 16)
741 | ((u32)net_ethaddr[4] << 8)
742 | (u32)net_ethaddr[5];
7044c6bb
JH
743 bootp_id += get_timer(0);
744 bootp_id = htonl(bootp_id);
745 bootp_add_id(bootp_id);
5917e7d1 746 net_copy_u32(&bp->bp_id, &bootp_id);
3861aa5c
WD
747
748 /*
749 * Calculate proper packet lengths taking into account the
750 * variable size of the options field
751 */
ae446f56
JH
752 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
753 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
049a95a7
JH
754 bcast_ip.s_addr = 0xFFFFFFFFL;
755 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
bc0571fc 756 net_set_timeout_handler(bootp_timeout, bootp_timeout_handler);
3861aa5c 757
643d1ab2 758#if defined(CONFIG_CMD_DHCP)
3861aa5c 759 dhcp_state = SELECTING;
049a95a7 760 net_set_udp_handler(dhcp_handler);
3861aa5c 761#else
049a95a7 762 net_set_udp_handler(bootp_handler);
610f2e9c 763#endif
1203fcce 764 net_send_packet(net_tx_packet, pktlen);
3861aa5c
WD
765}
766
643d1ab2 767#if defined(CONFIG_CMD_DHCP)
7044c6bb 768static void dhcp_process_options(uchar *popt, struct bootp_hdr *bp)
3861aa5c 769{
3e38691e 770 uchar *end = popt + BOOTP_HDR_SIZE;
3861aa5c 771 int oplen, size;
d8d8724b
WD
772#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
773 int *to_ptr;
774#endif
3861aa5c 775
232c150a 776 while (popt < end && *popt != 0xff) {
3861aa5c 777 oplen = *(popt + 1);
232c150a
WD
778 switch (*popt) {
779 case 1:
049a95a7 780 net_copy_ip(&net_netmask, (popt + 2));
232c150a 781 break;
1fe80d79 782#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
ea287deb 783 case 2: /* Time offset */
bc0571fc 784 to_ptr = &net_ntp_time_offset;
5917e7d1 785 net_copy_u32((u32 *)to_ptr, (u32 *)(popt + 2));
bc0571fc 786 net_ntp_time_offset = ntohl(net_ntp_time_offset);
ea287deb
WD
787 break;
788#endif
232c150a 789 case 3:
049a95a7 790 net_copy_ip(&net_gateway, (popt + 2));
232c150a
WD
791 break;
792 case 6:
049a95a7 793 net_copy_ip(&net_dns_server, (popt + 2));
1fe80d79 794#if defined(CONFIG_BOOTP_DNS2)
3090b7e3 795 if (*(popt + 1) > 4)
049a95a7 796 net_copy_ip(&net_dns_server2, (popt + 2 + 4));
fe389a82 797#endif
232c150a
WD
798 break;
799 case 12:
3090b7e3 800 size = truncate_sz("Host Name",
586cbe51
JH
801 sizeof(net_hostname), oplen);
802 memcpy(&net_hostname, popt + 2, size);
803 net_hostname[size] = 0;
232c150a
WD
804 break;
805 case 15: /* Ignore Domain Name Option */
806 break;
807 case 17:
3090b7e3 808 size = truncate_sz("Root Path",
586cbe51
JH
809 sizeof(net_root_path), oplen);
810 memcpy(&net_root_path, popt + 2, size);
811 net_root_path[size] = 0;
232c150a 812 break;
ee0f60df
BR
813 case 28: /* Ignore Broadcast Address Option */
814 break;
1fe80d79 815#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
ea287deb 816 case 42: /* NTP server IP */
049a95a7 817 net_copy_ip(&net_ntp_server, (popt + 2));
ea287deb
WD
818 break;
819#endif
232c150a 820 case 51:
5917e7d1 821 net_copy_u32(&dhcp_leasetime, (u32 *)(popt + 2));
232c150a
WD
822 break;
823 case 53: /* Ignore Message Type Option */
824 break;
825 case 54:
049a95a7 826 net_copy_ip(&dhcp_server_ip, (popt + 2));
232c150a
WD
827 break;
828 case 58: /* Ignore Renewal Time Option */
829 break;
830 case 59: /* Ignore Rebinding Time Option */
831 break;
3b2e4fd9
WD
832 case 66: /* Ignore TFTP server name */
833 break;
834 case 67: /* vendor opt bootfile */
835 /*
836 * I can't use dhcp_vendorex_proc here because I need
837 * to write into the bootp packet - even then I had to
838 * pass the bootp packet pointer into here as the
839 * second arg
840 */
3090b7e3 841 size = truncate_sz("Opt Boot File",
3b2e4fd9
WD
842 sizeof(bp->bp_file),
843 oplen);
844 if (bp->bp_file[0] == '\0' && size > 0) {
845 /*
846 * only use vendor boot file if we didn't
847 * receive a boot file in the main non-vendor
848 * part of the packet - god only knows why
849 * some vendors chose not to use this perfectly
850 * good spot to store the boot file (join on
851 * Tru64 Unix) it seems mind bogglingly crazy
852 * to me
853 */
854 printf("*** WARNING: using vendor "
7044c6bb 855 "optional boot file\n");
3b2e4fd9
WD
856 memcpy(bp->bp_file, popt + 2, size);
857 bp->bp_file[size] = '\0';
858 }
859 break;
232c150a 860 default:
1fe80d79 861#if defined(CONFIG_BOOTP_VENDOREX)
3090b7e3 862 if (dhcp_vendorex_proc(popt))
8bde7f77 863 break;
3861aa5c 864#endif
3090b7e3 865 printf("*** Unhandled DHCP Option in OFFER/ACK:"
7044c6bb 866 " %d\n", *popt);
232c150a 867 break;
3861aa5c
WD
868 }
869 popt += oplen + 2; /* Process next option */
870 }
871}
872
7044c6bb 873static int dhcp_message_type(unsigned char *popt)
3861aa5c 874{
5917e7d1 875 if (net_read_u32((u32 *)popt) != htonl(BOOTP_VENDOR_MAGIC))
3861aa5c
WD
876 return -1;
877
878 popt += 4;
3090b7e3
JH
879 while (*popt != 0xff) {
880 if (*popt == 53) /* DHCP Message Type */
3861aa5c
WD
881 return *(popt + 2);
882 popt += *(popt + 1) + 2; /* Scan through all options */
883 }
884 return -1;
885}
886
7044c6bb 887static void dhcp_send_request_packet(struct bootp_hdr *bp_offer)
3861aa5c 888{
db288a96 889 uchar *pkt, *iphdr;
7044c6bb 890 struct bootp_hdr *bp;
3861aa5c 891 int pktlen, iplen, extlen;
ae446f56 892 int eth_hdr_size;
049a95a7
JH
893 struct in_addr offered_ip;
894 struct in_addr zero_ip;
895 struct in_addr bcast_ip;
3861aa5c 896
7044c6bb 897 debug("dhcp_send_request_packet: Sending DHCPREQUEST\n");
1203fcce 898 pkt = net_tx_packet;
3090b7e3 899 memset((void *)pkt, 0, PKTSIZE);
3861aa5c 900
1203fcce 901 eth_hdr_size = net_set_ether(pkt, net_bcast_ethaddr, PROT_IP);
ae446f56 902 pkt += eth_hdr_size;
3861aa5c 903
3090b7e3 904 iphdr = pkt; /* We'll need this later to set proper pkt size */
594c26f8 905 pkt += IP_UDP_HDR_SIZE;
3861aa5c 906
7044c6bb 907 bp = (struct bootp_hdr *)pkt;
3861aa5c
WD
908 bp->bp_op = OP_BOOTREQUEST;
909 bp->bp_htype = HWT_ETHER;
910 bp->bp_hlen = HWL_ETHER;
911 bp->bp_hops = 0;
454d9d3e 912 bp->bp_secs = htons(get_timer(bootp_start) / 1000);
3090b7e3
JH
913 /* Do not set the client IP, your IP, or server IP yet, since it
914 * hasn't been ACK'ed by the server yet */
e5c794e4 915
c6686703 916 /*
d82718fe
WD
917 * RFC3046 requires Relay Agents to discard packets with
918 * nonzero and offered giaddr
919 */
049a95a7
JH
920 zero_ip.s_addr = 0;
921 net_write_ip(&bp->bp_giaddr, zero_ip);
d82718fe 922
0adb5b76 923 memcpy(bp->bp_chaddr, net_ethaddr, 6);
3861aa5c
WD
924
925 /*
926 * ID is the id of the OFFER packet
927 */
928
5917e7d1 929 net_copy_u32(&bp->bp_id, &bp_offer->bp_id);
3861aa5c
WD
930
931 /*
932 * Copy options from OFFER packet if present
933 */
e5c794e4
JF
934
935 /* Copy offered IP into the parameters request list */
049a95a7
JH
936 net_copy_ip(&offered_ip, &bp_offer->bp_yiaddr);
937 extlen = dhcp_extended((u8 *)bp->bp_vend, DHCP_REQUEST,
938 dhcp_server_ip, offered_ip);
3861aa5c 939
ae446f56
JH
940 iplen = BOOTP_HDR_SIZE - OPT_FIELD_SIZE + extlen;
941 pktlen = eth_hdr_size + IP_UDP_HDR_SIZE + iplen;
049a95a7
JH
942 bcast_ip.s_addr = 0xFFFFFFFFL;
943 net_set_udp_header(iphdr, bcast_ip, PORT_BOOTPS, PORT_BOOTPC, iplen);
3861aa5c 944
d9a2f416
AV
945#ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY
946 udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY);
947#endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */
f9623229 948 debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen);
1203fcce 949 net_send_packet(net_tx_packet, pktlen);
3861aa5c
WD
950}
951
952/*
953 * Handle DHCP received packets.
954 */
049a95a7
JH
955static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
956 unsigned src, unsigned len)
3861aa5c 957{
7044c6bb 958 struct bootp_hdr *bp = (struct bootp_hdr *)pkt;
3861aa5c 959
0ebf04c6 960 debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n",
7044c6bb 961 src, dest, len, dhcp_state);
3861aa5c 962
3090b7e3 963 /* Filter out pkts we don't want */
867d6ae2 964 if (check_reply_packet(pkt, dest, src, len))
3861aa5c
WD
965 return;
966
7044c6bb
JH
967 debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: "
968 "%d\n", src, dest, len, dhcp_state);
3861aa5c
WD
969
970 switch (dhcp_state) {
971 case SELECTING:
972 /*
973 * Wait an appropriate time for any potential DHCPOFFER packets
3090b7e3
JH
974 * to arrive. Then select one, and generate DHCPREQUEST
975 * response. If filename is in format we recognize, assume it
976 * is a valid OFFER from a server we want.
3861aa5c 977 */
0ebf04c6 978 debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file);
6d0f6bcf 979#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 980 if (strncmp(bp->bp_file,
6d0f6bcf 981 CONFIG_SYS_BOOTFILE_PREFIX,
3090b7e3 982 strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0) {
6d0f6bcf 983#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
3861aa5c 984
0ebf04c6 985 debug("TRANSITIONING TO REQUESTING STATE\n");
3861aa5c 986 dhcp_state = REQUESTING;
759a51b4 987
5917e7d1 988 if (net_read_u32((u32 *)&bp->bp_vend[0]) ==
3090b7e3 989 htonl(BOOTP_VENDOR_MAGIC))
7044c6bb 990 dhcp_process_options((u8 *)&bp->bp_vend[4], bp);
3861aa5c 991
bc0571fc 992 net_set_timeout_handler(5000, bootp_timeout_handler);
7044c6bb 993 dhcp_send_request_packet(bp);
6d0f6bcf 994#ifdef CONFIG_SYS_BOOTFILE_PREFIX
3861aa5c 995 }
6d0f6bcf 996#endif /* CONFIG_SYS_BOOTFILE_PREFIX */
3861aa5c
WD
997
998 return;
999 break;
1000 case REQUESTING:
0ebf04c6 1001 debug("DHCP State: REQUESTING\n");
3861aa5c 1002
7044c6bb 1003 if (dhcp_message_type((u8 *)bp->bp_vend) == DHCP_ACK) {
5917e7d1 1004 if (net_read_u32((u32 *)&bp->bp_vend[0]) ==
3090b7e3 1005 htonl(BOOTP_VENDOR_MAGIC))
7044c6bb 1006 dhcp_process_options((u8 *)&bp->bp_vend[4], bp);
3090b7e3 1007 /* Store net params from reply */
7044c6bb 1008 store_net_params(bp);
3861aa5c 1009 dhcp_state = BOUND;
92ac8acc 1010 printf("DHCP client bound to address %pI4 (%lu ms)\n",
7044c6bb 1011 &net_ip, get_timer(bootp_start));
573f14fe 1012 bootstage_mark_name(BOOTSTAGE_ID_BOOTP_STOP,
7044c6bb 1013 "bootp_stop");
3861aa5c 1014
e4a3d57d 1015 net_auto_load();
3861aa5c
WD
1016 return;
1017 }
1018 break;
51dfe138
RB
1019 case BOUND:
1020 /* DHCP client bound to address */
1021 break;
3861aa5c 1022 default:
3090b7e3 1023 puts("DHCP: INVALID STATE\n");
3861aa5c
WD
1024 break;
1025 }
3861aa5c
WD
1026}
1027
7044c6bb 1028void dhcp_request(void)
3861aa5c 1029{
7044c6bb 1030 bootp_request();
3861aa5c 1031}
992742a5 1032#endif /* CONFIG_CMD_DHCP */