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