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