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