blob: 62d1c5b1e82ce385fca2a895092a3b032c8705d5 [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>
Christian Marangi1165ba02024-10-01 14:24:39 +020090#include <led.h>
Simon Glass0f2af882020-05-10 11:40:05 -060091#include <log.h>
wdenk2d966952002-10-31 22:12:35 +000092#include <net.h>
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +030093#include <net6.h>
94#include <ndisc.h>
Dmitrii Merkurev308252d2023-04-12 19:49:30 +010095#include <net/fastboot_udp.h>
96#include <net/fastboot_tcp.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020097#include <net/tftp.h>
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +093098#include <net/ncsi.h>
Ramon Friedac598c12019-07-18 21:43:30 +030099#if defined(CONFIG_CMD_PCAP)
100#include <net/pcap.h>
101#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200102#include <net/udp.h>
Uri Mashiach4892d392017-01-19 10:51:45 +0200103#if defined(CONFIG_LED_STATUS)
wdenk49c3f672003-10-08 22:33:00 +0000104#include <miiphy.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000105#include <status_led.h>
wdenkb4ad9622005-04-01 00:25:43 +0000106#endif
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000107#include <watchdog.h>
108#include <linux/compiler.h>
Simon Glass66014cc2023-01-17 10:47:27 -0700109#include <test/test.h>
Sean Edmonde8c43832023-04-11 10:48:46 -0700110#include <net/tcp.h>
111#include <net/wget.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000112#include "arp.h"
113#include "bootp.h"
Joe Hershbergera4215b02012-05-23 07:57:59 +0000114#include "cdp.h"
Robin Getz82f0d232009-07-20 14:53:54 -0400115#if defined(CONFIG_CMD_DNS)
116#include "dns.h"
117#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000118#include "link_local.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000119#include "nfs.h"
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000120#include "ping.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000121#include "rarp.h"
Lothar Felten776fc102018-06-22 22:29:54 +0200122#if defined(CONFIG_CMD_WOL)
123#include "wol.h"
124#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700125#include "dhcpv6.h"
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700126#include "net_rand.h"
wdenk2d966952002-10-31 22:12:35 +0000127
wdenk2d966952002-10-31 22:12:35 +0000128/** BOOTP EXTENTIONS **/
129
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000130/* Our subnet mask (0=unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500131struct in_addr net_netmask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000132/* Our gateways IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500133struct in_addr net_gateway;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000134/* Our DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500135struct in_addr net_dns_server;
Jon Loeliger5336a762007-07-09 22:08:34 -0500136#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000137/* Our 2nd DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500138struct in_addr net_dns_server2;
stroesee0aadfb2003-08-28 14:17:32 +0000139#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700140/* Indicates whether the pxe path prefix / config file was specified in dhcp option */
141char *pxelinux_configfile;
wdenk2d966952002-10-31 22:12:35 +0000142
143/** END OF BOOTP EXTENTIONS **/
144
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000145/* Our ethernet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500146u8 net_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000147/* Boot server enet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500148u8 net_server_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000149/* Our IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500150struct in_addr net_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000151/* Server IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500152struct in_addr net_server_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000153/* Current receive packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500154uchar *net_rx_packet;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000155/* Current rx packet length */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500156int net_rx_packet_len;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000157/* IP packet ID */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500158static unsigned net_ip_id;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000159/* Ethernet bcast address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500160const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
161const u8 net_null_ethaddr[6];
Alexander Graf94c4b992016-05-06 21:01:01 +0200162#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500163void (*push_packet)(void *, int len) = 0;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100164#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000165/* Network loop state */
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000166enum net_loop_state net_state;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* Tried all network devices */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500168int net_restart_wrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000169/* Network loop restarted */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500170static int net_restarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000171/* At least one device configured */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500172static int net_dev_exists;
wdenk2d966952002-10-31 22:12:35 +0000173
wdenk05939202004-04-18 17:39:38 +0000174/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000175/* default is without VLAN */
Joe Hershberger013d3872015-04-08 01:41:17 -0500176ushort net_our_vlan = 0xFFFF;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000177/* ditto */
Joe Hershberger013d3872015-04-08 01:41:17 -0500178ushort net_native_vlan = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000179
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000180/* Boot File name */
Jacob Stifflerae80c2e2015-09-30 10:12:05 -0400181char net_boot_file_name[1024];
Alexander Graff43bf5d2018-06-15 10:29:27 +0200182/* Indicates whether the file name was specified on the command line */
183bool net_boot_file_name_explicit;
Joe Hershberger290c8992015-04-08 01:41:02 -0500184/* The actual transferred size of the bootfile (in bytes) */
185u32 net_boot_file_size;
186/* Boot file size in blocks as reported by the DHCP server */
187u32 net_boot_file_expected_size_in_blocks;
wdenk2d966952002-10-31 22:12:35 +0000188
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500189static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500190/* Receive packets */
191uchar *net_rx_packets[PKTBUFSRX];
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000192/* Current UDP RX packet handler */
193static rxhand_f *udp_packet_handler;
194/* Current ARP RX packet handler */
195static rxhand_f *arp_packet_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000196#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000197/* Current ICMP rx handler */
198static rxhand_icmp_f *packet_icmp_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000199#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000200/* Current timeout handler */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500201static thand_f *time_handler;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000202/* Time base value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500203static ulong time_start;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000204/* Current timeout value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500205static ulong time_delta;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000206/* THE transmit packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500207uchar *net_tx_packet;
wdenk2d966952002-10-31 22:12:35 +0000208
Simon Glassd6c5f552011-10-24 18:00:02 +0000209static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000210
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500211static int net_try_count;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100212
Jim Lin6c8921f2013-08-13 19:03:05 +0800213int __maybe_unused net_busy_flag;
214
wdenk2d966952002-10-31 22:12:35 +0000215/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000216
Joe Hershberger875b6bf2015-05-20 14:27:23 -0500217static int on_ipaddr(const char *name, const char *value, enum env_op op,
218 int flags)
219{
220 if (flags & H_PROGRAMMATIC)
221 return 0;
222
223 net_ip = string_to_ip(value);
224
225 return 0;
226}
227U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
228
229static int on_gatewayip(const char *name, const char *value, enum env_op op,
230 int flags)
231{
232 if (flags & H_PROGRAMMATIC)
233 return 0;
234
235 net_gateway = string_to_ip(value);
236
237 return 0;
238}
239U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
240
241static int on_netmask(const char *name, const char *value, enum env_op op,
242 int flags)
243{
244 if (flags & H_PROGRAMMATIC)
245 return 0;
246
247 net_netmask = string_to_ip(value);
248
249 return 0;
250}
251U_BOOT_ENV_CALLBACK(netmask, on_netmask);
252
253static int on_serverip(const char *name, const char *value, enum env_op op,
254 int flags)
255{
256 if (flags & H_PROGRAMMATIC)
257 return 0;
258
259 net_server_ip = string_to_ip(value);
260
261 return 0;
262}
263U_BOOT_ENV_CALLBACK(serverip, on_serverip);
264
265static int on_nvlan(const char *name, const char *value, enum env_op op,
266 int flags)
267{
268 if (flags & H_PROGRAMMATIC)
269 return 0;
270
271 net_native_vlan = string_to_vlan(value);
272
273 return 0;
274}
275U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
276
277static int on_vlan(const char *name, const char *value, enum env_op op,
278 int flags)
279{
280 if (flags & H_PROGRAMMATIC)
281 return 0;
282
283 net_our_vlan = string_to_vlan(value);
284
285 return 0;
286}
287U_BOOT_ENV_CALLBACK(vlan, on_vlan);
288
289#if defined(CONFIG_CMD_DNS)
290static int on_dnsip(const char *name, const char *value, enum env_op op,
291 int flags)
292{
293 if (flags & H_PROGRAMMATIC)
294 return 0;
295
296 net_dns_server = string_to_ip(value);
297
298 return 0;
299}
300U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
301#endif
302
Simon Glass5234ad12011-10-27 06:24:32 +0000303/*
304 * Check if autoload is enabled. If so, use either NFS or TFTP to download
305 * the boot file.
306 */
307void net_auto_load(void)
308{
Simon Glass0e84d962024-09-29 19:49:50 -0600309#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_XPL_BUILD)
Simon Glass64b723f2017-08-03 12:22:12 -0600310 const char *s = env_get("autoload");
Simon Glass5234ad12011-10-27 06:24:32 +0000311
Joe Hershberger864ec562012-12-11 22:16:22 -0600312 if (s != NULL && strcmp(s, "NFS") == 0) {
Joe Hershberger40aa2082018-07-03 19:36:40 -0500313 if (net_check_prereq(NFS)) {
314/* We aren't expecting to get a serverip, so just accept the assigned IP */
Simon Glass297fc202021-12-18 11:27:52 -0700315 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
316 net_set_state(NETLOOP_SUCCESS);
317 } else {
318 printf("Cannot autoload with NFS\n");
319 net_set_state(NETLOOP_FAIL);
320 }
Joe Hershberger40aa2082018-07-03 19:36:40 -0500321 return;
322 }
Joe Hershberger864ec562012-12-11 22:16:22 -0600323 /*
324 * Use NFS to load the bootfile.
325 */
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500326 nfs_start();
Joe Hershberger864ec562012-12-11 22:16:22 -0600327 return;
328 }
Simon Glass5234ad12011-10-27 06:24:32 +0000329#endif
Simon Glass22c34c22017-08-03 12:22:13 -0600330 if (env_get_yesno("autoload") == 0) {
Joe Hershberger864ec562012-12-11 22:16:22 -0600331 /*
332 * Just use BOOTP/RARP to configure system;
333 * Do not use TFTP to load the bootfile.
334 */
335 net_set_state(NETLOOP_SUCCESS);
336 return;
Simon Glass5234ad12011-10-27 06:24:32 +0000337 }
Jerome Forissier4474bab2024-09-02 15:25:11 +0200338 if (IS_ENABLED(CONFIG_CMD_TFTPBOOT)) {
339 if (net_check_prereq(TFTPGET)) {
340 /*
341 * We aren't expecting to get a serverip, so just
342 * accept the assigned IP
343 */
344 if (IS_ENABLED(CONFIG_BOOTP_SERVERIP)) {
345 net_set_state(NETLOOP_SUCCESS);
346 } else {
347 printf("Cannot autoload with TFTPGET\n");
348 net_set_state(NETLOOP_FAIL);
349 }
350 return;
Simon Glass297fc202021-12-18 11:27:52 -0700351 }
Jerome Forissier4474bab2024-09-02 15:25:11 +0200352 tftp_start(TFTPGET);
Joe Hershberger40aa2082018-07-03 19:36:40 -0500353 }
Simon Glass5234ad12011-10-27 06:24:32 +0000354}
355
Sean Anderson35e82982020-09-12 17:45:43 -0400356static int net_init_loop(void)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100357{
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700358 static bool first_call = true;
359
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300360 if (eth_get_dev()) {
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500361 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300362
363 if (IS_ENABLED(CONFIG_IPV6)) {
364 ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
365 if (!memcmp(&net_ip6, &net_null_addr_ip6,
366 sizeof(struct in6_addr)))
367 memcpy(&net_ip6, &net_link_local_ip6,
368 sizeof(struct in6_addr));
369 }
370 }
Sean Anderson35e82982020-09-12 17:45:43 -0400371 else
372 /*
373 * Not ideal, but there's no way to get the actual error, and I
374 * don't feel like fixing all the users of eth_get_dev to deal
375 * with errors.
376 */
377 return -ENONET;
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300378
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700379 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
380 if (first_call && use_ip6) {
381 first_call = false;
382 srand_mac(); /* This is for rand used in ip6_send_rs. */
383 net_loop(RS);
384 }
Sean Anderson35e82982020-09-12 17:45:43 -0400385 return 0;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100386}
387
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000388static void net_clear_handlers(void)
389{
390 net_set_udp_handler(NULL);
391 net_set_arp_handler(NULL);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500392 net_set_timeout_handler(0, NULL);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000393}
394
395static void net_cleanup_loop(void)
396{
397 net_clear_handlers();
398}
399
Sean Anderson35e82982020-09-12 17:45:43 -0400400int net_init(void)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000401{
402 static int first_call = 1;
403
404 if (first_call) {
405 /*
406 * Setup packet buffers, aligned correctly.
407 */
408 int i;
409
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500410 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
411 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500412 for (i = 0; i < PKTBUFSRX; i++) {
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500413 net_rx_packets[i] = net_tx_packet +
414 (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500415 }
Joe Hershberger85ae7762015-04-08 01:41:08 -0500416 arp_init();
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300417 ndisc_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000418 net_clear_handlers();
419
420 /* Only need to setup buffer pointers once. */
421 first_call = 0;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800422 if (IS_ENABLED(CONFIG_PROT_TCP))
Mikhail Kshevetskiy215f73f2024-12-28 13:46:30 +0300423 tcp_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000424 }
425
Sean Anderson35e82982020-09-12 17:45:43 -0400426 return net_init_loop();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000427}
428
wdenke6466f62003-06-05 19:27:42 +0000429/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000430/*
431 * Main network processing loop.
432 */
433
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500434int net_loop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000435{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500436 int ret = -EINVAL;
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200437 enum net_loop_state prev_net_state = net_state;
wdenk2d966952002-10-31 22:12:35 +0000438
Marek Szyprowskib9df7d92020-06-15 11:15:57 +0200439#if defined(CONFIG_CMD_PING)
440 if (protocol != PING)
441 net_ping_ip.s_addr = 0;
442#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500443 net_restarted = 0;
444 net_dev_exists = 0;
445 net_try_count = 1;
446 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000447
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930448#ifdef CONFIG_PHY_NCSI
449 if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
450 printf("%s: configuring NCSI first\n", __func__);
451 if (net_loop(NCSI) < 0)
452 return ret;
453 eth_init_state_only();
454 goto restart;
455 }
456#endif
457
Simon Glass768cbf02011-12-10 11:08:06 +0000458 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000459 net_init();
Yang Liu7c78e2f2020-12-21 14:44:39 +1100460 if (eth_is_on_demand_init()) {
wdenkfa66e932005-04-03 14:52:59 +0000461 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000462 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500463 ret = eth_init();
464 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000465 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500466 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000467 }
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500468 } else {
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500469 eth_init_state_only();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500470 }
Samuel Mendoza-Jonasfeebd6c2022-08-08 21:46:04 +0930471
wdenk2d966952002-10-31 22:12:35 +0000472restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800473#ifdef CONFIG_USB_KEYBOARD
474 net_busy_flag = 0;
475#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000476 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000477
478 /*
479 * Start the ball rolling with the given start function. From
480 * here on, this code is a state machine driven by received
481 * packets and timer events.
482 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500483 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
484 net_init_loop();
wdenk2d966952002-10-31 22:12:35 +0000485
Simon Glass66014cc2023-01-17 10:47:27 -0700486 if (!test_eth_enabled())
487 return 0;
488
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000489 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000490 case 1:
491 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000492 eth_halt();
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200493 net_set_state(prev_net_state);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500494 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000495
wdenk2d966952002-10-31 22:12:35 +0000496 case 2:
497 /* network device not configured */
498 break;
wdenk2d966952002-10-31 22:12:35 +0000499
500 case 0:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500501 net_dev_exists = 1;
Joe Hershberger290c8992015-04-08 01:41:02 -0500502 net_boot_file_size = 0;
wdenk2d966952002-10-31 22:12:35 +0000503 switch (protocol) {
Krebs, Olafd9249382020-03-09 14:27:55 +0000504#ifdef CONFIG_CMD_TFTPBOOT
Simon Glassd6c5f552011-10-24 18:00:02 +0000505 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000506#ifdef CONFIG_CMD_TFTPPUT
507 case TFTPPUT:
508#endif
wdenk2d966952002-10-31 22:12:35 +0000509 /* always use ARP to get server ethernet address */
Joe Hershberger64701592015-04-08 01:41:07 -0500510 tftp_start(protocol);
wdenk2d966952002-10-31 22:12:35 +0000511 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000512#endif
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000513#ifdef CONFIG_CMD_TFTPSRV
514 case TFTPSRV:
Joe Hershberger64701592015-04-08 01:41:07 -0500515 tftp_start_server();
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000516 break;
517#endif
Sean Anderson8a6557d2023-10-14 16:47:51 -0400518#if CONFIG_IS_ENABLED(UDP_FUNCTION_FASTBOOT)
Dmitrii Merkurev308252d2023-04-12 19:49:30 +0100519 case FASTBOOT_UDP:
520 fastboot_udp_start_server();
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000521 break;
522#endif
Sean Anderson8a6557d2023-10-14 16:47:51 -0400523#if CONFIG_IS_ENABLED(TCP_FUNCTION_FASTBOOT)
Dmitrii Merkurev308252d2023-04-12 19:49:30 +0100524 case FASTBOOT_TCP:
525 fastboot_tcp_start_server();
526 break;
527#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500528#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000529 case DHCP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500530 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500531 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500532 dhcp_request(); /* Basically same as BOOTP */
wdenk2d966952002-10-31 22:12:35 +0000533 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500534#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700535 case DHCP6:
536 if (IS_ENABLED(CONFIG_CMD_DHCP6))
537 dhcp6_start();
538 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000539#if defined(CONFIG_CMD_BOOTP)
wdenk2d966952002-10-31 22:12:35 +0000540 case BOOTP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500541 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500542 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500543 bootp_request();
wdenk2d966952002-10-31 22:12:35 +0000544 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000545#endif
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500546#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000547 case RARP:
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500548 rarp_try = 0;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500549 net_ip.s_addr = 0;
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500550 rarp_request();
wdenk2d966952002-10-31 22:12:35 +0000551 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500552#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500553#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000554 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000555 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000556 break;
557#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +0300558#if defined(CONFIG_CMD_PING6)
559 case PING6:
560 ping6_start();
561 break;
562#endif
Simon Glass0e84d962024-09-29 19:49:50 -0600563#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_XPL_BUILD)
wdenkbe9c1cb2004-02-24 02:00:03 +0000564 case NFS:
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500565 nfs_start();
wdenkbe9c1cb2004-02-24 02:00:03 +0000566 break;
567#endif
Ying-Chun Liu (PaulLiu)cc96a1d2022-11-08 14:17:29 +0800568#if defined(CONFIG_CMD_WGET)
569 case WGET:
570 wget_start();
571 break;
572#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500573#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000574 case CDP:
Joe Hershberger527336f2015-04-08 01:41:14 -0500575 cdp_start();
wdenk145d2c12004-04-15 21:48:45 +0000576 break;
577#endif
Simon Glass0e84d962024-09-29 19:49:50 -0600578#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_XPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000579 case NETCONS:
Joe Hershbergerd02aa6b2015-04-08 01:41:16 -0500580 nc_start();
wdenkb8fb6192004-08-02 21:11:11 +0000581 break;
582#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400583#if defined(CONFIG_CMD_DNS)
584 case DNS:
Joe Hershbergerf725e342015-04-08 01:41:15 -0500585 dns_start();
Robin Getz82f0d232009-07-20 14:53:54 -0400586 break;
587#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000588#if defined(CONFIG_CMD_LINK_LOCAL)
589 case LINKLOCAL:
590 link_local_start();
591 break;
592#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200593#if defined(CONFIG_CMD_WOL)
594 case WOL:
595 wol_start();
596 break;
597#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930598#if defined(CONFIG_PHY_NCSI)
599 case NCSI:
600 ncsi_probe_packages();
601 break;
602#endif
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700603 case RS:
604 if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
605 ip6_send_rs();
606 break;
wdenk2d966952002-10-31 22:12:35 +0000607 default:
608 break;
609 }
610
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200611 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
612 udp_start();
613
wdenk2d966952002-10-31 22:12:35 +0000614 break;
615 }
616
Jon Loeliger54f35c22007-07-09 17:45:14 -0500617#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000618#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200619 defined(CONFIG_LED_STATUS) && \
620 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000621 /*
wdenk9c53f402003-10-15 23:53:47 +0000622 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000623 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000624 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200625 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000626 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200627 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200628#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000629#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800630#ifdef CONFIG_USB_KEYBOARD
631 net_busy_flag = 1;
632#endif
wdenk2d966952002-10-31 22:12:35 +0000633
634 /*
635 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000636 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000637 */
638 for (;;) {
Stefan Roese80877fa2022-09-02 14:10:46 +0200639 schedule();
Joe Hershbergerd6978a42015-12-21 16:31:35 -0600640 if (arp_timeout_check() > 0)
641 time_start = get_timer(0);
642
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300643 if (IS_ENABLED(CONFIG_IPV6)) {
644 if (use_ip6 && (ndisc_timeout_check() > 0))
645 time_start = get_timer(0);
646 }
647
wdenk2d966952002-10-31 22:12:35 +0000648 /*
649 * Check the ethernet for a new packet. The ethernet
650 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500651 * Most drivers return the most recent packet size, but not
652 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000653 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200654 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000655
656 /*
657 * Abort if ctrl-c was pressed.
658 */
659 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000660 /* cancel any ARP that may not have completed */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500661 net_arp_wait_packet_ip.s_addr = 0;
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000662
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000663 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000664 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000665 /* Invalidate the last protocol */
666 eth_set_last_protocol(BOOTP);
667
Christian Marangi1165ba02024-10-01 14:24:39 +0200668 /* Turn off activity LED if triggered */
669 led_activity_off();
670
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000671 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000672 /* include a debug print as well incase the debug
673 messages are directed to stderr */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500674 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
Michal Simekafd31602015-08-21 08:49:48 +0200675 ret = -EINTR;
Simon Glass230467c2011-10-24 18:00:01 +0000676 goto done;
wdenk2d966952002-10-31 22:12:35 +0000677 }
678
wdenk2d966952002-10-31 22:12:35 +0000679 /*
680 * Check for a timeout, and run the timeout handler
681 * if we have one.
682 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500683 if (time_handler &&
684 ((get_timer(0) - time_start) > time_delta)) {
wdenk2d966952002-10-31 22:12:35 +0000685 thand_f *x;
686
Jon Loeliger54f35c22007-07-09 17:45:14 -0500687#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000688#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200689 defined(CONFIG_LED_STATUS) && \
690 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000691 /*
wdenk9c53f402003-10-15 23:53:47 +0000692 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000693 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000694 if (miiphy_link(eth_get_dev()->name,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500695 CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200696 status_led_set(CONFIG_LED_STATUS_RED,
697 CONFIG_LED_STATUS_OFF);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500698 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200699 status_led_set(CONFIG_LED_STATUS_RED,
700 CONFIG_LED_STATUS_ON);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000701#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000702#endif /* CONFIG_MII, ... */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500703 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
704 x = time_handler;
705 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000706 (*x)();
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -0700707 } else if (IS_ENABLED(CONFIG_IPV6_ROUTER_DISCOVERY))
708 if (time_handler && protocol == RS)
709 if (!ip6_is_unspecified_addr(&net_gateway6) &&
710 net_prefix_length != 0) {
711 net_set_state(NETLOOP_SUCCESS);
712 net_set_timeout_handler(0, NULL);
713 }
wdenk2d966952002-10-31 22:12:35 +0000714
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500715 if (net_state == NETLOOP_FAIL)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500716 ret = net_start_again();
wdenk2d966952002-10-31 22:12:35 +0000717
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000718 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000719 case NETLOOP_RESTART:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500720 net_restarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000721 goto restart;
722
723 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000724 net_cleanup_loop();
Joe Hershberger290c8992015-04-08 01:41:02 -0500725 if (net_boot_file_size > 0) {
Siddharth Vadapallif24db5c2023-08-14 10:23:47 +0530726 printf("Bytes transferred = %u (%x hex)\n",
Joe Hershberger290c8992015-04-08 01:41:02 -0500727 net_boot_file_size, net_boot_file_size);
Simon Glass4d949a22017-08-03 12:22:10 -0600728 env_set_hex("filesize", net_boot_file_size);
Simon Glass892265d2019-12-28 10:45:02 -0700729 env_set_hex("fileaddr", image_load_addr);
wdenk2d966952002-10-31 22:12:35 +0000730 }
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930731 if (protocol != NETCONS && protocol != NCSI)
Joe Hershberger9f374062012-08-03 10:59:08 +0000732 eth_halt();
733 else
734 eth_halt_state_only();
735
736 eth_set_last_protocol(protocol);
737
Joe Hershberger290c8992015-04-08 01:41:02 -0500738 ret = net_boot_file_size;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500739 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000740 goto done;
wdenk2d966952002-10-31 22:12:35 +0000741
742 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000743 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000744 /* Invalidate the last protocol */
745 eth_set_last_protocol(BOOTP);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500746 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
Thomas RIENOESSL2dee4192018-11-21 15:56:07 +0100747 ret = -ENONET;
Simon Glass230467c2011-10-24 18:00:01 +0000748 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000749
750 case NETLOOP_CONTINUE:
751 continue;
wdenk2d966952002-10-31 22:12:35 +0000752 }
753 }
Simon Glass230467c2011-10-24 18:00:01 +0000754
755done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800756#ifdef CONFIG_USB_KEYBOARD
757 net_busy_flag = 0;
758#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000759#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000760 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000761 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000762 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000763#endif
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200764 net_set_state(prev_net_state);
Ramon Friedac598c12019-07-18 21:43:30 +0300765
766#if defined(CONFIG_CMD_PCAP)
767 if (pcap_active())
768 pcap_print_status();
769#endif
Simon Glass230467c2011-10-24 18:00:01 +0000770 return ret;
wdenk2d966952002-10-31 22:12:35 +0000771}
772
773/**********************************************************************/
774
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500775static void start_again_timeout_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000776{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000777 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000778}
779
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500780int net_start_again(void)
wdenk2d966952002-10-31 22:12:35 +0000781{
wdenk05939202004-04-18 17:39:38 +0000782 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100783 int retry_forever = 0;
784 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500785 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000786
Simon Glass64b723f2017-08-03 12:22:12 -0600787 nretry = env_get("netretry");
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100788 if (nretry) {
789 if (!strcmp(nretry, "yes"))
790 retry_forever = 1;
791 else if (!strcmp(nretry, "no"))
792 retrycnt = 0;
793 else if (!strcmp(nretry, "once"))
794 retrycnt = 1;
795 else
796 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500797 } else {
798 retrycnt = 0;
799 retry_forever = 0;
800 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100801
Leonid Iziumtsevfb7c94c2018-03-09 15:29:06 +0100802 if ((!retry_forever) && (net_try_count > retrycnt)) {
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100803 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000804 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500805 /*
806 * We don't provide a way for the protocol to return an error,
807 * but this is almost always the reason.
808 */
809 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000810 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100811
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500812 net_try_count++;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100813
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000814 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100815#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500816 eth_try_another(!net_restarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100817#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500818 ret = eth_init();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500819 if (net_restart_wrap) {
820 net_restart_wrap = 0;
821 if (net_dev_exists) {
822 net_set_timeout_handler(10000UL,
823 start_again_timeout_handler);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000824 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000825 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000826 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000827 }
wdenk05939202004-04-18 17:39:38 +0000828 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000829 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000830 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500831 return ret;
wdenk2d966952002-10-31 22:12:35 +0000832}
833
834/**********************************************************************/
835/*
836 * Miscelaneous bits.
837 */
838
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000839static void dummy_handler(uchar *pkt, unsigned dport,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500840 struct in_addr sip, unsigned sport,
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000841 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000842{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000843}
844
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000845rxhand_f *net_get_udp_handler(void)
846{
847 return udp_packet_handler;
848}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000849
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000850void net_set_udp_handler(rxhand_f *f)
851{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500852 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000853 if (f == NULL)
854 udp_packet_handler = dummy_handler;
855 else
856 udp_packet_handler = f;
857}
858
859rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000860{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000861 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000862}
863
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000864void net_set_arp_handler(rxhand_f *f)
865{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500866 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000867 if (f == NULL)
868 arp_packet_handler = dummy_handler;
869 else
870 arp_packet_handler = f;
871}
872
Simon Glass2928cd82011-10-26 14:18:38 +0000873#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000874void net_set_icmp_handler(rxhand_icmp_f *f)
875{
876 packet_icmp_handler = f;
877}
Simon Glass2928cd82011-10-26 14:18:38 +0000878#endif
wdenk2d966952002-10-31 22:12:35 +0000879
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500880void net_set_timeout_handler(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000881{
882 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000883 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500884 "--- net_loop timeout handler cancelled\n");
885 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000886 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000887 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500888 "--- net_loop timeout handler set (%p)\n", f);
889 time_handler = f;
890 time_start = get_timer(0);
891 time_delta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000892 }
893}
894
Joe Hershbergere79a5182018-09-26 16:49:02 -0500895uchar *net_get_async_tx_pkt_buf(void)
896{
897 if (arp_is_waiting())
898 return arp_tx_packet; /* If we are waiting, we already sent */
899 else
900 return net_tx_packet;
901}
902
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500903int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000904 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000905{
Duncan Haref1447c92018-06-24 15:40:41 -0700906 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
907 IPPROTO_UDP, 0, 0, 0);
908}
909
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800910#if defined(CONFIG_PROT_TCP)
Mikhail Kshevetskiy215f73f2024-12-28 13:46:30 +0300911int net_send_tcp_packet(int payload_len, struct in_addr dhost, int dport,
912 int sport, u8 action, u32 tcp_seq_num, u32 tcp_ack_num)
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800913{
Mikhail Kshevetskiy215f73f2024-12-28 13:46:30 +0300914 return net_send_ip_packet(net_server_ethaddr, dhost, dport,
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800915 sport, payload_len, IPPROTO_TCP, action,
916 tcp_seq_num, tcp_ack_num);
917}
918#endif
919
Duncan Haref1447c92018-06-24 15:40:41 -0700920int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
921 int payload_len, int proto, u8 action, u32 tcp_seq_num,
922 u32 tcp_ack_num)
923{
wdenk145d2c12004-04-15 21:48:45 +0000924 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000925 int eth_hdr_size;
926 int pkt_hdr_size;
Mikhail Kshevetskiy3e04c862024-12-28 13:46:29 +0300927#if defined(CONFIG_PROT_TCP)
928 struct tcp_stream *tcp;
929#endif
wdenk145d2c12004-04-15 21:48:45 +0000930
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500931 /* make sure the net_tx_packet is initialized (net_init() was called) */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500932 assert(net_tx_packet != NULL);
933 if (net_tx_packet == NULL)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000934 return -1;
935
wdenke6466f62003-06-05 19:27:42 +0000936 /* convert to new style broadcast */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500937 if (dest.s_addr == 0)
938 dest.s_addr = 0xFFFFFFFF;
wdenke6466f62003-06-05 19:27:42 +0000939
940 /* if broadcast, make the ether address a broadcast and don't do ARP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500941 if (dest.s_addr == 0xFFFFFFFF)
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500942 ether = (uchar *)net_bcast_ethaddr;
wdenke6466f62003-06-05 19:27:42 +0000943
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500944 pkt = (uchar *)net_tx_packet;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000945
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500946 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
Duncan Haref1447c92018-06-24 15:40:41 -0700947
948 switch (proto) {
949 case IPPROTO_UDP:
950 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
951 payload_len);
952 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
953 break;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800954#if defined(CONFIG_PROT_TCP)
955 case IPPROTO_TCP:
Mikhail Kshevetskiy215f73f2024-12-28 13:46:30 +0300956 tcp = tcp_stream_get(0, dest, dport, sport);
Mikhail Kshevetskiy3e04c862024-12-28 13:46:29 +0300957 if (!tcp)
958 return -EINVAL;
959
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800960 pkt_hdr_size = eth_hdr_size
Mikhail Kshevetskiy215f73f2024-12-28 13:46:30 +0300961 + tcp_set_tcp_header(tcp, pkt + eth_hdr_size,
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800962 payload_len, action, tcp_seq_num,
963 tcp_ack_num);
964 break;
965#endif
Duncan Haref1447c92018-06-24 15:40:41 -0700966 default:
967 return -EINVAL;
968 }
wdenke6466f62003-06-05 19:27:42 +0000969
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000970 /* if MAC address was not discovered yet, do an ARP request */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500971 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000972 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400973
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000974 /* save the ip and eth addr for the packet to send after arp */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500975 net_arp_wait_packet_ip = dest;
Joe Hershberger85ae7762015-04-08 01:41:08 -0500976 arp_wait_packet_ethaddr = ether;
wdenk145d2c12004-04-15 21:48:45 +0000977
wdenke6466f62003-06-05 19:27:42 +0000978 /* size of the waiting packet */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500979 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000980
981 /* and do the ARP request */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500982 arp_wait_try = 1;
983 arp_wait_timer_start = get_timer(0);
984 arp_request();
wdenke6466f62003-06-05 19:27:42 +0000985 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000986 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000987 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500988 &dest, ether);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500989 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000990 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000991 }
wdenke6466f62003-06-05 19:27:42 +0000992}
wdenk145d2c12004-04-15 21:48:45 +0000993
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200994#ifdef CONFIG_IP_DEFRAG
995/*
996 * This function collects fragments in a single packet, according
997 * to the algorithm in RFC815. It returns NULL or the pointer to
998 * a complete packet, in static storage
999 */
Joe Hershberger9d390302016-08-15 14:42:15 -05001000#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001001
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001002#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001003
1004/*
1005 * this is the packet being assembled, either data or frag control.
1006 * Fragments go by 8 bytes, so this union must be 8 bytes long
1007 */
1008struct hole {
1009 /* first_byte is address of this structure */
1010 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1011 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1012 u16 prev_hole; /* index of prev, 0 == none */
1013 u16 unused;
1014};
1015
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001016static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001017{
Joe Hershberger77001b432012-05-15 08:59:08 +00001018 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001019 static u16 first_hole, total_len;
1020 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001021 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001022 uchar *indata = (uchar *)ip;
1023 int offset8, start, len, done = 0;
1024 u16 ip_off = ntohs(ip->ip_off);
1025
Rasmus Villemoes547e7e62022-10-14 19:43:39 +02001026 /*
1027 * Calling code already rejected <, but we don't have to deal
1028 * with an IP fragment with no payload.
1029 */
1030 if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
Fabio Estevama0aaa322022-05-26 11:14:37 -03001031 return NULL;
1032
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001033 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001034 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001035 offset8 = (ip_off & IP_OFFS);
1036 thisfrag = payload + offset8;
1037 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001038 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001039
Rasmus Villemoes547e7e62022-10-14 19:43:39 +02001040 /* All but last fragment must have a multiple-of-8 payload. */
1041 if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
1042 return NULL;
1043
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001044 if (start + len > IP_MAXUDP) /* fragment extends too far */
1045 return NULL;
1046
1047 if (!total_len || localip->ip_id != ip->ip_id) {
1048 /* new (or different) packet, reset structs */
1049 total_len = 0xffff;
1050 payload[0].last_byte = ~0;
1051 payload[0].next_hole = 0;
1052 payload[0].prev_hole = 0;
1053 first_hole = 0;
1054 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001055 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001056 }
1057
1058 /*
1059 * What follows is the reassembly algorithm. We use the payload
1060 * array as a linked list of hole descriptors, as each hole starts
1061 * at a multiple of 8 bytes. However, last byte can be whatever value,
1062 * so it is represented as byte count, not as 8-byte blocks.
1063 */
1064
1065 h = payload + first_hole;
1066 while (h->last_byte < start) {
1067 if (!h->next_hole) {
1068 /* no hole that far away */
1069 return NULL;
1070 }
1071 h = payload + h->next_hole;
1072 }
1073
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001074 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1075 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001076 /* no overlap with holes (dup fragment?) */
1077 return NULL;
1078 }
1079
1080 if (!(ip_off & IP_FLAGS_MFRAG)) {
1081 /* no more fragmentss: truncate this (last) hole */
1082 total_len = start + len;
1083 h->last_byte = start + len;
1084 }
1085
1086 /*
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001087 * There is some overlap: fix the hole list. This code deals
1088 * with a fragment that overlaps with two different holes
1089 * (thus being a superset of a previously-received fragment)
1090 * by only using the part of the fragment that fits in the
1091 * first hole.
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001092 */
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001093 if (h->last_byte < start + len)
1094 len = h->last_byte - start;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001095
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001096 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001097 /* complete overlap with hole: remove hole */
1098 if (!h->prev_hole && !h->next_hole) {
1099 /* last remaining hole */
1100 done = 1;
1101 } else if (!h->prev_hole) {
1102 /* first hole */
1103 first_hole = h->next_hole;
1104 payload[h->next_hole].prev_hole = 0;
1105 } else if (!h->next_hole) {
1106 /* last hole */
1107 payload[h->prev_hole].next_hole = 0;
1108 } else {
1109 /* in the middle of the list */
1110 payload[h->next_hole].prev_hole = h->prev_hole;
1111 payload[h->prev_hole].next_hole = h->next_hole;
1112 }
1113
1114 } else if (h->last_byte <= start + len) {
1115 /* overlaps with final part of the hole: shorten this hole */
1116 h->last_byte = start;
1117
1118 } else if (h >= thisfrag) {
1119 /* overlaps with initial part of the hole: move this hole */
1120 newh = thisfrag + (len / 8);
1121 *newh = *h;
1122 h = newh;
1123 if (h->next_hole)
1124 payload[h->next_hole].prev_hole = (h - payload);
1125 if (h->prev_hole)
1126 payload[h->prev_hole].next_hole = (h - payload);
1127 else
1128 first_hole = (h - payload);
1129
1130 } else {
1131 /* fragment sits in the middle: split the hole */
1132 newh = thisfrag + (len / 8);
1133 *newh = *h;
1134 h->last_byte = start;
1135 h->next_hole = (newh - payload);
1136 newh->prev_hole = (h - payload);
1137 if (newh->next_hole)
1138 payload[newh->next_hole].prev_hole = (newh - payload);
1139 }
1140
1141 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001142 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001143 if (!done)
1144 return NULL;
1145
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001146 *lenp = total_len + IP_HDR_SIZE;
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001147 localip->ip_len = htons(*lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001148 return localip;
1149}
1150
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001151static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1152 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001153{
1154 u16 ip_off = ntohs(ip->ip_off);
1155 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1156 return ip; /* not a fragment */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001157 return __net_defragment(ip, lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001158}
1159
1160#else /* !CONFIG_IP_DEFRAG */
1161
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001162static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1163 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001164{
1165 u16 ip_off = ntohs(ip->ip_off);
1166 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1167 return ip; /* not a fragment */
1168 return NULL;
1169}
1170#endif
wdenk2d966952002-10-31 22:12:35 +00001171
Simon Glass43c72962011-10-24 18:00:00 +00001172/**
1173 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1174 * drop others.
1175 *
1176 * @parma ip IP packet containing the ICMP
1177 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001178static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger5874dec2015-04-08 01:41:01 -05001179 struct in_addr src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +00001180{
Joe Hershberger78495612012-05-23 07:58:09 +00001181 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +00001182
1183 switch (icmph->type) {
1184 case ICMP_REDIRECT:
1185 if (icmph->code != ICMP_REDIR_HOST)
1186 return;
1187 printf(" ICMP Host Redirect to %pI4 ",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001188 &icmph->un.gateway);
Simon Glass43c72962011-10-24 18:00:00 +00001189 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001190 default:
Simon Glass43c72962011-10-24 18:00:00 +00001191#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001192 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +00001193#endif
Simon Glass2928cd82011-10-26 14:18:38 +00001194#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001195 if (packet_icmp_handler)
1196 packet_icmp_handler(icmph->type, icmph->code,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001197 ntohs(ip->udp_dst), src_ip,
1198 ntohs(ip->udp_src), icmph->un.data,
1199 ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001200#endif
Simon Glass43c72962011-10-24 18:00:00 +00001201 break;
1202 }
1203}
1204
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001205void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +00001206{
Joe Hershberger1178f412012-05-23 07:58:06 +00001207 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001208 struct ip_udp_hdr *ip;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001209 struct in_addr dst_ip;
1210 struct in_addr src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001211 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001212#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001213 int iscdp;
1214#endif
1215 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001216
Joe Hershberger05a377b2012-05-23 08:01:04 +00001217 debug_cond(DEBUG_NET_PKT, "packet received\n");
Sean Andersondcdc9fa2023-10-07 21:53:12 -04001218 if (DEBUG_NET_PKT_TRACE)
1219 print_hex_dump_bytes("rx: ", DUMP_PREFIX_OFFSET, in_packet,
1220 len);
wdenk145d2c12004-04-15 21:48:45 +00001221
Ramon Friedac598c12019-07-18 21:43:30 +03001222#if defined(CONFIG_CMD_PCAP)
1223 pcap_post(in_packet, len, false);
1224#endif
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001225 net_rx_packet = in_packet;
1226 net_rx_packet_len = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001227 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +00001228
1229 /* too small packet? */
1230 if (len < ETHER_HDR_SIZE)
1231 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001232
Alexander Graf94c4b992016-05-06 21:01:01 +02001233#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001234 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001235 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001236 return;
1237 }
1238#endif
wdenk145d2c12004-04-15 21:48:45 +00001239
Jon Loeliger54f35c22007-07-09 17:45:14 -05001240#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001241 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001242 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001243#endif
1244
Joe Hershberger013d3872015-04-08 01:41:17 -05001245 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001246 if (myvlanid == (ushort)-1)
1247 myvlanid = VLAN_NONE;
Joe Hershberger013d3872015-04-08 01:41:17 -05001248 mynvlanid = ntohs(net_native_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001249 if (mynvlanid == (ushort)-1)
1250 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001251
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001252 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001253
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001254 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001255 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001256 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001257 * Got a 802.2 packet. Check the other protocol field.
1258 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001259 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001260 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001261
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001262 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001263 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001264
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001265 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001266 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001267 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001268
1269 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001270 struct vlan_ethernet_hdr *vet =
1271 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001272
Joe Hershberger05a377b2012-05-23 08:01:04 +00001273 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001274
wdenk145d2c12004-04-15 21:48:45 +00001275 /* too small packet? */
1276 if (len < VLAN_ETHER_HDR_SIZE)
1277 return;
1278
1279 /* if no VLAN active */
Joe Hershberger013d3872015-04-08 01:41:17 -05001280 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001281#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001282 && iscdp == 0
1283#endif
1284 )
1285 return;
1286
1287 cti = ntohs(vet->vet_tag);
1288 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001289 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001290
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001291 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001292 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001293 }
1294
Joe Hershberger05a377b2012-05-23 08:01:04 +00001295 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001296
Jon Loeliger54f35c22007-07-09 17:45:14 -05001297#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001298 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001299 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001300 return;
1301 }
1302#endif
1303
1304 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1305 if (vlanid == VLAN_NONE)
1306 vlanid = (mynvlanid & VLAN_IDMASK);
1307 /* not matched? */
1308 if (vlanid != (myvlanid & VLAN_IDMASK))
1309 return;
1310 }
1311
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001312 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001313 case PROT_ARP:
Joe Hershberger85ae7762015-04-08 01:41:08 -05001314 arp_receive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001315 break;
wdenk2d966952002-10-31 22:12:35 +00001316
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001317#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001318 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001319 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001320 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001321#endif
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001322#if IS_ENABLED(CONFIG_IPV6)
1323 case PROT_IP6:
1324 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
Viacheslav Mitrofanova1218172022-12-06 10:08:16 +03001325 break;
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001326#endif
wdenk2d966952002-10-31 22:12:35 +00001327 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001328 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001329 /* Before we start poking the header, make sure it is there */
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001330 if (len < IP_HDR_SIZE) {
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001331 debug("len bad %d < %lu\n", len,
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001332 (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001333 return;
1334 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001335 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001336 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001337 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001338 return;
1339 }
1340 len = ntohs(ip->ip_len);
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001341 if (len < IP_HDR_SIZE) {
1342 debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1343 return;
1344 }
Joe Hershberger05a377b2012-05-23 08:01:04 +00001345 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001346 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001347
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001348 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001349 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001350 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001351 /* Can't deal with IP options (headers != 20 bytes) */
Rasmus Villemoes9ac2c5c2022-10-14 19:43:37 +02001352 if ((ip->ip_hl_v & 0x0f) != 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001353 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001354 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001355 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001356 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001357 return;
1358 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001359 /* If it is not for us, ignore it */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001360 dst_ip = net_read_ip(&ip->ip_dst);
1361 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1362 dst_ip.s_addr != 0xFFFFFFFF) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001363 return;
wdenk2d966952002-10-31 22:12:35 +00001364 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001365 /* Read source IP address for later use */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001366 src_ip = net_read_ip(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001367 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001368 * The function returns the unchanged packet if it's not
1369 * a fragment, and either the complete packet or NULL if
1370 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1371 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001372 ip = net_defragment(ip, &len);
Luca Ceresolidb210822011-05-04 02:40:47 +00001373 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001374 return;
1375 /*
wdenk2d966952002-10-31 22:12:35 +00001376 * watch for ICMP host redirects
1377 *
wdenk57b2d802003-06-27 21:31:46 +00001378 * There is no real handler code (yet). We just watch
1379 * for ICMP host redirect messages. In case anybody
1380 * sees these messages: please contact me
1381 * (wd@denx.de), or - even better - send me the
1382 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001383 *
wdenk57b2d802003-06-27 21:31:46 +00001384 * Note: in all cases where I have seen this so far
1385 * it was a problem with the router configuration,
1386 * for instance when a router was configured in the
1387 * BOOTP reply, but the TFTP server was on the same
1388 * subnet. So this is probably a warning that your
1389 * configuration might be wrong. But I'm not really
1390 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001391 *
1392 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1393 * we send a tftp packet to a dead connection, or when
1394 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001395 */
1396 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001397 receive_icmp(ip, len, src_ip, et);
1398 return;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +08001399#if defined(CONFIG_PROT_TCP)
1400 } else if (ip->ip_p == IPPROTO_TCP) {
1401 debug_cond(DEBUG_DEV_PKT,
1402 "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1403 &dst_ip, &src_ip, len);
1404
1405 rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1406 return;
1407#endif
wdenk2d966952002-10-31 22:12:35 +00001408 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1409 return;
1410 }
1411
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001412 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
liucheng (G)c580b292019-08-29 13:47:33 +00001413 return;
1414
Joe Hershberger05a377b2012-05-23 08:01:04 +00001415 debug_cond(DEBUG_DEV_PKT,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001416 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1417 &dst_ip, &src_ip, len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001418
Simon Glasse0eb4ef2021-12-18 11:27:49 -07001419 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001420 ulong xsum;
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001421 u8 *sumptr;
Stefan Roesedfced812005-08-12 20:06:52 +02001422 ushort sumlen;
1423
1424 xsum = ip->ip_p;
1425 xsum += (ntohs(ip->udp_len));
Joe Hershberger5874dec2015-04-08 01:41:01 -05001426 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1427 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1428 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1429 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
Stefan Roesedfced812005-08-12 20:06:52 +02001430
1431 sumlen = ntohs(ip->udp_len);
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001432 sumptr = (u8 *)&ip->udp_src;
Stefan Roesedfced812005-08-12 20:06:52 +02001433
1434 while (sumlen > 1) {
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001435 /* inlined ntohs() to avoid alignment errors */
1436 xsum += (sumptr[0] << 8) + sumptr[1];
1437 sumptr += 2;
Stefan Roesedfced812005-08-12 20:06:52 +02001438 sumlen -= 2;
1439 }
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001440 if (sumlen > 0)
1441 xsum += (sumptr[0] << 8) + sumptr[0];
Stefan Roesedfced812005-08-12 20:06:52 +02001442 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001443 xsum = (xsum & 0x0000ffff) +
1444 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001445 }
1446 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001447 printf(" UDP wrong checksum %08lx %08x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001448 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001449 return;
1450 }
1451 }
Stefan Roesedfced812005-08-12 20:06:52 +02001452
Simon Glass0e84d962024-09-29 19:49:50 -06001453#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_XPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001454 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001455 src_ip,
1456 ntohs(ip->udp_dst),
1457 ntohs(ip->udp_src),
1458 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001459#endif
wdenk2d966952002-10-31 22:12:35 +00001460 /*
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001461 * IP header OK. Pass the packet to the current handler.
wdenk2d966952002-10-31 22:12:35 +00001462 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001463 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001464 ntohs(ip->udp_dst),
1465 src_ip,
1466 ntohs(ip->udp_src),
1467 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001468 break;
Lothar Felten776fc102018-06-22 22:29:54 +02001469#ifdef CONFIG_CMD_WOL
1470 case PROT_WOL:
1471 wol_receive(ip, len);
1472 break;
1473#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301474#ifdef CONFIG_PHY_NCSI
1475 case PROT_NCSI:
1476 ncsi_receive(et, ip, len);
1477 break;
1478#endif
wdenk2d966952002-10-31 22:12:35 +00001479 }
1480}
1481
wdenk2d966952002-10-31 22:12:35 +00001482/**********************************************************************/
1483
Simon Glassd6c5f552011-10-24 18:00:02 +00001484static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001485{
1486 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001487 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001488#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001489 case PING:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001490 if (net_ping_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001491 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001492 return 1;
wdenk05939202004-04-18 17:39:38 +00001493 }
1494 goto common;
wdenke6466f62003-06-05 19:27:42 +00001495#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +03001496#if defined(CONFIG_CMD_PING6)
1497 case PING6:
1498 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1499 puts("*** ERROR: ping address not given\n");
1500 return 1;
1501 }
1502 goto common;
1503#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001504#if defined(CONFIG_CMD_DNS)
1505 case DNS:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001506 if (net_dns_server.s_addr == 0) {
Robin Getz82f0d232009-07-20 14:53:54 -04001507 puts("*** ERROR: DNS server address not given\n");
1508 return 1;
1509 }
1510 goto common;
1511#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001512#if defined(CONFIG_PROT_UDP)
1513 case UDP:
1514 if (udp_prereq())
1515 return 1;
1516 goto common;
1517#endif
1518
Jon Loeliger54f35c22007-07-09 17:45:14 -05001519#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001520 case NFS:
1521#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001522 /* Fall through */
Simon Glassd6c5f552011-10-24 18:00:02 +00001523 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001524 case TFTPPUT:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001525 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1526 if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1527 sizeof(struct in6_addr)) &&
1528 !strchr(net_boot_file_name, '[')) {
1529 puts("*** ERROR: `serverip6' not set\n");
1530 return 1;
1531 }
1532 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001533 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001534 return 1;
wdenk05939202004-04-18 17:39:38 +00001535 }
Philippe Reynes2829d992020-09-18 14:13:02 +02001536#if defined(CONFIG_CMD_PING) || \
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001537 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001538common:
wdenke6466f62003-06-05 19:27:42 +00001539#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001540 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001541
Simon Guinot00dceba2011-05-01 23:38:40 +00001542 case NETCONS:
Dmitrii Merkurev308252d2023-04-12 19:49:30 +01001543 case FASTBOOT_UDP:
1544 case FASTBOOT_TCP:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001545 case TFTPSRV:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001546 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1547 if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1548 sizeof(struct in6_addr))) {
1549 puts("*** ERROR: `ip6addr` not set\n");
1550 return 1;
1551 }
1552 } else if (net_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001553 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001554 return 1;
wdenk05939202004-04-18 17:39:38 +00001555 }
1556 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001557
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001558#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001559 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001560#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301561#ifdef CONFIG_PHY_NCSI
1562 case NCSI:
1563#endif
wdenk2d966952002-10-31 22:12:35 +00001564 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001565 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001566 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001567 case LINKLOCAL:
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001568 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001569 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001570
wdenk05939202004-04-18 17:39:38 +00001571 switch (num) {
1572 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001573 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001574 return 1;
wdenk05939202004-04-18 17:39:38 +00001575 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001576 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001577 break;
wdenk05939202004-04-18 17:39:38 +00001578 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001579 printf("*** ERROR: `eth%daddr' not set\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001580 num);
wdenk2d966952002-10-31 22:12:35 +00001581 break;
wdenk05939202004-04-18 17:39:38 +00001582 }
wdenk2d966952002-10-31 22:12:35 +00001583
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001584 net_start_again();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001585 return 2;
wdenk05939202004-04-18 17:39:38 +00001586 }
1587 /* Fall through */
1588 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001589 return 0;
wdenk2d966952002-10-31 22:12:35 +00001590 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001591 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001592}
1593/**********************************************************************/
1594
1595int
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001596net_eth_hdr_size(void)
wdenk145d2c12004-04-15 21:48:45 +00001597{
1598 ushort myvlanid;
1599
Joe Hershberger013d3872015-04-08 01:41:17 -05001600 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001601 if (myvlanid == (ushort)-1)
1602 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001603
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001604 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1605 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001606}
1607
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001608int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001609{
Joe Hershberger1178f412012-05-23 07:58:06 +00001610 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001611 ushort myvlanid;
1612
Joe Hershberger013d3872015-04-08 01:41:17 -05001613 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001614 if (myvlanid == (ushort)-1)
1615 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001616
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001617 memcpy(et->et_dest, dest_ethaddr, 6);
1618 memcpy(et->et_src, net_ethaddr, 6);
wdenk145d2c12004-04-15 21:48:45 +00001619 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001620 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001621 return ETHER_HDR_SIZE;
1622 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001623 struct vlan_ethernet_hdr *vet =
1624 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001625
wdenk145d2c12004-04-15 21:48:45 +00001626 vet->vet_vlan_type = htons(PROT_VLAN);
1627 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1628 vet->vet_type = htons(prot);
1629 return VLAN_ETHER_HDR_SIZE;
1630 }
1631}
wdenk2d966952002-10-31 22:12:35 +00001632
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001633int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1634{
1635 ushort protlen;
1636
1637 memcpy(et->et_dest, addr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001638 memcpy(et->et_src, net_ethaddr, 6);
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001639 protlen = ntohs(et->et_protlen);
1640 if (protlen == PROT_VLAN) {
1641 struct vlan_ethernet_hdr *vet =
1642 (struct vlan_ethernet_hdr *)et;
1643 vet->vet_type = htons(prot);
1644 return VLAN_ETHER_HDR_SIZE;
1645 } else if (protlen > 1514) {
1646 et->et_protlen = htons(prot);
1647 return ETHER_HDR_SIZE;
1648 } else {
1649 /* 802.2 + SNAP */
1650 struct e802_hdr *et802 = (struct e802_hdr *)et;
1651 et802->et_prot = htons(prot);
1652 return E802_HDR_SIZE;
1653 }
1654}
1655
Duncan Haref1447c92018-06-24 15:40:41 -07001656void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1657 u16 pkt_len, u8 proto)
wdenk2d966952002-10-31 22:12:35 +00001658{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001659 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001660
1661 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001662 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001663 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001664 /* IP_HDR_SIZE / 4 (not including UDP) */
1665 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001666 ip->ip_tos = 0;
Duncan Haref1447c92018-06-24 15:40:41 -07001667 ip->ip_len = htons(pkt_len);
1668 ip->ip_p = proto;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001669 ip->ip_id = htons(net_ip_id++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001670 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001671 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001672 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001673 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001674 net_copy_ip((void *)&ip->ip_src, &source);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001675 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001676 net_copy_ip((void *)&ip->ip_dst, &dest);
Duncan Haref1447c92018-06-24 15:40:41 -07001677
1678 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001679}
1680
Joe Hershberger5874dec2015-04-08 01:41:01 -05001681void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001682 int len)
1683{
1684 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1685
1686 /*
1687 * If the data is an odd number of bytes, zero the
1688 * byte after the last byte so that the checksum
1689 * will work.
1690 */
1691 if (len & 1)
1692 pkt[IP_UDP_HDR_SIZE + len] = 0;
1693
Duncan Haref1447c92018-06-24 15:40:41 -07001694 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1695 IPPROTO_UDP);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001696
wdenk2d966952002-10-31 22:12:35 +00001697 ip->udp_src = htons(sport);
1698 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001699 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001700 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001701}
1702
Joe Hershbergerf559f1c2018-07-03 19:36:39 -05001703int is_serverip_in_cmd(void)
1704{
1705 return !!strchr(net_boot_file_name, ':');
1706}
1707
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001708int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1709{
1710 char *colon;
Lyle Franklinc1fad502022-04-16 11:36:43 -04001711 struct in_addr ip;
1712 ip.s_addr = 0;
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001713
1714 if (net_boot_file_name[0] == '\0')
1715 return 0;
1716
1717 colon = strchr(net_boot_file_name, ':');
1718 if (colon) {
Lyle Franklinc1fad502022-04-16 11:36:43 -04001719 ip = string_to_ip(net_boot_file_name);
1720 if (ipaddr && ip.s_addr)
1721 *ipaddr = ip;
1722 }
1723 if (ip.s_addr) {
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001724 strncpy(filename, colon + 1, max_len);
1725 } else {
1726 strncpy(filename, net_boot_file_name, max_len);
1727 }
1728 filename[max_len - 1] = '\0';
1729
1730 return 1;
1731}
1732
Joe Hershberger013d3872015-04-08 01:41:17 -05001733void vlan_to_string(ushort x, char *s)
wdenk145d2c12004-04-15 21:48:45 +00001734{
1735 x = ntohs(x);
1736
1737 if (x == (ushort)-1)
1738 x = VLAN_NONE;
1739
1740 if (x == VLAN_NONE)
1741 strcpy(s, "none");
1742 else
1743 sprintf(s, "%d", x & VLAN_IDMASK);
1744}
1745
Joe Hershberger013d3872015-04-08 01:41:17 -05001746ushort string_to_vlan(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001747{
1748 ushort id;
1749
1750 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001751 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001752
1753 if (*s < '0' || *s > '9')
1754 id = VLAN_NONE;
1755 else
Simon Glassff9b9032021-07-24 09:03:30 -06001756 id = (ushort)dectoul(s, NULL);
wdenk145d2c12004-04-15 21:48:45 +00001757
wdenk656140b2004-04-25 13:18:40 +00001758 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001759}
1760
Simon Glassda1a1342017-08-03 12:22:15 -06001761ushort env_get_vlan(char *var)
wdenk145d2c12004-04-15 21:48:45 +00001762{
Simon Glass64b723f2017-08-03 12:22:12 -06001763 return string_to_vlan(env_get(var));
wdenk145d2c12004-04-15 21:48:45 +00001764}