]>
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 | |
20 | ||
232c150a | 21 | #define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */ |
3861aa5c | 22 | |
49f3bdbb | 23 | #define TIMEOUT 5000UL /* Milliseconds before trying BOOTP again */ |
232c150a | 24 | #ifndef CONFIG_NET_RETRY_COUNT |
3861aa5c WD |
25 | # define TIMEOUT_COUNT 5 /* # of timeouts before giving up */ |
26 | #else | |
232c150a | 27 | # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT) |
3861aa5c WD |
28 | #endif |
29 | ||
30 | #define PORT_BOOTPS 67 /* BOOTP server UDP port */ | |
31 | #define PORT_BOOTPC 68 /* BOOTP client UDP port */ | |
32 | ||
33 | #ifndef CONFIG_DHCP_MIN_EXT_LEN /* minimal length of extension list */ | |
232c150a | 34 | #define CONFIG_DHCP_MIN_EXT_LEN 64 |
3861aa5c WD |
35 | #endif |
36 | ||
37 | ulong BootpID; | |
38 | int BootpTry; | |
39 | #ifdef CONFIG_BOOTP_RANDOM_DELAY | |
40 | ulong seed1, seed2; | |
41 | #endif | |
42 | ||
643d1ab2 | 43 | #if defined(CONFIG_CMD_DHCP) |
3861aa5c | 44 | dhcp_state_t dhcp_state = INIT; |
682011ff | 45 | unsigned long dhcp_leasetime = 0; |
759a51b4 | 46 | IPaddr_t NetDHCPServerIP = 0; |
03eb129f LC |
47 | static void DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src, |
48 | unsigned len); | |
3861aa5c WD |
49 | |
50 | /* For Debug */ | |
3e38691e WD |
51 | #if 0 |
52 | static char *dhcpmsg2str(int type) | |
3861aa5c WD |
53 | { |
54 | switch (type) { | |
232c150a WD |
55 | case 1: return "DHCPDISCOVER"; break; |
56 | case 2: return "DHCPOFFER"; break; | |
57 | case 3: return "DHCPREQUEST"; break; | |
58 | case 4: return "DHCPDECLINE"; break; | |
59 | case 5: return "DHCPACK"; break; | |
60 | case 6: return "DHCPNACK"; break; | |
61 | case 7: return "DHCPRELEASE"; break; | |
3861aa5c WD |
62 | default: return "UNKNOWN/INVALID MSG TYPE"; break; |
63 | } | |
64 | } | |
3e38691e | 65 | #endif |
3861aa5c | 66 | |
1fe80d79 | 67 | #if defined(CONFIG_BOOTP_VENDOREX) |
3861aa5c WD |
68 | extern u8 *dhcp_vendorex_prep (u8 *e); /*rtn new e after add own opts. */ |
69 | extern u8 *dhcp_vendorex_proc (u8 *e); /*rtn next e if mine,else NULL */ | |
70 | #endif | |
71 | ||
610f2e9c | 72 | #endif |
3861aa5c WD |
73 | |
74 | static int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len) | |
75 | { | |
76 | Bootp_t *bp = (Bootp_t *) pkt; | |
77 | int retval = 0; | |
78 | ||
79 | if (dest != PORT_BOOTPC || src != PORT_BOOTPS) | |
80 | retval = -1; | |
81 | else if (len < sizeof (Bootp_t) - OPT_SIZE) | |
82 | retval = -2; | |
83 | else if (bp->bp_op != OP_BOOTREQUEST && | |
84 | bp->bp_op != OP_BOOTREPLY && | |
85 | bp->bp_op != DHCP_OFFER && | |
86 | bp->bp_op != DHCP_ACK && | |
87 | bp->bp_op != DHCP_NAK ) { | |
88 | retval = -3; | |
89 | } | |
90 | else if (bp->bp_htype != HWT_ETHER) | |
91 | retval = -4; | |
92 | else if (bp->bp_hlen != HWL_ETHER) | |
93 | retval = -5; | |
94 | else if (NetReadLong((ulong*)&bp->bp_id) != BootpID) { | |
95 | retval = -6; | |
96 | } | |
97 | ||
0ebf04c6 | 98 | debug("Filtering pkt = %d\n", retval); |
3861aa5c WD |
99 | |
100 | return retval; | |
101 | } | |
102 | ||
103 | /* | |
104 | * Copy parameters of interest from BOOTP_REPLY/DHCP_OFFER packet | |
105 | */ | |
3e38691e | 106 | static void BootpCopyNetParams(Bootp_t *bp) |
3861aa5c | 107 | { |
3d3befa7 WD |
108 | IPaddr_t tmp_ip; |
109 | ||
3861aa5c | 110 | NetCopyIP(&NetOurIP, &bp->bp_yiaddr); |
5d110f0a | 111 | #if !defined(CONFIG_BOOTP_SERVERIP) |
3d3befa7 WD |
112 | NetCopyIP(&tmp_ip, &bp->bp_siaddr); |
113 | if (tmp_ip != 0) | |
114 | NetCopyIP(&NetServerIP, &bp->bp_siaddr); | |
d9bec9f4 | 115 | memcpy (NetServerEther, ((Ethernet_t *)NetRxPacket)->et_src, 6); |
5d110f0a | 116 | #endif |
3d3befa7 WD |
117 | if (strlen(bp->bp_file) > 0) |
118 | copy_filename (BootFile, bp->bp_file, sizeof(BootFile)); | |
3861aa5c | 119 | |
0ebf04c6 | 120 | debug("Bootfile: %s\n", BootFile); |
3861aa5c WD |
121 | |
122 | /* Propagate to environment: | |
8bde7f77 | 123 | * don't delete exising entry when BOOTP / DHCP reply does |
3861aa5c WD |
124 | * not contain a new value |
125 | */ | |
126 | if (*BootFile) { | |
127 | setenv ("bootfile", BootFile); | |
128 | } | |
129 | } | |
130 | ||
131 | static int truncate_sz (const char *name, int maxlen, int curlen) | |
132 | { | |
133 | if (curlen >= maxlen) { | |
134 | printf("*** WARNING: %s is too long (%d - max: %d) - truncated\n", | |
135 | name, curlen, maxlen); | |
136 | curlen = maxlen - 1; | |
137 | } | |
138 | return (curlen); | |
139 | } | |
140 | ||
643d1ab2 | 141 | #if !defined(CONFIG_CMD_DHCP) |
3861aa5c | 142 | |
232c150a | 143 | static void BootpVendorFieldProcess (u8 * ext) |
3861aa5c | 144 | { |
232c150a | 145 | int size = *(ext + 1); |
3861aa5c | 146 | |
0ebf04c6 | 147 | debug("[BOOTP] Processing extension %d... (%d bytes)\n", *ext, |
232c150a | 148 | *(ext + 1)); |
3861aa5c | 149 | |
232c150a | 150 | NetBootFileSize = 0; |
3861aa5c | 151 | |
232c150a WD |
152 | switch (*ext) { |
153 | /* Fixed length fields */ | |
1aeed8d7 | 154 | case 1: /* Subnet mask */ |
3861aa5c | 155 | if (NetOurSubnetMask == 0) |
232c150a | 156 | NetCopyIP (&NetOurSubnetMask, (IPaddr_t *) (ext + 2)); |
3861aa5c | 157 | break; |
1aeed8d7 | 158 | case 2: /* Time offset - Not yet supported */ |
3861aa5c | 159 | break; |
232c150a | 160 | /* Variable length fields */ |
1aeed8d7 | 161 | case 3: /* Gateways list */ |
3861aa5c | 162 | if (NetOurGatewayIP == 0) { |
232c150a | 163 | NetCopyIP (&NetOurGatewayIP, (IPaddr_t *) (ext + 2)); |
3861aa5c WD |
164 | } |
165 | break; | |
1aeed8d7 | 166 | case 4: /* Time server - Not yet supported */ |
3861aa5c | 167 | break; |
1aeed8d7 | 168 | case 5: /* IEN-116 name server - Not yet supported */ |
3861aa5c WD |
169 | break; |
170 | case 6: | |
171 | if (NetOurDNSIP == 0) { | |
232c150a | 172 | NetCopyIP (&NetOurDNSIP, (IPaddr_t *) (ext + 2)); |
3861aa5c | 173 | } |
1fe80d79 | 174 | #if defined(CONFIG_BOOTP_DNS2) |
fe389a82 | 175 | if ((NetOurDNS2IP == 0) && (size > 4)) { |
232c150a | 176 | NetCopyIP (&NetOurDNS2IP, (IPaddr_t *) (ext + 2 + 4)); |
fe389a82 SR |
177 | } |
178 | #endif | |
3861aa5c | 179 | break; |
1aeed8d7 | 180 | case 7: /* Log server - Not yet supported */ |
3861aa5c | 181 | break; |
1aeed8d7 | 182 | case 8: /* Cookie/Quote server - Not yet supported */ |
3861aa5c | 183 | break; |
1aeed8d7 | 184 | case 9: /* LPR server - Not yet supported */ |
3861aa5c | 185 | break; |
1aeed8d7 | 186 | case 10: /* Impress server - Not yet supported */ |
3861aa5c | 187 | break; |
1aeed8d7 | 188 | case 11: /* RPL server - Not yet supported */ |
3861aa5c | 189 | break; |
1aeed8d7 | 190 | case 12: /* Host name */ |
3861aa5c | 191 | if (NetOurHostName[0] == 0) { |
232c150a WD |
192 | size = truncate_sz ("Host Name", sizeof (NetOurHostName), size); |
193 | memcpy (&NetOurHostName, ext + 2, size); | |
194 | NetOurHostName[size] = 0; | |
3861aa5c WD |
195 | } |
196 | break; | |
1aeed8d7 | 197 | case 13: /* Boot file size */ |
3861aa5c | 198 | if (size == 2) |
232c150a | 199 | NetBootFileSize = ntohs (*(ushort *) (ext + 2)); |
3861aa5c | 200 | else if (size == 4) |
232c150a | 201 | NetBootFileSize = ntohl (*(ulong *) (ext + 2)); |
3861aa5c | 202 | break; |
1aeed8d7 | 203 | case 14: /* Merit dump file - Not yet supported */ |
3861aa5c | 204 | break; |
1aeed8d7 | 205 | case 15: /* Domain name - Not yet supported */ |
3861aa5c | 206 | break; |
1aeed8d7 | 207 | case 16: /* Swap server - Not yet supported */ |
3861aa5c | 208 | break; |
1aeed8d7 | 209 | case 17: /* Root path */ |
3861aa5c | 210 | if (NetOurRootPath[0] == 0) { |
232c150a WD |
211 | size = truncate_sz ("Root Path", sizeof (NetOurRootPath), size); |
212 | memcpy (&NetOurRootPath, ext + 2, size); | |
213 | NetOurRootPath[size] = 0; | |
3861aa5c WD |
214 | } |
215 | break; | |
1aeed8d7 | 216 | case 18: /* Extension path - Not yet supported */ |
3861aa5c | 217 | /* |
8bde7f77 WD |
218 | * This can be used to send the information of the |
219 | * vendor area in another file that the client can | |
220 | * access via TFTP. | |
3861aa5c WD |
221 | */ |
222 | break; | |
232c150a | 223 | /* IP host layer fields */ |
1aeed8d7 | 224 | case 40: /* NIS Domain name */ |
3861aa5c | 225 | if (NetOurNISDomain[0] == 0) { |
232c150a WD |
226 | size = truncate_sz ("NIS Domain Name", sizeof (NetOurNISDomain), size); |
227 | memcpy (&NetOurNISDomain, ext + 2, size); | |
228 | NetOurNISDomain[size] = 0; | |
3861aa5c WD |
229 | } |
230 | break; | |
09e3a67d LP |
231 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER) |
232 | case 42: /* NTP server IP */ | |
233 | NetCopyIP(&NetNtpServerIP, (IPaddr_t *) (ext + 2)); | |
234 | break; | |
235 | #endif | |
232c150a | 236 | /* Application layer fields */ |
1aeed8d7 | 237 | case 43: /* Vendor specific info - Not yet supported */ |
3861aa5c | 238 | /* |
8bde7f77 WD |
239 | * Binary information to exchange specific |
240 | * product information. | |
3861aa5c WD |
241 | */ |
242 | break; | |
232c150a WD |
243 | /* Reserved (custom) fields (128..254) */ |
244 | } | |
3861aa5c WD |
245 | } |
246 | ||
232c150a | 247 | static void BootpVendorProcess (u8 * ext, int size) |
3861aa5c | 248 | { |
232c150a | 249 | u8 *end = ext + size; |
3861aa5c | 250 | |
0ebf04c6 | 251 | debug("[BOOTP] Checking extension (%d bytes)...\n", size); |
3861aa5c | 252 | |
232c150a WD |
253 | while ((ext < end) && (*ext != 0xff)) { |
254 | if (*ext == 0) { | |
255 | ext++; | |
256 | } else { | |
257 | u8 *opt = ext; | |
258 | ||
259 | ext += ext[1] + 2; | |
260 | if (ext <= end) | |
261 | BootpVendorFieldProcess (opt); | |
262 | } | |
3861aa5c | 263 | } |
3861aa5c | 264 | |
0ebf04c6 | 265 | debug("[BOOTP] Received fields: \n"); |
b6446b67 | 266 | if (NetOurSubnetMask) |
0ebf04c6 | 267 | debug("NetOurSubnetMask : %pI4\n", &NetOurSubnetMask); |
232c150a | 268 | |
b6446b67 | 269 | if (NetOurGatewayIP) |
0ebf04c6 | 270 | debug("NetOurGatewayIP : %pI4", &NetOurGatewayIP); |
232c150a | 271 | |
0ebf04c6 RG |
272 | if (NetBootFileSize) |
273 | debug("NetBootFileSize : %d\n", NetBootFileSize); | |
3861aa5c | 274 | |
0ebf04c6 RG |
275 | if (NetOurHostName[0]) |
276 | debug("NetOurHostName : %s\n", NetOurHostName); | |
232c150a | 277 | |
0ebf04c6 RG |
278 | if (NetOurRootPath[0]) |
279 | debug("NetOurRootPath : %s\n", NetOurRootPath); | |
232c150a | 280 | |
0ebf04c6 RG |
281 | if (NetOurNISDomain[0]) |
282 | debug("NetOurNISDomain : %s\n", NetOurNISDomain); | |
232c150a | 283 | |
0ebf04c6 RG |
284 | if (NetBootFileSize) |
285 | debug("NetBootFileSize: %d\n", NetBootFileSize); | |
09e3a67d LP |
286 | |
287 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER) | |
288 | if (NetNtpServerIP) | |
289 | debug("NetNtpServerIP : %pI4\n", &NetNtpServerIP); | |
290 | #endif | |
232c150a | 291 | } |
3861aa5c WD |
292 | /* |
293 | * Handle a BOOTP received packet. | |
294 | */ | |
295 | static void | |
03eb129f LC |
296 | BootpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src, |
297 | unsigned len) | |
3861aa5c WD |
298 | { |
299 | Bootp_t *bp; | |
300 | char *s; | |
301 | ||
0ebf04c6 | 302 | debug("got BOOTP packet (src=%d, dst=%d, len=%d want_len=%zu)\n", |
3861aa5c WD |
303 | src, dest, len, sizeof (Bootp_t)); |
304 | ||
305 | bp = (Bootp_t *)pkt; | |
306 | ||
232c150a | 307 | if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */ |
3861aa5c WD |
308 | return; |
309 | ||
310 | /* | |
232c150a | 311 | * Got a good BOOTP reply. Copy the data into our variables. |
3861aa5c WD |
312 | */ |
313 | #ifdef CONFIG_STATUS_LED | |
314 | status_led_set (STATUS_LED_BOOT, STATUS_LED_OFF); | |
315 | #endif | |
316 | ||
317 | BootpCopyNetParams(bp); /* Store net parameters from reply */ | |
318 | ||
319 | /* Retrieve extended information (we must parse the vendor area) */ | |
320 | if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC)) | |
77ddac94 | 321 | BootpVendorProcess((uchar *)&bp->bp_vend[4], len); |
3861aa5c WD |
322 | |
323 | NetSetTimeout(0, (thand_f *)0); | |
324 | ||
0ebf04c6 | 325 | debug("Got good BOOTP\n"); |
3861aa5c | 326 | |
132ba5fd WD |
327 | if ((s = getenv("autoload")) != NULL) { |
328 | if (*s == 'n') { | |
329 | /* | |
330 | * Just use BOOTP to configure system; | |
331 | * Do not use TFTP to load the bootfile. | |
332 | */ | |
333 | NetState = NETLOOP_SUCCESS; | |
334 | return; | |
643d1ab2 | 335 | #if defined(CONFIG_CMD_NFS) |
132ba5fd WD |
336 | } else if (strcmp(s, "NFS") == 0) { |
337 | /* | |
338 | * Use NFS to load the bootfile. | |
339 | */ | |
340 | NfsStart(); | |
341 | return; | |
0e6d798c | 342 | #endif |
132ba5fd | 343 | } |
3861aa5c WD |
344 | } |
345 | ||
73a8b27c | 346 | TftpStart(); |
3861aa5c | 347 | } |
610f2e9c | 348 | #endif |
3861aa5c WD |
349 | |
350 | /* | |
351 | * Timeout on BOOTP/DHCP request. | |
352 | */ | |
353 | static void | |
354 | BootpTimeout(void) | |
355 | { | |
356 | if (BootpTry >= TIMEOUT_COUNT) { | |
357 | puts ("\nRetry count exceeded; starting again\n"); | |
358 | NetStartAgain (); | |
359 | } else { | |
49f3bdbb | 360 | NetSetTimeout (TIMEOUT, BootpTimeout); |
3861aa5c WD |
361 | BootpRequest (); |
362 | } | |
363 | } | |
364 | ||
365 | /* | |
366 | * Initialize BOOTP extension fields in the request. | |
367 | */ | |
643d1ab2 | 368 | #if defined(CONFIG_CMD_DHCP) |
232c150a | 369 | static int DhcpExtended (u8 * e, int message_type, IPaddr_t ServerID, IPaddr_t RequestedIP) |
3861aa5c | 370 | { |
232c150a WD |
371 | u8 *start = e; |
372 | u8 *cnt; | |
373 | ||
1fe80d79 | 374 | #if defined(CONFIG_BOOTP_VENDOREX) |
232c150a | 375 | u8 *x; |
3861aa5c | 376 | #endif |
1fe80d79 | 377 | #if defined(CONFIG_BOOTP_SEND_HOSTNAME) |
77ddac94 | 378 | char *hostname; |
fe389a82 | 379 | #endif |
3861aa5c | 380 | |
232c150a WD |
381 | *e++ = 99; /* RFC1048 Magic Cookie */ |
382 | *e++ = 130; | |
383 | *e++ = 83; | |
384 | *e++ = 99; | |
3861aa5c | 385 | |
232c150a WD |
386 | *e++ = 53; /* DHCP Message Type */ |
387 | *e++ = 1; | |
388 | *e++ = message_type; | |
3861aa5c | 389 | |
232c150a WD |
390 | *e++ = 57; /* Maximum DHCP Message Size */ |
391 | *e++ = 2; | |
392 | *e++ = (576 - 312 + OPT_SIZE) >> 8; | |
393 | *e++ = (576 - 312 + OPT_SIZE) & 0xff; | |
3861aa5c | 394 | |
232c150a WD |
395 | if (ServerID) { |
396 | int tmp = ntohl (ServerID); | |
3861aa5c | 397 | |
232c150a WD |
398 | *e++ = 54; /* ServerID */ |
399 | *e++ = 4; | |
400 | *e++ = tmp >> 24; | |
401 | *e++ = tmp >> 16; | |
402 | *e++ = tmp >> 8; | |
403 | *e++ = tmp & 0xff; | |
404 | } | |
3861aa5c | 405 | |
232c150a WD |
406 | if (RequestedIP) { |
407 | int tmp = ntohl (RequestedIP); | |
3861aa5c | 408 | |
232c150a WD |
409 | *e++ = 50; /* Requested IP */ |
410 | *e++ = 4; | |
411 | *e++ = tmp >> 24; | |
412 | *e++ = tmp >> 16; | |
413 | *e++ = tmp >> 8; | |
414 | *e++ = tmp & 0xff; | |
415 | } | |
1fe80d79 | 416 | #if defined(CONFIG_BOOTP_SEND_HOSTNAME) |
232c150a WD |
417 | if ((hostname = getenv ("hostname"))) { |
418 | int hostnamelen = strlen (hostname); | |
419 | ||
420 | *e++ = 12; /* Hostname */ | |
421 | *e++ = hostnamelen; | |
422 | memcpy (e, hostname, hostnamelen); | |
423 | e += hostnamelen; | |
424 | } | |
fe389a82 SR |
425 | #endif |
426 | ||
1fe80d79 | 427 | #if defined(CONFIG_BOOTP_VENDOREX) |
232c150a WD |
428 | if ((x = dhcp_vendorex_prep (e))) |
429 | return x - start; | |
3861aa5c WD |
430 | #endif |
431 | ||
232c150a WD |
432 | *e++ = 55; /* Parameter Request List */ |
433 | cnt = e++; /* Pointer to count of requested items */ | |
434 | *cnt = 0; | |
1fe80d79 | 435 | #if defined(CONFIG_BOOTP_SUBNETMASK) |
232c150a WD |
436 | *e++ = 1; /* Subnet Mask */ |
437 | *cnt += 1; | |
3861aa5c | 438 | #endif |
1fe80d79 | 439 | #if defined(CONFIG_BOOTP_TIMEOFFSET) |
ea287deb WD |
440 | *e++ = 2; |
441 | *cnt += 1; | |
442 | #endif | |
1fe80d79 | 443 | #if defined(CONFIG_BOOTP_GATEWAY) |
232c150a WD |
444 | *e++ = 3; /* Router Option */ |
445 | *cnt += 1; | |
3861aa5c | 446 | #endif |
1fe80d79 | 447 | #if defined(CONFIG_BOOTP_DNS) |
232c150a WD |
448 | *e++ = 6; /* DNS Server(s) */ |
449 | *cnt += 1; | |
3861aa5c | 450 | #endif |
1fe80d79 | 451 | #if defined(CONFIG_BOOTP_HOSTNAME) |
232c150a WD |
452 | *e++ = 12; /* Hostname */ |
453 | *cnt += 1; | |
3861aa5c | 454 | #endif |
1fe80d79 | 455 | #if defined(CONFIG_BOOTP_BOOTFILESIZE) |
232c150a WD |
456 | *e++ = 13; /* Boot File Size */ |
457 | *cnt += 1; | |
3861aa5c | 458 | #endif |
1fe80d79 | 459 | #if defined(CONFIG_BOOTP_BOOTPATH) |
232c150a WD |
460 | *e++ = 17; /* Boot path */ |
461 | *cnt += 1; | |
3861aa5c | 462 | #endif |
1fe80d79 | 463 | #if defined(CONFIG_BOOTP_NISDOMAIN) |
232c150a WD |
464 | *e++ = 40; /* NIS Domain name request */ |
465 | *cnt += 1; | |
ea287deb | 466 | #endif |
1fe80d79 | 467 | #if defined(CONFIG_BOOTP_NTPSERVER) |
ea287deb WD |
468 | *e++ = 42; |
469 | *cnt += 1; | |
3861aa5c | 470 | #endif |
258ccd68 JL |
471 | /* no options, so back up to avoid sending an empty request list */ |
472 | if (*cnt == 0) | |
473 | e -= 2; | |
474 | ||
232c150a | 475 | *e++ = 255; /* End of the list */ |
3861aa5c | 476 | |
232c150a | 477 | /* Pad to minimal length */ |
3861aa5c | 478 | #ifdef CONFIG_DHCP_MIN_EXT_LEN |
21076f61 | 479 | while ((e - start) < CONFIG_DHCP_MIN_EXT_LEN) |
232c150a | 480 | *e++ = 0; |
3861aa5c WD |
481 | #endif |
482 | ||
232c150a | 483 | return e - start; |
3861aa5c WD |
484 | } |
485 | ||
610f2e9c | 486 | #else |
3861aa5c | 487 | /* |
1fe80d79 | 488 | * Warning: no field size check - change CONFIG_BOOTP_* at your own risk! |
3861aa5c | 489 | */ |
232c150a | 490 | static int BootpExtended (u8 * e) |
3861aa5c | 491 | { |
232c150a | 492 | u8 *start = e; |
3861aa5c | 493 | |
232c150a WD |
494 | *e++ = 99; /* RFC1048 Magic Cookie */ |
495 | *e++ = 130; | |
496 | *e++ = 83; | |
497 | *e++ = 99; | |
3861aa5c | 498 | |
643d1ab2 | 499 | #if defined(CONFIG_CMD_DHCP) |
232c150a WD |
500 | *e++ = 53; /* DHCP Message Type */ |
501 | *e++ = 1; | |
502 | *e++ = DHCP_DISCOVER; | |
503 | ||
504 | *e++ = 57; /* Maximum DHCP Message Size */ | |
505 | *e++ = 2; | |
506 | *e++ = (576 - 312 + OPT_SIZE) >> 16; | |
507 | *e++ = (576 - 312 + OPT_SIZE) & 0xff; | |
610f2e9c | 508 | #endif |
3861aa5c | 509 | |
1fe80d79 | 510 | #if defined(CONFIG_BOOTP_SUBNETMASK) |
232c150a WD |
511 | *e++ = 1; /* Subnet mask request */ |
512 | *e++ = 4; | |
513 | e += 4; | |
3861aa5c WD |
514 | #endif |
515 | ||
1fe80d79 | 516 | #if defined(CONFIG_BOOTP_GATEWAY) |
232c150a WD |
517 | *e++ = 3; /* Default gateway request */ |
518 | *e++ = 4; | |
519 | e += 4; | |
3861aa5c WD |
520 | #endif |
521 | ||
1fe80d79 | 522 | #if defined(CONFIG_BOOTP_DNS) |
232c150a WD |
523 | *e++ = 6; /* Domain Name Server */ |
524 | *e++ = 4; | |
525 | e += 4; | |
3861aa5c WD |
526 | #endif |
527 | ||
1fe80d79 | 528 | #if defined(CONFIG_BOOTP_HOSTNAME) |
232c150a WD |
529 | *e++ = 12; /* Host name request */ |
530 | *e++ = 32; | |
531 | e += 32; | |
3861aa5c WD |
532 | #endif |
533 | ||
1fe80d79 | 534 | #if defined(CONFIG_BOOTP_BOOTFILESIZE) |
232c150a WD |
535 | *e++ = 13; /* Boot file size */ |
536 | *e++ = 2; | |
537 | e += 2; | |
3861aa5c WD |
538 | #endif |
539 | ||
1fe80d79 | 540 | #if defined(CONFIG_BOOTP_BOOTPATH) |
232c150a WD |
541 | *e++ = 17; /* Boot path */ |
542 | *e++ = 32; | |
543 | e += 32; | |
3861aa5c WD |
544 | #endif |
545 | ||
1fe80d79 | 546 | #if defined(CONFIG_BOOTP_NISDOMAIN) |
232c150a WD |
547 | *e++ = 40; /* NIS Domain name request */ |
548 | *e++ = 32; | |
549 | e += 32; | |
3861aa5c | 550 | #endif |
09e3a67d LP |
551 | #if defined(CONFIG_BOOTP_NTPSERVER) |
552 | *e++ = 42; | |
553 | *e++ = 4; | |
554 | e += 4; | |
555 | #endif | |
3861aa5c | 556 | |
232c150a | 557 | *e++ = 255; /* End of the list */ |
3861aa5c | 558 | |
232c150a | 559 | return e - start; |
3861aa5c | 560 | } |
610f2e9c | 561 | #endif |
3861aa5c WD |
562 | |
563 | void | |
564 | BootpRequest (void) | |
565 | { | |
566 | volatile uchar *pkt, *iphdr; | |
567 | Bootp_t *bp; | |
568 | int ext_len, pktlen, iplen; | |
569 | ||
643d1ab2 | 570 | #if defined(CONFIG_CMD_DHCP) |
3861aa5c WD |
571 | dhcp_state = INIT; |
572 | #endif | |
573 | ||
574 | #ifdef CONFIG_BOOTP_RANDOM_DELAY /* Random BOOTP delay */ | |
575 | unsigned char bi_enetaddr[6]; | |
576 | int reg; | |
3861aa5c WD |
577 | ulong tst1, tst2, sum, m_mask, m_value = 0; |
578 | ||
579 | if (BootpTry ==0) { | |
580 | /* get our mac */ | |
95823ca0 MF |
581 | eth_getenv_enetaddr("ethaddr", bi_enetaddr); |
582 | ||
0ebf04c6 RG |
583 | debug("BootpRequest => Our Mac: "); |
584 | for (reg=0; reg<6; reg++) | |
585 | debug("%x%c", bi_enetaddr[reg], reg==5 ? '\n' : ':'); | |
3861aa5c WD |
586 | |
587 | /* Mac-Manipulation 2 get seed1 */ | |
588 | tst1=0; | |
589 | tst2=0; | |
590 | for (reg=2; reg<6; reg++) { | |
591 | tst1 = tst1 << 8; | |
592 | tst1 = tst1 | bi_enetaddr[reg]; | |
593 | } | |
594 | for (reg=0; reg<2; reg++) { | |
595 | tst2 = tst2 | bi_enetaddr[reg]; | |
596 | tst2 = tst2 << 8; | |
597 | } | |
598 | ||
599 | seed1 = tst1^tst2; | |
600 | ||
601 | /* Mirror seed1*/ | |
602 | m_mask=0x1; | |
603 | for (reg=1;reg<=32;reg++) { | |
604 | m_value |= (m_mask & seed1); | |
605 | seed1 = seed1 >> 1; | |
606 | m_value = m_value << 1; | |
607 | } | |
608 | seed1 = m_value; | |
609 | seed2 = 0xB78D0945; | |
610 | } | |
611 | ||
612 | /* Random Number Generator */ | |
613 | ||
614 | for (reg=0;reg<=0;reg++) { | |
615 | sum = seed1 + seed2; | |
616 | if (sum < seed1 || sum < seed2) | |
617 | sum++; | |
8bde7f77 | 618 | seed2 = seed1; |
3861aa5c WD |
619 | seed1 = sum; |
620 | ||
621 | if (BootpTry<=2) { /* Start with max 1024 * 1ms */ | |
622 | sum = sum >> (22-BootpTry); | |
623 | } else { /*After 3rd BOOTP request max 8192 * 1ms */ | |
624 | sum = sum >> 19; | |
625 | } | |
626 | } | |
627 | ||
628 | printf ("Random delay: %ld ms...\n", sum); | |
629 | for (reg=0; reg <sum; reg++) { | |
630 | udelay(1000); /*Wait 1ms*/ | |
631 | } | |
632 | #endif /* CONFIG_BOOTP_RANDOM_DELAY */ | |
633 | ||
634 | printf("BOOTP broadcast %d\n", ++BootpTry); | |
635 | pkt = NetTxPacket; | |
636 | memset ((void*)pkt, 0, PKTSIZE); | |
637 | ||
a3d991bd | 638 | pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP); |
3861aa5c WD |
639 | |
640 | /* | |
641 | * Next line results in incorrect packet size being transmitted, resulting | |
642 | * in errors in some DHCP servers, reporting missing bytes. Size must be | |
643 | * set in packet header after extension length has been determined. | |
644 | * C. Hallinan, DS4.COM, Inc. | |
645 | */ | |
646 | /* NetSetIP(pkt, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, sizeof (Bootp_t)); */ | |
647 | iphdr = pkt; /* We need this later for NetSetIP() */ | |
648 | pkt += IP_HDR_SIZE; | |
649 | ||
650 | bp = (Bootp_t *)pkt; | |
651 | bp->bp_op = OP_BOOTREQUEST; | |
652 | bp->bp_htype = HWT_ETHER; | |
653 | bp->bp_hlen = HWL_ETHER; | |
654 | bp->bp_hops = 0; | |
49f3bdbb | 655 | bp->bp_secs = htons(get_timer(0) / 1000); |
3861aa5c WD |
656 | NetWriteIP(&bp->bp_ciaddr, 0); |
657 | NetWriteIP(&bp->bp_yiaddr, 0); | |
658 | NetWriteIP(&bp->bp_siaddr, 0); | |
659 | NetWriteIP(&bp->bp_giaddr, 0); | |
660 | memcpy (bp->bp_chaddr, NetOurEther, 6); | |
661 | copy_filename (bp->bp_file, BootFile, sizeof(bp->bp_file)); | |
662 | ||
663 | /* Request additional information from the BOOTP/DHCP server */ | |
643d1ab2 | 664 | #if defined(CONFIG_CMD_DHCP) |
77ddac94 | 665 | ext_len = DhcpExtended((u8 *)bp->bp_vend, DHCP_DISCOVER, 0, 0); |
3861aa5c | 666 | #else |
77ddac94 | 667 | ext_len = BootpExtended((u8 *)bp->bp_vend); |
610f2e9c | 668 | #endif |
3861aa5c WD |
669 | |
670 | /* | |
671 | * Bootp ID is the lower 4 bytes of our ethernet address | |
49f3bdbb | 672 | * plus the current time in ms. |
3861aa5c WD |
673 | */ |
674 | BootpID = ((ulong)NetOurEther[2] << 24) | |
675 | | ((ulong)NetOurEther[3] << 16) | |
676 | | ((ulong)NetOurEther[4] << 8) | |
677 | | (ulong)NetOurEther[5]; | |
678 | BootpID += get_timer(0); | |
232c150a | 679 | BootpID = htonl(BootpID); |
3861aa5c WD |
680 | NetCopyLong(&bp->bp_id, &BootpID); |
681 | ||
682 | /* | |
683 | * Calculate proper packet lengths taking into account the | |
684 | * variable size of the options field | |
685 | */ | |
c9a2aab1 | 686 | pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len; |
3861aa5c WD |
687 | iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + ext_len; |
688 | NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen); | |
49f3bdbb | 689 | NetSetTimeout(SELECT_TIMEOUT, BootpTimeout); |
3861aa5c | 690 | |
643d1ab2 | 691 | #if defined(CONFIG_CMD_DHCP) |
3861aa5c WD |
692 | dhcp_state = SELECTING; |
693 | NetSetHandler(DhcpHandler); | |
694 | #else | |
695 | NetSetHandler(BootpHandler); | |
610f2e9c | 696 | #endif |
3861aa5c WD |
697 | NetSendPacket(NetTxPacket, pktlen); |
698 | } | |
699 | ||
643d1ab2 | 700 | #if defined(CONFIG_CMD_DHCP) |
3b2e4fd9 | 701 | static void DhcpOptionsProcess (uchar * popt, Bootp_t *bp) |
3861aa5c | 702 | { |
3e38691e | 703 | uchar *end = popt + BOOTP_HDR_SIZE; |
3861aa5c | 704 | int oplen, size; |
d8d8724b WD |
705 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET) |
706 | int *to_ptr; | |
707 | #endif | |
3861aa5c | 708 | |
232c150a | 709 | while (popt < end && *popt != 0xff) { |
3861aa5c | 710 | oplen = *(popt + 1); |
232c150a WD |
711 | switch (*popt) { |
712 | case 1: | |
713 | NetCopyIP (&NetOurSubnetMask, (popt + 2)); | |
714 | break; | |
1fe80d79 | 715 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET) |
ea287deb | 716 | case 2: /* Time offset */ |
d8d8724b WD |
717 | to_ptr = &NetTimeOffset; |
718 | NetCopyLong ((ulong *)to_ptr, (ulong *)(popt + 2)); | |
ea287deb WD |
719 | NetTimeOffset = ntohl (NetTimeOffset); |
720 | break; | |
721 | #endif | |
232c150a WD |
722 | case 3: |
723 | NetCopyIP (&NetOurGatewayIP, (popt + 2)); | |
724 | break; | |
725 | case 6: | |
726 | NetCopyIP (&NetOurDNSIP, (popt + 2)); | |
1fe80d79 | 727 | #if defined(CONFIG_BOOTP_DNS2) |
232c150a WD |
728 | if (*(popt + 1) > 4) { |
729 | NetCopyIP (&NetOurDNS2IP, (popt + 2 + 4)); | |
730 | } | |
fe389a82 | 731 | #endif |
232c150a WD |
732 | break; |
733 | case 12: | |
734 | size = truncate_sz ("Host Name", sizeof (NetOurHostName), oplen); | |
735 | memcpy (&NetOurHostName, popt + 2, size); | |
736 | NetOurHostName[size] = 0; | |
737 | break; | |
738 | case 15: /* Ignore Domain Name Option */ | |
739 | break; | |
740 | case 17: | |
741 | size = truncate_sz ("Root Path", sizeof (NetOurRootPath), oplen); | |
742 | memcpy (&NetOurRootPath, popt + 2, size); | |
743 | NetOurRootPath[size] = 0; | |
744 | break; | |
1fe80d79 | 745 | #if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER) |
ea287deb WD |
746 | case 42: /* NTP server IP */ |
747 | NetCopyIP (&NetNtpServerIP, (popt + 2)); | |
748 | break; | |
749 | #endif | |
232c150a WD |
750 | case 51: |
751 | NetCopyLong (&dhcp_leasetime, (ulong *) (popt + 2)); | |
752 | break; | |
753 | case 53: /* Ignore Message Type Option */ | |
754 | break; | |
755 | case 54: | |
756 | NetCopyIP (&NetDHCPServerIP, (popt + 2)); | |
757 | break; | |
758 | case 58: /* Ignore Renewal Time Option */ | |
759 | break; | |
760 | case 59: /* Ignore Rebinding Time Option */ | |
761 | break; | |
3b2e4fd9 WD |
762 | case 66: /* Ignore TFTP server name */ |
763 | break; | |
764 | case 67: /* vendor opt bootfile */ | |
765 | /* | |
766 | * I can't use dhcp_vendorex_proc here because I need | |
767 | * to write into the bootp packet - even then I had to | |
768 | * pass the bootp packet pointer into here as the | |
769 | * second arg | |
770 | */ | |
771 | size = truncate_sz ("Opt Boot File", | |
772 | sizeof(bp->bp_file), | |
773 | oplen); | |
774 | if (bp->bp_file[0] == '\0' && size > 0) { | |
775 | /* | |
776 | * only use vendor boot file if we didn't | |
777 | * receive a boot file in the main non-vendor | |
778 | * part of the packet - god only knows why | |
779 | * some vendors chose not to use this perfectly | |
780 | * good spot to store the boot file (join on | |
781 | * Tru64 Unix) it seems mind bogglingly crazy | |
782 | * to me | |
783 | */ | |
784 | printf("*** WARNING: using vendor " | |
785 | "optional boot file\n"); | |
786 | memcpy(bp->bp_file, popt + 2, size); | |
787 | bp->bp_file[size] = '\0'; | |
788 | } | |
789 | break; | |
232c150a | 790 | default: |
1fe80d79 | 791 | #if defined(CONFIG_BOOTP_VENDOREX) |
232c150a | 792 | if (dhcp_vendorex_proc (popt)) |
8bde7f77 | 793 | break; |
3861aa5c | 794 | #endif |
232c150a WD |
795 | printf ("*** Unhandled DHCP Option in OFFER/ACK: %d\n", *popt); |
796 | break; | |
3861aa5c WD |
797 | } |
798 | popt += oplen + 2; /* Process next option */ | |
799 | } | |
800 | } | |
801 | ||
802 | static int DhcpMessageType(unsigned char *popt) | |
803 | { | |
804 | if (NetReadLong((ulong*)popt) != htonl(BOOTP_VENDOR_MAGIC)) | |
805 | return -1; | |
806 | ||
807 | popt += 4; | |
808 | while ( *popt != 0xff ) { | |
809 | if ( *popt == 53 ) /* DHCP Message Type */ | |
810 | return *(popt + 2); | |
811 | popt += *(popt + 1) + 2; /* Scan through all options */ | |
812 | } | |
813 | return -1; | |
814 | } | |
815 | ||
3e38691e | 816 | static void DhcpSendRequestPkt(Bootp_t *bp_offer) |
3861aa5c WD |
817 | { |
818 | volatile uchar *pkt, *iphdr; | |
819 | Bootp_t *bp; | |
820 | int pktlen, iplen, extlen; | |
47cd00fa | 821 | IPaddr_t OfferedIP; |
3861aa5c | 822 | |
0ebf04c6 | 823 | debug("DhcpSendRequestPkt: Sending DHCPREQUEST\n"); |
3861aa5c WD |
824 | pkt = NetTxPacket; |
825 | memset ((void*)pkt, 0, PKTSIZE); | |
826 | ||
a3d991bd | 827 | pkt += NetSetEther(pkt, NetBcastAddr, PROT_IP); |
3861aa5c WD |
828 | |
829 | iphdr = pkt; /* We'll need this later to set proper pkt size */ | |
830 | pkt += IP_HDR_SIZE; | |
831 | ||
832 | bp = (Bootp_t *)pkt; | |
833 | bp->bp_op = OP_BOOTREQUEST; | |
834 | bp->bp_htype = HWT_ETHER; | |
835 | bp->bp_hlen = HWL_ETHER; | |
836 | bp->bp_hops = 0; | |
49f3bdbb | 837 | bp->bp_secs = htons(get_timer(0) / 1000); |
e5c794e4 JF |
838 | /* Do not set the client IP, your IP, or server IP yet, since it hasn't been ACK'ed by |
839 | * the server yet */ | |
840 | ||
c6686703 | 841 | /* |
d82718fe WD |
842 | * RFC3046 requires Relay Agents to discard packets with |
843 | * nonzero and offered giaddr | |
844 | */ | |
845 | NetWriteIP(&bp->bp_giaddr, 0); | |
846 | ||
3861aa5c WD |
847 | memcpy (bp->bp_chaddr, NetOurEther, 6); |
848 | ||
849 | /* | |
850 | * ID is the id of the OFFER packet | |
851 | */ | |
852 | ||
853 | NetCopyLong(&bp->bp_id, &bp_offer->bp_id); | |
854 | ||
855 | /* | |
856 | * Copy options from OFFER packet if present | |
857 | */ | |
e5c794e4 JF |
858 | |
859 | /* Copy offered IP into the parameters request list */ | |
860 | NetCopyIP(&OfferedIP, &bp_offer->bp_yiaddr); | |
77ddac94 | 861 | extlen = DhcpExtended((u8 *)bp->bp_vend, DHCP_REQUEST, NetDHCPServerIP, OfferedIP); |
3861aa5c | 862 | |
c9a2aab1 | 863 | pktlen = ((int)(pkt-NetTxPacket)) + BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen; |
3861aa5c WD |
864 | iplen = BOOTP_HDR_SIZE - sizeof(bp->bp_vend) + extlen; |
865 | NetSetIP(iphdr, 0xFFFFFFFFL, PORT_BOOTPS, PORT_BOOTPC, iplen); | |
866 | ||
0ebf04c6 | 867 | debug("Transmitting DHCPREQUEST packet: len = %d\n", pktlen); |
d9a2f416 AV |
868 | #ifdef CONFIG_BOOTP_DHCP_REQUEST_DELAY |
869 | udelay(CONFIG_BOOTP_DHCP_REQUEST_DELAY); | |
870 | #endif /* CONFIG_BOOTP_DHCP_REQUEST_DELAY */ | |
3861aa5c WD |
871 | NetSendPacket(NetTxPacket, pktlen); |
872 | } | |
873 | ||
874 | /* | |
875 | * Handle DHCP received packets. | |
876 | */ | |
877 | static void | |
03eb129f LC |
878 | DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src, |
879 | unsigned len) | |
3861aa5c WD |
880 | { |
881 | Bootp_t *bp = (Bootp_t *)pkt; | |
882 | ||
0ebf04c6 | 883 | debug("DHCPHandler: got packet: (src=%d, dst=%d, len=%d) state: %d\n", |
3861aa5c WD |
884 | src, dest, len, dhcp_state); |
885 | ||
232c150a | 886 | if (BootpCheckPkt(pkt, dest, src, len)) /* Filter out pkts we don't want */ |
3861aa5c WD |
887 | return; |
888 | ||
0ebf04c6 | 889 | debug("DHCPHandler: got DHCP packet: (src=%d, dst=%d, len=%d) state: %d\n", |
3861aa5c WD |
890 | src, dest, len, dhcp_state); |
891 | ||
892 | switch (dhcp_state) { | |
893 | case SELECTING: | |
894 | /* | |
895 | * Wait an appropriate time for any potential DHCPOFFER packets | |
896 | * to arrive. Then select one, and generate DHCPREQUEST response. | |
897 | * If filename is in format we recognize, assume it is a valid | |
898 | * OFFER from a server we want. | |
899 | */ | |
0ebf04c6 | 900 | debug("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file); |
6d0f6bcf | 901 | #ifdef CONFIG_SYS_BOOTFILE_PREFIX |
3861aa5c | 902 | if (strncmp(bp->bp_file, |
6d0f6bcf JCPV |
903 | CONFIG_SYS_BOOTFILE_PREFIX, |
904 | strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0 ) { | |
905 | #endif /* CONFIG_SYS_BOOTFILE_PREFIX */ | |
3861aa5c | 906 | |
0ebf04c6 | 907 | debug("TRANSITIONING TO REQUESTING STATE\n"); |
3861aa5c | 908 | dhcp_state = REQUESTING; |
759a51b4 | 909 | |
3861aa5c | 910 | if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC)) |
3b2e4fd9 | 911 | DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp); |
3861aa5c | 912 | |
49f3bdbb | 913 | NetSetTimeout(TIMEOUT, BootpTimeout); |
3861aa5c | 914 | DhcpSendRequestPkt(bp); |
6d0f6bcf | 915 | #ifdef CONFIG_SYS_BOOTFILE_PREFIX |
3861aa5c | 916 | } |
6d0f6bcf | 917 | #endif /* CONFIG_SYS_BOOTFILE_PREFIX */ |
3861aa5c WD |
918 | |
919 | return; | |
920 | break; | |
921 | case REQUESTING: | |
0ebf04c6 | 922 | debug("DHCP State: REQUESTING\n"); |
3861aa5c | 923 | |
77ddac94 | 924 | if ( DhcpMessageType((u8 *)bp->bp_vend) == DHCP_ACK ) { |
3861aa5c WD |
925 | char *s; |
926 | ||
927 | if (NetReadLong((ulong*)&bp->bp_vend[0]) == htonl(BOOTP_VENDOR_MAGIC)) | |
3b2e4fd9 | 928 | DhcpOptionsProcess((u8 *)&bp->bp_vend[4], bp); |
232c150a | 929 | BootpCopyNetParams(bp); /* Store net params from reply */ |
3861aa5c | 930 | dhcp_state = BOUND; |
b6446b67 | 931 | printf ("DHCP client bound to address %pI4\n", &NetOurIP); |
3861aa5c WD |
932 | |
933 | /* Obey the 'autoload' setting */ | |
132ba5fd WD |
934 | if ((s = getenv("autoload")) != NULL) { |
935 | if (*s == 'n') { | |
936 | /* | |
937 | * Just use BOOTP to configure system; | |
938 | * Do not use TFTP to load the bootfile. | |
939 | */ | |
940 | NetState = NETLOOP_SUCCESS; | |
941 | return; | |
643d1ab2 | 942 | #if defined(CONFIG_CMD_NFS) |
132ba5fd WD |
943 | } else if (strcmp(s, "NFS") == 0) { |
944 | /* | |
945 | * Use NFS to load the bootfile. | |
946 | */ | |
947 | NfsStart(); | |
948 | return; | |
0e6d798c | 949 | #endif |
132ba5fd | 950 | } |
3861aa5c | 951 | } |
73a8b27c | 952 | TftpStart(); |
3861aa5c WD |
953 | return; |
954 | } | |
955 | break; | |
51dfe138 RB |
956 | case BOUND: |
957 | /* DHCP client bound to address */ | |
958 | break; | |
3861aa5c | 959 | default: |
4b9206ed | 960 | puts ("DHCP: INVALID STATE\n"); |
3861aa5c WD |
961 | break; |
962 | } | |
963 | ||
964 | } | |
965 | ||
966 | void DhcpRequest(void) | |
967 | { | |
968 | BootpRequest(); | |
969 | } | |
992742a5 | 970 | #endif /* CONFIG_CMD_DHCP */ |