blob: 8cb8b4b9f345952434da49348dbdaec66965fb36 [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 *
Joe Hershbergerb35a3a62012-05-23 08:00:12 +000027 * LINK_LOCAL:
28 *
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
83
84#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060085#include <bootstage.h>
wdenk2d966952002-10-31 22:12:35 +000086#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070087#include <console.h>
Simon Glass313112a2019-08-01 09:46:46 -060088#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060089#include <env_internal.h>
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050090#include <errno.h>
Simon Glass85f13782019-12-28 10:45:03 -070091#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060092#include <log.h>
wdenk2d966952002-10-31 22:12:35 +000093#include <net.h>
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +030094#include <net6.h>
95#include <ndisc.h>
Alex Kiernand5aa57c2018-05-29 15:30:53 +000096#include <net/fastboot.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"
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{
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300352 if (eth_get_dev()) {
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500353 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300354
355 if (IS_ENABLED(CONFIG_IPV6)) {
356 ip6_make_lladdr(&net_link_local_ip6, net_ethaddr);
357 if (!memcmp(&net_ip6, &net_null_addr_ip6,
358 sizeof(struct in6_addr)))
359 memcpy(&net_ip6, &net_link_local_ip6,
360 sizeof(struct in6_addr));
361 }
362 }
Sean Anderson35e82982020-09-12 17:45:43 -0400363 else
364 /*
365 * Not ideal, but there's no way to get the actual error, and I
366 * don't feel like fixing all the users of eth_get_dev to deal
367 * with errors.
368 */
369 return -ENONET;
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300370
Sean Anderson35e82982020-09-12 17:45:43 -0400371 return 0;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100372}
373
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000374static void net_clear_handlers(void)
375{
376 net_set_udp_handler(NULL);
377 net_set_arp_handler(NULL);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500378 net_set_timeout_handler(0, NULL);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000379}
380
381static void net_cleanup_loop(void)
382{
383 net_clear_handlers();
384}
385
Sean Anderson35e82982020-09-12 17:45:43 -0400386int net_init(void)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000387{
388 static int first_call = 1;
389
390 if (first_call) {
391 /*
392 * Setup packet buffers, aligned correctly.
393 */
394 int i;
395
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500396 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
397 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500398 for (i = 0; i < PKTBUFSRX; i++) {
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500399 net_rx_packets[i] = net_tx_packet +
400 (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500401 }
Joe Hershberger85ae7762015-04-08 01:41:08 -0500402 arp_init();
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300403 ndisc_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000404 net_clear_handlers();
405
406 /* Only need to setup buffer pointers once. */
407 first_call = 0;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800408 if (IS_ENABLED(CONFIG_PROT_TCP))
409 tcp_set_tcp_state(TCP_CLOSED);
Joe Hershberger017e5c42012-05-23 07:59:22 +0000410 }
411
Sean Anderson35e82982020-09-12 17:45:43 -0400412 return net_init_loop();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000413}
414
wdenke6466f62003-06-05 19:27:42 +0000415/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000416/*
417 * Main network processing loop.
418 */
419
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500420int net_loop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000421{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500422 int ret = -EINVAL;
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200423 enum net_loop_state prev_net_state = net_state;
wdenk2d966952002-10-31 22:12:35 +0000424
Marek Szyprowskib9df7d92020-06-15 11:15:57 +0200425#if defined(CONFIG_CMD_PING)
426 if (protocol != PING)
427 net_ping_ip.s_addr = 0;
428#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500429 net_restarted = 0;
430 net_dev_exists = 0;
431 net_try_count = 1;
432 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000433
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930434#ifdef CONFIG_PHY_NCSI
435 if (phy_interface_is_ncsi() && protocol != NCSI && !ncsi_active()) {
436 printf("%s: configuring NCSI first\n", __func__);
437 if (net_loop(NCSI) < 0)
438 return ret;
439 eth_init_state_only();
440 goto restart;
441 }
442#endif
443
Simon Glass768cbf02011-12-10 11:08:06 +0000444 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000445 net_init();
Yang Liu7c78e2f2020-12-21 14:44:39 +1100446 if (eth_is_on_demand_init()) {
wdenkfa66e932005-04-03 14:52:59 +0000447 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000448 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500449 ret = eth_init();
450 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000451 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500452 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000453 }
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500454 } else {
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500455 eth_init_state_only();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500456 }
Samuel Mendoza-Jonasfeebd6c2022-08-08 21:46:04 +0930457
wdenk2d966952002-10-31 22:12:35 +0000458restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800459#ifdef CONFIG_USB_KEYBOARD
460 net_busy_flag = 0;
461#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000462 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000463
464 /*
465 * Start the ball rolling with the given start function. From
466 * here on, this code is a state machine driven by received
467 * packets and timer events.
468 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500469 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
470 net_init_loop();
wdenk2d966952002-10-31 22:12:35 +0000471
Simon Glass66014cc2023-01-17 10:47:27 -0700472 if (!test_eth_enabled())
473 return 0;
474
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000475 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000476 case 1:
477 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000478 eth_halt();
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200479 net_set_state(prev_net_state);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500480 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000481
wdenk2d966952002-10-31 22:12:35 +0000482 case 2:
483 /* network device not configured */
484 break;
wdenk2d966952002-10-31 22:12:35 +0000485
486 case 0:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500487 net_dev_exists = 1;
Joe Hershberger290c8992015-04-08 01:41:02 -0500488 net_boot_file_size = 0;
wdenk2d966952002-10-31 22:12:35 +0000489 switch (protocol) {
Krebs, Olafd9249382020-03-09 14:27:55 +0000490#ifdef CONFIG_CMD_TFTPBOOT
Simon Glassd6c5f552011-10-24 18:00:02 +0000491 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000492#ifdef CONFIG_CMD_TFTPPUT
493 case TFTPPUT:
494#endif
wdenk2d966952002-10-31 22:12:35 +0000495 /* always use ARP to get server ethernet address */
Joe Hershberger64701592015-04-08 01:41:07 -0500496 tftp_start(protocol);
wdenk2d966952002-10-31 22:12:35 +0000497 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000498#endif
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000499#ifdef CONFIG_CMD_TFTPSRV
500 case TFTPSRV:
Joe Hershberger64701592015-04-08 01:41:07 -0500501 tftp_start_server();
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000502 break;
503#endif
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000504#ifdef CONFIG_UDP_FUNCTION_FASTBOOT
505 case FASTBOOT:
506 fastboot_start_server();
507 break;
508#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500509#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000510 case DHCP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500511 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500512 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500513 dhcp_request(); /* Basically same as BOOTP */
wdenk2d966952002-10-31 22:12:35 +0000514 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500515#endif
Sean Edmonde8c43832023-04-11 10:48:46 -0700516 case DHCP6:
517 if (IS_ENABLED(CONFIG_CMD_DHCP6))
518 dhcp6_start();
519 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000520#if defined(CONFIG_CMD_BOOTP)
wdenk2d966952002-10-31 22:12:35 +0000521 case BOOTP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500522 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500523 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500524 bootp_request();
wdenk2d966952002-10-31 22:12:35 +0000525 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000526#endif
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500527#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000528 case RARP:
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500529 rarp_try = 0;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500530 net_ip.s_addr = 0;
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500531 rarp_request();
wdenk2d966952002-10-31 22:12:35 +0000532 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500533#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500534#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000535 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000536 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000537 break;
538#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +0300539#if defined(CONFIG_CMD_PING6)
540 case PING6:
541 ping6_start();
542 break;
543#endif
Tom Rini57256302019-12-05 19:35:07 -0500544#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
wdenkbe9c1cb2004-02-24 02:00:03 +0000545 case NFS:
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500546 nfs_start();
wdenkbe9c1cb2004-02-24 02:00:03 +0000547 break;
548#endif
Ying-Chun Liu (PaulLiu)cc96a1d2022-11-08 14:17:29 +0800549#if defined(CONFIG_CMD_WGET)
550 case WGET:
551 wget_start();
552 break;
553#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500554#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000555 case CDP:
Joe Hershberger527336f2015-04-08 01:41:14 -0500556 cdp_start();
wdenk145d2c12004-04-15 21:48:45 +0000557 break;
558#endif
Holger Denglerae85c072017-07-20 10:10:55 +0200559#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000560 case NETCONS:
Joe Hershbergerd02aa6b2015-04-08 01:41:16 -0500561 nc_start();
wdenkb8fb6192004-08-02 21:11:11 +0000562 break;
563#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400564#if defined(CONFIG_CMD_DNS)
565 case DNS:
Joe Hershbergerf725e342015-04-08 01:41:15 -0500566 dns_start();
Robin Getz82f0d232009-07-20 14:53:54 -0400567 break;
568#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000569#if defined(CONFIG_CMD_LINK_LOCAL)
570 case LINKLOCAL:
571 link_local_start();
572 break;
573#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200574#if defined(CONFIG_CMD_WOL)
575 case WOL:
576 wol_start();
577 break;
578#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930579#if defined(CONFIG_PHY_NCSI)
580 case NCSI:
581 ncsi_probe_packages();
582 break;
583#endif
wdenk2d966952002-10-31 22:12:35 +0000584 default:
585 break;
586 }
587
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200588 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
589 udp_start();
590
wdenk2d966952002-10-31 22:12:35 +0000591 break;
592 }
593
Jon Loeliger54f35c22007-07-09 17:45:14 -0500594#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000595#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200596 defined(CONFIG_LED_STATUS) && \
597 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000598 /*
wdenk9c53f402003-10-15 23:53:47 +0000599 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000600 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000601 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200602 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000603 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200604 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200605#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000606#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800607#ifdef CONFIG_USB_KEYBOARD
608 net_busy_flag = 1;
609#endif
wdenk2d966952002-10-31 22:12:35 +0000610
611 /*
612 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000613 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000614 */
615 for (;;) {
Stefan Roese80877fa2022-09-02 14:10:46 +0200616 schedule();
Joe Hershbergerd6978a42015-12-21 16:31:35 -0600617 if (arp_timeout_check() > 0)
618 time_start = get_timer(0);
619
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +0300620 if (IS_ENABLED(CONFIG_IPV6)) {
621 if (use_ip6 && (ndisc_timeout_check() > 0))
622 time_start = get_timer(0);
623 }
624
wdenk2d966952002-10-31 22:12:35 +0000625 /*
626 * Check the ethernet for a new packet. The ethernet
627 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500628 * Most drivers return the most recent packet size, but not
629 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000630 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200631 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000632
633 /*
634 * Abort if ctrl-c was pressed.
635 */
636 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000637 /* cancel any ARP that may not have completed */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500638 net_arp_wait_packet_ip.s_addr = 0;
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000639
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000640 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000641 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000642 /* Invalidate the last protocol */
643 eth_set_last_protocol(BOOTP);
644
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000645 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000646 /* include a debug print as well incase the debug
647 messages are directed to stderr */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500648 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
Michal Simekafd31602015-08-21 08:49:48 +0200649 ret = -EINTR;
Simon Glass230467c2011-10-24 18:00:01 +0000650 goto done;
wdenk2d966952002-10-31 22:12:35 +0000651 }
652
wdenk2d966952002-10-31 22:12:35 +0000653 /*
654 * Check for a timeout, and run the timeout handler
655 * if we have one.
656 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500657 if (time_handler &&
658 ((get_timer(0) - time_start) > time_delta)) {
wdenk2d966952002-10-31 22:12:35 +0000659 thand_f *x;
660
Jon Loeliger54f35c22007-07-09 17:45:14 -0500661#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000662#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200663 defined(CONFIG_LED_STATUS) && \
664 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000665 /*
wdenk9c53f402003-10-15 23:53:47 +0000666 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000667 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000668 if (miiphy_link(eth_get_dev()->name,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500669 CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200670 status_led_set(CONFIG_LED_STATUS_RED,
671 CONFIG_LED_STATUS_OFF);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500672 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200673 status_led_set(CONFIG_LED_STATUS_RED,
674 CONFIG_LED_STATUS_ON);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000675#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000676#endif /* CONFIG_MII, ... */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500677 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
678 x = time_handler;
679 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000680 (*x)();
681 }
682
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500683 if (net_state == NETLOOP_FAIL)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500684 ret = net_start_again();
wdenk2d966952002-10-31 22:12:35 +0000685
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000686 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000687 case NETLOOP_RESTART:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500688 net_restarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000689 goto restart;
690
691 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000692 net_cleanup_loop();
Joe Hershberger290c8992015-04-08 01:41:02 -0500693 if (net_boot_file_size > 0) {
694 printf("Bytes transferred = %d (%x hex)\n",
695 net_boot_file_size, net_boot_file_size);
Simon Glass4d949a22017-08-03 12:22:10 -0600696 env_set_hex("filesize", net_boot_file_size);
Simon Glass892265d2019-12-28 10:45:02 -0700697 env_set_hex("fileaddr", image_load_addr);
wdenk2d966952002-10-31 22:12:35 +0000698 }
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +0930699 if (protocol != NETCONS && protocol != NCSI)
Joe Hershberger9f374062012-08-03 10:59:08 +0000700 eth_halt();
701 else
702 eth_halt_state_only();
703
704 eth_set_last_protocol(protocol);
705
Joe Hershberger290c8992015-04-08 01:41:02 -0500706 ret = net_boot_file_size;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500707 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000708 goto done;
wdenk2d966952002-10-31 22:12:35 +0000709
710 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000711 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000712 /* Invalidate the last protocol */
713 eth_set_last_protocol(BOOTP);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500714 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
Thomas RIENOESSL2dee4192018-11-21 15:56:07 +0100715 ret = -ENONET;
Simon Glass230467c2011-10-24 18:00:01 +0000716 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000717
718 case NETLOOP_CONTINUE:
719 continue;
wdenk2d966952002-10-31 22:12:35 +0000720 }
721 }
Simon Glass230467c2011-10-24 18:00:01 +0000722
723done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800724#ifdef CONFIG_USB_KEYBOARD
725 net_busy_flag = 0;
726#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000727#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000728 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000729 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000730 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000731#endif
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200732 net_set_state(prev_net_state);
Ramon Friedac598c12019-07-18 21:43:30 +0300733
734#if defined(CONFIG_CMD_PCAP)
735 if (pcap_active())
736 pcap_print_status();
737#endif
Simon Glass230467c2011-10-24 18:00:01 +0000738 return ret;
wdenk2d966952002-10-31 22:12:35 +0000739}
740
741/**********************************************************************/
742
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500743static void start_again_timeout_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000744{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000745 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000746}
747
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500748int net_start_again(void)
wdenk2d966952002-10-31 22:12:35 +0000749{
wdenk05939202004-04-18 17:39:38 +0000750 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100751 int retry_forever = 0;
752 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500753 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000754
Simon Glass64b723f2017-08-03 12:22:12 -0600755 nretry = env_get("netretry");
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100756 if (nretry) {
757 if (!strcmp(nretry, "yes"))
758 retry_forever = 1;
759 else if (!strcmp(nretry, "no"))
760 retrycnt = 0;
761 else if (!strcmp(nretry, "once"))
762 retrycnt = 1;
763 else
764 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500765 } else {
766 retrycnt = 0;
767 retry_forever = 0;
768 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100769
Leonid Iziumtsevfb7c94c2018-03-09 15:29:06 +0100770 if ((!retry_forever) && (net_try_count > retrycnt)) {
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100771 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000772 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500773 /*
774 * We don't provide a way for the protocol to return an error,
775 * but this is almost always the reason.
776 */
777 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000778 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100779
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500780 net_try_count++;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100781
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000782 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100783#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500784 eth_try_another(!net_restarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100785#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500786 ret = eth_init();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500787 if (net_restart_wrap) {
788 net_restart_wrap = 0;
789 if (net_dev_exists) {
790 net_set_timeout_handler(10000UL,
791 start_again_timeout_handler);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000792 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000793 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000794 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000795 }
wdenk05939202004-04-18 17:39:38 +0000796 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000797 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000798 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500799 return ret;
wdenk2d966952002-10-31 22:12:35 +0000800}
801
802/**********************************************************************/
803/*
804 * Miscelaneous bits.
805 */
806
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000807static void dummy_handler(uchar *pkt, unsigned dport,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500808 struct in_addr sip, unsigned sport,
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000809 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000810{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000811}
812
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000813rxhand_f *net_get_udp_handler(void)
814{
815 return udp_packet_handler;
816}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000817
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000818void net_set_udp_handler(rxhand_f *f)
819{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500820 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000821 if (f == NULL)
822 udp_packet_handler = dummy_handler;
823 else
824 udp_packet_handler = f;
825}
826
827rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000828{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000829 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000830}
831
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000832void net_set_arp_handler(rxhand_f *f)
833{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500834 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000835 if (f == NULL)
836 arp_packet_handler = dummy_handler;
837 else
838 arp_packet_handler = f;
839}
840
Simon Glass2928cd82011-10-26 14:18:38 +0000841#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000842void net_set_icmp_handler(rxhand_icmp_f *f)
843{
844 packet_icmp_handler = f;
845}
Simon Glass2928cd82011-10-26 14:18:38 +0000846#endif
wdenk2d966952002-10-31 22:12:35 +0000847
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500848void net_set_timeout_handler(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000849{
850 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000851 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500852 "--- net_loop timeout handler cancelled\n");
853 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000854 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000855 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500856 "--- net_loop timeout handler set (%p)\n", f);
857 time_handler = f;
858 time_start = get_timer(0);
859 time_delta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000860 }
861}
862
Joe Hershbergere79a5182018-09-26 16:49:02 -0500863uchar *net_get_async_tx_pkt_buf(void)
864{
865 if (arp_is_waiting())
866 return arp_tx_packet; /* If we are waiting, we already sent */
867 else
868 return net_tx_packet;
869}
870
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500871int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000872 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000873{
Duncan Haref1447c92018-06-24 15:40:41 -0700874 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
875 IPPROTO_UDP, 0, 0, 0);
876}
877
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800878#if defined(CONFIG_PROT_TCP)
879int net_send_tcp_packet(int payload_len, int dport, int sport, u8 action,
880 u32 tcp_seq_num, u32 tcp_ack_num)
881{
882 return net_send_ip_packet(net_server_ethaddr, net_server_ip, dport,
883 sport, payload_len, IPPROTO_TCP, action,
884 tcp_seq_num, tcp_ack_num);
885}
886#endif
887
Duncan Haref1447c92018-06-24 15:40:41 -0700888int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
889 int payload_len, int proto, u8 action, u32 tcp_seq_num,
890 u32 tcp_ack_num)
891{
wdenk145d2c12004-04-15 21:48:45 +0000892 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000893 int eth_hdr_size;
894 int pkt_hdr_size;
wdenk145d2c12004-04-15 21:48:45 +0000895
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500896 /* make sure the net_tx_packet is initialized (net_init() was called) */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500897 assert(net_tx_packet != NULL);
898 if (net_tx_packet == NULL)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000899 return -1;
900
wdenke6466f62003-06-05 19:27:42 +0000901 /* convert to new style broadcast */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500902 if (dest.s_addr == 0)
903 dest.s_addr = 0xFFFFFFFF;
wdenke6466f62003-06-05 19:27:42 +0000904
905 /* if broadcast, make the ether address a broadcast and don't do ARP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500906 if (dest.s_addr == 0xFFFFFFFF)
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500907 ether = (uchar *)net_bcast_ethaddr;
wdenke6466f62003-06-05 19:27:42 +0000908
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500909 pkt = (uchar *)net_tx_packet;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000910
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500911 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
Duncan Haref1447c92018-06-24 15:40:41 -0700912
913 switch (proto) {
914 case IPPROTO_UDP:
915 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
916 payload_len);
917 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
918 break;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +0800919#if defined(CONFIG_PROT_TCP)
920 case IPPROTO_TCP:
921 pkt_hdr_size = eth_hdr_size
922 + tcp_set_tcp_header(pkt + eth_hdr_size, dport, sport,
923 payload_len, action, tcp_seq_num,
924 tcp_ack_num);
925 break;
926#endif
Duncan Haref1447c92018-06-24 15:40:41 -0700927 default:
928 return -EINVAL;
929 }
wdenke6466f62003-06-05 19:27:42 +0000930
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000931 /* if MAC address was not discovered yet, do an ARP request */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500932 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000933 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400934
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000935 /* save the ip and eth addr for the packet to send after arp */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500936 net_arp_wait_packet_ip = dest;
Joe Hershberger85ae7762015-04-08 01:41:08 -0500937 arp_wait_packet_ethaddr = ether;
wdenk145d2c12004-04-15 21:48:45 +0000938
wdenke6466f62003-06-05 19:27:42 +0000939 /* size of the waiting packet */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500940 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000941
942 /* and do the ARP request */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500943 arp_wait_try = 1;
944 arp_wait_timer_start = get_timer(0);
945 arp_request();
wdenke6466f62003-06-05 19:27:42 +0000946 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000947 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000948 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500949 &dest, ether);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500950 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000951 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000952 }
wdenke6466f62003-06-05 19:27:42 +0000953}
wdenk145d2c12004-04-15 21:48:45 +0000954
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200955#ifdef CONFIG_IP_DEFRAG
956/*
957 * This function collects fragments in a single packet, according
958 * to the algorithm in RFC815. It returns NULL or the pointer to
959 * a complete packet, in static storage
960 */
Joe Hershberger9d390302016-08-15 14:42:15 -0500961#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200962
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000963#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200964
965/*
966 * this is the packet being assembled, either data or frag control.
967 * Fragments go by 8 bytes, so this union must be 8 bytes long
968 */
969struct hole {
970 /* first_byte is address of this structure */
971 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
972 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
973 u16 prev_hole; /* index of prev, 0 == none */
974 u16 unused;
975};
976
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500977static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200978{
Joe Hershberger77001b432012-05-15 08:59:08 +0000979 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200980 static u16 first_hole, total_len;
981 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000982 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200983 uchar *indata = (uchar *)ip;
984 int offset8, start, len, done = 0;
985 u16 ip_off = ntohs(ip->ip_off);
986
Rasmus Villemoes547e7e62022-10-14 19:43:39 +0200987 /*
988 * Calling code already rejected <, but we don't have to deal
989 * with an IP fragment with no payload.
990 */
991 if (ntohs(ip->ip_len) <= IP_HDR_SIZE)
Fabio Estevama0aaa322022-05-26 11:14:37 -0300992 return NULL;
993
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200994 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000995 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200996 offset8 = (ip_off & IP_OFFS);
997 thisfrag = payload + offset8;
998 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000999 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001000
Rasmus Villemoes547e7e62022-10-14 19:43:39 +02001001 /* All but last fragment must have a multiple-of-8 payload. */
1002 if ((len & 7) && (ip_off & IP_FLAGS_MFRAG))
1003 return NULL;
1004
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001005 if (start + len > IP_MAXUDP) /* fragment extends too far */
1006 return NULL;
1007
1008 if (!total_len || localip->ip_id != ip->ip_id) {
1009 /* new (or different) packet, reset structs */
1010 total_len = 0xffff;
1011 payload[0].last_byte = ~0;
1012 payload[0].next_hole = 0;
1013 payload[0].prev_hole = 0;
1014 first_hole = 0;
1015 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001016 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001017 }
1018
1019 /*
1020 * What follows is the reassembly algorithm. We use the payload
1021 * array as a linked list of hole descriptors, as each hole starts
1022 * at a multiple of 8 bytes. However, last byte can be whatever value,
1023 * so it is represented as byte count, not as 8-byte blocks.
1024 */
1025
1026 h = payload + first_hole;
1027 while (h->last_byte < start) {
1028 if (!h->next_hole) {
1029 /* no hole that far away */
1030 return NULL;
1031 }
1032 h = payload + h->next_hole;
1033 }
1034
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001035 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1036 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001037 /* no overlap with holes (dup fragment?) */
1038 return NULL;
1039 }
1040
1041 if (!(ip_off & IP_FLAGS_MFRAG)) {
1042 /* no more fragmentss: truncate this (last) hole */
1043 total_len = start + len;
1044 h->last_byte = start + len;
1045 }
1046
1047 /*
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001048 * There is some overlap: fix the hole list. This code deals
1049 * with a fragment that overlaps with two different holes
1050 * (thus being a superset of a previously-received fragment)
1051 * by only using the part of the fragment that fits in the
1052 * first hole.
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001053 */
Rasmus Villemoes366587d2022-10-17 09:52:51 +02001054 if (h->last_byte < start + len)
1055 len = h->last_byte - start;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001056
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001057 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001058 /* complete overlap with hole: remove hole */
1059 if (!h->prev_hole && !h->next_hole) {
1060 /* last remaining hole */
1061 done = 1;
1062 } else if (!h->prev_hole) {
1063 /* first hole */
1064 first_hole = h->next_hole;
1065 payload[h->next_hole].prev_hole = 0;
1066 } else if (!h->next_hole) {
1067 /* last hole */
1068 payload[h->prev_hole].next_hole = 0;
1069 } else {
1070 /* in the middle of the list */
1071 payload[h->next_hole].prev_hole = h->prev_hole;
1072 payload[h->prev_hole].next_hole = h->next_hole;
1073 }
1074
1075 } else if (h->last_byte <= start + len) {
1076 /* overlaps with final part of the hole: shorten this hole */
1077 h->last_byte = start;
1078
1079 } else if (h >= thisfrag) {
1080 /* overlaps with initial part of the hole: move this hole */
1081 newh = thisfrag + (len / 8);
1082 *newh = *h;
1083 h = newh;
1084 if (h->next_hole)
1085 payload[h->next_hole].prev_hole = (h - payload);
1086 if (h->prev_hole)
1087 payload[h->prev_hole].next_hole = (h - payload);
1088 else
1089 first_hole = (h - payload);
1090
1091 } else {
1092 /* fragment sits in the middle: split the hole */
1093 newh = thisfrag + (len / 8);
1094 *newh = *h;
1095 h->last_byte = start;
1096 h->next_hole = (newh - payload);
1097 newh->prev_hole = (h - payload);
1098 if (newh->next_hole)
1099 payload[newh->next_hole].prev_hole = (newh - payload);
1100 }
1101
1102 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001103 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001104 if (!done)
1105 return NULL;
1106
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001107 *lenp = total_len + IP_HDR_SIZE;
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001108 localip->ip_len = htons(*lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001109 return localip;
1110}
1111
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001112static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1113 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001114{
1115 u16 ip_off = ntohs(ip->ip_off);
1116 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1117 return ip; /* not a fragment */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001118 return __net_defragment(ip, lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001119}
1120
1121#else /* !CONFIG_IP_DEFRAG */
1122
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001123static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1124 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001125{
1126 u16 ip_off = ntohs(ip->ip_off);
1127 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1128 return ip; /* not a fragment */
1129 return NULL;
1130}
1131#endif
wdenk2d966952002-10-31 22:12:35 +00001132
Simon Glass43c72962011-10-24 18:00:00 +00001133/**
1134 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1135 * drop others.
1136 *
1137 * @parma ip IP packet containing the ICMP
1138 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001139static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger5874dec2015-04-08 01:41:01 -05001140 struct in_addr src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +00001141{
Joe Hershberger78495612012-05-23 07:58:09 +00001142 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +00001143
1144 switch (icmph->type) {
1145 case ICMP_REDIRECT:
1146 if (icmph->code != ICMP_REDIR_HOST)
1147 return;
1148 printf(" ICMP Host Redirect to %pI4 ",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001149 &icmph->un.gateway);
Simon Glass43c72962011-10-24 18:00:00 +00001150 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001151 default:
Simon Glass43c72962011-10-24 18:00:00 +00001152#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001153 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +00001154#endif
Simon Glass2928cd82011-10-26 14:18:38 +00001155#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001156 if (packet_icmp_handler)
1157 packet_icmp_handler(icmph->type, icmph->code,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001158 ntohs(ip->udp_dst), src_ip,
1159 ntohs(ip->udp_src), icmph->un.data,
1160 ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001161#endif
Simon Glass43c72962011-10-24 18:00:00 +00001162 break;
1163 }
1164}
1165
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001166void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +00001167{
Joe Hershberger1178f412012-05-23 07:58:06 +00001168 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001169 struct ip_udp_hdr *ip;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001170 struct in_addr dst_ip;
1171 struct in_addr src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001172 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001173#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001174 int iscdp;
1175#endif
1176 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001177
Joe Hershberger05a377b2012-05-23 08:01:04 +00001178 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001179
Ramon Friedac598c12019-07-18 21:43:30 +03001180#if defined(CONFIG_CMD_PCAP)
1181 pcap_post(in_packet, len, false);
1182#endif
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001183 net_rx_packet = in_packet;
1184 net_rx_packet_len = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001185 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +00001186
1187 /* too small packet? */
1188 if (len < ETHER_HDR_SIZE)
1189 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001190
Alexander Graf94c4b992016-05-06 21:01:01 +02001191#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001192 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001193 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001194 return;
1195 }
1196#endif
wdenk145d2c12004-04-15 21:48:45 +00001197
Jon Loeliger54f35c22007-07-09 17:45:14 -05001198#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001199 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001200 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001201#endif
1202
Joe Hershberger013d3872015-04-08 01:41:17 -05001203 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001204 if (myvlanid == (ushort)-1)
1205 myvlanid = VLAN_NONE;
Joe Hershberger013d3872015-04-08 01:41:17 -05001206 mynvlanid = ntohs(net_native_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001207 if (mynvlanid == (ushort)-1)
1208 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001209
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001210 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001211
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001212 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001213 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001214 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001215 * Got a 802.2 packet. Check the other protocol field.
1216 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001217 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001218 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001219
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001220 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001221 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001222
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001223 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001224 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001225 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001226
1227 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001228 struct vlan_ethernet_hdr *vet =
1229 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001230
Joe Hershberger05a377b2012-05-23 08:01:04 +00001231 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001232
wdenk145d2c12004-04-15 21:48:45 +00001233 /* too small packet? */
1234 if (len < VLAN_ETHER_HDR_SIZE)
1235 return;
1236
1237 /* if no VLAN active */
Joe Hershberger013d3872015-04-08 01:41:17 -05001238 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001239#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001240 && iscdp == 0
1241#endif
1242 )
1243 return;
1244
1245 cti = ntohs(vet->vet_tag);
1246 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001247 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001248
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001249 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001250 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001251 }
1252
Joe Hershberger05a377b2012-05-23 08:01:04 +00001253 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001254
Jon Loeliger54f35c22007-07-09 17:45:14 -05001255#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001256 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001257 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001258 return;
1259 }
1260#endif
1261
1262 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1263 if (vlanid == VLAN_NONE)
1264 vlanid = (mynvlanid & VLAN_IDMASK);
1265 /* not matched? */
1266 if (vlanid != (myvlanid & VLAN_IDMASK))
1267 return;
1268 }
1269
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001270 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001271 case PROT_ARP:
Joe Hershberger85ae7762015-04-08 01:41:08 -05001272 arp_receive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001273 break;
wdenk2d966952002-10-31 22:12:35 +00001274
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001275#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001276 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001277 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001278 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001279#endif
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001280#if IS_ENABLED(CONFIG_IPV6)
1281 case PROT_IP6:
1282 net_ip6_handler(et, (struct ip6_hdr *)ip, len);
Viacheslav Mitrofanova1218172022-12-06 10:08:16 +03001283 break;
Viacheslav Mitrofanovda019102022-12-02 12:18:06 +03001284#endif
wdenk2d966952002-10-31 22:12:35 +00001285 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001286 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001287 /* Before we start poking the header, make sure it is there */
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001288 if (len < IP_HDR_SIZE) {
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001289 debug("len bad %d < %lu\n", len,
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001290 (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001291 return;
1292 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001293 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001294 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001295 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001296 return;
1297 }
1298 len = ntohs(ip->ip_len);
Rasmus Villemoes0007cba2022-10-14 19:43:38 +02001299 if (len < IP_HDR_SIZE) {
1300 debug("bad ip->ip_len %d < %d\n", len, (int)IP_HDR_SIZE);
1301 return;
1302 }
Joe Hershberger05a377b2012-05-23 08:01:04 +00001303 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001304 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001305
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001306 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001307 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001308 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001309 /* Can't deal with IP options (headers != 20 bytes) */
Rasmus Villemoes9ac2c5c2022-10-14 19:43:37 +02001310 if ((ip->ip_hl_v & 0x0f) != 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001311 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001312 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001313 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001314 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001315 return;
1316 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001317 /* If it is not for us, ignore it */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001318 dst_ip = net_read_ip(&ip->ip_dst);
1319 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1320 dst_ip.s_addr != 0xFFFFFFFF) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001321 return;
wdenk2d966952002-10-31 22:12:35 +00001322 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001323 /* Read source IP address for later use */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001324 src_ip = net_read_ip(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001325 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001326 * The function returns the unchanged packet if it's not
1327 * a fragment, and either the complete packet or NULL if
1328 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1329 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001330 ip = net_defragment(ip, &len);
Luca Ceresolidb210822011-05-04 02:40:47 +00001331 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001332 return;
1333 /*
wdenk2d966952002-10-31 22:12:35 +00001334 * watch for ICMP host redirects
1335 *
wdenk57b2d802003-06-27 21:31:46 +00001336 * There is no real handler code (yet). We just watch
1337 * for ICMP host redirect messages. In case anybody
1338 * sees these messages: please contact me
1339 * (wd@denx.de), or - even better - send me the
1340 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001341 *
wdenk57b2d802003-06-27 21:31:46 +00001342 * Note: in all cases where I have seen this so far
1343 * it was a problem with the router configuration,
1344 * for instance when a router was configured in the
1345 * BOOTP reply, but the TFTP server was on the same
1346 * subnet. So this is probably a warning that your
1347 * configuration might be wrong. But I'm not really
1348 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001349 *
1350 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1351 * we send a tftp packet to a dead connection, or when
1352 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001353 */
1354 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001355 receive_icmp(ip, len, src_ip, et);
1356 return;
Ying-Chun Liu (PaulLiu)41efed12022-11-08 14:17:28 +08001357#if defined(CONFIG_PROT_TCP)
1358 } else if (ip->ip_p == IPPROTO_TCP) {
1359 debug_cond(DEBUG_DEV_PKT,
1360 "TCP PH (to=%pI4, from=%pI4, len=%d)\n",
1361 &dst_ip, &src_ip, len);
1362
1363 rxhand_tcp_f((union tcp_build_pkt *)ip, len);
1364 return;
1365#endif
wdenk2d966952002-10-31 22:12:35 +00001366 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1367 return;
1368 }
1369
Rasmus Villemoes932d4842022-10-14 19:43:40 +02001370 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > len - IP_HDR_SIZE)
liucheng (G)c580b292019-08-29 13:47:33 +00001371 return;
1372
Joe Hershberger05a377b2012-05-23 08:01:04 +00001373 debug_cond(DEBUG_DEV_PKT,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001374 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1375 &dst_ip, &src_ip, len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001376
Simon Glasse0eb4ef2021-12-18 11:27:49 -07001377 if (IS_ENABLED(CONFIG_UDP_CHECKSUM) && ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001378 ulong xsum;
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001379 u8 *sumptr;
Stefan Roesedfced812005-08-12 20:06:52 +02001380 ushort sumlen;
1381
1382 xsum = ip->ip_p;
1383 xsum += (ntohs(ip->udp_len));
Joe Hershberger5874dec2015-04-08 01:41:01 -05001384 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1385 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1386 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1387 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
Stefan Roesedfced812005-08-12 20:06:52 +02001388
1389 sumlen = ntohs(ip->udp_len);
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001390 sumptr = (u8 *)&ip->udp_src;
Stefan Roesedfced812005-08-12 20:06:52 +02001391
1392 while (sumlen > 1) {
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001393 /* inlined ntohs() to avoid alignment errors */
1394 xsum += (sumptr[0] << 8) + sumptr[1];
1395 sumptr += 2;
Stefan Roesedfced812005-08-12 20:06:52 +02001396 sumlen -= 2;
1397 }
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001398 if (sumlen > 0)
1399 xsum += (sumptr[0] << 8) + sumptr[0];
Stefan Roesedfced812005-08-12 20:06:52 +02001400 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001401 xsum = (xsum & 0x0000ffff) +
1402 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001403 }
1404 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001405 printf(" UDP wrong checksum %08lx %08x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001406 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001407 return;
1408 }
1409 }
Stefan Roesedfced812005-08-12 20:06:52 +02001410
Holger Denglerae85c072017-07-20 10:10:55 +02001411#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001412 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001413 src_ip,
1414 ntohs(ip->udp_dst),
1415 ntohs(ip->udp_src),
1416 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001417#endif
wdenk2d966952002-10-31 22:12:35 +00001418 /*
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001419 * IP header OK. Pass the packet to the current handler.
wdenk2d966952002-10-31 22:12:35 +00001420 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001421 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001422 ntohs(ip->udp_dst),
1423 src_ip,
1424 ntohs(ip->udp_src),
1425 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001426 break;
Lothar Felten776fc102018-06-22 22:29:54 +02001427#ifdef CONFIG_CMD_WOL
1428 case PROT_WOL:
1429 wol_receive(ip, len);
1430 break;
1431#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301432#ifdef CONFIG_PHY_NCSI
1433 case PROT_NCSI:
1434 ncsi_receive(et, ip, len);
1435 break;
1436#endif
wdenk2d966952002-10-31 22:12:35 +00001437 }
1438}
1439
wdenk2d966952002-10-31 22:12:35 +00001440/**********************************************************************/
1441
Simon Glassd6c5f552011-10-24 18:00:02 +00001442static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001443{
1444 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001445 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001446#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001447 case PING:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001448 if (net_ping_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001449 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001450 return 1;
wdenk05939202004-04-18 17:39:38 +00001451 }
1452 goto common;
wdenke6466f62003-06-05 19:27:42 +00001453#endif
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +03001454#if defined(CONFIG_CMD_PING6)
1455 case PING6:
1456 if (ip6_is_unspecified_addr(&net_ping_ip6)) {
1457 puts("*** ERROR: ping address not given\n");
1458 return 1;
1459 }
1460 goto common;
1461#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001462#if defined(CONFIG_CMD_DNS)
1463 case DNS:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001464 if (net_dns_server.s_addr == 0) {
Robin Getz82f0d232009-07-20 14:53:54 -04001465 puts("*** ERROR: DNS server address not given\n");
1466 return 1;
1467 }
1468 goto common;
1469#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001470#if defined(CONFIG_PROT_UDP)
1471 case UDP:
1472 if (udp_prereq())
1473 return 1;
1474 goto common;
1475#endif
1476
Jon Loeliger54f35c22007-07-09 17:45:14 -05001477#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001478 case NFS:
1479#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001480 /* Fall through */
Simon Glassd6c5f552011-10-24 18:00:02 +00001481 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001482 case TFTPPUT:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001483 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1484 if (!memcmp(&net_server_ip6, &net_null_addr_ip6,
1485 sizeof(struct in6_addr)) &&
1486 !strchr(net_boot_file_name, '[')) {
1487 puts("*** ERROR: `serverip6' not set\n");
1488 return 1;
1489 }
1490 } else if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001491 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001492 return 1;
wdenk05939202004-04-18 17:39:38 +00001493 }
Philippe Reynes2829d992020-09-18 14:13:02 +02001494#if defined(CONFIG_CMD_PING) || \
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001495 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001496common:
wdenke6466f62003-06-05 19:27:42 +00001497#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001498 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001499
Simon Guinot00dceba2011-05-01 23:38:40 +00001500 case NETCONS:
Alex Kiernand5aa57c2018-05-29 15:30:53 +00001501 case FASTBOOT:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001502 case TFTPSRV:
Viacheslav Mitrofanov12b95ae2022-12-02 12:18:07 +03001503 if (IS_ENABLED(CONFIG_IPV6) && use_ip6) {
1504 if (!memcmp(&net_link_local_ip6, &net_null_addr_ip6,
1505 sizeof(struct in6_addr))) {
1506 puts("*** ERROR: `ip6addr` not set\n");
1507 return 1;
1508 }
1509 } else if (net_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001510 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001511 return 1;
wdenk05939202004-04-18 17:39:38 +00001512 }
1513 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001514
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001515#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001516 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001517#endif
Samuel Mendoza-Jonasc8f4ab02022-08-08 21:46:03 +09301518#ifdef CONFIG_PHY_NCSI
1519 case NCSI:
1520#endif
wdenk2d966952002-10-31 22:12:35 +00001521 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001522 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001523 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001524 case LINKLOCAL:
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001525 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001526 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001527
wdenk05939202004-04-18 17:39:38 +00001528 switch (num) {
1529 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001530 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001531 return 1;
wdenk05939202004-04-18 17:39:38 +00001532 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001533 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001534 break;
wdenk05939202004-04-18 17:39:38 +00001535 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001536 printf("*** ERROR: `eth%daddr' not set\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001537 num);
wdenk2d966952002-10-31 22:12:35 +00001538 break;
wdenk05939202004-04-18 17:39:38 +00001539 }
wdenk2d966952002-10-31 22:12:35 +00001540
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001541 net_start_again();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001542 return 2;
wdenk05939202004-04-18 17:39:38 +00001543 }
1544 /* Fall through */
1545 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001546 return 0;
wdenk2d966952002-10-31 22:12:35 +00001547 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001548 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001549}
1550/**********************************************************************/
1551
1552int
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001553net_eth_hdr_size(void)
wdenk145d2c12004-04-15 21:48:45 +00001554{
1555 ushort myvlanid;
1556
Joe Hershberger013d3872015-04-08 01:41:17 -05001557 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001558 if (myvlanid == (ushort)-1)
1559 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001560
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001561 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1562 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001563}
1564
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001565int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001566{
Joe Hershberger1178f412012-05-23 07:58:06 +00001567 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001568 ushort myvlanid;
1569
Joe Hershberger013d3872015-04-08 01:41:17 -05001570 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001571 if (myvlanid == (ushort)-1)
1572 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001573
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001574 memcpy(et->et_dest, dest_ethaddr, 6);
1575 memcpy(et->et_src, net_ethaddr, 6);
wdenk145d2c12004-04-15 21:48:45 +00001576 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001577 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001578 return ETHER_HDR_SIZE;
1579 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001580 struct vlan_ethernet_hdr *vet =
1581 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001582
wdenk145d2c12004-04-15 21:48:45 +00001583 vet->vet_vlan_type = htons(PROT_VLAN);
1584 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1585 vet->vet_type = htons(prot);
1586 return VLAN_ETHER_HDR_SIZE;
1587 }
1588}
wdenk2d966952002-10-31 22:12:35 +00001589
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001590int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1591{
1592 ushort protlen;
1593
1594 memcpy(et->et_dest, addr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001595 memcpy(et->et_src, net_ethaddr, 6);
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001596 protlen = ntohs(et->et_protlen);
1597 if (protlen == PROT_VLAN) {
1598 struct vlan_ethernet_hdr *vet =
1599 (struct vlan_ethernet_hdr *)et;
1600 vet->vet_type = htons(prot);
1601 return VLAN_ETHER_HDR_SIZE;
1602 } else if (protlen > 1514) {
1603 et->et_protlen = htons(prot);
1604 return ETHER_HDR_SIZE;
1605 } else {
1606 /* 802.2 + SNAP */
1607 struct e802_hdr *et802 = (struct e802_hdr *)et;
1608 et802->et_prot = htons(prot);
1609 return E802_HDR_SIZE;
1610 }
1611}
1612
Duncan Haref1447c92018-06-24 15:40:41 -07001613void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1614 u16 pkt_len, u8 proto)
wdenk2d966952002-10-31 22:12:35 +00001615{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001616 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001617
1618 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001619 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001620 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001621 /* IP_HDR_SIZE / 4 (not including UDP) */
1622 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001623 ip->ip_tos = 0;
Duncan Haref1447c92018-06-24 15:40:41 -07001624 ip->ip_len = htons(pkt_len);
1625 ip->ip_p = proto;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001626 ip->ip_id = htons(net_ip_id++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001627 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001628 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001629 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001630 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001631 net_copy_ip((void *)&ip->ip_src, &source);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001632 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001633 net_copy_ip((void *)&ip->ip_dst, &dest);
Duncan Haref1447c92018-06-24 15:40:41 -07001634
1635 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001636}
1637
Joe Hershberger5874dec2015-04-08 01:41:01 -05001638void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001639 int len)
1640{
1641 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1642
1643 /*
1644 * If the data is an odd number of bytes, zero the
1645 * byte after the last byte so that the checksum
1646 * will work.
1647 */
1648 if (len & 1)
1649 pkt[IP_UDP_HDR_SIZE + len] = 0;
1650
Duncan Haref1447c92018-06-24 15:40:41 -07001651 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1652 IPPROTO_UDP);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001653
wdenk2d966952002-10-31 22:12:35 +00001654 ip->udp_src = htons(sport);
1655 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001656 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001657 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001658}
1659
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001660void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001661{
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001662 if (src && *src && (*src == '"')) {
wdenk2d966952002-10-31 22:12:35 +00001663 ++src;
1664 --size;
1665 }
1666
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001667 while ((--size > 0) && src && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001668 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001669 *dst = '\0';
1670}
1671
Joe Hershbergerf559f1c2018-07-03 19:36:39 -05001672int is_serverip_in_cmd(void)
1673{
1674 return !!strchr(net_boot_file_name, ':');
1675}
1676
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001677int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1678{
1679 char *colon;
Lyle Franklinc1fad502022-04-16 11:36:43 -04001680 struct in_addr ip;
1681 ip.s_addr = 0;
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001682
1683 if (net_boot_file_name[0] == '\0')
1684 return 0;
1685
1686 colon = strchr(net_boot_file_name, ':');
1687 if (colon) {
Lyle Franklinc1fad502022-04-16 11:36:43 -04001688 ip = string_to_ip(net_boot_file_name);
1689 if (ipaddr && ip.s_addr)
1690 *ipaddr = ip;
1691 }
1692 if (ip.s_addr) {
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001693 strncpy(filename, colon + 1, max_len);
1694 } else {
1695 strncpy(filename, net_boot_file_name, max_len);
1696 }
1697 filename[max_len - 1] = '\0';
1698
1699 return 1;
1700}
1701
Joe Hershberger5874dec2015-04-08 01:41:01 -05001702void ip_to_string(struct in_addr x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001703{
Joe Hershberger5874dec2015-04-08 01:41:01 -05001704 x.s_addr = ntohl(x.s_addr);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001705 sprintf(s, "%d.%d.%d.%d",
Joe Hershberger5874dec2015-04-08 01:41:01 -05001706 (int) ((x.s_addr >> 24) & 0xff),
1707 (int) ((x.s_addr >> 16) & 0xff),
1708 (int) ((x.s_addr >> 8) & 0xff),
1709 (int) ((x.s_addr >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001710 );
wdenk2d966952002-10-31 22:12:35 +00001711}
1712
Joe Hershberger013d3872015-04-08 01:41:17 -05001713void vlan_to_string(ushort x, char *s)
wdenk145d2c12004-04-15 21:48:45 +00001714{
1715 x = ntohs(x);
1716
1717 if (x == (ushort)-1)
1718 x = VLAN_NONE;
1719
1720 if (x == VLAN_NONE)
1721 strcpy(s, "none");
1722 else
1723 sprintf(s, "%d", x & VLAN_IDMASK);
1724}
1725
Joe Hershberger013d3872015-04-08 01:41:17 -05001726ushort string_to_vlan(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001727{
1728 ushort id;
1729
1730 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001731 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001732
1733 if (*s < '0' || *s > '9')
1734 id = VLAN_NONE;
1735 else
Simon Glassff9b9032021-07-24 09:03:30 -06001736 id = (ushort)dectoul(s, NULL);
wdenk145d2c12004-04-15 21:48:45 +00001737
wdenk656140b2004-04-25 13:18:40 +00001738 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001739}
1740
Simon Glassda1a1342017-08-03 12:22:15 -06001741ushort env_get_vlan(char *var)
wdenk145d2c12004-04-15 21:48:45 +00001742{
Simon Glass64b723f2017-08-03 12:22:12 -06001743 return string_to_vlan(env_get(var));
wdenk145d2c12004-04-15 21:48:45 +00001744}