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