]>
Commit | Line | Data |
---|---|---|
2d966958 WD |
1 | /* |
2 | * Copied from Linux Monitor (LiMon) - Networking. | |
3 | * | |
4 | * Copyright 1994 - 2000 Neil Russell. | |
5 | * (See License) | |
6 | * Copyright 2000 Roland Borde | |
7 | * Copyright 2000 Paolo Scaffardi | |
8 | * Copyright 2000-2002 Wolfgang Denk, [email protected] | |
9 | */ | |
10 | ||
11 | /* | |
12 | * General Desription: | |
13 | * | |
14 | * The user interface supports commands for BOOTP, RARP, and TFTP. | |
15 | * Also, we support ARP internally. Depending on available data, | |
16 | * these interact as follows: | |
17 | * | |
18 | * BOOTP: | |
19 | * | |
20 | * Prerequisites: - own ethernet address | |
21 | * We want: - own IP address | |
22 | * - TFTP server IP address | |
23 | * - name of bootfile | |
24 | * Next step: ARP | |
25 | * | |
26 | * RARP: | |
27 | * | |
28 | * Prerequisites: - own ethernet address | |
29 | * We want: - own IP address | |
30 | * - TFTP server IP address | |
31 | * Next step: ARP | |
32 | * | |
33 | * ARP: | |
34 | * | |
35 | * Prerequisites: - own ethernet address | |
36 | * - own IP address | |
37 | * - TFTP server IP address | |
38 | * We want: - TFTP server ethernet address | |
39 | * Next step: TFTP | |
40 | * | |
41 | * DHCP: | |
42 | * | |
b2f50807 WD |
43 | * Prerequisites: - own ethernet address |
44 | * We want: - IP, Netmask, ServerIP, Gateway IP | |
45 | * - bootfilename, lease time | |
46 | * Next step: - TFTP | |
2d966958 WD |
47 | * |
48 | * TFTP: | |
49 | * | |
50 | * Prerequisites: - own ethernet address | |
51 | * - own IP address | |
52 | * - TFTP server IP address | |
53 | * - TFTP server ethernet address | |
54 | * - name of bootfile (if unknown, we use a default name | |
55 | * derived from our own IP address) | |
56 | * We want: - load the boot file | |
57 | * Next step: none | |
cbd8a35c WD |
58 | * |
59 | * NFS: | |
60 | * | |
61 | * Prerequisites: - own ethernet address | |
62 | * - own IP address | |
63 | * - name of bootfile (if unknown, we use a default name | |
64 | * derived from our own IP address) | |
65 | * We want: - load the boot file | |
66 | * Next step: none | |
ea287deb WD |
67 | * |
68 | * SNTP: | |
69 | * | |
b2f50807 | 70 | * Prerequisites: - own ethernet address |
ea287deb WD |
71 | * - own IP address |
72 | * We want: - network time | |
73 | * Next step: none | |
2d966958 WD |
74 | */ |
75 | ||
76 | ||
77 | #include <common.h> | |
78 | #include <watchdog.h> | |
79 | #include <command.h> | |
48522bb5 | 80 | #include <linux/compiler.h> |
2d966958 | 81 | #include <net.h> |
d280d3f4 | 82 | #include "arp.h" |
2d966958 WD |
83 | #include "bootp.h" |
84 | #include "tftp.h" | |
85 | #include "rarp.h" | |
cbd8a35c | 86 | #include "nfs.h" |
fc3e2165 WD |
87 | #ifdef CONFIG_STATUS_LED |
88 | #include <status_led.h> | |
89 | #include <miiphy.h> | |
90 | #endif | |
643d1ab2 | 91 | #if defined(CONFIG_CMD_SNTP) |
ea287deb WD |
92 | #include "sntp.h" |
93 | #endif | |
f575ae1f | 94 | #include "cdp.h" |
1a32bf41 RG |
95 | #if defined(CONFIG_CMD_DNS) |
96 | #include "dns.h" | |
97 | #endif | |
a36b12f9 | 98 | #include "ping.h" |
2d966958 | 99 | |
d87080b7 WD |
100 | DECLARE_GLOBAL_DATA_PTR; |
101 | ||
2d966958 WD |
102 | /** BOOTP EXTENTIONS **/ |
103 | ||
3e38e429 | 104 | /* Our subnet mask (0=unknown) */ |
c586ce6e | 105 | IPaddr_t NetOurSubnetMask; |
3e38e429 | 106 | /* Our gateways IP address */ |
c586ce6e | 107 | IPaddr_t NetOurGatewayIP; |
3e38e429 | 108 | /* Our DNS IP address */ |
c586ce6e | 109 | IPaddr_t NetOurDNSIP; |
1fe80d79 | 110 | #if defined(CONFIG_BOOTP_DNS2) |
3e38e429 | 111 | /* Our 2nd DNS IP address */ |
c586ce6e | 112 | IPaddr_t NetOurDNS2IP; |
3e38e429 LC |
113 | #endif |
114 | /* Our NIS domain */ | |
c586ce6e | 115 | char NetOurNISDomain[32] = {0,}; |
3e38e429 | 116 | /* Our hostname */ |
c586ce6e | 117 | char NetOurHostName[32] = {0,}; |
3e38e429 | 118 | /* Our bootpath */ |
c586ce6e | 119 | char NetOurRootPath[64] = {0,}; |
3e38e429 | 120 | /* Our bootfile size in blocks */ |
c586ce6e | 121 | ushort NetBootFileSize; |
2d966958 | 122 | |
53a5c424 DU |
123 | #ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */ |
124 | IPaddr_t Mcast_addr; | |
125 | #endif | |
126 | ||
2d966958 WD |
127 | /** END OF BOOTP EXTENTIONS **/ |
128 | ||
3e38e429 LC |
129 | /* The actual transferred size of the bootfile (in bytes) */ |
130 | ulong NetBootFileXferSize; | |
131 | /* Our ethernet address */ | |
132 | uchar NetOurEther[6]; | |
133 | /* Boot server enet address */ | |
c586ce6e | 134 | uchar NetServerEther[6]; |
3e38e429 LC |
135 | /* Our IP addr (0 = unknown) */ |
136 | IPaddr_t NetOurIP; | |
137 | /* Server IP addr (0 = unknown) */ | |
138 | IPaddr_t NetServerIP; | |
139 | /* Current receive packet */ | |
db288a96 | 140 | uchar *NetRxPacket; |
3e38e429 LC |
141 | /* Current rx packet length */ |
142 | int NetRxPacketLen; | |
143 | /* IP packet ID */ | |
144 | unsigned NetIPID; | |
145 | /* Ethernet bcast address */ | |
c586ce6e LC |
146 | uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
147 | uchar NetEtherNullAddr[6]; | |
f85b6071 | 148 | #ifdef CONFIG_API |
db288a96 | 149 | void (*push_packet)(void *, int len) = 0; |
f85b6071 | 150 | #endif |
3e38e429 LC |
151 | /* Network loop state */ |
152 | int NetState; | |
3e38e429 | 153 | /* Tried all network devices */ |
c586ce6e | 154 | int NetRestartWrap; |
3e38e429 | 155 | /* Network loop restarted */ |
c586ce6e | 156 | static int NetRestarted; |
3e38e429 | 157 | /* At least one device configured */ |
c586ce6e | 158 | static int NetDevExists; |
2d966958 | 159 | |
6e592385 | 160 | /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */ |
3e38e429 LC |
161 | /* default is without VLAN */ |
162 | ushort NetOurVLAN = 0xFFFF; | |
163 | /* ditto */ | |
164 | ushort NetOurNativeVLAN = 0xFFFF; | |
a3d991bd | 165 | |
3e38e429 LC |
166 | /* Boot File name */ |
167 | char BootFile[128]; | |
2d966958 | 168 | |
643d1ab2 | 169 | #if defined(CONFIG_CMD_SNTP) |
3e38e429 LC |
170 | /* NTP server IP address */ |
171 | IPaddr_t NetNtpServerIP; | |
172 | /* offset time from UTC */ | |
c586ce6e | 173 | int NetTimeOffset; |
ea287deb WD |
174 | #endif |
175 | ||
db288a96 | 176 | uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN]; |
2d966958 | 177 | |
3e38e429 | 178 | /* Receive packet */ |
db288a96 | 179 | uchar *NetRxPackets[PKTBUFSRX]; |
2d966958 | 180 | |
3e38e429 LC |
181 | /* Current RX packet handler */ |
182 | static rxhand_f *packetHandler; | |
39bccd21 | 183 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 | 184 | static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */ |
39bccd21 | 185 | #endif |
3e38e429 LC |
186 | /* Current timeout handler */ |
187 | static thand_f *timeHandler; | |
188 | /* Time base value */ | |
189 | static ulong timeStart; | |
190 | /* Current timeout value */ | |
191 | static ulong timeDelta; | |
192 | /* THE transmit packet */ | |
db288a96 | 193 | uchar *NetTxPacket; |
2d966958 | 194 | |
e4bf0c5c | 195 | static int net_check_prereq(enum proto_t protocol); |
2d966958 | 196 | |
67b96e87 RB |
197 | static int NetTryCount; |
198 | ||
73a8b27c WD |
199 | /**********************************************************************/ |
200 | ||
e4a3d57d SG |
201 | /* |
202 | * Check if autoload is enabled. If so, use either NFS or TFTP to download | |
203 | * the boot file. | |
204 | */ | |
205 | void net_auto_load(void) | |
206 | { | |
207 | const char *s = getenv("autoload"); | |
208 | ||
209 | if (s != NULL) { | |
210 | if (*s == 'n') { | |
211 | /* | |
212 | * Just use BOOTP/RARP to configure system; | |
213 | * Do not use TFTP to load the bootfile. | |
214 | */ | |
215 | NetState = NETLOOP_SUCCESS; | |
216 | return; | |
217 | } | |
218 | #if defined(CONFIG_CMD_NFS) | |
219 | if (strcmp(s, "NFS") == 0) { | |
220 | /* | |
221 | * Use NFS to load the bootfile. | |
222 | */ | |
223 | NfsStart(); | |
224 | return; | |
225 | } | |
226 | #endif | |
227 | } | |
228 | TftpStart(TFTPGET); | |
229 | } | |
230 | ||
e4bf0c5c | 231 | static void NetInitLoop(enum proto_t protocol) |
2f70c49e | 232 | { |
c586ce6e | 233 | static int env_changed_id; |
4f63acd0 | 234 | int env_id = get_env_id(); |
2f70c49e HS |
235 | |
236 | /* update only when the environment has changed */ | |
3c172c4f | 237 | if (env_changed_id != env_id) { |
23a70bf9 | 238 | NetOurIP = getenv_IPaddr("ipaddr"); |
4f63acd0 LC |
239 | NetOurGatewayIP = getenv_IPaddr("gatewayip"); |
240 | NetOurSubnetMask = getenv_IPaddr("netmask"); | |
241 | NetServerIP = getenv_IPaddr("serverip"); | |
2f70c49e | 242 | NetOurNativeVLAN = getenv_VLAN("nvlan"); |
3c172c4f | 243 | NetOurVLAN = getenv_VLAN("vlan"); |
1a32bf41 RG |
244 | #if defined(CONFIG_CMD_DNS) |
245 | NetOurDNSIP = getenv_IPaddr("dnsip"); | |
246 | #endif | |
3c172c4f | 247 | env_changed_id = env_id; |
2f70c49e | 248 | } |
3c172c4f | 249 | |
da95427c | 250 | return; |
2f70c49e HS |
251 | } |
252 | ||
2d966958 WD |
253 | /**********************************************************************/ |
254 | /* | |
255 | * Main network processing loop. | |
256 | */ | |
257 | ||
e4bf0c5c | 258 | int NetLoop(enum proto_t protocol) |
2d966958 | 259 | { |
2d966958 | 260 | bd_t *bd = gd->bd; |
4793ee65 | 261 | int ret = -1; |
2d966958 | 262 | |
2d966958 WD |
263 | NetRestarted = 0; |
264 | NetDevExists = 0; | |
2d966958 | 265 | |
73a8b27c | 266 | NetTxPacket = NULL; |
67b96e87 | 267 | NetTryCount = 1; |
73a8b27c | 268 | |
d280d3f4 JH |
269 | ArpInit(); |
270 | ||
2d966958 WD |
271 | if (!NetTxPacket) { |
272 | int i; | |
2d966958 WD |
273 | /* |
274 | * Setup packet buffers, aligned correctly. | |
275 | */ | |
276 | NetTxPacket = &PktBuf[0] + (PKTALIGN - 1); | |
277 | NetTxPacket -= (ulong)NetTxPacket % PKTALIGN; | |
d3c65b01 | 278 | for (i = 0; i < PKTBUFSRX; i++) |
2d966958 | 279 | NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN; |
73a8b27c WD |
280 | } |
281 | ||
573f14fe | 282 | bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start"); |
2d966958 | 283 | eth_halt(); |
a3d991bd | 284 | eth_set_current(); |
b1bf6f2c WD |
285 | if (eth_init(bd) < 0) { |
286 | eth_halt(); | |
92895de9 | 287 | return -1; |
b1bf6f2c | 288 | } |
2d966958 WD |
289 | |
290 | restart: | |
4f63acd0 | 291 | memcpy(NetOurEther, eth_get_dev()->enetaddr, 6); |
2d966958 WD |
292 | |
293 | NetState = NETLOOP_CONTINUE; | |
294 | ||
295 | /* | |
296 | * Start the ball rolling with the given start function. From | |
297 | * here on, this code is a state machine driven by received | |
298 | * packets and timer events. | |
299 | */ | |
2f70c49e | 300 | NetInitLoop(protocol); |
2d966958 | 301 | |
4f63acd0 | 302 | switch (net_check_prereq(protocol)) { |
2d966958 WD |
303 | case 1: |
304 | /* network not configured */ | |
b1bf6f2c | 305 | eth_halt(); |
92895de9 | 306 | return -1; |
2d966958 | 307 | |
2d966958 WD |
308 | case 2: |
309 | /* network device not configured */ | |
310 | break; | |
2d966958 WD |
311 | |
312 | case 0: | |
2d966958 | 313 | NetDevExists = 1; |
e4bf0c5c | 314 | NetBootFileXferSize = 0; |
2d966958 | 315 | switch (protocol) { |
e4bf0c5c | 316 | case TFTPGET: |
1fb7cd49 SG |
317 | #ifdef CONFIG_CMD_TFTPPUT |
318 | case TFTPPUT: | |
319 | #endif | |
2d966958 | 320 | /* always use ARP to get server ethernet address */ |
e4bf0c5c | 321 | TftpStart(protocol); |
2d966958 | 322 | break; |
7a83af07 LC |
323 | #ifdef CONFIG_CMD_TFTPSRV |
324 | case TFTPSRV: | |
325 | TftpStartServer(); | |
326 | break; | |
327 | #endif | |
643d1ab2 | 328 | #if defined(CONFIG_CMD_DHCP) |
2d966958 | 329 | case DHCP: |
d407bf52 | 330 | BootpTry = 0; |
09133f85 | 331 | NetOurIP = 0; |
2d966958 WD |
332 | DhcpRequest(); /* Basically same as BOOTP */ |
333 | break; | |
610f2e9c | 334 | #endif |
2d966958 WD |
335 | |
336 | case BOOTP: | |
337 | BootpTry = 0; | |
09133f85 | 338 | NetOurIP = 0; |
4f63acd0 | 339 | BootpRequest(); |
2d966958 WD |
340 | break; |
341 | ||
bf6cb247 | 342 | #if defined(CONFIG_CMD_RARP) |
2d966958 WD |
343 | case RARP: |
344 | RarpTry = 0; | |
09133f85 | 345 | NetOurIP = 0; |
4f63acd0 | 346 | RarpRequest(); |
2d966958 | 347 | break; |
bf6cb247 | 348 | #endif |
643d1ab2 | 349 | #if defined(CONFIG_CMD_PING) |
73a8b27c | 350 | case PING: |
a36b12f9 | 351 | ping_start(); |
73a8b27c | 352 | break; |
cbd8a35c | 353 | #endif |
643d1ab2 | 354 | #if defined(CONFIG_CMD_NFS) |
cbd8a35c WD |
355 | case NFS: |
356 | NfsStart(); | |
357 | break; | |
a3d991bd | 358 | #endif |
643d1ab2 | 359 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
360 | case CDP: |
361 | CDPStart(); | |
362 | break; | |
68ceb29e WD |
363 | #endif |
364 | #ifdef CONFIG_NETCONSOLE | |
365 | case NETCONS: | |
366 | NcStart(); | |
367 | break; | |
ea287deb | 368 | #endif |
643d1ab2 | 369 | #if defined(CONFIG_CMD_SNTP) |
ea287deb WD |
370 | case SNTP: |
371 | SntpStart(); | |
372 | break; | |
1a32bf41 RG |
373 | #endif |
374 | #if defined(CONFIG_CMD_DNS) | |
375 | case DNS: | |
376 | DnsStart(); | |
377 | break; | |
73a8b27c | 378 | #endif |
2d966958 WD |
379 | default: |
380 | break; | |
381 | } | |
382 | ||
2d966958 WD |
383 | break; |
384 | } | |
385 | ||
643d1ab2 | 386 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
3e38e429 LC |
387 | #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \ |
388 | defined(CONFIG_STATUS_LED) && \ | |
389 | defined(STATUS_LED_RED) | |
fc3e2165 | 390 | /* |
42d1f039 | 391 | * Echo the inverted link state to the fault LED. |
fc3e2165 | 392 | */ |
d3c65b01 | 393 | if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR)) |
4f63acd0 | 394 | status_led_set(STATUS_LED_RED, STATUS_LED_OFF); |
d3c65b01 | 395 | else |
4f63acd0 | 396 | status_led_set(STATUS_LED_RED, STATUS_LED_ON); |
6d0f6bcf | 397 | #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */ |
fc3e2165 | 398 | #endif /* CONFIG_MII, ... */ |
2d966958 WD |
399 | |
400 | /* | |
401 | * Main packet reception loop. Loop receiving packets until | |
59acc296 | 402 | * someone sets `NetState' to a state that terminates. |
2d966958 WD |
403 | */ |
404 | for (;;) { | |
405 | WATCHDOG_RESET(); | |
406 | #ifdef CONFIG_SHOW_ACTIVITY | |
48522bb5 | 407 | show_activity(1); |
2d966958 WD |
408 | #endif |
409 | /* | |
410 | * Check the ethernet for a new packet. The ethernet | |
411 | * receive routine will process it. | |
412 | */ | |
40cb90ee | 413 | eth_rx(); |
2d966958 WD |
414 | |
415 | /* | |
416 | * Abort if ctrl-c was pressed. | |
417 | */ | |
418 | if (ctrlc()) { | |
8bde7f77 | 419 | eth_halt(); |
4f63acd0 | 420 | puts("\nAbort\n"); |
4793ee65 | 421 | goto done; |
2d966958 WD |
422 | } |
423 | ||
73a8b27c | 424 | ArpTimeoutCheck(); |
2d966958 WD |
425 | |
426 | /* | |
427 | * Check for a timeout, and run the timeout handler | |
428 | * if we have one. | |
429 | */ | |
e0ac62d7 | 430 | if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) { |
2d966958 WD |
431 | thand_f *x; |
432 | ||
643d1ab2 | 433 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
4f63acd0 LC |
434 | #if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \ |
435 | defined(CONFIG_STATUS_LED) && \ | |
436 | defined(STATUS_LED_RED) | |
fc3e2165 | 437 | /* |
42d1f039 | 438 | * Echo the inverted link state to the fault LED. |
fc3e2165 | 439 | */ |
4f63acd0 | 440 | if (miiphy_link(eth_get_dev()->name, |
3e38e429 | 441 | CONFIG_SYS_FAULT_MII_ADDR)) { |
4f63acd0 | 442 | status_led_set(STATUS_LED_RED, STATUS_LED_OFF); |
fc3e2165 | 443 | } else { |
4f63acd0 | 444 | status_led_set(STATUS_LED_RED, STATUS_LED_ON); |
fc3e2165 | 445 | } |
4f63acd0 | 446 | #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */ |
fc3e2165 | 447 | #endif /* CONFIG_MII, ... */ |
2d966958 WD |
448 | x = timeHandler; |
449 | timeHandler = (thand_f *)0; | |
450 | (*x)(); | |
451 | } | |
452 | ||
453 | ||
454 | switch (NetState) { | |
455 | ||
456 | case NETLOOP_RESTART: | |
2d966958 | 457 | NetRestarted = 1; |
2d966958 WD |
458 | goto restart; |
459 | ||
460 | case NETLOOP_SUCCESS: | |
461 | if (NetBootFileXferSize > 0) { | |
f34024d4 | 462 | char buf[20]; |
2d966958 WD |
463 | printf("Bytes transferred = %ld (%lx hex)\n", |
464 | NetBootFileXferSize, | |
465 | NetBootFileXferSize); | |
f34024d4 | 466 | sprintf(buf, "%lX", NetBootFileXferSize); |
2d966958 | 467 | setenv("filesize", buf); |
a3d991bd WD |
468 | |
469 | sprintf(buf, "%lX", (unsigned long)load_addr); | |
470 | setenv("fileaddr", buf); | |
2d966958 WD |
471 | } |
472 | eth_halt(); | |
4793ee65 SG |
473 | ret = NetBootFileXferSize; |
474 | goto done; | |
2d966958 WD |
475 | |
476 | case NETLOOP_FAIL: | |
4793ee65 | 477 | goto done; |
2d966958 WD |
478 | } |
479 | } | |
4793ee65 SG |
480 | |
481 | done: | |
39bccd21 | 482 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 SG |
483 | /* Clear out the handlers */ |
484 | NetSetHandler(NULL); | |
485 | net_set_icmp_handler(NULL); | |
39bccd21 | 486 | #endif |
4793ee65 | 487 | return ret; |
2d966958 WD |
488 | } |
489 | ||
490 | /**********************************************************************/ | |
491 | ||
492 | static void | |
493 | startAgainTimeout(void) | |
494 | { | |
495 | NetState = NETLOOP_RESTART; | |
496 | } | |
497 | ||
498 | static void | |
03eb129f LC |
499 | startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip, |
500 | unsigned src, unsigned len) | |
2d966958 WD |
501 | { |
502 | /* Totally ignore the packet */ | |
503 | } | |
504 | ||
4f63acd0 | 505 | void NetStartAgain(void) |
2d966958 | 506 | { |
6e592385 | 507 | char *nretry; |
67b96e87 RB |
508 | int retry_forever = 0; |
509 | unsigned long retrycnt = 0; | |
510 | ||
511 | nretry = getenv("netretry"); | |
512 | if (nretry) { | |
513 | if (!strcmp(nretry, "yes")) | |
514 | retry_forever = 1; | |
515 | else if (!strcmp(nretry, "no")) | |
516 | retrycnt = 0; | |
517 | else if (!strcmp(nretry, "once")) | |
518 | retrycnt = 1; | |
519 | else | |
520 | retrycnt = simple_strtoul(nretry, NULL, 0); | |
521 | } else | |
522 | retry_forever = 1; | |
523 | ||
524 | if ((!retry_forever) && (NetTryCount >= retrycnt)) { | |
525 | eth_halt(); | |
a3d991bd WD |
526 | NetState = NETLOOP_FAIL; |
527 | return; | |
528 | } | |
67b96e87 RB |
529 | |
530 | NetTryCount++; | |
531 | ||
4f63acd0 | 532 | eth_halt(); |
8b0c5c12 | 533 | #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER) |
4f63acd0 | 534 | eth_try_another(!NetRestarted); |
8b0c5c12 | 535 | #endif |
4f63acd0 | 536 | eth_init(gd->bd); |
6e592385 | 537 | if (NetRestartWrap) { |
2d966958 | 538 | NetRestartWrap = 0; |
67b96e87 | 539 | if (NetDevExists) { |
4f63acd0 LC |
540 | NetSetTimeout(10000UL, startAgainTimeout); |
541 | NetSetHandler(startAgainHandler); | |
6e592385 | 542 | } else { |
2d966958 WD |
543 | NetState = NETLOOP_FAIL; |
544 | } | |
6e592385 | 545 | } else { |
2d966958 WD |
546 | NetState = NETLOOP_RESTART; |
547 | } | |
2d966958 WD |
548 | } |
549 | ||
550 | /**********************************************************************/ | |
551 | /* | |
552 | * Miscelaneous bits. | |
553 | */ | |
554 | ||
d280d3f4 JH |
555 | rxhand_f * |
556 | NetGetHandler(void) | |
557 | { | |
558 | return packetHandler; | |
559 | } | |
560 | ||
561 | ||
2d966958 | 562 | void |
6b147d11 | 563 | NetSetHandler(rxhand_f *f) |
2d966958 WD |
564 | { |
565 | packetHandler = f; | |
566 | } | |
567 | ||
39bccd21 | 568 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 SG |
569 | void net_set_icmp_handler(rxhand_icmp_f *f) |
570 | { | |
571 | packet_icmp_handler = f; | |
572 | } | |
39bccd21 | 573 | #endif |
2d966958 WD |
574 | |
575 | void | |
6b147d11 | 576 | NetSetTimeout(ulong iv, thand_f *f) |
2d966958 WD |
577 | { |
578 | if (iv == 0) { | |
579 | timeHandler = (thand_f *)0; | |
580 | } else { | |
581 | timeHandler = f; | |
e0ac62d7 WD |
582 | timeStart = get_timer(0); |
583 | timeDelta = iv; | |
2d966958 WD |
584 | } |
585 | } | |
586 | ||
587 | ||
588 | void | |
db288a96 | 589 | NetSendPacket(uchar *pkt, int len) |
2d966958 WD |
590 | { |
591 | (void) eth_send(pkt, len); | |
592 | } | |
593 | ||
206d07fd JH |
594 | int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, |
595 | int payload_len) | |
73a8b27c | 596 | { |
a3d991bd WD |
597 | uchar *pkt; |
598 | ||
73a8b27c WD |
599 | /* convert to new style broadcast */ |
600 | if (dest == 0) | |
601 | dest = 0xFFFFFFFF; | |
602 | ||
603 | /* if broadcast, make the ether address a broadcast and don't do ARP */ | |
604 | if (dest == 0xFFFFFFFF) | |
605 | ether = NetBcastAddr; | |
606 | ||
3e38e429 LC |
607 | /* |
608 | * if MAC address was not discovered yet, save the packet and do | |
609 | * an ARP request | |
610 | */ | |
73a8b27c WD |
611 | if (memcmp(ether, NetEtherNullAddr, 6) == 0) { |
612 | ||
ea45cb0a | 613 | debug("sending ARP for %08x\n", dest); |
0ebf04c6 | 614 | |
73a8b27c WD |
615 | NetArpWaitPacketIP = dest; |
616 | NetArpWaitPacketMAC = ether; | |
a3d991bd WD |
617 | |
618 | pkt = NetArpWaitTxPacket; | |
4f63acd0 | 619 | pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP); |
a3d991bd | 620 | |
206d07fd | 621 | NetSetIP(pkt, dest, dport, sport, payload_len); |
594c26f8 JH |
622 | memcpy(pkt + IP_UDP_HDR_SIZE, (uchar *)NetTxPacket + |
623 | (pkt - (uchar *)NetArpWaitTxPacket) + | |
206d07fd | 624 | IP_UDP_HDR_SIZE, payload_len); |
73a8b27c WD |
625 | |
626 | /* size of the waiting packet */ | |
3e38e429 | 627 | NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) + |
206d07fd | 628 | IP_UDP_HDR_SIZE + payload_len; |
73a8b27c WD |
629 | |
630 | /* and do the ARP request */ | |
631 | NetArpWaitTry = 1; | |
632 | NetArpWaitTimerStart = get_timer(0); | |
633 | ArpRequest(); | |
634 | return 1; /* waiting */ | |
635 | } | |
636 | ||
ea45cb0a | 637 | debug("sending UDP to %08x/%pM\n", dest, ether); |
73a8b27c | 638 | |
a3d991bd | 639 | pkt = (uchar *)NetTxPacket; |
4f63acd0 | 640 | pkt += NetSetEther(pkt, ether, PROT_IP); |
206d07fd JH |
641 | NetSetIP(pkt, dest, dport, sport, payload_len); |
642 | eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_UDP_HDR_SIZE + | |
643 | payload_len); | |
73a8b27c | 644 | |
6e592385 | 645 | return 0; /* transmitted */ |
73a8b27c WD |
646 | } |
647 | ||
5cfaa4e5 AR |
648 | #ifdef CONFIG_IP_DEFRAG |
649 | /* | |
650 | * This function collects fragments in a single packet, according | |
651 | * to the algorithm in RFC815. It returns NULL or the pointer to | |
652 | * a complete packet, in static storage | |
653 | */ | |
654 | #ifndef CONFIG_NET_MAXDEFRAG | |
655 | #define CONFIG_NET_MAXDEFRAG 16384 | |
656 | #endif | |
657 | /* | |
658 | * MAXDEFRAG, above, is chosen in the config file and is real data | |
659 | * so we need to add the NFS overhead, which is more than TFTP. | |
660 | * To use sizeof in the internal unnamed structures, we need a real | |
661 | * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately). | |
662 | * The compiler doesn't complain nor allocates the actual structure | |
663 | */ | |
664 | static struct rpc_t rpc_specimen; | |
665 | #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply)) | |
666 | ||
c5c59df0 | 667 | #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE) |
5cfaa4e5 AR |
668 | |
669 | /* | |
670 | * this is the packet being assembled, either data or frag control. | |
671 | * Fragments go by 8 bytes, so this union must be 8 bytes long | |
672 | */ | |
673 | struct hole { | |
674 | /* first_byte is address of this structure */ | |
675 | u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */ | |
676 | u16 next_hole; /* index of next (in 8-b blocks), 0 == none */ | |
677 | u16 prev_hole; /* index of prev, 0 == none */ | |
678 | u16 unused; | |
679 | }; | |
680 | ||
594c26f8 | 681 | static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp) |
5cfaa4e5 | 682 | { |
48522bb5 | 683 | static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN); |
5cfaa4e5 AR |
684 | static u16 first_hole, total_len; |
685 | struct hole *payload, *thisfrag, *h, *newh; | |
594c26f8 | 686 | struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff; |
5cfaa4e5 AR |
687 | uchar *indata = (uchar *)ip; |
688 | int offset8, start, len, done = 0; | |
689 | u16 ip_off = ntohs(ip->ip_off); | |
690 | ||
691 | /* payload starts after IP header, this fragment is in there */ | |
c5c59df0 | 692 | payload = (struct hole *)(pkt_buff + IP_HDR_SIZE); |
5cfaa4e5 AR |
693 | offset8 = (ip_off & IP_OFFS); |
694 | thisfrag = payload + offset8; | |
695 | start = offset8 * 8; | |
c5c59df0 | 696 | len = ntohs(ip->ip_len) - IP_HDR_SIZE; |
5cfaa4e5 AR |
697 | |
698 | if (start + len > IP_MAXUDP) /* fragment extends too far */ | |
699 | return NULL; | |
700 | ||
701 | if (!total_len || localip->ip_id != ip->ip_id) { | |
702 | /* new (or different) packet, reset structs */ | |
703 | total_len = 0xffff; | |
704 | payload[0].last_byte = ~0; | |
705 | payload[0].next_hole = 0; | |
706 | payload[0].prev_hole = 0; | |
707 | first_hole = 0; | |
708 | /* any IP header will work, copy the first we received */ | |
c5c59df0 | 709 | memcpy(localip, ip, IP_HDR_SIZE); |
5cfaa4e5 AR |
710 | } |
711 | ||
712 | /* | |
713 | * What follows is the reassembly algorithm. We use the payload | |
714 | * array as a linked list of hole descriptors, as each hole starts | |
715 | * at a multiple of 8 bytes. However, last byte can be whatever value, | |
716 | * so it is represented as byte count, not as 8-byte blocks. | |
717 | */ | |
718 | ||
719 | h = payload + first_hole; | |
720 | while (h->last_byte < start) { | |
721 | if (!h->next_hole) { | |
722 | /* no hole that far away */ | |
723 | return NULL; | |
724 | } | |
725 | h = payload + h->next_hole; | |
726 | } | |
727 | ||
e397e59e FS |
728 | /* last fragment may be 1..7 bytes, the "+7" forces acceptance */ |
729 | if (offset8 + ((len + 7) / 8) <= h - payload) { | |
5cfaa4e5 AR |
730 | /* no overlap with holes (dup fragment?) */ |
731 | return NULL; | |
732 | } | |
733 | ||
734 | if (!(ip_off & IP_FLAGS_MFRAG)) { | |
735 | /* no more fragmentss: truncate this (last) hole */ | |
736 | total_len = start + len; | |
737 | h->last_byte = start + len; | |
738 | } | |
739 | ||
740 | /* | |
741 | * There is some overlap: fix the hole list. This code doesn't | |
742 | * deal with a fragment that overlaps with two different holes | |
743 | * (thus being a superset of a previously-received fragment). | |
744 | */ | |
745 | ||
4f63acd0 | 746 | if ((h >= thisfrag) && (h->last_byte <= start + len)) { |
5cfaa4e5 AR |
747 | /* complete overlap with hole: remove hole */ |
748 | if (!h->prev_hole && !h->next_hole) { | |
749 | /* last remaining hole */ | |
750 | done = 1; | |
751 | } else if (!h->prev_hole) { | |
752 | /* first hole */ | |
753 | first_hole = h->next_hole; | |
754 | payload[h->next_hole].prev_hole = 0; | |
755 | } else if (!h->next_hole) { | |
756 | /* last hole */ | |
757 | payload[h->prev_hole].next_hole = 0; | |
758 | } else { | |
759 | /* in the middle of the list */ | |
760 | payload[h->next_hole].prev_hole = h->prev_hole; | |
761 | payload[h->prev_hole].next_hole = h->next_hole; | |
762 | } | |
763 | ||
764 | } else if (h->last_byte <= start + len) { | |
765 | /* overlaps with final part of the hole: shorten this hole */ | |
766 | h->last_byte = start; | |
767 | ||
768 | } else if (h >= thisfrag) { | |
769 | /* overlaps with initial part of the hole: move this hole */ | |
770 | newh = thisfrag + (len / 8); | |
771 | *newh = *h; | |
772 | h = newh; | |
773 | if (h->next_hole) | |
774 | payload[h->next_hole].prev_hole = (h - payload); | |
775 | if (h->prev_hole) | |
776 | payload[h->prev_hole].next_hole = (h - payload); | |
777 | else | |
778 | first_hole = (h - payload); | |
779 | ||
780 | } else { | |
781 | /* fragment sits in the middle: split the hole */ | |
782 | newh = thisfrag + (len / 8); | |
783 | *newh = *h; | |
784 | h->last_byte = start; | |
785 | h->next_hole = (newh - payload); | |
786 | newh->prev_hole = (h - payload); | |
787 | if (newh->next_hole) | |
788 | payload[newh->next_hole].prev_hole = (newh - payload); | |
789 | } | |
790 | ||
791 | /* finally copy this fragment and possibly return whole packet */ | |
c5c59df0 | 792 | memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len); |
5cfaa4e5 AR |
793 | if (!done) |
794 | return NULL; | |
795 | ||
796 | localip->ip_len = htons(total_len); | |
c5c59df0 | 797 | *lenp = total_len + IP_HDR_SIZE; |
5cfaa4e5 AR |
798 | return localip; |
799 | } | |
800 | ||
594c26f8 | 801 | static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp) |
5cfaa4e5 AR |
802 | { |
803 | u16 ip_off = ntohs(ip->ip_off); | |
804 | if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG))) | |
805 | return ip; /* not a fragment */ | |
806 | return __NetDefragment(ip, lenp); | |
807 | } | |
808 | ||
809 | #else /* !CONFIG_IP_DEFRAG */ | |
810 | ||
594c26f8 | 811 | static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp) |
5cfaa4e5 AR |
812 | { |
813 | u16 ip_off = ntohs(ip->ip_off); | |
814 | if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG))) | |
815 | return ip; /* not a fragment */ | |
816 | return NULL; | |
817 | } | |
818 | #endif | |
a3d991bd | 819 | |
8f79bb17 SG |
820 | /** |
821 | * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently | |
822 | * drop others. | |
823 | * | |
824 | * @parma ip IP packet containing the ICMP | |
825 | */ | |
594c26f8 | 826 | static void receive_icmp(struct ip_udp_hdr *ip, int len, |
cb487f56 | 827 | IPaddr_t src_ip, struct ethernet_hdr *et) |
8f79bb17 | 828 | { |
e0a63079 | 829 | struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src; |
8f79bb17 SG |
830 | |
831 | switch (icmph->type) { | |
832 | case ICMP_REDIRECT: | |
833 | if (icmph->code != ICMP_REDIR_HOST) | |
834 | return; | |
835 | printf(" ICMP Host Redirect to %pI4 ", | |
836 | &icmph->un.gateway); | |
837 | break; | |
a36b12f9 | 838 | default: |
8f79bb17 | 839 | #if defined(CONFIG_CMD_PING) |
a36b12f9 | 840 | ping_receive(et, ip, len); |
8f79bb17 | 841 | #endif |
39bccd21 | 842 | #ifdef CONFIG_CMD_TFTPPUT |
4793ee65 SG |
843 | if (packet_icmp_handler) |
844 | packet_icmp_handler(icmph->type, icmph->code, | |
845 | ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src), | |
846 | icmph->un.data, ntohs(ip->udp_len)); | |
39bccd21 | 847 | #endif |
8f79bb17 SG |
848 | break; |
849 | } | |
850 | } | |
851 | ||
2d966958 | 852 | void |
db288a96 | 853 | NetReceive(uchar *inpkt, int len) |
2d966958 | 854 | { |
cb487f56 | 855 | struct ethernet_hdr *et; |
594c26f8 | 856 | struct ip_udp_hdr *ip; |
2d966958 | 857 | IPaddr_t tmp; |
03eb129f | 858 | IPaddr_t src_ip; |
2d966958 | 859 | int x; |
643d1ab2 | 860 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
861 | int iscdp; |
862 | #endif | |
863 | ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid; | |
864 | ||
0ebf04c6 | 865 | debug("packet received\n"); |
2d966958 | 866 | |
d9bec9f4 MF |
867 | NetRxPacket = inpkt; |
868 | NetRxPacketLen = len; | |
cb487f56 | 869 | et = (struct ethernet_hdr *)inpkt; |
a3d991bd WD |
870 | |
871 | /* too small packet? */ | |
872 | if (len < ETHER_HDR_SIZE) | |
873 | return; | |
874 | ||
f85b6071 RJ |
875 | #ifdef CONFIG_API |
876 | if (push_packet) { | |
877 | (*push_packet)(inpkt, len); | |
878 | return; | |
879 | } | |
880 | #endif | |
881 | ||
643d1ab2 | 882 | #if defined(CONFIG_CMD_CDP) |
a3d991bd | 883 | /* keep track if packet is CDP */ |
17351883 | 884 | iscdp = is_cdp_packet(et->et_dest); |
a3d991bd WD |
885 | #endif |
886 | ||
887 | myvlanid = ntohs(NetOurVLAN); | |
888 | if (myvlanid == (ushort)-1) | |
889 | myvlanid = VLAN_NONE; | |
890 | mynvlanid = ntohs(NetOurNativeVLAN); | |
891 | if (mynvlanid == (ushort)-1) | |
892 | mynvlanid = VLAN_NONE; | |
2d966958 WD |
893 | |
894 | x = ntohs(et->et_protlen); | |
895 | ||
0ebf04c6 | 896 | debug("packet received\n"); |
a3d991bd | 897 | |
2d966958 | 898 | if (x < 1514) { |
cb487f56 | 899 | struct e802_hdr *et802 = (struct e802_hdr *)et; |
2d966958 | 900 | /* |
da5ebe2c JH |
901 | * Got a 802.2 packet. Check the other protocol field. |
902 | * XXX VLAN over 802.2+SNAP not implemented! | |
2d966958 | 903 | */ |
cb487f56 | 904 | x = ntohs(et802->et_prot); |
a3d991bd | 905 | |
594c26f8 | 906 | ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE); |
2d966958 | 907 | len -= E802_HDR_SIZE; |
a3d991bd WD |
908 | |
909 | } else if (x != PROT_VLAN) { /* normal packet */ | |
594c26f8 | 910 | ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE); |
2d966958 | 911 | len -= ETHER_HDR_SIZE; |
a3d991bd WD |
912 | |
913 | } else { /* VLAN packet */ | |
c68cca35 JH |
914 | struct vlan_ethernet_hdr *vet = |
915 | (struct vlan_ethernet_hdr *)et; | |
a3d991bd | 916 | |
0ebf04c6 RG |
917 | debug("VLAN packet received\n"); |
918 | ||
a3d991bd WD |
919 | /* too small packet? */ |
920 | if (len < VLAN_ETHER_HDR_SIZE) | |
921 | return; | |
922 | ||
923 | /* if no VLAN active */ | |
924 | if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE | |
643d1ab2 | 925 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
926 | && iscdp == 0 |
927 | #endif | |
928 | ) | |
929 | return; | |
930 | ||
931 | cti = ntohs(vet->vet_tag); | |
932 | vlanid = cti & VLAN_IDMASK; | |
933 | x = ntohs(vet->vet_type); | |
934 | ||
594c26f8 | 935 | ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE); |
a3d991bd | 936 | len -= VLAN_ETHER_HDR_SIZE; |
2d966958 WD |
937 | } |
938 | ||
0ebf04c6 | 939 | debug("Receive from protocol 0x%x\n", x); |
2d966958 | 940 | |
643d1ab2 | 941 | #if defined(CONFIG_CMD_CDP) |
a3d991bd WD |
942 | if (iscdp) { |
943 | CDPHandler((uchar *)ip, len); | |
944 | return; | |
945 | } | |
946 | #endif | |
947 | ||
948 | if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) { | |
949 | if (vlanid == VLAN_NONE) | |
950 | vlanid = (mynvlanid & VLAN_IDMASK); | |
951 | /* not matched? */ | |
952 | if (vlanid != (myvlanid & VLAN_IDMASK)) | |
953 | return; | |
954 | } | |
955 | ||
2d966958 WD |
956 | switch (x) { |
957 | ||
958 | case PROT_ARP: | |
d280d3f4 | 959 | ArpReceive(et, ip, len); |
289f932c | 960 | break; |
2d966958 | 961 | |
bf6cb247 | 962 | #ifdef CONFIG_CMD_RARP |
2d966958 | 963 | case PROT_RARP: |
8b9c5322 | 964 | rarp_receive(ip, len); |
2d966958 | 965 | break; |
bf6cb247 | 966 | #endif |
2d966958 | 967 | case PROT_IP: |
0ebf04c6 | 968 | debug("Got IP\n"); |
5cfaa4e5 | 969 | /* Before we start poking the header, make sure it is there */ |
594c26f8 JH |
970 | if (len < IP_UDP_HDR_SIZE) { |
971 | debug("len bad %d < %lu\n", len, | |
972 | (ulong)IP_UDP_HDR_SIZE); | |
2d966958 WD |
973 | return; |
974 | } | |
5cfaa4e5 | 975 | /* Check the packet length */ |
2d966958 WD |
976 | if (len < ntohs(ip->ip_len)) { |
977 | printf("len bad %d < %d\n", len, ntohs(ip->ip_len)); | |
978 | return; | |
979 | } | |
980 | len = ntohs(ip->ip_len); | |
0ebf04c6 RG |
981 | debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff); |
982 | ||
5cfaa4e5 | 983 | /* Can't deal with anything except IPv4 */ |
d3c65b01 | 984 | if ((ip->ip_hl_v & 0xf0) != 0x40) |
2d966958 | 985 | return; |
5cfaa4e5 | 986 | /* Can't deal with IP options (headers != 20 bytes) */ |
d3c65b01 | 987 | if ((ip->ip_hl_v & 0x0f) > 0x05) |
6b52cfe1 | 988 | return; |
5cfaa4e5 | 989 | /* Check the Checksum of the header */ |
c5c59df0 | 990 | if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) { |
4f63acd0 | 991 | puts("checksum bad\n"); |
2d966958 WD |
992 | return; |
993 | } | |
5cfaa4e5 | 994 | /* If it is not for us, ignore it */ |
2d966958 WD |
995 | tmp = NetReadIP(&ip->ip_dst); |
996 | if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) { | |
53a5c424 | 997 | #ifdef CONFIG_MCAST_TFTP |
85eb5caf | 998 | if (Mcast_addr != tmp) |
53a5c424 | 999 | #endif |
c819abee | 1000 | return; |
2d966958 | 1001 | } |
03eb129f LC |
1002 | /* Read source IP address for later use */ |
1003 | src_ip = NetReadIP(&ip->ip_src); | |
5cfaa4e5 AR |
1004 | /* |
1005 | * The function returns the unchanged packet if it's not | |
1006 | * a fragment, and either the complete packet or NULL if | |
1007 | * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL) | |
1008 | */ | |
ccb9ebef LC |
1009 | ip = NetDefragment(ip, &len); |
1010 | if (!ip) | |
5cfaa4e5 | 1011 | return; |
2d966958 WD |
1012 | /* |
1013 | * watch for ICMP host redirects | |
1014 | * | |
8bde7f77 WD |
1015 | * There is no real handler code (yet). We just watch |
1016 | * for ICMP host redirect messages. In case anybody | |
1017 | * sees these messages: please contact me | |
1018 | * ([email protected]), or - even better - send me the | |
1019 | * necessary fixes :-) | |
2d966958 | 1020 | * |
8bde7f77 WD |
1021 | * Note: in all cases where I have seen this so far |
1022 | * it was a problem with the router configuration, | |
1023 | * for instance when a router was configured in the | |
1024 | * BOOTP reply, but the TFTP server was on the same | |
1025 | * subnet. So this is probably a warning that your | |
1026 | * configuration might be wrong. But I'm not really | |
1027 | * sure if there aren't any other situations. | |
4793ee65 SG |
1028 | * |
1029 | * Simon Glass <[email protected]>: We get an ICMP when | |
1030 | * we send a tftp packet to a dead connection, or when | |
1031 | * there is no server at the other end. | |
2d966958 WD |
1032 | */ |
1033 | if (ip->ip_p == IPPROTO_ICMP) { | |
8f79bb17 SG |
1034 | receive_icmp(ip, len, src_ip, et); |
1035 | return; | |
2d966958 WD |
1036 | } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */ |
1037 | return; | |
1038 | } | |
1039 | ||
8534bf9a SR |
1040 | #ifdef CONFIG_UDP_CHECKSUM |
1041 | if (ip->udp_xsum != 0) { | |
b2f50807 | 1042 | ulong xsum; |
8534bf9a SR |
1043 | ushort *sumptr; |
1044 | ushort sumlen; | |
1045 | ||
1046 | xsum = ip->ip_p; | |
1047 | xsum += (ntohs(ip->udp_len)); | |
1048 | xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff; | |
1049 | xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff; | |
1050 | xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff; | |
1051 | xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff; | |
1052 | ||
1053 | sumlen = ntohs(ip->udp_len); | |
1054 | sumptr = (ushort *) &(ip->udp_src); | |
1055 | ||
1056 | while (sumlen > 1) { | |
b2f50807 | 1057 | ushort sumdata; |
8534bf9a SR |
1058 | |
1059 | sumdata = *sumptr++; | |
1060 | xsum += ntohs(sumdata); | |
1061 | sumlen -= 2; | |
1062 | } | |
1063 | if (sumlen > 0) { | |
b2f50807 | 1064 | ushort sumdata; |
8534bf9a SR |
1065 | |
1066 | sumdata = *(unsigned char *) sumptr; | |
b2f50807 | 1067 | sumdata = (sumdata << 8) & 0xff00; |
8534bf9a SR |
1068 | xsum += sumdata; |
1069 | } | |
1070 | while ((xsum >> 16) != 0) { | |
3e38e429 LC |
1071 | xsum = (xsum & 0x0000ffff) + |
1072 | ((xsum >> 16) & 0x0000ffff); | |
8534bf9a SR |
1073 | } |
1074 | if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) { | |
9b55a253 WD |
1075 | printf(" UDP wrong checksum %08lx %08x\n", |
1076 | xsum, ntohs(ip->udp_xsum)); | |
8534bf9a SR |
1077 | return; |
1078 | } | |
1079 | } | |
1080 | #endif | |
1081 | ||
53a5c424 | 1082 | |
68ceb29e | 1083 | #ifdef CONFIG_NETCONSOLE |
594c26f8 JH |
1084 | nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE, |
1085 | ntohs(ip->udp_dst), | |
1086 | ntohs(ip->udp_src), | |
1087 | ntohs(ip->udp_len) - UDP_HDR_SIZE); | |
68ceb29e | 1088 | #endif |
2d966958 WD |
1089 | /* |
1090 | * IP header OK. Pass the packet to the current handler. | |
1091 | */ | |
594c26f8 JH |
1092 | (*packetHandler)((uchar *)ip + IP_UDP_HDR_SIZE, |
1093 | ntohs(ip->udp_dst), | |
1094 | src_ip, | |
1095 | ntohs(ip->udp_src), | |
1096 | ntohs(ip->udp_len) - UDP_HDR_SIZE); | |
2d966958 WD |
1097 | break; |
1098 | } | |
1099 | } | |
1100 | ||
1101 | ||
1102 | /**********************************************************************/ | |
1103 | ||
e4bf0c5c | 1104 | static int net_check_prereq(enum proto_t protocol) |
2d966958 WD |
1105 | { |
1106 | switch (protocol) { | |
6e592385 | 1107 | /* Fall through */ |
643d1ab2 | 1108 | #if defined(CONFIG_CMD_PING) |
73a8b27c | 1109 | case PING: |
6e592385 | 1110 | if (NetPingIP == 0) { |
4f63acd0 | 1111 | puts("*** ERROR: ping address not given\n"); |
92895de9 | 1112 | return 1; |
6e592385 WD |
1113 | } |
1114 | goto common; | |
cbd8a35c | 1115 | #endif |
643d1ab2 | 1116 | #if defined(CONFIG_CMD_SNTP) |
ea287deb WD |
1117 | case SNTP: |
1118 | if (NetNtpServerIP == 0) { | |
4f63acd0 | 1119 | puts("*** ERROR: NTP server address not given\n"); |
92895de9 | 1120 | return 1; |
ea287deb WD |
1121 | } |
1122 | goto common; | |
1123 | #endif | |
1a32bf41 RG |
1124 | #if defined(CONFIG_CMD_DNS) |
1125 | case DNS: | |
1126 | if (NetOurDNSIP == 0) { | |
1127 | puts("*** ERROR: DNS server address not given\n"); | |
1128 | return 1; | |
1129 | } | |
1130 | goto common; | |
1131 | #endif | |
643d1ab2 | 1132 | #if defined(CONFIG_CMD_NFS) |
cbd8a35c | 1133 | case NFS: |
73a8b27c | 1134 | #endif |
e4bf0c5c | 1135 | case TFTPGET: |
1fb7cd49 | 1136 | case TFTPPUT: |
6e592385 | 1137 | if (NetServerIP == 0) { |
4f63acd0 | 1138 | puts("*** ERROR: `serverip' not set\n"); |
92895de9 | 1139 | return 1; |
6e592385 | 1140 | } |
4f63acd0 LC |
1141 | #if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \ |
1142 | defined(CONFIG_CMD_DNS) | |
1143 | common: | |
73a8b27c | 1144 | #endif |
8b6bbe10 | 1145 | /* Fall through */ |
73a8b27c | 1146 | |
8b6bbe10 | 1147 | case NETCONS: |
7a83af07 | 1148 | case TFTPSRV: |
6e592385 | 1149 | if (NetOurIP == 0) { |
4f63acd0 | 1150 | puts("*** ERROR: `ipaddr' not set\n"); |
92895de9 | 1151 | return 1; |
6e592385 WD |
1152 | } |
1153 | /* Fall through */ | |
2d966958 | 1154 | |
bf6cb247 | 1155 | #ifdef CONFIG_CMD_RARP |
2d966958 | 1156 | case RARP: |
bf6cb247 | 1157 | #endif |
2d966958 | 1158 | case BOOTP: |
a3d991bd | 1159 | case CDP: |
bf6cb247 | 1160 | case DHCP: |
4f63acd0 | 1161 | if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) { |
4f63acd0 | 1162 | int num = eth_get_dev_index(); |
2d966958 | 1163 | |
6e592385 WD |
1164 | switch (num) { |
1165 | case -1: | |
4f63acd0 | 1166 | puts("*** ERROR: No ethernet found.\n"); |
92895de9 | 1167 | return 1; |
6e592385 | 1168 | case 0: |
4f63acd0 | 1169 | puts("*** ERROR: `ethaddr' not set\n"); |
2d966958 | 1170 | break; |
6e592385 | 1171 | default: |
4f63acd0 | 1172 | printf("*** ERROR: `eth%daddr' not set\n", |
2d966958 WD |
1173 | num); |
1174 | break; | |
6e592385 | 1175 | } |
2d966958 | 1176 | |
4f63acd0 | 1177 | NetStartAgain(); |
92895de9 | 1178 | return 2; |
6e592385 WD |
1179 | } |
1180 | /* Fall through */ | |
1181 | default: | |
92895de9 | 1182 | return 0; |
2d966958 | 1183 | } |
92895de9 | 1184 | return 0; /* OK */ |
2d966958 WD |
1185 | } |
1186 | /**********************************************************************/ | |
1187 | ||
1188 | int | |
6b147d11 | 1189 | NetCksumOk(uchar *ptr, int len) |
2d966958 WD |
1190 | { |
1191 | return !((NetCksum(ptr, len) + 1) & 0xfffe); | |
1192 | } | |
1193 | ||
1194 | ||
1195 | unsigned | |
6b147d11 | 1196 | NetCksum(uchar *ptr, int len) |
2d966958 WD |
1197 | { |
1198 | ulong xsum; | |
9d2a873b | 1199 | ushort *p = (ushort *)ptr; |
2d966958 WD |
1200 | |
1201 | xsum = 0; | |
1202 | while (len-- > 0) | |
7bc5ee07 | 1203 | xsum += *p++; |
2d966958 WD |
1204 | xsum = (xsum & 0xffff) + (xsum >> 16); |
1205 | xsum = (xsum & 0xffff) + (xsum >> 16); | |
92895de9 | 1206 | return xsum & 0xffff; |
2d966958 WD |
1207 | } |
1208 | ||
a3d991bd WD |
1209 | int |
1210 | NetEthHdrSize(void) | |
1211 | { | |
1212 | ushort myvlanid; | |
2d966958 | 1213 | |
a3d991bd WD |
1214 | myvlanid = ntohs(NetOurVLAN); |
1215 | if (myvlanid == (ushort)-1) | |
1216 | myvlanid = VLAN_NONE; | |
1217 | ||
3e38e429 LC |
1218 | return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE : |
1219 | VLAN_ETHER_HDR_SIZE; | |
a3d991bd WD |
1220 | } |
1221 | ||
1222 | int | |
db288a96 | 1223 | NetSetEther(uchar *xet, uchar * addr, uint prot) |
2d966958 | 1224 | { |
cb487f56 | 1225 | struct ethernet_hdr *et = (struct ethernet_hdr *)xet; |
a3d991bd WD |
1226 | ushort myvlanid; |
1227 | ||
1228 | myvlanid = ntohs(NetOurVLAN); | |
1229 | if (myvlanid == (ushort)-1) | |
1230 | myvlanid = VLAN_NONE; | |
2d966958 | 1231 | |
4f63acd0 LC |
1232 | memcpy(et->et_dest, addr, 6); |
1233 | memcpy(et->et_src, NetOurEther, 6); | |
a3d991bd | 1234 | if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) { |
c819abee | 1235 | et->et_protlen = htons(prot); |
a3d991bd WD |
1236 | return ETHER_HDR_SIZE; |
1237 | } else { | |
c68cca35 JH |
1238 | struct vlan_ethernet_hdr *vet = |
1239 | (struct vlan_ethernet_hdr *)xet; | |
2d966958 | 1240 | |
a3d991bd WD |
1241 | vet->vet_vlan_type = htons(PROT_VLAN); |
1242 | vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK)); | |
1243 | vet->vet_type = htons(prot); | |
1244 | return VLAN_ETHER_HDR_SIZE; | |
1245 | } | |
1246 | } | |
2d966958 | 1247 | |
594c26f8 | 1248 | void NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len) |
2d966958 | 1249 | { |
594c26f8 | 1250 | struct ip_udp_hdr *ip = (struct ip_udp_hdr *)xip; |
2d966958 WD |
1251 | |
1252 | /* | |
1253 | * If the data is an odd number of bytes, zero the | |
1254 | * byte after the last byte so that the checksum | |
1255 | * will work. | |
1256 | */ | |
1257 | if (len & 1) | |
594c26f8 | 1258 | xip[IP_UDP_HDR_SIZE + len] = 0; |
2d966958 WD |
1259 | |
1260 | /* | |
1261 | * Construct an IP and UDP header. | |
6e592385 | 1262 | * (need to set no fragment bit - XXX) |
2d966958 | 1263 | */ |
3e38e429 LC |
1264 | /* IP_HDR_SIZE / 4 (not including UDP) */ |
1265 | ip->ip_hl_v = 0x45; | |
2d966958 | 1266 | ip->ip_tos = 0; |
594c26f8 | 1267 | ip->ip_len = htons(IP_UDP_HDR_SIZE + len); |
2d966958 | 1268 | ip->ip_id = htons(NetIPID++); |
e0c07b86 | 1269 | ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */ |
2d966958 WD |
1270 | ip->ip_ttl = 255; |
1271 | ip->ip_p = 17; /* UDP */ | |
1272 | ip->ip_sum = 0; | |
3e38e429 | 1273 | /* already in network byte order */ |
6b147d11 | 1274 | NetCopyIP((void *)&ip->ip_src, &NetOurIP); |
3e38e429 | 1275 | /* - "" - */ |
6b147d11 | 1276 | NetCopyIP((void *)&ip->ip_dst, &dest); |
2d966958 WD |
1277 | ip->udp_src = htons(sport); |
1278 | ip->udp_dst = htons(dport); | |
594c26f8 | 1279 | ip->udp_len = htons(UDP_HDR_SIZE + len); |
2d966958 | 1280 | ip->udp_xsum = 0; |
c5c59df0 | 1281 | ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE / 2); |
2d966958 WD |
1282 | } |
1283 | ||
4f63acd0 | 1284 | void copy_filename(char *dst, const char *src, int size) |
2d966958 WD |
1285 | { |
1286 | if (*src && (*src == '"')) { | |
1287 | ++src; | |
1288 | --size; | |
1289 | } | |
1290 | ||
d3c65b01 | 1291 | while ((--size > 0) && *src && (*src != '"')) |
2d966958 | 1292 | *dst++ = *src++; |
2d966958 WD |
1293 | *dst = '\0'; |
1294 | } | |
1295 | ||
3e38e429 LC |
1296 | #if defined(CONFIG_CMD_NFS) || \ |
1297 | defined(CONFIG_CMD_SNTP) || \ | |
1298 | defined(CONFIG_CMD_DNS) | |
1a32bf41 | 1299 | /* |
9739946c RG |
1300 | * make port a little random (1024-17407) |
1301 | * This keeps the math somewhat trivial to compute, and seems to work with | |
1302 | * all supported protocols/clients/servers | |
1a32bf41 RG |
1303 | */ |
1304 | unsigned int random_port(void) | |
1305 | { | |
9739946c | 1306 | return 1024 + (get_timer(0) % 0x4000); |
1a32bf41 RG |
1307 | } |
1308 | #endif | |
1309 | ||
4f63acd0 | 1310 | void ip_to_string(IPaddr_t x, char *s) |
2d966958 | 1311 | { |
4f63acd0 LC |
1312 | x = ntohl(x); |
1313 | sprintf(s, "%d.%d.%d.%d", | |
1314 | (int) ((x >> 24) & 0xff), | |
1315 | (int) ((x >> 16) & 0xff), | |
1316 | (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff) | |
6e592385 | 1317 | ); |
2d966958 WD |
1318 | } |
1319 | ||
a3d991bd WD |
1320 | void VLAN_to_string(ushort x, char *s) |
1321 | { | |
1322 | x = ntohs(x); | |
1323 | ||
1324 | if (x == (ushort)-1) | |
1325 | x = VLAN_NONE; | |
1326 | ||
1327 | if (x == VLAN_NONE) | |
1328 | strcpy(s, "none"); | |
1329 | else | |
1330 | sprintf(s, "%d", x & VLAN_IDMASK); | |
1331 | } | |
1332 | ||
2e3ef6e4 | 1333 | ushort string_to_VLAN(const char *s) |
a3d991bd WD |
1334 | { |
1335 | ushort id; | |
1336 | ||
1337 | if (s == NULL) | |
b9711de1 | 1338 | return htons(VLAN_NONE); |
a3d991bd WD |
1339 | |
1340 | if (*s < '0' || *s > '9') | |
1341 | id = VLAN_NONE; | |
1342 | else | |
1343 | id = (ushort)simple_strtoul(s, NULL, 10); | |
1344 | ||
b9711de1 | 1345 | return htons(id); |
a3d991bd WD |
1346 | } |
1347 | ||
a3d991bd WD |
1348 | ushort getenv_VLAN(char *var) |
1349 | { | |
92895de9 | 1350 | return string_to_VLAN(getenv(var)); |
a3d991bd | 1351 | } |