x86: minnowmax: Adjust CONFIG_TEXT_BASE
[platform/kernel/u-boot.git] / net / net.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *      Copied from Linux Monitor (LiMon) - Networking.
4  *
5  *      Copyright 1994 - 2000 Neil Russell.
6  *      (See License)
7  *      Copyright 2000 Roland Borde
8  *      Copyright 2000 Paolo Scaffardi
9  *      Copyright 2000-2002 Wolfgang Denk, wd@denx.de
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  *
76  * WOL:
77  *
78  *      Prerequisites:  - own ethernet address
79  *      We want:        - magic packet or timeout
80  *      Next step:      none
81  */
82
83
84 #include <common.h>
85 #include <bootstage.h>
86 #include <command.h>
87 #include <console.h>
88 #include <env.h>
89 #include <env_internal.h>
90 #include <errno.h>
91 #include <image.h>
92 #include <log.h>
93 #include <net.h>
94 #include <net6.h>
95 #include <ndisc.h>
96 #include <net/fastboot.h>
97 #include <net/tftp.h>
98 #include <net/ncsi.h>
99 #if defined(CONFIG_CMD_PCAP)
100 #include <net/pcap.h>
101 #endif
102 #include <net/udp.h>
103 #if defined(CONFIG_LED_STATUS)
104 #include <miiphy.h>
105 #include <status_led.h>
106 #endif
107 #include <watchdog.h>
108 #include <linux/compiler.h>
109 #include "arp.h"
110 #include "bootp.h"
111 #include "cdp.h"
112 #if defined(CONFIG_CMD_DNS)
113 #include "dns.h"
114 #endif
115 #include "link_local.h"
116 #include "nfs.h"
117 #include "ping.h"
118 #include "rarp.h"
119 #if defined(CONFIG_CMD_WOL)
120 #include "wol.h"
121 #endif
122 #include <net/tcp.h>
123 #include <net/wget.h>
124
125 /** BOOTP EXTENTIONS **/
126
127 /* Our subnet mask (0=unknown) */
128 struct in_addr net_netmask;
129 /* Our gateways IP address */
130 struct in_addr net_gateway;
131 /* Our DNS IP address */
132 struct in_addr net_dns_server;
133 #if defined(CONFIG_BOOTP_DNS2)
134 /* Our 2nd DNS IP address */
135 struct in_addr net_dns_server2;
136 #endif
137
138 /** END OF BOOTP EXTENTIONS **/
139
140 /* Our ethernet address */
141 u8 net_ethaddr[6];
142 /* Boot server enet address */
143 u8 net_server_ethaddr[6];
144 /* Our IP addr (0 = unknown) */
145 struct in_addr  net_ip;
146 /* Server IP addr (0 = unknown) */
147 struct in_addr  net_server_ip;
148 /* Current receive packet */
149 uchar *net_rx_packet;
150 /* Current rx packet length */
151 int             net_rx_packet_len;
152 /* IP packet ID */
153 static unsigned net_ip_id;
154 /* Ethernet bcast address */
155 const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
156 const u8 net_null_ethaddr[6];
157 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
158 void (*push_packet)(void *, int len) = 0;
159 #endif
160 /* Network loop state */
161 enum net_loop_state net_state;
162 /* Tried all network devices */
163 int             net_restart_wrap;
164 /* Network loop restarted */
165 static int      net_restarted;
166 /* At least one device configured */
167 static int      net_dev_exists;
168
169 /* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
170 /* default is without VLAN */
171 ushort          net_our_vlan = 0xFFFF;
172 /* ditto */
173 ushort          net_native_vlan = 0xFFFF;
174
175 /* Boot File name */
176 char net_boot_file_name[1024];
177 /* Indicates whether the file name was specified on the command line */
178 bool net_boot_file_name_explicit;
179 /* The actual transferred size of the bootfile (in bytes) */
180 u32 net_boot_file_size;
181 /* Boot file size in blocks as reported by the DHCP server */
182 u32 net_boot_file_expected_size_in_blocks;
183
184 static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
185 /* Receive packets */
186 uchar *net_rx_packets[PKTBUFSRX];
187 /* Current UDP RX packet handler */
188 static rxhand_f *udp_packet_handler;
189 /* Current ARP RX packet handler */
190 static rxhand_f *arp_packet_handler;
191 #ifdef CONFIG_CMD_TFTPPUT
192 /* Current ICMP rx handler */
193 static rxhand_icmp_f *packet_icmp_handler;
194 #endif
195 /* Current timeout handler */
196 static thand_f *time_handler;
197 /* Time base value */
198 static ulong    time_start;
199 /* Current timeout value */
200 static ulong    time_delta;
201 /* THE transmit packet */
202 uchar *net_tx_packet;
203
204 static int net_check_prereq(enum proto_t protocol);
205
206 static int net_try_count;
207
208 int __maybe_unused net_busy_flag;
209
210 /**********************************************************************/
211
212 static int on_ipaddr(const char *name, const char *value, enum env_op op,
213         int flags)
214 {
215         if (flags & H_PROGRAMMATIC)
216                 return 0;
217
218         net_ip = string_to_ip(value);
219
220         return 0;
221 }
222 U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
223
224 static int on_gatewayip(const char *name, const char *value, enum env_op op,
225         int flags)
226 {
227         if (flags & H_PROGRAMMATIC)
228                 return 0;
229
230         net_gateway = string_to_ip(value);
231
232         return 0;
233 }
234 U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
235
236 static int on_netmask(const char *name, const char *value, enum env_op op,
237         int flags)
238 {
239         if (flags & H_PROGRAMMATIC)
240                 return 0;
241
242         net_netmask = string_to_ip(value);
243
244         return 0;
245 }
246 U_BOOT_ENV_CALLBACK(netmask, on_netmask);
247
248 static int on_serverip(const char *name, const char *value, enum env_op op,
249         int flags)
250 {
251         if (flags & H_PROGRAMMATIC)
252                 return 0;
253
254         net_server_ip = string_to_ip(value);
255
256         return 0;
257 }
258 U_BOOT_ENV_CALLBACK(serverip, on_serverip);
259
260 static int on_nvlan(const char *name, const char *value, enum env_op op,
261         int flags)
262 {
263         if (flags & H_PROGRAMMATIC)
264                 return 0;
265
266         net_native_vlan = string_to_vlan(value);
267
268         return 0;
269 }
270 U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
271
272 static int on_vlan(const char *name, const char *value, enum env_op op,
273         int flags)
274 {
275         if (flags & H_PROGRAMMATIC)
276                 return 0;
277
278         net_our_vlan = string_to_vlan(value);
279
280         return 0;
281 }
282 U_BOOT_ENV_CALLBACK(vlan, on_vlan);
283
284 #if defined(CONFIG_CMD_DNS)
285 static int on_dnsip(const char *name, const char *value, enum env_op op,
286         int flags)
287 {
288         if (flags & H_PROGRAMMATIC)
289                 return 0;
290
291         net_dns_server = string_to_ip(value);
292
293         return 0;
294 }
295 U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
296 #endif
297
298 /*
299  * Check if autoload is enabled. If so, use either NFS or TFTP to download
300  * the boot file.
301  */
302 void net_auto_load(void)
303 {
304 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
305         const char *s = env_get("autoload");
306
307         if (s != NULL && strcmp(s, "NFS") == 0) {
308                 if (net_check_prereq(NFS)) {
309 /* We aren't expecting to get a serverip, so just accept the assigned IP */
310                         if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
311                                 net_set_state(NETLOOP_SUCCESS);
312                         } else {
313                                 printf("Cannot autoload with NFS\n");
314                                 net_set_state(NETLOOP_FAIL);
315                         }
316                         return;
317                 }
318                 /*
319                  * Use NFS to load the bootfile.
320                  */
321                 nfs_start();
322                 return;
323         }
324 #endif
325         if (env_get_yesno("autoload") == 0) {
326                 /*
327                  * Just use BOOTP/RARP to configure system;
328                  * Do not use TFTP to load the bootfile.
329                  */
330                 net_set_state(NETLOOP_SUCCESS);
331                 return;
332         }
333         if (net_check_prereq(TFTPGET)) {
334 /* We aren't expecting to get a serverip, so just accept the assigned IP */
335                 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
336                         net_set_state(NETLOOP_SUCCESS);
337                 } else {
338                         printf("Cannot autoload with TFTPGET\n");
339                         net_set_state(NETLOOP_FAIL);
340                 }
341                 return;
342         }
343         tftp_start(TFTPGET);
344 }
345
346 static int net_init_loop(void)
347 {
348         if (eth_get_dev()) {
349                 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
350
351                 if (IS_ENABLED(CONFIG_IPV6)) {
352                         ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
353                         if (!memcmp(&net_ip6, &net_null_addr_ip6,
354                                     sizeof(struct in6_addr)))
355                                 memcpy(&net_ip6, &net_link_local_ip6,
356                                        sizeof(struct in6_addr));
357                 }
358         }
359         else
360                 /*
361                  * Not ideal, but there's no way to get the actual error, and I
362                  * don't feel like fixing all the users of eth_get_dev to deal
363                  * with errors.
364                  */
365                 return -ENONET;
366
367         return 0;
368 }
369
370 static void net_clear_handlers(void)
371 {
372         net_set_udp_handler(NULL);
373         net_set_arp_handler(NULL);
374         net_set_timeout_handler(0, NULL);
375 }
376
377 static void net_cleanup_loop(void)
378 {
379         net_clear_handlers();
380 }
381
382 int net_init(void)
383 {
384         static int first_call = 1;
385
386         if (first_call) {
387                 /*
388                  *      Setup packet buffers, aligned correctly.
389                  */
390                 int i;
391
392                 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
393                 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
394                 for (i = 0; i < PKTBUFSRX; i++) {
395                         net_rx_packets[i] = net_tx_packet +
396                                 (i + 1) * PKTSIZE_ALIGN;
397                 }
398                 arp_init();
399                 ndisc_init();
400                 net_clear_handlers();
401
402                 /* Only need to setup buffer pointers once. */
403                 first_call = 0;
404                 if (IS_ENABLED(CONFIG_PROT_TCP))
405                         tcp_set_tcp_state(TCP_CLOSED);
406         }
407
408         return net_init_loop();
409 }
410
411 /**********************************************************************/
412 /*
413  *      Main network processing loop.
414  */
415
416 int net_loop(enum proto_t protocol)
417 {
418         int ret = -EINVAL;
419         enum net_loop_state prev_net_state = net_state;
420
421 #if defined(CONFIG_CMD_PING)
422         if (protocol != PING)
423                 net_ping_ip.s_addr = 0;
424 #endif
425         net_restarted = 0;
426         net_dev_exists = 0;
427         net_try_count = 1;
428         debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
429
430 #ifdef CONFIG_PHY_NCSI
431         if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
432                 printf("%s: configuring NCSI first\n", __func__);
433                 if (net_loop(NCSI) < 0)
434                         return ret;
435                 eth_init_state_only();
436                 goto restart;
437         }
438 #endif
439
440         bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
441         net_init();
442         if (eth_is_on_demand_init()) {
443                 eth_halt();
444                 eth_set_current();
445                 ret = eth_init();
446                 if (ret < 0) {
447                         eth_halt();
448                         return ret;
449                 }
450         } else {
451                 eth_init_state_only();
452         }
453
454 restart:
455 #ifdef CONFIG_USB_KEYBOARD
456         net_busy_flag = 0;
457 #endif
458         net_set_state(NETLOOP_CONTINUE);
459
460         /*
461          *      Start the ball rolling with the given start function.  From
462          *      here on, this code is a state machine driven by received
463          *      packets and timer events.
464          */
465         debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
466         net_init_loop();
467
468         switch (net_check_prereq(protocol)) {
469         case 1:
470                 /* network not configured */
471                 eth_halt();
472                 net_set_state(prev_net_state);
473                 return -ENODEV;
474
475         case 2:
476                 /* network device not configured */
477                 break;
478
479         case 0:
480                 net_dev_exists = 1;
481                 net_boot_file_size = 0;
482                 switch (protocol) {
483 #ifdef CONFIG_CMD_TFTPBOOT
484                 case TFTPGET:
485 #ifdef CONFIG_CMD_TFTPPUT
486                 case TFTPPUT:
487 #endif
488                         /* always use ARP to get server ethernet address */
489                         tftp_start(protocol);
490                         break;
491 #endif
492 #ifdef CONFIG_CMD_TFTPSRV
493                 case TFTPSRV:
494                         tftp_start_server();
495                         break;
496 #endif
497 #ifdef CONFIG_UDP_FUNCTION_FASTBOOT
498                 case FASTBOOT:
499                         fastboot_start_server();
500                         break;
501 #endif
502 #if defined(CONFIG_CMD_DHCP)
503                 case DHCP:
504                         bootp_reset();
505                         net_ip.s_addr = 0;
506                         dhcp_request();         /* Basically same as BOOTP */
507                         break;
508 #endif
509 #if defined(CONFIG_CMD_BOOTP)
510                 case BOOTP:
511                         bootp_reset();
512                         net_ip.s_addr = 0;
513                         bootp_request();
514                         break;
515 #endif
516 #if defined(CONFIG_CMD_RARP)
517                 case RARP:
518                         rarp_try = 0;
519                         net_ip.s_addr = 0;
520                         rarp_request();
521                         break;
522 #endif
523 #if defined(CONFIG_CMD_PING)
524                 case PING:
525                         ping_start();
526                         break;
527 #endif
528 #if defined(CONFIG_CMD_PING6)
529                 case PING6:
530                         ping6_start();
531                         break;
532 #endif
533 #if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
534                 case NFS:
535                         nfs_start();
536                         break;
537 #endif
538 #if defined(CONFIG_CMD_WGET)
539                 case WGET:
540                         wget_start();
541                         break;
542 #endif
543 #if defined(CONFIG_CMD_CDP)
544                 case CDP:
545                         cdp_start();
546                         break;
547 #endif
548 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
549                 case NETCONS:
550                         nc_start();
551                         break;
552 #endif
553 #if defined(CONFIG_CMD_DNS)
554                 case DNS:
555                         dns_start();
556                         break;
557 #endif
558 #if defined(CONFIG_CMD_LINK_LOCAL)
559                 case LINKLOCAL:
560                         link_local_start();
561                         break;
562 #endif
563 #if defined(CONFIG_CMD_WOL)
564                 case WOL:
565                         wol_start();
566                         break;
567 #endif
568 #if defined(CONFIG_PHY_NCSI)
569                 case NCSI:
570                         ncsi_probe_packages();
571                         break;
572 #endif
573                 default:
574                         break;
575                 }
576
577                 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
578                         udp_start();
579
580                 break;
581         }
582
583 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
584 #if     defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN)        && \
585         defined(CONFIG_LED_STATUS)                      && \
586         defined(CONFIG_LED_STATUS_RED)
587         /*
588          * Echo the inverted link state to the fault LED.
589          */
590         if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
591                 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
592         else
593                 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
594 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
595 #endif /* CONFIG_MII, ... */
596 #ifdef CONFIG_USB_KEYBOARD
597         net_busy_flag = 1;
598 #endif
599
600         /*
601          *      Main packet reception loop.  Loop receiving packets until
602          *      someone sets `net_state' to a state that terminates.
603          */
604         for (;;) {
605                 schedule();
606                 if (arp_timeout_check() > 0)
607                         time_start = get_timer(0);
608
609                 if (IS_ENABLED(CONFIG_IPV6)) {
610                         if (use_ip6 && (ndisc_timeout_check() > 0))
611                                 time_start = get_timer(0);
612                 }
613
614                 /*
615                  *      Check the ethernet for a new packet.  The ethernet
616                  *      receive routine will process it.
617                  *      Most drivers return the most recent packet size, but not
618                  *      errors that may have happened.
619                  */
620                 eth_rx();
621
622                 /*
623                  *      Abort if ctrl-c was pressed.
624                  */
625                 if (ctrlc()) {
626                         /* cancel any ARP that may not have completed */
627                         net_arp_wait_packet_ip.s_addr = 0;
628
629                         net_cleanup_loop();
630                         eth_halt();
631                         /* Invalidate the last protocol */
632                         eth_set_last_protocol(BOOTP);
633
634                         puts("\nAbort\n");
635                         /* include a debug print as well incase the debug
636                            messages are directed to stderr */
637                         debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
638                         ret = -EINTR;
639                         goto done;
640                 }
641
642                 /*
643                  *      Check for a timeout, and run the timeout handler
644                  *      if we have one.
645                  */
646                 if (time_handler &&
647                     ((get_timer(0) - time_start) > time_delta)) {
648                         thand_f *x;
649
650 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
651 #if     defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN)        && \
652         defined(CONFIG_LED_STATUS)                      && \
653         defined(CONFIG_LED_STATUS_RED)
654                         /*
655                          * Echo the inverted link state to the fault LED.
656                          */
657                         if (miiphy_link(eth_get_dev()->name,
658                                         CONFIG_SYS_FAULT_MII_ADDR))
659                                 status_led_set(CONFIG_LED_STATUS_RED,
660                                                CONFIG_LED_STATUS_OFF);
661                         else
662                                 status_led_set(CONFIG_LED_STATUS_RED,
663                                                CONFIG_LED_STATUS_ON);
664 #endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
665 #endif /* CONFIG_MII, ... */
666                         debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
667                         x = time_handler;
668                         time_handler = (thand_f *)0;
669                         (*x)();
670                 }
671
672                 if (net_state == NETLOOP_FAIL)
673                         ret = net_start_again();
674
675                 switch (net_state) {
676                 case NETLOOP_RESTART:
677                         net_restarted = 1;
678                         goto restart;
679
680                 case NETLOOP_SUCCESS:
681                         net_cleanup_loop();
682                         if (net_boot_file_size > 0) {
683                                 printf("Bytes transferred = %d (%x hex)\n",
684                                        net_boot_file_size, net_boot_file_size);
685                                 env_set_hex("filesize", net_boot_file_size);
686                                 env_set_hex("fileaddr", image_load_addr);
687                         }
688                         if (protocol != NETCONS && protocol != NCSI)
689                                 eth_halt();
690                         else
691                                 eth_halt_state_only();
692
693                         eth_set_last_protocol(protocol);
694
695                         ret = net_boot_file_size;
696                         debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
697                         goto done;
698
699                 case NETLOOP_FAIL:
700                         net_cleanup_loop();
701                         /* Invalidate the last protocol */
702                         eth_set_last_protocol(BOOTP);
703                         debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
704                         ret = -ENONET;
705                         goto done;
706
707                 case NETLOOP_CONTINUE:
708                         continue;
709                 }
710         }
711
712 done:
713 #ifdef CONFIG_USB_KEYBOARD
714         net_busy_flag = 0;
715 #endif
716 #ifdef CONFIG_CMD_TFTPPUT
717         /* Clear out the handlers */
718         net_set_udp_handler(NULL);
719         net_set_icmp_handler(NULL);
720 #endif
721         net_set_state(prev_net_state);
722
723 #if defined(CONFIG_CMD_PCAP)
724         if (pcap_active())
725                 pcap_print_status();
726 #endif
727         return ret;
728 }
729
730 /**********************************************************************/
731
732 static void start_again_timeout_handler(void)
733 {
734         net_set_state(NETLOOP_RESTART);
735 }
736
737 int net_start_again(void)
738 {
739         char *nretry;
740         int retry_forever = 0;
741         unsigned long retrycnt = 0;
742         int ret;
743
744         nretry = env_get("netretry");
745         if (nretry) {
746                 if (!strcmp(nretry, "yes"))
747                         retry_forever = 1;
748                 else if (!strcmp(nretry, "no"))
749                         retrycnt = 0;
750                 else if (!strcmp(nretry, "once"))
751                         retrycnt = 1;
752                 else
753                         retrycnt = simple_strtoul(nretry, NULL, 0);
754         } else {
755                 retrycnt = 0;
756                 retry_forever = 0;
757         }
758
759         if ((!retry_forever) && (net_try_count > retrycnt)) {
760                 eth_halt();
761                 net_set_state(NETLOOP_FAIL);
762                 /*
763                  * We don't provide a way for the protocol to return an error,
764                  * but this is almost always the reason.
765                  */
766                 return -ETIMEDOUT;
767         }
768
769         net_try_count++;
770
771         eth_halt();
772 #if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
773         eth_try_another(!net_restarted);
774 #endif
775         ret = eth_init();
776         if (net_restart_wrap) {
777                 net_restart_wrap = 0;
778                 if (net_dev_exists) {
779                         net_set_timeout_handler(10000UL,
780                                                 start_again_timeout_handler);
781                         net_set_udp_handler(NULL);
782                 } else {
783                         net_set_state(NETLOOP_FAIL);
784                 }
785         } else {
786                 net_set_state(NETLOOP_RESTART);
787         }
788         return ret;
789 }
790
791 /**********************************************************************/
792 /*
793  *      Miscelaneous bits.
794  */
795
796 static void dummy_handler(uchar *pkt, unsigned dport,
797                         struct in_addr sip, unsigned sport,
798                         unsigned len)
799 {
800 }
801
802 rxhand_f *net_get_udp_handler(void)
803 {
804         return udp_packet_handler;
805 }
806
807 void net_set_udp_handler(rxhand_f *f)
808 {
809         debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
810         if (f == NULL)
811                 udp_packet_handler = dummy_handler;
812         else
813                 udp_packet_handler = f;
814 }
815
816 rxhand_f *net_get_arp_handler(void)
817 {
818         return arp_packet_handler;
819 }
820
821 void net_set_arp_handler(rxhand_f *f)
822 {
823         debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
824         if (f == NULL)
825                 arp_packet_handler = dummy_handler;
826         else
827                 arp_packet_handler = f;
828 }
829
830 #ifdef CONFIG_CMD_TFTPPUT
831 void net_set_icmp_handler(rxhand_icmp_f *f)
832 {
833         packet_icmp_handler = f;
834 }
835 #endif
836
837 void net_set_timeout_handler(ulong iv, thand_f *f)
838 {
839         if (iv == 0) {
840                 debug_cond(DEBUG_INT_STATE,
841                            "--- net_loop timeout handler cancelled\n");
842                 time_handler = (thand_f *)0;
843         } else {
844                 debug_cond(DEBUG_INT_STATE,
845                            "--- net_loop timeout handler set (%p)\n", f);
846                 time_handler = f;
847                 time_start = get_timer(0);
848                 time_delta = iv * CONFIG_SYS_HZ / 1000;
849         }
850 }
851
852 uchar *net_get_async_tx_pkt_buf(void)
853 {
854         if (arp_is_waiting())
855                 return arp_tx_packet; /* If we are waiting, we already sent */
856         else
857                 return net_tx_packet;
858 }
859
860 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
861                 int payload_len)
862 {
863         return net_send_ip_packet(ether, dest, dport, sport, payload_len,
864                                   IPPROTO_UDP, 0, 0, 0);
865 }
866
867 #if defined(CONFIG_PROT_TCP)
868 int net_send_tcp_packet(int payload_len, int dport, int sport, u8 action,
869                         u32 tcp_seq_num, u32 tcp_ack_num)
870 {
871         return net_send_ip_packet(net_server_ethaddr, net_server_ip, dport,
872                                   sport, payload_len, IPPROTO_TCP, action,
873                                   tcp_seq_num, tcp_ack_num);
874 }
875 #endif
876
877 int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
878                        int payload_len, int proto, u8 action, u32 tcp_seq_num,
879                        u32 tcp_ack_num)
880 {
881         uchar *pkt;
882         int eth_hdr_size;
883         int pkt_hdr_size;
884
885         /* make sure the net_tx_packet is initialized (net_init() was called) */
886         assert(net_tx_packet != NULL);
887         if (net_tx_packet == NULL)
888                 return -1;
889
890         /* convert to new style broadcast */
891         if (dest.s_addr == 0)
892                 dest.s_addr = 0xFFFFFFFF;
893
894         /* if broadcast, make the ether address a broadcast and don't do ARP */
895         if (dest.s_addr == 0xFFFFFFFF)
896                 ether = (uchar *)net_bcast_ethaddr;
897
898         pkt = (uchar *)net_tx_packet;
899
900         eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
901
902         switch (proto) {
903         case IPPROTO_UDP:
904                 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
905                                    payload_len);
906                 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
907                 break;
908 #if defined(CONFIG_PROT_TCP)
909         case IPPROTO_TCP:
910                 pkt_hdr_size = eth_hdr_size
911                         + tcp_set_tcp_header(pkt + eth_hdr_size, dport, sport,
912                                              payload_len, action, tcp_seq_num,
913                                              tcp_ack_num);
914                 break;
915 #endif
916         default:
917                 return -EINVAL;
918         }
919
920         /* if MAC address was not discovered yet, do an ARP request */
921         if (memcmp(ether, net_null_ethaddr, 6) == 0) {
922                 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
923
924                 /* save the ip and eth addr for the packet to send after arp */
925                 net_arp_wait_packet_ip = dest;
926                 arp_wait_packet_ethaddr = ether;
927
928                 /* size of the waiting packet */
929                 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
930
931                 /* and do the ARP request */
932                 arp_wait_try = 1;
933                 arp_wait_timer_start = get_timer(0);
934                 arp_request();
935                 return 1;       /* waiting */
936         } else {
937                 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
938                            &dest, ether);
939                 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
940                 return 0;       /* transmitted */
941         }
942 }
943
944 #ifdef CONFIG_IP_DEFRAG
945 /*
946  * This function collects fragments in a single packet, according
947  * to the algorithm in RFC815. It returns NULL or the pointer to
948  * a complete packet, in static storage
949  */
950 #define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
951
952 #define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
953
954 /*
955  * this is the packet being assembled, either data or frag control.
956  * Fragments go by 8 bytes, so this union must be 8 bytes long
957  */
958 struct hole {
959         /* first_byte is address of this structure */
960         u16 last_byte;  /* last byte in this hole + 1 (begin of next hole) */
961         u16 next_hole;  /* index of next (in 8-b blocks), 0 == none */
962         u16 prev_hole;  /* index of prev, 0 == none */
963         u16 unused;
964 };
965
966 static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
967 {
968         static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
969         static u16 first_hole, total_len;
970         struct hole *payload, *thisfrag, *h, *newh;
971         struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
972         uchar *indata = (uchar *)ip;
973         int offset8, start, len, done = 0;
974         u16 ip_off = ntohs(ip->ip_off);
975
976         /*
977          * Calling code already rejected <, but we don't have to deal
978          * with an IP fragment with no payload.
979          */
980         if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
981                 return NULL;
982
983         /* payload starts after IP header, this fragment is in there */
984         payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
985         offset8 =  (ip_off & IP_OFFS);
986         thisfrag = payload + offset8;
987         start = offset8 * 8;
988         len = ntohs(ip->ip_len) - IP_HDR_SIZE;
989
990         /* All but last fragment must have a multiple-of-8 payload. */
991         if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
992                 return NULL;
993
994         if (start + len > IP_MAXUDP) /* fragment extends too far */
995                 return NULL;
996
997         if (!total_len || localip->ip_id != ip->ip_id) {
998                 /* new (or different) packet, reset structs */
999                 total_len = 0xffff;
1000                 payload[0].last_byte = ~0;
1001                 payload[0].next_hole = 0;
1002                 payload[0].prev_hole = 0;
1003                 first_hole = 0;
1004                 /* any IP header will work, copy the first we received */
1005                 memcpy(localip, ip, IP_HDR_SIZE);
1006         }
1007
1008         /*
1009          * What follows is the reassembly algorithm. We use the payload
1010          * array as a linked list of hole descriptors, as each hole starts
1011          * at a multiple of 8 bytes. However, last byte can be whatever value,
1012          * so it is represented as byte count, not as 8-byte blocks.
1013          */
1014
1015         h = payload + first_hole;
1016         while (h->last_byte < start) {
1017                 if (!h->next_hole) {
1018                         /* no hole that far away */
1019                         return NULL;
1020                 }
1021                 h = payload + h->next_hole;
1022         }
1023
1024         /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1025         if (offset8 + ((len + 7) / 8) <= h - payload) {
1026                 /* no overlap with holes (dup fragment?) */
1027                 return NULL;
1028         }
1029
1030         if (!(ip_off & IP_FLAGS_MFRAG)) {
1031                 /* no more fragmentss: truncate this (last) hole */
1032                 total_len = start + len;
1033                 h->last_byte = start + len;
1034         }
1035
1036         /*
1037          * There is some overlap: fix the hole list. This code deals
1038          * with a fragment that overlaps with two different holes
1039          * (thus being a superset of a previously-received fragment)
1040          * by only using the part of the fragment that fits in the
1041          * first hole.
1042          */
1043         if (h->last_byte < start + len)
1044                 len = h->last_byte - start;
1045
1046         if ((h >= thisfrag) && (h->last_byte <= start + len)) {
1047                 /* complete overlap with hole: remove hole */
1048                 if (!h->prev_hole && !h->next_hole) {
1049                         /* last remaining hole */
1050                         done = 1;
1051                 } else if (!h->prev_hole) {
1052                         /* first hole */
1053                         first_hole = h->next_hole;
1054                         payload[h->next_hole].prev_hole = 0;
1055                 } else if (!h->next_hole) {
1056                         /* last hole */
1057                         payload[h->prev_hole].next_hole = 0;
1058                 } else {
1059                         /* in the middle of the list */
1060                         payload[h->next_hole].prev_hole = h->prev_hole;
1061                         payload[h->prev_hole].next_hole = h->next_hole;
1062                 }
1063
1064         } else if (h->last_byte <= start + len) {
1065                 /* overlaps with final part of the hole: shorten this hole */
1066                 h->last_byte = start;
1067
1068         } else if (h >= thisfrag) {
1069                 /* overlaps with initial part of the hole: move this hole */
1070                 newh = thisfrag + (len / 8);
1071                 *newh = *h;
1072                 h = newh;
1073                 if (h->next_hole)
1074                         payload[h->next_hole].prev_hole = (h - payload);
1075                 if (h->prev_hole)
1076                         payload[h->prev_hole].next_hole = (h - payload);
1077                 else
1078                         first_hole = (h - payload);
1079
1080         } else {
1081                 /* fragment sits in the middle: split the hole */
1082                 newh = thisfrag + (len / 8);
1083                 *newh = *h;
1084                 h->last_byte = start;
1085                 h->next_hole = (newh - payload);
1086                 newh->prev_hole = (h - payload);
1087                 if (newh->next_hole)
1088                         payload[newh->next_hole].prev_hole = (newh - payload);
1089         }
1090
1091         /* finally copy this fragment and possibly return whole packet */
1092         memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
1093         if (!done)
1094                 return NULL;
1095
1096         *lenp = total_len + IP_HDR_SIZE;
1097         localip->ip_len = htons(*lenp);
1098         return localip;
1099 }
1100
1101 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1102         int *lenp)
1103 {
1104         u16 ip_off = ntohs(ip->ip_off);
1105         if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1106                 return ip; /* not a fragment */
1107         return __net_defragment(ip, lenp);
1108 }
1109
1110 #else /* !CONFIG_IP_DEFRAG */
1111
1112 static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1113         int *lenp)
1114 {
1115         u16 ip_off = ntohs(ip->ip_off);
1116         if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1117                 return ip; /* not a fragment */
1118         return NULL;
1119 }
1120 #endif
1121
1122 /**
1123  * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1124  * drop others.
1125  *
1126  * @parma ip    IP packet containing the ICMP
1127  */
1128 static void receive_icmp(struct ip_udp_hdr *ip, int len,
1129                         struct in_addr src_ip, struct ethernet_hdr *et)
1130 {
1131         struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
1132
1133         switch (icmph->type) {
1134         case ICMP_REDIRECT:
1135                 if (icmph->code != ICMP_REDIR_HOST)
1136                         return;
1137                 printf(" ICMP Host Redirect to %pI4 ",
1138                        &icmph->un.gateway);
1139                 break;
1140         default:
1141 #if defined(CONFIG_CMD_PING)
1142                 ping_receive(et, ip, len);
1143 #endif
1144 #ifdef CONFIG_CMD_TFTPPUT
1145                 if (packet_icmp_handler)
1146                         packet_icmp_handler(icmph->type, icmph->code,
1147                                             ntohs(ip->udp_dst), src_ip,
1148                                             ntohs(ip->udp_src), icmph->un.data,
1149                                             ntohs(ip->udp_len));
1150 #endif
1151                 break;
1152         }
1153 }
1154
1155 void net_process_received_packet(uchar *in_packet, int len)
1156 {
1157         struct ethernet_hdr *et;
1158         struct ip_udp_hdr *ip;
1159         struct in_addr dst_ip;
1160         struct in_addr src_ip;
1161         int eth_proto;
1162 #if defined(CONFIG_CMD_CDP)
1163         int iscdp;
1164 #endif
1165         ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
1166
1167         debug_cond(DEBUG_NET_PKT, "packet received\n");
1168
1169 #if defined(CONFIG_CMD_PCAP)
1170         pcap_post(in_packet, len, false);
1171 #endif
1172         net_rx_packet = in_packet;
1173         net_rx_packet_len = len;
1174         et = (struct ethernet_hdr *)in_packet;
1175
1176         /* too small packet? */
1177         if (len < ETHER_HDR_SIZE)
1178                 return;
1179
1180 #if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
1181         if (push_packet) {
1182                 (*push_packet)(in_packet, len);
1183                 return;
1184         }
1185 #endif
1186
1187 #if defined(CONFIG_CMD_CDP)
1188         /* keep track if packet is CDP */
1189         iscdp = is_cdp_packet(et->et_dest);
1190 #endif
1191
1192         myvlanid = ntohs(net_our_vlan);
1193         if (myvlanid == (ushort)-1)
1194                 myvlanid = VLAN_NONE;
1195         mynvlanid = ntohs(net_native_vlan);
1196         if (mynvlanid == (ushort)-1)
1197                 mynvlanid = VLAN_NONE;
1198
1199         eth_proto = ntohs(et->et_protlen);
1200
1201         if (eth_proto < 1514) {
1202                 struct e802_hdr *et802 = (struct e802_hdr *)et;
1203                 /*
1204                  *      Got a 802.2 packet.  Check the other protocol field.
1205                  *      XXX VLAN over 802.2+SNAP not implemented!
1206                  */
1207                 eth_proto = ntohs(et802->et_prot);
1208
1209                 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
1210                 len -= E802_HDR_SIZE;
1211
1212         } else if (eth_proto != PROT_VLAN) {    /* normal packet */
1213                 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
1214                 len -= ETHER_HDR_SIZE;
1215
1216         } else {                        /* VLAN packet */
1217                 struct vlan_ethernet_hdr *vet =
1218                         (struct vlan_ethernet_hdr *)et;
1219
1220                 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
1221
1222                 /* too small packet? */
1223                 if (len < VLAN_ETHER_HDR_SIZE)
1224                         return;
1225
1226                 /* if no VLAN active */
1227                 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
1228 #if defined(CONFIG_CMD_CDP)
1229                                 && iscdp == 0
1230 #endif
1231                                 )
1232                         return;
1233
1234                 cti = ntohs(vet->vet_tag);
1235                 vlanid = cti & VLAN_IDMASK;
1236                 eth_proto = ntohs(vet->vet_type);
1237
1238                 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
1239                 len -= VLAN_ETHER_HDR_SIZE;
1240         }
1241
1242         debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
1243
1244 #if defined(CONFIG_CMD_CDP)
1245         if (iscdp) {
1246                 cdp_receive((uchar *)ip, len);
1247                 return;
1248         }
1249 #endif
1250
1251         if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1252                 if (vlanid == VLAN_NONE)
1253                         vlanid = (mynvlanid & VLAN_IDMASK);
1254                 /* not matched? */
1255                 if (vlanid != (myvlanid & VLAN_IDMASK))
1256                         return;
1257         }
1258
1259         switch (eth_proto) {
1260         case PROT_ARP:
1261                 arp_receive(et, ip, len);
1262                 break;
1263
1264 #ifdef CONFIG_CMD_RARP
1265         case PROT_RARP:
1266                 rarp_receive(ip, len);
1267                 break;
1268 #endif
1269 #if IS_ENABLED(CONFIG_IPV6)
1270         case PROT_IP6:
1271                 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
1272 #endif
1273         case PROT_IP:
1274                 debug_cond(DEBUG_NET_PKT, "Got IP\n");
1275                 /* Before we start poking the header, make sure it is there */
1276                 if (len < IP_HDR_SIZE) {
1277                         debug("len bad %d < %lu\n", len,
1278                               (ulong)IP_HDR_SIZE);
1279                         return;
1280                 }
1281                 /* Check the packet length */
1282                 if (len < ntohs(ip->ip_len)) {
1283                         debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
1284                         return;
1285                 }
1286                 len = ntohs(ip->ip_len);
1287                 if (len < IP_HDR_SIZE) {
1288                         debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1289                         return;
1290                 }
1291                 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1292                            len, ip->ip_hl_v & 0xff);
1293
1294                 /* Can't deal with anything except IPv4 */
1295                 if ((ip->ip_hl_v & 0xf0) != 0x40)
1296                         return;
1297                 /* Can't deal with IP options (headers != 20 bytes) */
1298                 if ((ip->ip_hl_v & 0x0f) != 0x05)
1299                         return;
1300                 /* Check the Checksum of the header */
1301                 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
1302                         debug("checksum bad\n");
1303                         return;
1304                 }
1305                 /* If it is not for us, ignore it */
1306                 dst_ip = net_read_ip(&ip->ip_dst);
1307                 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1308                     dst_ip.s_addr != 0xFFFFFFFF) {
1309                                 return;
1310                 }
1311                 /* Read source IP address for later use */
1312                 src_ip = net_read_ip(&ip->ip_src);
1313                 /*
1314                  * The function returns the unchanged packet if it's not
1315                  * a fragment, and either the complete packet or NULL if
1316                  * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1317                  */
1318                 ip = net_defragment(ip, &len);
1319                 if (!ip)
1320                         return;
1321                 /*
1322                  * watch for ICMP host redirects
1323                  *
1324                  * There is no real handler code (yet). We just watch
1325                  * for ICMP host redirect messages. In case anybody
1326                  * sees these messages: please contact me
1327                  * (wd@denx.de), or - even better - send me the
1328                  * necessary fixes :-)
1329                  *
1330                  * Note: in all cases where I have seen this so far
1331                  * it was a problem with the router configuration,
1332                  * for instance when a router was configured in the
1333                  * BOOTP reply, but the TFTP server was on the same
1334                  * subnet. So this is probably a warning that your
1335                  * configuration might be wrong. But I'm not really
1336                  * sure if there aren't any other situations.
1337                  *
1338                  * Simon Glass <sjg@chromium.org>: We get an ICMP when
1339                  * we send a tftp packet to a dead connection, or when
1340                  * there is no server at the other end.
1341                  */
1342                 if (ip->ip_p == IPPROTO_ICMP) {
1343                         receive_icmp(ip, len, src_ip, et);
1344                         return;
1345 #if defined(CONFIG_PROT_TCP)
1346                 } else if (ip->ip_p == IPPROTO_TCP) {
1347                         debug_cond(DEBUG_DEV_PKT,
1348                                    "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1349                                    &dst_ip, &src_ip, len);
1350
1351                         rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1352                         return;
1353 #endif
1354                 } else if (ip->ip_p != IPPROTO_UDP) {   /* Only UDP packets */
1355                         return;
1356                 }
1357
1358                 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
1359                         return;
1360
1361                 debug_cond(DEBUG_DEV_PKT,
1362                            "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1363                            &dst_ip, &src_ip, len);
1364
1365                 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
1366                         ulong   xsum;
1367                         u8 *sumptr;
1368                         ushort  sumlen;
1369
1370                         xsum  = ip->ip_p;
1371                         xsum += (ntohs(ip->udp_len));
1372                         xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1373                         xsum += (ntohl(ip->ip_src.s_addr) >>  0) & 0x0000ffff;
1374                         xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1375                         xsum += (ntohl(ip->ip_dst.s_addr) >>  0) & 0x0000ffff;
1376
1377                         sumlen = ntohs(ip->udp_len);
1378                         sumptr = (u8 *)&ip->udp_src;
1379
1380                         while (sumlen > 1) {
1381                                 /* inlined ntohs() to avoid alignment errors */
1382                                 xsum += (sumptr[0] << 8) + sumptr[1];
1383                                 sumptr += 2;
1384                                 sumlen -= 2;
1385                         }
1386                         if (sumlen > 0)
1387                                 xsum += (sumptr[0] << 8) + sumptr[0];
1388                         while ((xsum >> 16) != 0) {
1389                                 xsum = (xsum & 0x0000ffff) +
1390                                        ((xsum >> 16) & 0x0000ffff);
1391                         }
1392                         if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
1393                                 printf(" UDP wrong checksum %08lx %08x\n",
1394                                        xsum, ntohs(ip->udp_xsum));
1395                                 return;
1396                         }
1397                 }
1398
1399 #if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
1400                 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1401                                 src_ip,
1402                                 ntohs(ip->udp_dst),
1403                                 ntohs(ip->udp_src),
1404                                 ntohs(ip->udp_len) - UDP_HDR_SIZE);
1405 #endif
1406                 /*
1407                  * IP header OK.  Pass the packet to the current handler.
1408                  */
1409                 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1410                                       ntohs(ip->udp_dst),
1411                                       src_ip,
1412                                       ntohs(ip->udp_src),
1413                                       ntohs(ip->udp_len) - UDP_HDR_SIZE);
1414                 break;
1415 #ifdef CONFIG_CMD_WOL
1416         case PROT_WOL:
1417                 wol_receive(ip, len);
1418                 break;
1419 #endif
1420 #ifdef CONFIG_PHY_NCSI
1421         case PROT_NCSI:
1422                 ncsi_receive(et, ip, len);
1423                 break;
1424 #endif
1425         }
1426 }
1427
1428 /**********************************************************************/
1429
1430 static int net_check_prereq(enum proto_t protocol)
1431 {
1432         switch (protocol) {
1433                 /* Fall through */
1434 #if defined(CONFIG_CMD_PING)
1435         case PING:
1436                 if (net_ping_ip.s_addr == 0) {
1437                         puts("*** ERROR: ping address not given\n");
1438                         return 1;
1439                 }
1440                 goto common;
1441 #endif
1442 #if defined(CONFIG_CMD_PING6)
1443         case PING6:
1444                 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1445                         puts("*** ERROR: ping address not given\n");
1446                         return 1;
1447                 }
1448                 goto common;
1449 #endif
1450 #if defined(CONFIG_CMD_DNS)
1451         case DNS:
1452                 if (net_dns_server.s_addr == 0) {
1453                         puts("*** ERROR: DNS server address not given\n");
1454                         return 1;
1455                 }
1456                 goto common;
1457 #endif
1458 #if defined(CONFIG_PROT_UDP)
1459         case UDP:
1460                 if (udp_prereq())
1461                         return 1;
1462                 goto common;
1463 #endif
1464
1465 #if defined(CONFIG_CMD_NFS)
1466         case NFS:
1467 #endif
1468                 /* Fall through */
1469         case TFTPGET:
1470         case TFTPPUT:
1471                 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1472                         if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1473                                     sizeof(struct in6_addr)) &&
1474                                     !strchr(net_boot_file_name, '[')) {
1475                                 puts("*** ERROR: `serverip6' not set\n");
1476                                 return 1;
1477                         }
1478                 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
1479                         puts("*** ERROR: `serverip' not set\n");
1480                         return 1;
1481                 }
1482 #if     defined(CONFIG_CMD_PING) || \
1483         defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
1484 common:
1485 #endif
1486                 /* Fall through */
1487
1488         case NETCONS:
1489         case FASTBOOT:
1490         case TFTPSRV:
1491                 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1492                         if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1493                                     sizeof(struct in6_addr))) {
1494                                 puts("*** ERROR: `ip6addr` not set\n");
1495                                 return 1;
1496                         }
1497                 } else if (net_ip.s_addr == 0) {
1498                         puts("*** ERROR: `ipaddr' not set\n");
1499                         return 1;
1500                 }
1501                 /* Fall through */
1502
1503 #ifdef CONFIG_CMD_RARP
1504         case RARP:
1505 #endif
1506 #ifdef CONFIG_PHY_NCSI
1507         case NCSI:
1508 #endif
1509         case BOOTP:
1510         case CDP:
1511         case DHCP:
1512         case LINKLOCAL:
1513                 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
1514                         int num = eth_get_dev_index();
1515
1516                         switch (num) {
1517                         case -1:
1518                                 puts("*** ERROR: No ethernet found.\n");
1519                                 return 1;
1520                         case 0:
1521                                 puts("*** ERROR: `ethaddr' not set\n");
1522                                 break;
1523                         default:
1524                                 printf("*** ERROR: `eth%daddr' not set\n",
1525                                        num);
1526                                 break;
1527                         }
1528
1529                         net_start_again();
1530                         return 2;
1531                 }
1532                 /* Fall through */
1533         default:
1534                 return 0;
1535         }
1536         return 0;               /* OK */
1537 }
1538 /**********************************************************************/
1539
1540 int
1541 net_eth_hdr_size(void)
1542 {
1543         ushort myvlanid;
1544
1545         myvlanid = ntohs(net_our_vlan);
1546         if (myvlanid == (ushort)-1)
1547                 myvlanid = VLAN_NONE;
1548
1549         return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1550                 VLAN_ETHER_HDR_SIZE;
1551 }
1552
1553 int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
1554 {
1555         struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
1556         ushort myvlanid;
1557
1558         myvlanid = ntohs(net_our_vlan);
1559         if (myvlanid == (ushort)-1)
1560                 myvlanid = VLAN_NONE;
1561
1562         memcpy(et->et_dest, dest_ethaddr, 6);
1563         memcpy(et->et_src, net_ethaddr, 6);
1564         if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
1565                 et->et_protlen = htons(prot);
1566                 return ETHER_HDR_SIZE;
1567         } else {
1568                 struct vlan_ethernet_hdr *vet =
1569                         (struct vlan_ethernet_hdr *)xet;
1570
1571                 vet->vet_vlan_type = htons(PROT_VLAN);
1572                 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1573                 vet->vet_type = htons(prot);
1574                 return VLAN_ETHER_HDR_SIZE;
1575         }
1576 }
1577
1578 int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1579 {
1580         ushort protlen;
1581
1582         memcpy(et->et_dest, addr, 6);
1583         memcpy(et->et_src, net_ethaddr, 6);
1584         protlen = ntohs(et->et_protlen);
1585         if (protlen == PROT_VLAN) {
1586                 struct vlan_ethernet_hdr *vet =
1587                         (struct vlan_ethernet_hdr *)et;
1588                 vet->vet_type = htons(prot);
1589                 return VLAN_ETHER_HDR_SIZE;
1590         } else if (protlen > 1514) {
1591                 et->et_protlen = htons(prot);
1592                 return ETHER_HDR_SIZE;
1593         } else {
1594                 /* 802.2 + SNAP */
1595                 struct e802_hdr *et802 = (struct e802_hdr *)et;
1596                 et802->et_prot = htons(prot);
1597                 return E802_HDR_SIZE;
1598         }
1599 }
1600
1601 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1602                        u16 pkt_len, u8 proto)
1603 {
1604         struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1605
1606         /*
1607          *      Construct an IP header.
1608          */
1609         /* IP_HDR_SIZE / 4 (not including UDP) */
1610         ip->ip_hl_v  = 0x45;
1611         ip->ip_tos   = 0;
1612         ip->ip_len   = htons(pkt_len);
1613         ip->ip_p     = proto;
1614         ip->ip_id    = htons(net_ip_id++);
1615         ip->ip_off   = htons(IP_FLAGS_DFRAG);   /* Don't fragment */
1616         ip->ip_ttl   = 255;
1617         ip->ip_sum   = 0;
1618         /* already in network byte order */
1619         net_copy_ip((void *)&ip->ip_src, &source);
1620         /* already in network byte order */
1621         net_copy_ip((void *)&ip->ip_dst, &dest);
1622
1623         ip->ip_sum   = compute_ip_checksum(ip, IP_HDR_SIZE);
1624 }
1625
1626 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
1627                         int len)
1628 {
1629         struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1630
1631         /*
1632          *      If the data is an odd number of bytes, zero the
1633          *      byte after the last byte so that the checksum
1634          *      will work.
1635          */
1636         if (len & 1)
1637                 pkt[IP_UDP_HDR_SIZE + len] = 0;
1638
1639         net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1640                           IPPROTO_UDP);
1641
1642         ip->udp_src  = htons(sport);
1643         ip->udp_dst  = htons(dport);
1644         ip->udp_len  = htons(UDP_HDR_SIZE + len);
1645         ip->udp_xsum = 0;
1646 }
1647
1648 void copy_filename(char *dst, const char *src, int size)
1649 {
1650         if (src && *src && (*src == '"')) {
1651                 ++src;
1652                 --size;
1653         }
1654
1655         while ((--size > 0) && src && *src && (*src != '"'))
1656                 *dst++ = *src++;
1657         *dst = '\0';
1658 }
1659
1660 int is_serverip_in_cmd(void)
1661 {
1662         return !!strchr(net_boot_file_name, ':');
1663 }
1664
1665 int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1666 {
1667         char *colon;
1668         struct in_addr ip;
1669         ip.s_addr = 0;
1670
1671         if (net_boot_file_name[0] == '\0')
1672                 return 0;
1673
1674         colon = strchr(net_boot_file_name, ':');
1675         if (colon) {
1676                 ip = string_to_ip(net_boot_file_name);
1677                 if (ipaddr && ip.s_addr)
1678                         *ipaddr = ip;
1679         }
1680         if (ip.s_addr) {
1681                 strncpy(filename, colon + 1, max_len);
1682         } else {
1683                 strncpy(filename, net_boot_file_name, max_len);
1684         }
1685         filename[max_len - 1] = '\0';
1686
1687         return 1;
1688 }
1689
1690 void ip_to_string(struct in_addr x, char *s)
1691 {
1692         x.s_addr = ntohl(x.s_addr);
1693         sprintf(s, "%d.%d.%d.%d",
1694                 (int) ((x.s_addr >> 24) & 0xff),
1695                 (int) ((x.s_addr >> 16) & 0xff),
1696                 (int) ((x.s_addr >> 8) & 0xff),
1697                 (int) ((x.s_addr >> 0) & 0xff)
1698         );
1699 }
1700
1701 void vlan_to_string(ushort x, char *s)
1702 {
1703         x = ntohs(x);
1704
1705         if (x == (ushort)-1)
1706                 x = VLAN_NONE;
1707
1708         if (x == VLAN_NONE)
1709                 strcpy(s, "none");
1710         else
1711                 sprintf(s, "%d", x & VLAN_IDMASK);
1712 }
1713
1714 ushort string_to_vlan(const char *s)
1715 {
1716         ushort id;
1717
1718         if (s == NULL)
1719                 return htons(VLAN_NONE);
1720
1721         if (*s < '0' || *s > '9')
1722                 id = VLAN_NONE;
1723         else
1724                 id = (ushort)dectoul(s, NULL);
1725
1726         return htons(id);
1727 }
1728
1729 ushort env_get_vlan(char *var)
1730 {
1731         return string_to_vlan(env_get(var));
1732 }