blob: d9bc9df643f9b7e827cfe685f301a5535240bc1d [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0
wdenk2d966952002-10-31 22:12:35 +00002/*
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 *
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -070027 * LINKLOCAL:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +000028 *
29 * Prerequisites: - own ethernet address
30 * We want: - own IP address
31 * Next step: ARP
32 *
wdenk2d966952002-10-31 22:12:35 +000033 * 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 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020050 * Prerequisites: - own ethernet address
51 * We want: - IP, Netmask, ServerIP, Gateway IP
52 * - bootfilename, lease time
53 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000054 *
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
wdenkbe9c1cb2004-02-24 02:00:03 +000065 *
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
wdenkb4ad9622005-04-01 00:25:43 +000074 *
Lothar Felten776fc102018-06-22 22:29:54 +020075 *
76 * WOL:
77 *
78 * Prerequisites: - own ethernet address
79 * We want: - magic packet or timeout
80 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000081 */
82
Simon Glass1ea97892020-05-10 11:40:00 -060083#include <bootstage.h>
wdenk2d966952002-10-31 22:12:35 +000084#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070085#include <console.h>
Simon Glass313112a2019-08-01 09:46:46 -060086#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060087#include <env_internal.h>
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050088#include <errno.h>
Simon Glass85f13782019-12-28 10:45:03 -070089#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060090#include <log.h>
wdenk2d966952002-10-31 22:12:35 +000091#include <net.h>
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +030092#include <net6.h>
93#include <ndisc.h>
Dmitrii Merkurev308252d2023-04-12 19:49:30 +010094#include <net/fastboot_udp.h>
95#include <net/fastboot_tcp.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020096#include <net/tftp.h>
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +093097#include <net/ncsi.h>
Ramon Friedac598c12019-07-18 21:43:30 +030098#if defined(CONFIG_CMD_PCAP)
99#include <net/pcap.h>
100#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200101#include <net/udp.h>
Uri Mashiach4892d392017-01-19 10:51:45 +0200102#if defined(CONFIG_LED_STATUS)
wdenk49c3f672003-10-08 22:33:00 +0000103#include <miiphy.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000104#include <status_led.h>
wdenkb4ad9622005-04-01 00:25:43 +0000105#endif
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000106#include <watchdog.h>
107#include <linux/compiler.h>
Simon Glass66014cc2023-01-17 10:47:27 -0700108#include <test/test.h>
Sean Edmonde8c43832023-04-11 10:48:46 -0700109#include <net/tcp.h>
110#include <net/wget.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000111#include "arp.h"
112#include "bootp.h"
Joe Hershbergera4215b02012-05-23 07:57:59 +0000113#include "cdp.h"
Robin Getz82f0d232009-07-20 14:53:54 -0400114#if defined(CONFIG_CMD_DNS)
115#include "dns.h"
116#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000117#include "link_local.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000118#include "nfs.h"
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000119#include "ping.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000120#include "rarp.h"
Lothar Felten776fc102018-06-22 22:29:54 +0200121#if defined(CONFIG_CMD_WOL)
122#include "wol.h"
123#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700124#include "dhcpv6.h"
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700125#include "net_rand.h"
wdenk2d966952002-10-31 22:12:35 +0000126
wdenk2d966952002-10-31 22:12:35 +0000127/** BOOTP EXTENTIONS **/
128
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000129/* Our subnet mask (0=unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500130struct in_addr net_netmask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000131/* Our gateways IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500132struct in_addr net_gateway;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000133/* Our DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500134struct in_addr net_dns_server;
Jon Loeliger5336a762007-07-09 22:08:34 -0500135#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000136/* Our 2nd DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500137struct in_addr net_dns_server2;
stroesee0aadfb2003-08-28 14:17:32 +0000138#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700139/* Indicates whether the pxe path prefix / config file was specified in dhcp option */
140char *pxelinux_configfile;
wdenk2d966952002-10-31 22:12:35 +0000141
142/** END OF BOOTP EXTENTIONS **/
143
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000144/* Our ethernet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500145u8 net_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000146/* Boot server enet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500147u8 net_server_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000148/* Our IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500149struct in_addr net_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000150/* Server IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500151struct in_addr net_server_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000152/* Current receive packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500153uchar *net_rx_packet;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000154/* Current rx packet length */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500155int net_rx_packet_len;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000156/* IP packet ID */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500157static unsigned net_ip_id;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000158/* Ethernet bcast address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500159const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
160const u8 net_null_ethaddr[6];
Alexander Graf94c4b992016-05-06 21:01:01 +0200161#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500162void (*push_packet)(void *, int len) = 0;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100163#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000164/* Network loop state */
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000165enum net_loop_state net_state;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000166/* Tried all network devices */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500167int net_restart_wrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000168/* Network loop restarted */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500169static int net_restarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* At least one device configured */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500171static int net_dev_exists;
wdenk2d966952002-10-31 22:12:35 +0000172
wdenk05939202004-04-18 17:39:38 +0000173/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000174/* default is without VLAN */
Joe Hershberger013d3872015-04-08 01:41:17 -0500175ushort net_our_vlan = 0xFFFF;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000176/* ditto */
Joe Hershberger013d3872015-04-08 01:41:17 -0500177ushort net_native_vlan = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000178
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000179/* Boot File name */
Jacob Stifflerae80c2e2015-09-30 10:12:05 -0400180char net_boot_file_name[1024];
Alexander Graff43bf5d2018-06-15 10:29:27 +0200181/* Indicates whether the file name was specified on the command line */
182bool net_boot_file_name_explicit;
Joe Hershberger290c8992015-04-08 01:41:02 -0500183/* The actual transferred size of the bootfile (in bytes) */
184u32 net_boot_file_size;
185/* Boot file size in blocks as reported by the DHCP server */
186u32 net_boot_file_expected_size_in_blocks;
wdenk2d966952002-10-31 22:12:35 +0000187
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500188static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500189/* Receive packets */
190uchar *net_rx_packets[PKTBUFSRX];
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000191/* Current UDP RX packet handler */
192static rxhand_f *udp_packet_handler;
193/* Current ARP RX packet handler */
194static rxhand_f *arp_packet_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000195#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000196/* Current ICMP rx handler */
197static rxhand_icmp_f *packet_icmp_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000198#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000199/* Current timeout handler */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500200static thand_f *time_handler;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000201/* Time base value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500202static ulong time_start;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000203/* Current timeout value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500204static ulong time_delta;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000205/* THE transmit packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500206uchar *net_tx_packet;
wdenk2d966952002-10-31 22:12:35 +0000207
Simon Glassd6c5f552011-10-24 18:00:02 +0000208static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000209
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500210static int net_try_count;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100211
Jim Lin6c8921f2013-08-13 19:03:05 +0800212int __maybe_unused net_busy_flag;
213
wdenk2d966952002-10-31 22:12:35 +0000214/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000215
Joe Hershberger875b6bf2015-05-20 14:27:23 -0500216static int on_ipaddr(const char *name, const char *value, enum env_op op,
217 int flags)
218{
219 if (flags & H_PROGRAMMATIC)
220 return 0;
221
222 net_ip = string_to_ip(value);
223
224 return 0;
225}
226U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
227
228static int on_gatewayip(const char *name, const char *value, enum env_op op,
229 int flags)
230{
231 if (flags & H_PROGRAMMATIC)
232 return 0;
233
234 net_gateway = string_to_ip(value);
235
236 return 0;
237}
238U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
239
240static int on_netmask(const char *name, const char *value, enum env_op op,
241 int flags)
242{
243 if (flags & H_PROGRAMMATIC)
244 return 0;
245
246 net_netmask = string_to_ip(value);
247
248 return 0;
249}
250U_BOOT_ENV_CALLBACK(netmask, on_netmask);
251
252static int on_serverip(const char *name, const char *value, enum env_op op,
253 int flags)
254{
255 if (flags & H_PROGRAMMATIC)
256 return 0;
257
258 net_server_ip = string_to_ip(value);
259
260 return 0;
261}
262U_BOOT_ENV_CALLBACK(serverip, on_serverip);
263
264static int on_nvlan(const char *name, const char *value, enum env_op op,
265 int flags)
266{
267 if (flags & H_PROGRAMMATIC)
268 return 0;
269
270 net_native_vlan = string_to_vlan(value);
271
272 return 0;
273}
274U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
275
276static int on_vlan(const char *name, const char *value, enum env_op op,
277 int flags)
278{
279 if (flags & H_PROGRAMMATIC)
280 return 0;
281
282 net_our_vlan = string_to_vlan(value);
283
284 return 0;
285}
286U_BOOT_ENV_CALLBACK(vlan, on_vlan);
287
288#if defined(CONFIG_CMD_DNS)
289static int on_dnsip(const char *name, const char *value, enum env_op op,
290 int flags)
291{
292 if (flags & H_PROGRAMMATIC)
293 return 0;
294
295 net_dns_server = string_to_ip(value);
296
297 return 0;
298}
299U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
300#endif
301
Simon Glass5234ad12011-10-27 06:24:32 +0000302/*
303 * Check if autoload is enabled. If so, use either NFS or TFTP to download
304 * the boot file.
305 */
306void net_auto_load(void)
307{
Tom Rini57256302019-12-05 19:35:07 -0500308#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
Simon Glass64b723f2017-08-03 12:22:12 -0600309 const char *s = env_get("autoload");
Simon Glass5234ad12011-10-27 06:24:32 +0000310
Joe Hershberger864ec562012-12-11 22:16:22 -0600311 if (s != NULL && strcmp(s, "NFS") == 0) {
Joe Hershberger40aa2082018-07-03 19:36:40 -0500312 if (net_check_prereq(NFS)) {
313/* We aren't expecting to get a serverip, so just accept the assigned IP */
Simon Glass297fc202021-12-18 11:27:52 -0700314 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
315 net_set_state(NETLOOP_SUCCESS);
316 } else {
317 printf("Cannot autoload with NFS\n");
318 net_set_state(NETLOOP_FAIL);
319 }
Joe Hershberger40aa2082018-07-03 19:36:40 -0500320 return;
321 }
Joe Hershberger864ec562012-12-11 22:16:22 -0600322 /*
323 * Use NFS to load the bootfile.
324 */
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500325 nfs_start();
Joe Hershberger864ec562012-12-11 22:16:22 -0600326 return;
327 }
Simon Glass5234ad12011-10-27 06:24:32 +0000328#endif
Simon Glass22c34c22017-08-03 12:22:13 -0600329 if (env_get_yesno("autoload") == 0) {
Joe Hershberger864ec562012-12-11 22:16:22 -0600330 /*
331 * Just use BOOTP/RARP to configure system;
332 * Do not use TFTP to load the bootfile.
333 */
334 net_set_state(NETLOOP_SUCCESS);
335 return;
Simon Glass5234ad12011-10-27 06:24:32 +0000336 }
Joe Hershberger40aa2082018-07-03 19:36:40 -0500337 if (net_check_prereq(TFTPGET)) {
338/* We aren't expecting to get a serverip, so just accept the assigned IP */
Simon Glass297fc202021-12-18 11:27:52 -0700339 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
340 net_set_state(NETLOOP_SUCCESS);
341 } else {
342 printf("Cannot autoload with TFTPGET\n");
343 net_set_state(NETLOOP_FAIL);
344 }
Joe Hershberger40aa2082018-07-03 19:36:40 -0500345 return;
346 }
Joe Hershberger64701592015-04-08 01:41:07 -0500347 tftp_start(TFTPGET);
Simon Glass5234ad12011-10-27 06:24:32 +0000348}
349
Sean Anderson35e82982020-09-12 17:45:43 -0400350static int net_init_loop(void)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100351{
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700352 static bool first_call = true;
353
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300354 if (eth_get_dev()) {
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500355 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300356
357 if (IS_ENABLED(CONFIG_IPV6)) {
358 ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
359 if (!memcmp(&net_ip6, &net_null_addr_ip6,
360 sizeof(struct in6_addr)))
361 memcpy(&net_ip6, &net_link_local_ip6,
362 sizeof(struct in6_addr));
363 }
364 }
Sean Anderson35e82982020-09-12 17:45:43 -0400365 else
366 /*
367 * Not ideal, but there's no way to get the actual error, and I
368 * don't feel like fixing all the users of eth_get_dev to deal
369 * with errors.
370 */
371 return -ENONET;
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300372
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700373 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
374 if (first_call && use_ip6) {
375 first_call = false;
376 srand_mac(); /* This is for rand used in ip6_send_rs. */
377 net_loop(RS);
378 }
Sean Anderson35e82982020-09-12 17:45:43 -0400379 return 0;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100380}
381
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000382static void net_clear_handlers(void)
383{
384 net_set_udp_handler(NULL);
385 net_set_arp_handler(NULL);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500386 net_set_timeout_handler(0, NULL);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000387}
388
389static void net_cleanup_loop(void)
390{
391 net_clear_handlers();
392}
393
Sean Anderson35e82982020-09-12 17:45:43 -0400394int net_init(void)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000395{
396 static int first_call = 1;
397
398 if (first_call) {
399 /*
400 * Setup packet buffers, aligned correctly.
401 */
402 int i;
403
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500404 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
405 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500406 for (i = 0; i < PKTBUFSRX; i++) {
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500407 net_rx_packets[i] = net_tx_packet +
408 (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500409 }
Joe Hershberger85ae7762015-04-08 01:41:08 -0500410 arp_init();
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300411 ndisc_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000412 net_clear_handlers();
413
414 /* Only need to setup buffer pointers once. */
415 first_call = 0;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800416 if (IS_ENABLED(CONFIG_PROT_TCP))
417 tcp_set_tcp_state(TCP_CLOSED);
Joe Hershberger017e5c42012-05-23 07:59:22 +0000418 }
419
Sean Anderson35e82982020-09-12 17:45:43 -0400420 return net_init_loop();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000421}
422
wdenke6466f62003-06-05 19:27:42 +0000423/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000424/*
425 * Main network processing loop.
426 */
427
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500428int net_loop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000429{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500430 int ret = -EINVAL;
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200431 enum net_loop_state prev_net_state = net_state;
wdenk2d966952002-10-31 22:12:35 +0000432
Marek Szyprowskib9df7d92020-06-15 11:15:57 +0200433#if defined(CONFIG_CMD_PING)
434 if (protocol != PING)
435 net_ping_ip.s_addr = 0;
436#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500437 net_restarted = 0;
438 net_dev_exists = 0;
439 net_try_count = 1;
440 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000441
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930442#ifdef CONFIG_PHY_NCSI
443 if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
444 printf("%s: configuring NCSI first\n", __func__);
445 if (net_loop(NCSI) < 0)
446 return ret;
447 eth_init_state_only();
448 goto restart;
449 }
450#endif
451
Simon Glass768cbf02011-12-10 11:08:06 +0000452 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000453 net_init();
Yang Liu7c78e2f2020-12-21 14:44:39 +1100454 if (eth_is_on_demand_init()) {
wdenkfa66e932005-04-03 14:52:59 +0000455 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000456 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500457 ret = eth_init();
458 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000459 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500460 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000461 }
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500462 } else {
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500463 eth_init_state_only();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500464 }
Samuel Mendoza-Jonasfeebd6c2022-08-08 21:46:04 +0930465
wdenk2d966952002-10-31 22:12:35 +0000466restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800467#ifdef CONFIG_USB_KEYBOARD
468 net_busy_flag = 0;
469#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000470 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000471
472 /*
473 * Start the ball rolling with the given start function. From
474 * here on, this code is a state machine driven by received
475 * packets and timer events.
476 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500477 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
478 net_init_loop();
wdenk2d966952002-10-31 22:12:35 +0000479
Simon Glass66014cc2023-01-17 10:47:27 -0700480 if (!test_eth_enabled())
481 return 0;
482
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000483 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000484 case 1:
485 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000486 eth_halt();
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200487 net_set_state(prev_net_state);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500488 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000489
wdenk2d966952002-10-31 22:12:35 +0000490 case 2:
491 /* network device not configured */
492 break;
wdenk2d966952002-10-31 22:12:35 +0000493
494 case 0:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500495 net_dev_exists = 1;
Joe Hershberger290c8992015-04-08 01:41:02 -0500496 net_boot_file_size = 0;
wdenk2d966952002-10-31 22:12:35 +0000497 switch (protocol) {
Krebs, Olafd9249382020-03-09 14:27:55 +0000498#ifdef CONFIG_CMD_TFTPBOOT
Simon Glassd6c5f552011-10-24 18:00:02 +0000499 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000500#ifdef CONFIG_CMD_TFTPPUT
501 case TFTPPUT:
502#endif
wdenk2d966952002-10-31 22:12:35 +0000503 /* always use ARP to get server ethernet address */
Joe Hershberger64701592015-04-08 01:41:07 -0500504 tftp_start(protocol);
wdenk2d966952002-10-31 22:12:35 +0000505 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000506#endif
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000507#ifdef CONFIG_CMD_TFTPSRV
508 case TFTPSRV:
Joe Hershberger64701592015-04-08 01:41:07 -0500509 tftp_start_server();
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000510 break;
511#endif
Sean Anderson8a6557d2023-10-14 16:47:51 -0400512#if CONFIG_IS_ENABLED(UDP_FUNCTION_FASTBOOT)
Dmitrii Merkurev308252d2023-04-12 19:49:30 +0100513 case FASTBOOT_UDP:
514 fastboot_udp_start_server();
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000515 break;
516#endif
Sean Anderson8a6557d2023-10-14 16:47:51 -0400517#if CONFIG_IS_ENABLED(TCP_FUNCTION_FASTBOOT)
Dmitrii Merkurev308252d2023-04-12 19:49:30 +0100518 case FASTBOOT_TCP:
519 fastboot_tcp_start_server();
520 break;
521#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500522#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000523 case DHCP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500524 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500525 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500526 dhcp_request(); /* Basically same as BOOTP */
wdenk2d966952002-10-31 22:12:35 +0000527 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500528#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700529 case DHCP6:
530 if (IS_ENABLED(CONFIG_CMD_DHCP6))
531 dhcp6_start();
532 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000533#if defined(CONFIG_CMD_BOOTP)
wdenk2d966952002-10-31 22:12:35 +0000534 case BOOTP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500535 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500536 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500537 bootp_request();
wdenk2d966952002-10-31 22:12:35 +0000538 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000539#endif
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500540#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000541 case RARP:
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500542 rarp_try = 0;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500543 net_ip.s_addr = 0;
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500544 rarp_request();
wdenk2d966952002-10-31 22:12:35 +0000545 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500546#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500547#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000548 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000549 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000550 break;
551#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +0300552#if defined(CONFIG_CMD_PING6)
553 case PING6:
554 ping6_start();
555 break;
556#endif
Tom Rini57256302019-12-05 19:35:07 -0500557#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
wdenkbe9c1cb2004-02-24 02:00:03 +0000558 case NFS:
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500559 nfs_start();
wdenkbe9c1cb2004-02-24 02:00:03 +0000560 break;
561#endif
Ying-Chun Liu (PaulLiu)cc96a1d2022-11-08 14:17:29 +0800562#if defined(CONFIG_CMD_WGET)
563 case WGET:
564 wget_start();
565 break;
566#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500567#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000568 case CDP:
Joe Hershberger527336f2015-04-08 01:41:14 -0500569 cdp_start();
wdenk145d2c12004-04-15 21:48:45 +0000570 break;
571#endif
Holger Denglerae85c072017-07-20 10:10:55 +0200572#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000573 case NETCONS:
Joe Hershbergerd02aa6b2015-04-08 01:41:16 -0500574 nc_start();
wdenkb8fb6192004-08-02 21:11:11 +0000575 break;
576#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400577#if defined(CONFIG_CMD_DNS)
578 case DNS:
Joe Hershbergerf725e342015-04-08 01:41:15 -0500579 dns_start();
Robin Getz82f0d232009-07-20 14:53:54 -0400580 break;
581#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000582#if defined(CONFIG_CMD_LINK_LOCAL)
583 case LINKLOCAL:
584 link_local_start();
585 break;
586#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200587#if defined(CONFIG_CMD_WOL)
588 case WOL:
589 wol_start();
590 break;
591#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930592#if defined(CONFIG_PHY_NCSI)
593 case NCSI:
594 ncsi_probe_packages();
595 break;
596#endif
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700597 case RS:
598 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
599 ip6_send_rs();
600 break;
wdenk2d966952002-10-31 22:12:35 +0000601 default:
602 break;
603 }
604
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200605 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
606 udp_start();
607
wdenk2d966952002-10-31 22:12:35 +0000608 break;
609 }
610
Jon Loeliger54f35c22007-07-09 17:45:14 -0500611#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000612#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200613 defined(CONFIG_LED_STATUS) && \
614 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000615 /*
wdenk9c53f402003-10-15 23:53:47 +0000616 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000617 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000618 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200619 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000620 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200621 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200622#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000623#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800624#ifdef CONFIG_USB_KEYBOARD
625 net_busy_flag = 1;
626#endif
wdenk2d966952002-10-31 22:12:35 +0000627
628 /*
629 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000630 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000631 */
632 for (;;) {
Stefan Roese80877fa2022-09-02 14:10:46 +0200633 schedule();
Joe Hershbergerd6978a42015-12-21 16:31:35 -0600634 if (arp_timeout_check() > 0)
635 time_start = get_timer(0);
636
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300637 if (IS_ENABLED(CONFIG_IPV6)) {
638 if (use_ip6 && (ndisc_timeout_check() > 0))
639 time_start = get_timer(0);
640 }
641
wdenk2d966952002-10-31 22:12:35 +0000642 /*
643 * Check the ethernet for a new packet. The ethernet
644 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500645 * Most drivers return the most recent packet size, but not
646 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000647 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200648 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000649
650 /*
651 * Abort if ctrl-c was pressed.
652 */
653 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000654 /* cancel any ARP that may not have completed */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500655 net_arp_wait_packet_ip.s_addr = 0;
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000656
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000657 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000658 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000659 /* Invalidate the last protocol */
660 eth_set_last_protocol(BOOTP);
661
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000662 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000663 /* include a debug print as well incase the debug
664 messages are directed to stderr */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500665 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
Michal Simekafd31602015-08-21 08:49:48 +0200666 ret = -EINTR;
Simon Glass230467c2011-10-24 18:00:01 +0000667 goto done;
wdenk2d966952002-10-31 22:12:35 +0000668 }
669
wdenk2d966952002-10-31 22:12:35 +0000670 /*
671 * Check for a timeout, and run the timeout handler
672 * if we have one.
673 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500674 if (time_handler &&
675 ((get_timer(0) - time_start) > time_delta)) {
wdenk2d966952002-10-31 22:12:35 +0000676 thand_f *x;
677
Jon Loeliger54f35c22007-07-09 17:45:14 -0500678#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000679#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200680 defined(CONFIG_LED_STATUS) && \
681 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000682 /*
wdenk9c53f402003-10-15 23:53:47 +0000683 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000684 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000685 if (miiphy_link(eth_get_dev()->name,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500686 CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200687 status_led_set(CONFIG_LED_STATUS_RED,
688 CONFIG_LED_STATUS_OFF);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500689 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200690 status_led_set(CONFIG_LED_STATUS_RED,
691 CONFIG_LED_STATUS_ON);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000692#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000693#endif /* CONFIG_MII, ... */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500694 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
695 x = time_handler;
696 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000697 (*x)();
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700698 } else if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
699 if (time_handler && protocol == RS)
700 if (!ip6_is_unspecified_addr(&net_gateway6) &&
701 net_prefix_length != 0) {
702 net_set_state(NETLOOP_SUCCESS);
703 net_set_timeout_handler(0, NULL);
704 }
wdenk2d966952002-10-31 22:12:35 +0000705
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500706 if (net_state == NETLOOP_FAIL)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500707 ret = net_start_again();
wdenk2d966952002-10-31 22:12:35 +0000708
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000709 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000710 case NETLOOP_RESTART:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500711 net_restarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000712 goto restart;
713
714 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000715 net_cleanup_loop();
Joe Hershberger290c8992015-04-08 01:41:02 -0500716 if (net_boot_file_size > 0) {
Siddharth Vadapallif24db5c2023-08-14 10:23:47 +0530717 printf("Bytes transferred = %u (%x hex)\n",
Joe Hershberger290c8992015-04-08 01:41:02 -0500718 net_boot_file_size, net_boot_file_size);
Simon Glass4d949a22017-08-03 12:22:10 -0600719 env_set_hex("filesize", net_boot_file_size);
Simon Glass892265d2019-12-28 10:45:02 -0700720 env_set_hex("fileaddr", image_load_addr);
wdenk2d966952002-10-31 22:12:35 +0000721 }
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930722 if (protocol != NETCONS && protocol != NCSI)
Joe Hershberger9f374062012-08-03 10:59:08 +0000723 eth_halt();
724 else
725 eth_halt_state_only();
726
727 eth_set_last_protocol(protocol);
728
Joe Hershberger290c8992015-04-08 01:41:02 -0500729 ret = net_boot_file_size;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500730 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000731 goto done;
wdenk2d966952002-10-31 22:12:35 +0000732
733 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000734 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000735 /* Invalidate the last protocol */
736 eth_set_last_protocol(BOOTP);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500737 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
Thomas RIENOESSL2dee4192018-11-21 15:56:07 +0100738 ret = -ENONET;
Simon Glass230467c2011-10-24 18:00:01 +0000739 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000740
741 case NETLOOP_CONTINUE:
742 continue;
wdenk2d966952002-10-31 22:12:35 +0000743 }
744 }
Simon Glass230467c2011-10-24 18:00:01 +0000745
746done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800747#ifdef CONFIG_USB_KEYBOARD
748 net_busy_flag = 0;
749#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000750#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000751 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000752 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000753 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000754#endif
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200755 net_set_state(prev_net_state);
Ramon Friedac598c12019-07-18 21:43:30 +0300756
757#if defined(CONFIG_CMD_PCAP)
758 if (pcap_active())
759 pcap_print_status();
760#endif
Simon Glass230467c2011-10-24 18:00:01 +0000761 return ret;
wdenk2d966952002-10-31 22:12:35 +0000762}
763
764/**********************************************************************/
765
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500766static void start_again_timeout_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000767{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000768 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000769}
770
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500771int net_start_again(void)
wdenk2d966952002-10-31 22:12:35 +0000772{
wdenk05939202004-04-18 17:39:38 +0000773 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100774 int retry_forever = 0;
775 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500776 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000777
Simon Glass64b723f2017-08-03 12:22:12 -0600778 nretry = env_get("netretry");
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100779 if (nretry) {
780 if (!strcmp(nretry, "yes"))
781 retry_forever = 1;
782 else if (!strcmp(nretry, "no"))
783 retrycnt = 0;
784 else if (!strcmp(nretry, "once"))
785 retrycnt = 1;
786 else
787 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500788 } else {
789 retrycnt = 0;
790 retry_forever = 0;
791 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100792
Leonid Iziumtsevfb7c94c2018-03-09 15:29:06 +0100793 if ((!retry_forever) && (net_try_count > retrycnt)) {
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100794 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000795 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500796 /*
797 * We don't provide a way for the protocol to return an error,
798 * but this is almost always the reason.
799 */
800 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000801 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100802
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500803 net_try_count++;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100804
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000805 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100806#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500807 eth_try_another(!net_restarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100808#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500809 ret = eth_init();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500810 if (net_restart_wrap) {
811 net_restart_wrap = 0;
812 if (net_dev_exists) {
813 net_set_timeout_handler(10000UL,
814 start_again_timeout_handler);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000815 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000816 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000817 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000818 }
wdenk05939202004-04-18 17:39:38 +0000819 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000820 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000821 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500822 return ret;
wdenk2d966952002-10-31 22:12:35 +0000823}
824
825/**********************************************************************/
826/*
827 * Miscelaneous bits.
828 */
829
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000830static void dummy_handler(uchar *pkt, unsigned dport,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500831 struct in_addr sip, unsigned sport,
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000832 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000833{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000834}
835
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000836rxhand_f *net_get_udp_handler(void)
837{
838 return udp_packet_handler;
839}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000840
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000841void net_set_udp_handler(rxhand_f *f)
842{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500843 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000844 if (f == NULL)
845 udp_packet_handler = dummy_handler;
846 else
847 udp_packet_handler = f;
848}
849
850rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000851{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000852 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000853}
854
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000855void net_set_arp_handler(rxhand_f *f)
856{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500857 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000858 if (f == NULL)
859 arp_packet_handler = dummy_handler;
860 else
861 arp_packet_handler = f;
862}
863
Simon Glass2928cd82011-10-26 14:18:38 +0000864#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000865void net_set_icmp_handler(rxhand_icmp_f *f)
866{
867 packet_icmp_handler = f;
868}
Simon Glass2928cd82011-10-26 14:18:38 +0000869#endif
wdenk2d966952002-10-31 22:12:35 +0000870
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500871void net_set_timeout_handler(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000872{
873 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000874 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500875 "--- net_loop timeout handler cancelled\n");
876 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000877 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000878 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500879 "--- net_loop timeout handler set (%p)\n", f);
880 time_handler = f;
881 time_start = get_timer(0);
882 time_delta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000883 }
884}
885
Joe Hershbergere79a5182018-09-26 16:49:02 -0500886uchar *net_get_async_tx_pkt_buf(void)
887{
888 if (arp_is_waiting())
889 return arp_tx_packet; /* If we are waiting, we already sent */
890 else
891 return net_tx_packet;
892}
893
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500894int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000895 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000896{
Duncan Haref1447c92018-06-24 15:40:41 -0700897 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
898 IPPROTO_UDP, 0, 0, 0);
899}
900
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800901#if defined(CONFIG_PROT_TCP)
902int net_send_tcp_packet(int payload_len, int dport, int sport, u8 action,
903 u32 tcp_seq_num, u32 tcp_ack_num)
904{
905 return net_send_ip_packet(net_server_ethaddr, net_server_ip, dport,
906 sport, payload_len, IPPROTO_TCP, action,
907 tcp_seq_num, tcp_ack_num);
908}
909#endif
910
Duncan Haref1447c92018-06-24 15:40:41 -0700911int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
912 int payload_len, int proto, u8 action, u32 tcp_seq_num,
913 u32 tcp_ack_num)
914{
wdenk145d2c12004-04-15 21:48:45 +0000915 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000916 int eth_hdr_size;
917 int pkt_hdr_size;
wdenk145d2c12004-04-15 21:48:45 +0000918
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500919 /* make sure the net_tx_packet is initialized (net_init() was called) */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500920 assert(net_tx_packet != NULL);
921 if (net_tx_packet == NULL)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000922 return -1;
923
wdenke6466f62003-06-05 19:27:42 +0000924 /* convert to new style broadcast */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500925 if (dest.s_addr == 0)
926 dest.s_addr = 0xFFFFFFFF;
wdenke6466f62003-06-05 19:27:42 +0000927
928 /* if broadcast, make the ether address a broadcast and don't do ARP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500929 if (dest.s_addr == 0xFFFFFFFF)
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500930 ether = (uchar *)net_bcast_ethaddr;
wdenke6466f62003-06-05 19:27:42 +0000931
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500932 pkt = (uchar *)net_tx_packet;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000933
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500934 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
Duncan Haref1447c92018-06-24 15:40:41 -0700935
936 switch (proto) {
937 case IPPROTO_UDP:
938 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
939 payload_len);
940 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
941 break;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800942#if defined(CONFIG_PROT_TCP)
943 case IPPROTO_TCP:
944 pkt_hdr_size = eth_hdr_size
945 + tcp_set_tcp_header(pkt + eth_hdr_size, dport, sport,
946 payload_len, action, tcp_seq_num,
947 tcp_ack_num);
948 break;
949#endif
Duncan Haref1447c92018-06-24 15:40:41 -0700950 default:
951 return -EINVAL;
952 }
wdenke6466f62003-06-05 19:27:42 +0000953
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000954 /* if MAC address was not discovered yet, do an ARP request */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500955 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000956 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400957
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000958 /* save the ip and eth addr for the packet to send after arp */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500959 net_arp_wait_packet_ip = dest;
Joe Hershberger85ae7762015-04-08 01:41:08 -0500960 arp_wait_packet_ethaddr = ether;
wdenk145d2c12004-04-15 21:48:45 +0000961
wdenke6466f62003-06-05 19:27:42 +0000962 /* size of the waiting packet */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500963 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000964
965 /* and do the ARP request */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500966 arp_wait_try = 1;
967 arp_wait_timer_start = get_timer(0);
968 arp_request();
wdenke6466f62003-06-05 19:27:42 +0000969 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000970 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000971 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500972 &dest, ether);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500973 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000974 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000975 }
wdenke6466f62003-06-05 19:27:42 +0000976}
wdenk145d2c12004-04-15 21:48:45 +0000977
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200978#ifdef CONFIG_IP_DEFRAG
979/*
980 * This function collects fragments in a single packet, according
981 * to the algorithm in RFC815. It returns NULL or the pointer to
982 * a complete packet, in static storage
983 */
Joe Hershberger9d390302016-08-15 14:42:15 -0500984#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200985
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000986#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200987
988/*
989 * this is the packet being assembled, either data or frag control.
990 * Fragments go by 8 bytes, so this union must be 8 bytes long
991 */
992struct hole {
993 /* first_byte is address of this structure */
994 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
995 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
996 u16 prev_hole; /* index of prev, 0 == none */
997 u16 unused;
998};
999
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001000static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001001{
Joe Hershberger77001b432012-05-15 08:59:08 +00001002 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001003 static u16 first_hole, total_len;
1004 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001005 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001006 uchar *indata = (uchar *)ip;
1007 int offset8, start, len, done = 0;
1008 u16 ip_off = ntohs(ip->ip_off);
1009
Rasmus Villemoes547e7e62022-10-14 19:43:39 +02001010 /*
1011 * Calling code already rejected <, but we don't have to deal
1012 * with an IP fragment with no payload.
1013 */
1014 if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
Fabio Estevama0aaa322022-05-26 11:14:37 -03001015 return NULL;
1016
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001017 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001018 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001019 offset8 = (ip_off & IP_OFFS);
1020 thisfrag = payload + offset8;
1021 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001022 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001023
Rasmus Villemoes547e7e62022-10-14 19:43:39 +02001024 /* All but last fragment must have a multiple-of-8 payload. */
1025 if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
1026 return NULL;
1027
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001028 if (start + len > IP_MAXUDP) /* fragment extends too far */
1029 return NULL;
1030
1031 if (!total_len || localip->ip_id != ip->ip_id) {
1032 /* new (or different) packet, reset structs */
1033 total_len = 0xffff;
1034 payload[0].last_byte = ~0;
1035 payload[0].next_hole = 0;
1036 payload[0].prev_hole = 0;
1037 first_hole = 0;
1038 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001039 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001040 }
1041
1042 /*
1043 * What follows is the reassembly algorithm. We use the payload
1044 * array as a linked list of hole descriptors, as each hole starts
1045 * at a multiple of 8 bytes. However, last byte can be whatever value,
1046 * so it is represented as byte count, not as 8-byte blocks.
1047 */
1048
1049 h = payload + first_hole;
1050 while (h->last_byte < start) {
1051 if (!h->next_hole) {
1052 /* no hole that far away */
1053 return NULL;
1054 }
1055 h = payload + h->next_hole;
1056 }
1057
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001058 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1059 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001060 /* no overlap with holes (dup fragment?) */
1061 return NULL;
1062 }
1063
1064 if (!(ip_off & IP_FLAGS_MFRAG)) {
1065 /* no more fragmentss: truncate this (last) hole */
1066 total_len = start + len;
1067 h->last_byte = start + len;
1068 }
1069
1070 /*
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001071 * There is some overlap: fix the hole list. This code deals
1072 * with a fragment that overlaps with two different holes
1073 * (thus being a superset of a previously-received fragment)
1074 * by only using the part of the fragment that fits in the
1075 * first hole.
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001076 */
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001077 if (h->last_byte < start + len)
1078 len = h->last_byte - start;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001079
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001080 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001081 /* complete overlap with hole: remove hole */
1082 if (!h->prev_hole && !h->next_hole) {
1083 /* last remaining hole */
1084 done = 1;
1085 } else if (!h->prev_hole) {
1086 /* first hole */
1087 first_hole = h->next_hole;
1088 payload[h->next_hole].prev_hole = 0;
1089 } else if (!h->next_hole) {
1090 /* last hole */
1091 payload[h->prev_hole].next_hole = 0;
1092 } else {
1093 /* in the middle of the list */
1094 payload[h->next_hole].prev_hole = h->prev_hole;
1095 payload[h->prev_hole].next_hole = h->next_hole;
1096 }
1097
1098 } else if (h->last_byte <= start + len) {
1099 /* overlaps with final part of the hole: shorten this hole */
1100 h->last_byte = start;
1101
1102 } else if (h >= thisfrag) {
1103 /* overlaps with initial part of the hole: move this hole */
1104 newh = thisfrag + (len / 8);
1105 *newh = *h;
1106 h = newh;
1107 if (h->next_hole)
1108 payload[h->next_hole].prev_hole = (h - payload);
1109 if (h->prev_hole)
1110 payload[h->prev_hole].next_hole = (h - payload);
1111 else
1112 first_hole = (h - payload);
1113
1114 } else {
1115 /* fragment sits in the middle: split the hole */
1116 newh = thisfrag + (len / 8);
1117 *newh = *h;
1118 h->last_byte = start;
1119 h->next_hole = (newh - payload);
1120 newh->prev_hole = (h - payload);
1121 if (newh->next_hole)
1122 payload[newh->next_hole].prev_hole = (newh - payload);
1123 }
1124
1125 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001126 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001127 if (!done)
1128 return NULL;
1129
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001130 *lenp = total_len + IP_HDR_SIZE;
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001131 localip->ip_len = htons(*lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001132 return localip;
1133}
1134
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001135static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1136 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001137{
1138 u16 ip_off = ntohs(ip->ip_off);
1139 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1140 return ip; /* not a fragment */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001141 return __net_defragment(ip, lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001142}
1143
1144#else /* !CONFIG_IP_DEFRAG */
1145
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001146static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1147 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001148{
1149 u16 ip_off = ntohs(ip->ip_off);
1150 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1151 return ip; /* not a fragment */
1152 return NULL;
1153}
1154#endif
wdenk2d966952002-10-31 22:12:35 +00001155
Simon Glass43c72962011-10-24 18:00:00 +00001156/**
1157 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1158 * drop others.
1159 *
1160 * @parma ip IP packet containing the ICMP
1161 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001162static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger5874dec2015-04-08 01:41:01 -05001163 struct in_addr src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +00001164{
Joe Hershberger78495612012-05-23 07:58:09 +00001165 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +00001166
1167 switch (icmph->type) {
1168 case ICMP_REDIRECT:
1169 if (icmph->code != ICMP_REDIR_HOST)
1170 return;
1171 printf(" ICMP Host Redirect to %pI4 ",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001172 &icmph->un.gateway);
Simon Glass43c72962011-10-24 18:00:00 +00001173 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001174 default:
Simon Glass43c72962011-10-24 18:00:00 +00001175#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001176 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +00001177#endif
Simon Glass2928cd82011-10-26 14:18:38 +00001178#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001179 if (packet_icmp_handler)
1180 packet_icmp_handler(icmph->type, icmph->code,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001181 ntohs(ip->udp_dst), src_ip,
1182 ntohs(ip->udp_src), icmph->un.data,
1183 ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001184#endif
Simon Glass43c72962011-10-24 18:00:00 +00001185 break;
1186 }
1187}
1188
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001189void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +00001190{
Joe Hershberger1178f412012-05-23 07:58:06 +00001191 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001192 struct ip_udp_hdr *ip;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001193 struct in_addr dst_ip;
1194 struct in_addr src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001195 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001196#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001197 int iscdp;
1198#endif
1199 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001200
Joe Hershberger05a377b2012-05-23 08:01:04 +00001201 debug_cond(DEBUG_NET_PKT, "packet received\n");
Sean Andersondcdc9fa2023-10-07 21:53:12 -04001202 if (DEBUG_NET_PKT_TRACE)
1203 print_hex_dump_bytes("rx: ", DUMP_PREFIX_OFFSET, in_packet,
1204 len);
wdenk145d2c12004-04-15 21:48:45 +00001205
Ramon Friedac598c12019-07-18 21:43:30 +03001206#if defined(CONFIG_CMD_PCAP)
1207 pcap_post(in_packet, len, false);
1208#endif
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001209 net_rx_packet = in_packet;
1210 net_rx_packet_len = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001211 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +00001212
1213 /* too small packet? */
1214 if (len < ETHER_HDR_SIZE)
1215 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001216
Alexander Graf94c4b992016-05-06 21:01:01 +02001217#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001218 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001219 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001220 return;
1221 }
1222#endif
wdenk145d2c12004-04-15 21:48:45 +00001223
Jon Loeliger54f35c22007-07-09 17:45:14 -05001224#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001225 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001226 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001227#endif
1228
Joe Hershberger013d3872015-04-08 01:41:17 -05001229 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001230 if (myvlanid == (ushort)-1)
1231 myvlanid = VLAN_NONE;
Joe Hershberger013d3872015-04-08 01:41:17 -05001232 mynvlanid = ntohs(net_native_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001233 if (mynvlanid == (ushort)-1)
1234 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001235
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001236 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001237
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001238 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001239 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001240 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001241 * Got a 802.2 packet. Check the other protocol field.
1242 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001243 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001244 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001245
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001246 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001247 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001248
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001249 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001250 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001251 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001252
1253 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001254 struct vlan_ethernet_hdr *vet =
1255 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001256
Joe Hershberger05a377b2012-05-23 08:01:04 +00001257 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001258
wdenk145d2c12004-04-15 21:48:45 +00001259 /* too small packet? */
1260 if (len < VLAN_ETHER_HDR_SIZE)
1261 return;
1262
1263 /* if no VLAN active */
Joe Hershberger013d3872015-04-08 01:41:17 -05001264 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001265#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001266 && iscdp == 0
1267#endif
1268 )
1269 return;
1270
1271 cti = ntohs(vet->vet_tag);
1272 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001273 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001274
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001275 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001276 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001277 }
1278
Joe Hershberger05a377b2012-05-23 08:01:04 +00001279 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001280
Jon Loeliger54f35c22007-07-09 17:45:14 -05001281#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001282 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001283 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001284 return;
1285 }
1286#endif
1287
1288 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1289 if (vlanid == VLAN_NONE)
1290 vlanid = (mynvlanid & VLAN_IDMASK);
1291 /* not matched? */
1292 if (vlanid != (myvlanid & VLAN_IDMASK))
1293 return;
1294 }
1295
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001296 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001297 case PROT_ARP:
Joe Hershberger85ae7762015-04-08 01:41:08 -05001298 arp_receive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001299 break;
wdenk2d966952002-10-31 22:12:35 +00001300
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001301#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001302 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001303 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001304 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001305#endif
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001306#if IS_ENABLED(CONFIG_IPV6)
1307 case PROT_IP6:
1308 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
Viacheslav Mitrofanova1218172022-12-06 10:08:16 +03001309 break;
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001310#endif
wdenk2d966952002-10-31 22:12:35 +00001311 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001312 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001313 /* Before we start poking the header, make sure it is there */
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001314 if (len < IP_HDR_SIZE) {
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001315 debug("len bad %d < %lu\n", len,
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001316 (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001317 return;
1318 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001319 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001320 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001321 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001322 return;
1323 }
1324 len = ntohs(ip->ip_len);
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001325 if (len < IP_HDR_SIZE) {
1326 debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1327 return;
1328 }
Joe Hershberger05a377b2012-05-23 08:01:04 +00001329 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001330 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001331
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001332 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001333 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001334 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001335 /* Can't deal with IP options (headers != 20 bytes) */
Rasmus Villemoes9ac2c5c2022-10-14 19:43:37 +02001336 if ((ip->ip_hl_v & 0x0f) != 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001337 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001338 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001339 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001340 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001341 return;
1342 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001343 /* If it is not for us, ignore it */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001344 dst_ip = net_read_ip(&ip->ip_dst);
1345 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1346 dst_ip.s_addr != 0xFFFFFFFF) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001347 return;
wdenk2d966952002-10-31 22:12:35 +00001348 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001349 /* Read source IP address for later use */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001350 src_ip = net_read_ip(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001351 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001352 * The function returns the unchanged packet if it's not
1353 * a fragment, and either the complete packet or NULL if
1354 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1355 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001356 ip = net_defragment(ip, &len);
Luca Ceresolidb210822011-05-04 02:40:47 +00001357 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001358 return;
1359 /*
wdenk2d966952002-10-31 22:12:35 +00001360 * watch for ICMP host redirects
1361 *
wdenk57b2d802003-06-27 21:31:46 +00001362 * There is no real handler code (yet). We just watch
1363 * for ICMP host redirect messages. In case anybody
1364 * sees these messages: please contact me
1365 * (wd@denx.de), or - even better - send me the
1366 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001367 *
wdenk57b2d802003-06-27 21:31:46 +00001368 * Note: in all cases where I have seen this so far
1369 * it was a problem with the router configuration,
1370 * for instance when a router was configured in the
1371 * BOOTP reply, but the TFTP server was on the same
1372 * subnet. So this is probably a warning that your
1373 * configuration might be wrong. But I'm not really
1374 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001375 *
1376 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1377 * we send a tftp packet to a dead connection, or when
1378 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001379 */
1380 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001381 receive_icmp(ip, len, src_ip, et);
1382 return;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +08001383#if defined(CONFIG_PROT_TCP)
1384 } else if (ip->ip_p == IPPROTO_TCP) {
1385 debug_cond(DEBUG_DEV_PKT,
1386 "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1387 &dst_ip, &src_ip, len);
1388
1389 rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1390 return;
1391#endif
wdenk2d966952002-10-31 22:12:35 +00001392 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1393 return;
1394 }
1395
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001396 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
liucheng (G)c580b292019-08-29 13:47:33 +00001397 return;
1398
Joe Hershberger05a377b2012-05-23 08:01:04 +00001399 debug_cond(DEBUG_DEV_PKT,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001400 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1401 &dst_ip, &src_ip, len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001402
Simon Glasse0eb4ef2021-12-18 11:27:49 -07001403 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001404 ulong xsum;
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001405 u8 *sumptr;
Stefan Roesedfced812005-08-12 20:06:52 +02001406 ushort sumlen;
1407
1408 xsum = ip->ip_p;
1409 xsum += (ntohs(ip->udp_len));
Joe Hershberger5874dec2015-04-08 01:41:01 -05001410 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1411 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1412 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1413 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
Stefan Roesedfced812005-08-12 20:06:52 +02001414
1415 sumlen = ntohs(ip->udp_len);
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001416 sumptr = (u8 *)&ip->udp_src;
Stefan Roesedfced812005-08-12 20:06:52 +02001417
1418 while (sumlen > 1) {
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001419 /* inlined ntohs() to avoid alignment errors */
1420 xsum += (sumptr[0] << 8) + sumptr[1];
1421 sumptr += 2;
Stefan Roesedfced812005-08-12 20:06:52 +02001422 sumlen -= 2;
1423 }
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001424 if (sumlen > 0)
1425 xsum += (sumptr[0] << 8) + sumptr[0];
Stefan Roesedfced812005-08-12 20:06:52 +02001426 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001427 xsum = (xsum & 0x0000ffff) +
1428 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001429 }
1430 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001431 printf(" UDP wrong checksum %08lx %08x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001432 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001433 return;
1434 }
1435 }
Stefan Roesedfced812005-08-12 20:06:52 +02001436
Holger Denglerae85c072017-07-20 10:10:55 +02001437#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001438 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001439 src_ip,
1440 ntohs(ip->udp_dst),
1441 ntohs(ip->udp_src),
1442 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001443#endif
wdenk2d966952002-10-31 22:12:35 +00001444 /*
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001445 * IP header OK. Pass the packet to the current handler.
wdenk2d966952002-10-31 22:12:35 +00001446 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001447 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001448 ntohs(ip->udp_dst),
1449 src_ip,
1450 ntohs(ip->udp_src),
1451 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001452 break;
Lothar Felten776fc102018-06-22 22:29:54 +02001453#ifdef CONFIG_CMD_WOL
1454 case PROT_WOL:
1455 wol_receive(ip, len);
1456 break;
1457#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301458#ifdef CONFIG_PHY_NCSI
1459 case PROT_NCSI:
1460 ncsi_receive(et, ip, len);
1461 break;
1462#endif
wdenk2d966952002-10-31 22:12:35 +00001463 }
1464}
1465
wdenk2d966952002-10-31 22:12:35 +00001466/**********************************************************************/
1467
Simon Glassd6c5f552011-10-24 18:00:02 +00001468static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001469{
1470 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001471 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001472#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001473 case PING:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001474 if (net_ping_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001475 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001476 return 1;
wdenk05939202004-04-18 17:39:38 +00001477 }
1478 goto common;
wdenke6466f62003-06-05 19:27:42 +00001479#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +03001480#if defined(CONFIG_CMD_PING6)
1481 case PING6:
1482 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1483 puts("*** ERROR: ping address not given\n");
1484 return 1;
1485 }
1486 goto common;
1487#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001488#if defined(CONFIG_CMD_DNS)
1489 case DNS:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001490 if (net_dns_server.s_addr == 0) {
Robin Getz82f0d232009-07-20 14:53:54 -04001491 puts("*** ERROR: DNS server address not given\n");
1492 return 1;
1493 }
1494 goto common;
1495#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001496#if defined(CONFIG_PROT_UDP)
1497 case UDP:
1498 if (udp_prereq())
1499 return 1;
1500 goto common;
1501#endif
1502
Jon Loeliger54f35c22007-07-09 17:45:14 -05001503#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001504 case NFS:
1505#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001506 /* Fall through */
Simon Glassd6c5f552011-10-24 18:00:02 +00001507 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001508 case TFTPPUT:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001509 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1510 if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1511 sizeof(struct in6_addr)) &&
1512 !strchr(net_boot_file_name, '[')) {
1513 puts("*** ERROR: `serverip6' not set\n");
1514 return 1;
1515 }
1516 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001517 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001518 return 1;
wdenk05939202004-04-18 17:39:38 +00001519 }
Philippe Reynes2829d992020-09-18 14:13:02 +02001520#if defined(CONFIG_CMD_PING) || \
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001521 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001522common:
wdenke6466f62003-06-05 19:27:42 +00001523#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001524 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001525
Simon Guinot00dceba2011-05-01 23:38:40 +00001526 case NETCONS:
Dmitrii Merkurev308252d2023-04-12 19:49:30 +01001527 case FASTBOOT_UDP:
1528 case FASTBOOT_TCP:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001529 case TFTPSRV:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001530 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1531 if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1532 sizeof(struct in6_addr))) {
1533 puts("*** ERROR: `ip6addr` not set\n");
1534 return 1;
1535 }
1536 } else if (net_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001537 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001538 return 1;
wdenk05939202004-04-18 17:39:38 +00001539 }
1540 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001541
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001542#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001543 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001544#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301545#ifdef CONFIG_PHY_NCSI
1546 case NCSI:
1547#endif
wdenk2d966952002-10-31 22:12:35 +00001548 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001549 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001550 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001551 case LINKLOCAL:
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001552 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001553 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001554
wdenk05939202004-04-18 17:39:38 +00001555 switch (num) {
1556 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001557 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001558 return 1;
wdenk05939202004-04-18 17:39:38 +00001559 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001560 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001561 break;
wdenk05939202004-04-18 17:39:38 +00001562 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001563 printf("*** ERROR: `eth%daddr' not set\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001564 num);
wdenk2d966952002-10-31 22:12:35 +00001565 break;
wdenk05939202004-04-18 17:39:38 +00001566 }
wdenk2d966952002-10-31 22:12:35 +00001567
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001568 net_start_again();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001569 return 2;
wdenk05939202004-04-18 17:39:38 +00001570 }
1571 /* Fall through */
1572 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001573 return 0;
wdenk2d966952002-10-31 22:12:35 +00001574 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001575 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001576}
1577/**********************************************************************/
1578
1579int
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001580net_eth_hdr_size(void)
wdenk145d2c12004-04-15 21:48:45 +00001581{
1582 ushort myvlanid;
1583
Joe Hershberger013d3872015-04-08 01:41:17 -05001584 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001585 if (myvlanid == (ushort)-1)
1586 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001587
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001588 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1589 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001590}
1591
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001592int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001593{
Joe Hershberger1178f412012-05-23 07:58:06 +00001594 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001595 ushort myvlanid;
1596
Joe Hershberger013d3872015-04-08 01:41:17 -05001597 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001598 if (myvlanid == (ushort)-1)
1599 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001600
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001601 memcpy(et->et_dest, dest_ethaddr, 6);
1602 memcpy(et->et_src, net_ethaddr, 6);
wdenk145d2c12004-04-15 21:48:45 +00001603 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001604 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001605 return ETHER_HDR_SIZE;
1606 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001607 struct vlan_ethernet_hdr *vet =
1608 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001609
wdenk145d2c12004-04-15 21:48:45 +00001610 vet->vet_vlan_type = htons(PROT_VLAN);
1611 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1612 vet->vet_type = htons(prot);
1613 return VLAN_ETHER_HDR_SIZE;
1614 }
1615}
wdenk2d966952002-10-31 22:12:35 +00001616
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001617int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1618{
1619 ushort protlen;
1620
1621 memcpy(et->et_dest, addr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001622 memcpy(et->et_src, net_ethaddr, 6);
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001623 protlen = ntohs(et->et_protlen);
1624 if (protlen == PROT_VLAN) {
1625 struct vlan_ethernet_hdr *vet =
1626 (struct vlan_ethernet_hdr *)et;
1627 vet->vet_type = htons(prot);
1628 return VLAN_ETHER_HDR_SIZE;
1629 } else if (protlen > 1514) {
1630 et->et_protlen = htons(prot);
1631 return ETHER_HDR_SIZE;
1632 } else {
1633 /* 802.2 + SNAP */
1634 struct e802_hdr *et802 = (struct e802_hdr *)et;
1635 et802->et_prot = htons(prot);
1636 return E802_HDR_SIZE;
1637 }
1638}
1639
Duncan Haref1447c92018-06-24 15:40:41 -07001640void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1641 u16 pkt_len, u8 proto)
wdenk2d966952002-10-31 22:12:35 +00001642{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001643 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001644
1645 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001646 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001647 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001648 /* IP_HDR_SIZE / 4 (not including UDP) */
1649 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001650 ip->ip_tos = 0;
Duncan Haref1447c92018-06-24 15:40:41 -07001651 ip->ip_len = htons(pkt_len);
1652 ip->ip_p = proto;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001653 ip->ip_id = htons(net_ip_id++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001654 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001655 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001656 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001657 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001658 net_copy_ip((void *)&ip->ip_src, &source);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001659 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001660 net_copy_ip((void *)&ip->ip_dst, &dest);
Duncan Haref1447c92018-06-24 15:40:41 -07001661
1662 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001663}
1664
Joe Hershberger5874dec2015-04-08 01:41:01 -05001665void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001666 int len)
1667{
1668 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1669
1670 /*
1671 * If the data is an odd number of bytes, zero the
1672 * byte after the last byte so that the checksum
1673 * will work.
1674 */
1675 if (len & 1)
1676 pkt[IP_UDP_HDR_SIZE + len] = 0;
1677
Duncan Haref1447c92018-06-24 15:40:41 -07001678 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1679 IPPROTO_UDP);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001680
wdenk2d966952002-10-31 22:12:35 +00001681 ip->udp_src = htons(sport);
1682 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001683 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001684 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001685}
1686
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001687void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001688{
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001689 if (src && *src && (*src == '"')) {
wdenk2d966952002-10-31 22:12:35 +00001690 ++src;
1691 --size;
1692 }
1693
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001694 while ((--size > 0) && src && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001695 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001696 *dst = '\0';
1697}
1698
Joe Hershbergerf559f1c2018-07-03 19:36:39 -05001699int is_serverip_in_cmd(void)
1700{
1701 return !!strchr(net_boot_file_name, ':');
1702}
1703
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001704int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1705{
1706 char *colon;
Lyle Franklinc1fad502022-04-16 11:36:43 -04001707 struct in_addr ip;
1708 ip.s_addr = 0;
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001709
1710 if (net_boot_file_name[0] == '\0')
1711 return 0;
1712
1713 colon = strchr(net_boot_file_name, ':');
1714 if (colon) {
Lyle Franklinc1fad502022-04-16 11:36:43 -04001715 ip = string_to_ip(net_boot_file_name);
1716 if (ipaddr && ip.s_addr)
1717 *ipaddr = ip;
1718 }
1719 if (ip.s_addr) {
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001720 strncpy(filename, colon + 1, max_len);
1721 } else {
1722 strncpy(filename, net_boot_file_name, max_len);
1723 }
1724 filename[max_len - 1] = '\0';
1725
1726 return 1;
1727}
1728
Joe Hershberger5874dec2015-04-08 01:41:01 -05001729void ip_to_string(struct in_addr x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001730{
Joe Hershberger5874dec2015-04-08 01:41:01 -05001731 x.s_addr = ntohl(x.s_addr);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001732 sprintf(s, "%d.%d.%d.%d",
Joe Hershberger5874dec2015-04-08 01:41:01 -05001733 (int) ((x.s_addr >> 24) & 0xff),
1734 (int) ((x.s_addr >> 16) & 0xff),
1735 (int) ((x.s_addr >> 8) & 0xff),
1736 (int) ((x.s_addr >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001737 );
wdenk2d966952002-10-31 22:12:35 +00001738}
1739
Joe Hershberger013d3872015-04-08 01:41:17 -05001740void vlan_to_string(ushort x, char *s)
wdenk145d2c12004-04-15 21:48:45 +00001741{
1742 x = ntohs(x);
1743
1744 if (x == (ushort)-1)
1745 x = VLAN_NONE;
1746
1747 if (x == VLAN_NONE)
1748 strcpy(s, "none");
1749 else
1750 sprintf(s, "%d", x & VLAN_IDMASK);
1751}
1752
Joe Hershberger013d3872015-04-08 01:41:17 -05001753ushort string_to_vlan(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001754{
1755 ushort id;
1756
1757 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001758 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001759
1760 if (*s < '0' || *s > '9')
1761 id = VLAN_NONE;
1762 else
Simon Glassff9b9032021-07-24 09:03:30 -06001763 id = (ushort)dectoul(s, NULL);
wdenk145d2c12004-04-15 21:48:45 +00001764
wdenk656140b2004-04-25 13:18:40 +00001765 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001766}
1767
Simon Glassda1a1342017-08-03 12:22:15 -06001768ushort env_get_vlan(char *var)
wdenk145d2c12004-04-15 21:48:45 +00001769{
Simon Glass64b723f2017-08-03 12:22:12 -06001770 return string_to_vlan(env_get(var));
wdenk145d2c12004-04-15 21:48:45 +00001771}