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