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