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