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