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