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