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