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