blob: 197fde3568d7f325f3abc2e1380ad2dc13ee88d5 [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>
Alex Kiernand5aa57c2018-05-29 15:30:53 +000094#include <net/fastboot.h>
Lukasz Majewski21185922015-08-24 00:21:43 +020095#include <net/tftp.h>
Ramon Friedac598c12019-07-18 21:43:30 +030096#if defined(CONFIG_CMD_PCAP)
97#include <net/pcap.h>
98#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +020099#include <net/udp.h>
Uri Mashiach4892d392017-01-19 10:51:45 +0200100#if defined(CONFIG_LED_STATUS)
wdenk49c3f672003-10-08 22:33:00 +0000101#include <miiphy.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000102#include <status_led.h>
wdenkb4ad9622005-04-01 00:25:43 +0000103#endif
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000104#include <watchdog.h>
105#include <linux/compiler.h>
106#include "arp.h"
107#include "bootp.h"
Joe Hershbergera4215b02012-05-23 07:57:59 +0000108#include "cdp.h"
Robin Getz82f0d232009-07-20 14:53:54 -0400109#if defined(CONFIG_CMD_DNS)
110#include "dns.h"
111#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000112#include "link_local.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000113#include "nfs.h"
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000114#include "ping.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000115#include "rarp.h"
Lothar Felten776fc102018-06-22 22:29:54 +0200116#if defined(CONFIG_CMD_WOL)
117#include "wol.h"
118#endif
wdenk2d966952002-10-31 22:12:35 +0000119
wdenk2d966952002-10-31 22:12:35 +0000120/** BOOTP EXTENTIONS **/
121
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000122/* Our subnet mask (0=unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500123struct in_addr net_netmask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000124/* Our gateways IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500125struct in_addr net_gateway;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000126/* Our DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500127struct in_addr net_dns_server;
Jon Loeliger5336a762007-07-09 22:08:34 -0500128#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000129/* Our 2nd DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500130struct in_addr net_dns_server2;
stroesee0aadfb2003-08-28 14:17:32 +0000131#endif
wdenk2d966952002-10-31 22:12:35 +0000132
133/** END OF BOOTP EXTENTIONS **/
134
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000135/* Our ethernet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500136u8 net_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000137/* Boot server enet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500138u8 net_server_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000139/* Our IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500140struct in_addr net_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000141/* Server IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500142struct in_addr net_server_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000143/* Current receive packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500144uchar *net_rx_packet;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000145/* Current rx packet length */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500146int net_rx_packet_len;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000147/* IP packet ID */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500148static unsigned net_ip_id;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000149/* Ethernet bcast address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500150const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
151const u8 net_null_ethaddr[6];
Alexander Graf94c4b992016-05-06 21:01:01 +0200152#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500153void (*push_packet)(void *, int len) = 0;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100154#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000155/* Network loop state */
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000156enum net_loop_state net_state;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000157/* Tried all network devices */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500158int net_restart_wrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000159/* Network loop restarted */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500160static int net_restarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000161/* At least one device configured */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500162static int net_dev_exists;
wdenk2d966952002-10-31 22:12:35 +0000163
wdenk05939202004-04-18 17:39:38 +0000164/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000165/* default is without VLAN */
Joe Hershberger013d3872015-04-08 01:41:17 -0500166ushort net_our_vlan = 0xFFFF;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* ditto */
Joe Hershberger013d3872015-04-08 01:41:17 -0500168ushort net_native_vlan = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000169
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* Boot File name */
Jacob Stifflerae80c2e2015-09-30 10:12:05 -0400171char net_boot_file_name[1024];
Alexander Graff43bf5d2018-06-15 10:29:27 +0200172/* Indicates whether the file name was specified on the command line */
173bool net_boot_file_name_explicit;
Joe Hershberger290c8992015-04-08 01:41:02 -0500174/* The actual transferred size of the bootfile (in bytes) */
175u32 net_boot_file_size;
176/* Boot file size in blocks as reported by the DHCP server */
177u32 net_boot_file_expected_size_in_blocks;
wdenk2d966952002-10-31 22:12:35 +0000178
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500179static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500180/* Receive packets */
181uchar *net_rx_packets[PKTBUFSRX];
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000182/* Current UDP RX packet handler */
183static rxhand_f *udp_packet_handler;
184/* Current ARP RX packet handler */
185static rxhand_f *arp_packet_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000186#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000187/* Current ICMP rx handler */
188static rxhand_icmp_f *packet_icmp_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000189#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000190/* Current timeout handler */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500191static thand_f *time_handler;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000192/* Time base value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500193static ulong time_start;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000194/* Current timeout value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500195static ulong time_delta;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000196/* THE transmit packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500197uchar *net_tx_packet;
wdenk2d966952002-10-31 22:12:35 +0000198
Simon Glassd6c5f552011-10-24 18:00:02 +0000199static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000200
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500201static int net_try_count;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100202
Jim Lin6c8921f2013-08-13 19:03:05 +0800203int __maybe_unused net_busy_flag;
204
wdenk2d966952002-10-31 22:12:35 +0000205/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000206
Joe Hershberger875b6bf2015-05-20 14:27:23 -0500207static int on_ipaddr(const char *name, const char *value, enum env_op op,
208 int flags)
209{
210 if (flags & H_PROGRAMMATIC)
211 return 0;
212
213 net_ip = string_to_ip(value);
214
215 return 0;
216}
217U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
218
219static int on_gatewayip(const char *name, const char *value, enum env_op op,
220 int flags)
221{
222 if (flags & H_PROGRAMMATIC)
223 return 0;
224
225 net_gateway = string_to_ip(value);
226
227 return 0;
228}
229U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
230
231static int on_netmask(const char *name, const char *value, enum env_op op,
232 int flags)
233{
234 if (flags & H_PROGRAMMATIC)
235 return 0;
236
237 net_netmask = string_to_ip(value);
238
239 return 0;
240}
241U_BOOT_ENV_CALLBACK(netmask, on_netmask);
242
243static int on_serverip(const char *name, const char *value, enum env_op op,
244 int flags)
245{
246 if (flags & H_PROGRAMMATIC)
247 return 0;
248
249 net_server_ip = string_to_ip(value);
250
251 return 0;
252}
253U_BOOT_ENV_CALLBACK(serverip, on_serverip);
254
255static int on_nvlan(const char *name, const char *value, enum env_op op,
256 int flags)
257{
258 if (flags & H_PROGRAMMATIC)
259 return 0;
260
261 net_native_vlan = string_to_vlan(value);
262
263 return 0;
264}
265U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
266
267static int on_vlan(const char *name, const char *value, enum env_op op,
268 int flags)
269{
270 if (flags & H_PROGRAMMATIC)
271 return 0;
272
273 net_our_vlan = string_to_vlan(value);
274
275 return 0;
276}
277U_BOOT_ENV_CALLBACK(vlan, on_vlan);
278
279#if defined(CONFIG_CMD_DNS)
280static int on_dnsip(const char *name, const char *value, enum env_op op,
281 int flags)
282{
283 if (flags & H_PROGRAMMATIC)
284 return 0;
285
286 net_dns_server = string_to_ip(value);
287
288 return 0;
289}
290U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
291#endif
292
Simon Glass5234ad12011-10-27 06:24:32 +0000293/*
294 * Check if autoload is enabled. If so, use either NFS or TFTP to download
295 * the boot file.
296 */
297void net_auto_load(void)
298{
Tom Rini57256302019-12-05 19:35:07 -0500299#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
Simon Glass64b723f2017-08-03 12:22:12 -0600300 const char *s = env_get("autoload");
Simon Glass5234ad12011-10-27 06:24:32 +0000301
Joe Hershberger864ec562012-12-11 22:16:22 -0600302 if (s != NULL && strcmp(s, "NFS") == 0) {
Joe Hershberger40aa2082018-07-03 19:36:40 -0500303 if (net_check_prereq(NFS)) {
304/* We aren't expecting to get a serverip, so just accept the assigned IP */
305#ifdef CONFIG_BOOTP_SERVERIP
306 net_set_state(NETLOOP_SUCCESS);
307#else
308 printf("Cannot autoload with NFS\n");
309 net_set_state(NETLOOP_FAIL);
310#endif
311 return;
312 }
Joe Hershberger864ec562012-12-11 22:16:22 -0600313 /*
314 * Use NFS to load the bootfile.
315 */
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500316 nfs_start();
Joe Hershberger864ec562012-12-11 22:16:22 -0600317 return;
318 }
Simon Glass5234ad12011-10-27 06:24:32 +0000319#endif
Simon Glass22c34c22017-08-03 12:22:13 -0600320 if (env_get_yesno("autoload") == 0) {
Joe Hershberger864ec562012-12-11 22:16:22 -0600321 /*
322 * Just use BOOTP/RARP to configure system;
323 * Do not use TFTP to load the bootfile.
324 */
325 net_set_state(NETLOOP_SUCCESS);
326 return;
Simon Glass5234ad12011-10-27 06:24:32 +0000327 }
Joe Hershberger40aa2082018-07-03 19:36:40 -0500328 if (net_check_prereq(TFTPGET)) {
329/* We aren't expecting to get a serverip, so just accept the assigned IP */
330#ifdef CONFIG_BOOTP_SERVERIP
331 net_set_state(NETLOOP_SUCCESS);
332#else
333 printf("Cannot autoload with TFTPGET\n");
334 net_set_state(NETLOOP_FAIL);
335#endif
336 return;
337 }
Joe Hershberger64701592015-04-08 01:41:07 -0500338 tftp_start(TFTPGET);
Simon Glass5234ad12011-10-27 06:24:32 +0000339}
340
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500341static void net_init_loop(void)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100342{
Jim Lin09a2bb82013-05-17 17:41:03 +0800343 if (eth_get_dev())
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500344 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300345
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200346 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100347}
348
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000349static void net_clear_handlers(void)
350{
351 net_set_udp_handler(NULL);
352 net_set_arp_handler(NULL);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500353 net_set_timeout_handler(0, NULL);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000354}
355
356static void net_cleanup_loop(void)
357{
358 net_clear_handlers();
359}
360
Joe Hershberger017e5c42012-05-23 07:59:22 +0000361void net_init(void)
362{
363 static int first_call = 1;
364
365 if (first_call) {
366 /*
367 * Setup packet buffers, aligned correctly.
368 */
369 int i;
370
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500371 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
372 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500373 for (i = 0; i < PKTBUFSRX; i++) {
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500374 net_rx_packets[i] = net_tx_packet +
375 (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500376 }
Joe Hershberger85ae7762015-04-08 01:41:08 -0500377 arp_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000378 net_clear_handlers();
379
380 /* Only need to setup buffer pointers once. */
381 first_call = 0;
382 }
383
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500384 net_init_loop();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000385}
386
wdenke6466f62003-06-05 19:27:42 +0000387/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000388/*
389 * Main network processing loop.
390 */
391
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500392int net_loop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000393{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500394 int ret = -EINVAL;
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200395 enum net_loop_state prev_net_state = net_state;
wdenk2d966952002-10-31 22:12:35 +0000396
Marek Szyprowskib9df7d92020-06-15 11:15:57 +0200397#if defined(CONFIG_CMD_PING)
398 if (protocol != PING)
399 net_ping_ip.s_addr = 0;
400#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500401 net_restarted = 0;
402 net_dev_exists = 0;
403 net_try_count = 1;
404 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000405
Simon Glass768cbf02011-12-10 11:08:06 +0000406 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000407 net_init();
Joe Hershberger9f374062012-08-03 10:59:08 +0000408 if (eth_is_on_demand_init() || protocol != NETCONS) {
wdenkfa66e932005-04-03 14:52:59 +0000409 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000410 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500411 ret = eth_init();
412 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000413 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500414 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000415 }
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500416 } else {
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500417 eth_init_state_only();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500418 }
wdenk2d966952002-10-31 22:12:35 +0000419restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800420#ifdef CONFIG_USB_KEYBOARD
421 net_busy_flag = 0;
422#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000423 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000424
425 /*
426 * Start the ball rolling with the given start function. From
427 * here on, this code is a state machine driven by received
428 * packets and timer events.
429 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500430 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
431 net_init_loop();
wdenk2d966952002-10-31 22:12:35 +0000432
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000433 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000434 case 1:
435 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000436 eth_halt();
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200437 net_set_state(prev_net_state);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500438 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000439
wdenk2d966952002-10-31 22:12:35 +0000440 case 2:
441 /* network device not configured */
442 break;
wdenk2d966952002-10-31 22:12:35 +0000443
444 case 0:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500445 net_dev_exists = 1;
Joe Hershberger290c8992015-04-08 01:41:02 -0500446 net_boot_file_size = 0;
wdenk2d966952002-10-31 22:12:35 +0000447 switch (protocol) {
Krebs, Olafd9249382020-03-09 14:27:55 +0000448#ifdef CONFIG_CMD_TFTPBOOT
Simon Glassd6c5f552011-10-24 18:00:02 +0000449 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000450#ifdef CONFIG_CMD_TFTPPUT
451 case TFTPPUT:
452#endif
wdenk2d966952002-10-31 22:12:35 +0000453 /* always use ARP to get server ethernet address */
Joe Hershberger64701592015-04-08 01:41:07 -0500454 tftp_start(protocol);
wdenk2d966952002-10-31 22:12:35 +0000455 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000456#endif
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000457#ifdef CONFIG_CMD_TFTPSRV
458 case TFTPSRV:
Joe Hershberger64701592015-04-08 01:41:07 -0500459 tftp_start_server();
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000460 break;
461#endif
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000462#ifdef CONFIG_UDP_FUNCTION_FASTBOOT
463 case FASTBOOT:
464 fastboot_start_server();
465 break;
466#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500467#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000468 case DHCP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500469 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500470 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500471 dhcp_request(); /* Basically same as BOOTP */
wdenk2d966952002-10-31 22:12:35 +0000472 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500473#endif
Krebs, Olafd9249382020-03-09 14:27:55 +0000474#if defined(CONFIG_CMD_BOOTP)
wdenk2d966952002-10-31 22:12:35 +0000475 case BOOTP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500476 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500477 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500478 bootp_request();
wdenk2d966952002-10-31 22:12:35 +0000479 break;
Krebs, Olafd9249382020-03-09 14:27:55 +0000480#endif
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500481#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000482 case RARP:
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500483 rarp_try = 0;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500484 net_ip.s_addr = 0;
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500485 rarp_request();
wdenk2d966952002-10-31 22:12:35 +0000486 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500487#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500488#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000489 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000490 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000491 break;
492#endif
Tom Rini57256302019-12-05 19:35:07 -0500493#if defined(CONFIG_CMD_NFS) && !defined(CONFIG_SPL_BUILD)
wdenkbe9c1cb2004-02-24 02:00:03 +0000494 case NFS:
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500495 nfs_start();
wdenkbe9c1cb2004-02-24 02:00:03 +0000496 break;
497#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500498#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000499 case CDP:
Joe Hershberger527336f2015-04-08 01:41:14 -0500500 cdp_start();
wdenk145d2c12004-04-15 21:48:45 +0000501 break;
502#endif
Holger Denglerae85c072017-07-20 10:10:55 +0200503#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000504 case NETCONS:
Joe Hershbergerd02aa6b2015-04-08 01:41:16 -0500505 nc_start();
wdenkb8fb6192004-08-02 21:11:11 +0000506 break;
507#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400508#if defined(CONFIG_CMD_DNS)
509 case DNS:
Joe Hershbergerf725e342015-04-08 01:41:15 -0500510 dns_start();
Robin Getz82f0d232009-07-20 14:53:54 -0400511 break;
512#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000513#if defined(CONFIG_CMD_LINK_LOCAL)
514 case LINKLOCAL:
515 link_local_start();
516 break;
517#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200518#if defined(CONFIG_CMD_WOL)
519 case WOL:
520 wol_start();
521 break;
522#endif
wdenk2d966952002-10-31 22:12:35 +0000523 default:
524 break;
525 }
526
Philippe Reynes6ec70bc2020-09-18 14:13:00 +0200527 if (IS_ENABLED(CONFIG_PROT_UDP) && protocol == UDP)
528 udp_start();
529
wdenk2d966952002-10-31 22:12:35 +0000530 break;
531 }
532
Jon Loeliger54f35c22007-07-09 17:45:14 -0500533#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000534#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200535 defined(CONFIG_LED_STATUS) && \
536 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000537 /*
wdenk9c53f402003-10-15 23:53:47 +0000538 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000539 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000540 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200541 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000542 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200543 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200544#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000545#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800546#ifdef CONFIG_USB_KEYBOARD
547 net_busy_flag = 1;
548#endif
wdenk2d966952002-10-31 22:12:35 +0000549
550 /*
551 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000552 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000553 */
554 for (;;) {
555 WATCHDOG_RESET();
Joe Hershbergerd6978a42015-12-21 16:31:35 -0600556 if (arp_timeout_check() > 0)
557 time_start = get_timer(0);
558
wdenk2d966952002-10-31 22:12:35 +0000559 /*
560 * Check the ethernet for a new packet. The ethernet
561 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500562 * Most drivers return the most recent packet size, but not
563 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000564 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200565 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000566
567 /*
568 * Abort if ctrl-c was pressed.
569 */
570 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000571 /* cancel any ARP that may not have completed */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500572 net_arp_wait_packet_ip.s_addr = 0;
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000573
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000574 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000575 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000576 /* Invalidate the last protocol */
577 eth_set_last_protocol(BOOTP);
578
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000579 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000580 /* include a debug print as well incase the debug
581 messages are directed to stderr */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500582 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
Michal Simekafd31602015-08-21 08:49:48 +0200583 ret = -EINTR;
Simon Glass230467c2011-10-24 18:00:01 +0000584 goto done;
wdenk2d966952002-10-31 22:12:35 +0000585 }
586
wdenk2d966952002-10-31 22:12:35 +0000587 /*
588 * Check for a timeout, and run the timeout handler
589 * if we have one.
590 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500591 if (time_handler &&
592 ((get_timer(0) - time_start) > time_delta)) {
wdenk2d966952002-10-31 22:12:35 +0000593 thand_f *x;
594
Jon Loeliger54f35c22007-07-09 17:45:14 -0500595#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000596#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200597 defined(CONFIG_LED_STATUS) && \
598 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000599 /*
wdenk9c53f402003-10-15 23:53:47 +0000600 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000601 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000602 if (miiphy_link(eth_get_dev()->name,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500603 CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200604 status_led_set(CONFIG_LED_STATUS_RED,
605 CONFIG_LED_STATUS_OFF);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500606 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200607 status_led_set(CONFIG_LED_STATUS_RED,
608 CONFIG_LED_STATUS_ON);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000609#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000610#endif /* CONFIG_MII, ... */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500611 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
612 x = time_handler;
613 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000614 (*x)();
615 }
616
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500617 if (net_state == NETLOOP_FAIL)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500618 ret = net_start_again();
wdenk2d966952002-10-31 22:12:35 +0000619
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000620 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000621 case NETLOOP_RESTART:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500622 net_restarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000623 goto restart;
624
625 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000626 net_cleanup_loop();
Joe Hershberger290c8992015-04-08 01:41:02 -0500627 if (net_boot_file_size > 0) {
628 printf("Bytes transferred = %d (%x hex)\n",
629 net_boot_file_size, net_boot_file_size);
Simon Glass4d949a22017-08-03 12:22:10 -0600630 env_set_hex("filesize", net_boot_file_size);
Simon Glass892265d2019-12-28 10:45:02 -0700631 env_set_hex("fileaddr", image_load_addr);
wdenk2d966952002-10-31 22:12:35 +0000632 }
Joe Hershberger9f374062012-08-03 10:59:08 +0000633 if (protocol != NETCONS)
634 eth_halt();
635 else
636 eth_halt_state_only();
637
638 eth_set_last_protocol(protocol);
639
Joe Hershberger290c8992015-04-08 01:41:02 -0500640 ret = net_boot_file_size;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500641 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000642 goto done;
wdenk2d966952002-10-31 22:12:35 +0000643
644 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000645 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000646 /* Invalidate the last protocol */
647 eth_set_last_protocol(BOOTP);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500648 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
Thomas RIENOESSL2dee4192018-11-21 15:56:07 +0100649 ret = -ENONET;
Simon Glass230467c2011-10-24 18:00:01 +0000650 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000651
652 case NETLOOP_CONTINUE:
653 continue;
wdenk2d966952002-10-31 22:12:35 +0000654 }
655 }
Simon Glass230467c2011-10-24 18:00:01 +0000656
657done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800658#ifdef CONFIG_USB_KEYBOARD
659 net_busy_flag = 0;
660#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000661#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000662 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000663 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000664 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000665#endif
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200666 net_set_state(prev_net_state);
Ramon Friedac598c12019-07-18 21:43:30 +0300667
668#if defined(CONFIG_CMD_PCAP)
669 if (pcap_active())
670 pcap_print_status();
671#endif
Simon Glass230467c2011-10-24 18:00:01 +0000672 return ret;
wdenk2d966952002-10-31 22:12:35 +0000673}
674
675/**********************************************************************/
676
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500677static void start_again_timeout_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000678{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000679 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000680}
681
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500682int net_start_again(void)
wdenk2d966952002-10-31 22:12:35 +0000683{
wdenk05939202004-04-18 17:39:38 +0000684 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100685 int retry_forever = 0;
686 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500687 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000688
Simon Glass64b723f2017-08-03 12:22:12 -0600689 nretry = env_get("netretry");
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100690 if (nretry) {
691 if (!strcmp(nretry, "yes"))
692 retry_forever = 1;
693 else if (!strcmp(nretry, "no"))
694 retrycnt = 0;
695 else if (!strcmp(nretry, "once"))
696 retrycnt = 1;
697 else
698 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500699 } else {
700 retrycnt = 0;
701 retry_forever = 0;
702 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100703
Leonid Iziumtsevfb7c94c2018-03-09 15:29:06 +0100704 if ((!retry_forever) && (net_try_count > retrycnt)) {
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100705 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000706 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500707 /*
708 * We don't provide a way for the protocol to return an error,
709 * but this is almost always the reason.
710 */
711 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000712 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100713
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500714 net_try_count++;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100715
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000716 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100717#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500718 eth_try_another(!net_restarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100719#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500720 ret = eth_init();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500721 if (net_restart_wrap) {
722 net_restart_wrap = 0;
723 if (net_dev_exists) {
724 net_set_timeout_handler(10000UL,
725 start_again_timeout_handler);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000726 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000727 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000728 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000729 }
wdenk05939202004-04-18 17:39:38 +0000730 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000731 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000732 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500733 return ret;
wdenk2d966952002-10-31 22:12:35 +0000734}
735
736/**********************************************************************/
737/*
738 * Miscelaneous bits.
739 */
740
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000741static void dummy_handler(uchar *pkt, unsigned dport,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500742 struct in_addr sip, unsigned sport,
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000743 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000744{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000745}
746
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000747rxhand_f *net_get_udp_handler(void)
748{
749 return udp_packet_handler;
750}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000751
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000752void net_set_udp_handler(rxhand_f *f)
753{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500754 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000755 if (f == NULL)
756 udp_packet_handler = dummy_handler;
757 else
758 udp_packet_handler = f;
759}
760
761rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000762{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000763 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000764}
765
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000766void net_set_arp_handler(rxhand_f *f)
767{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500768 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000769 if (f == NULL)
770 arp_packet_handler = dummy_handler;
771 else
772 arp_packet_handler = f;
773}
774
Simon Glass2928cd82011-10-26 14:18:38 +0000775#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000776void net_set_icmp_handler(rxhand_icmp_f *f)
777{
778 packet_icmp_handler = f;
779}
Simon Glass2928cd82011-10-26 14:18:38 +0000780#endif
wdenk2d966952002-10-31 22:12:35 +0000781
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500782void net_set_timeout_handler(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000783{
784 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000785 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500786 "--- net_loop timeout handler cancelled\n");
787 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000788 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000789 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500790 "--- net_loop timeout handler set (%p)\n", f);
791 time_handler = f;
792 time_start = get_timer(0);
793 time_delta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000794 }
795}
796
Joe Hershbergere79a5182018-09-26 16:49:02 -0500797uchar *net_get_async_tx_pkt_buf(void)
798{
799 if (arp_is_waiting())
800 return arp_tx_packet; /* If we are waiting, we already sent */
801 else
802 return net_tx_packet;
803}
804
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500805int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000806 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000807{
Duncan Haref1447c92018-06-24 15:40:41 -0700808 return net_send_ip_packet(ether, dest, dport, sport, payload_len,
809 IPPROTO_UDP, 0, 0, 0);
810}
811
812int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
813 int payload_len, int proto, u8 action, u32 tcp_seq_num,
814 u32 tcp_ack_num)
815{
wdenk145d2c12004-04-15 21:48:45 +0000816 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000817 int eth_hdr_size;
818 int pkt_hdr_size;
wdenk145d2c12004-04-15 21:48:45 +0000819
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500820 /* make sure the net_tx_packet is initialized (net_init() was called) */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500821 assert(net_tx_packet != NULL);
822 if (net_tx_packet == NULL)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000823 return -1;
824
wdenke6466f62003-06-05 19:27:42 +0000825 /* convert to new style broadcast */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500826 if (dest.s_addr == 0)
827 dest.s_addr = 0xFFFFFFFF;
wdenke6466f62003-06-05 19:27:42 +0000828
829 /* if broadcast, make the ether address a broadcast and don't do ARP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500830 if (dest.s_addr == 0xFFFFFFFF)
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500831 ether = (uchar *)net_bcast_ethaddr;
wdenke6466f62003-06-05 19:27:42 +0000832
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500833 pkt = (uchar *)net_tx_packet;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000834
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500835 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
Duncan Haref1447c92018-06-24 15:40:41 -0700836
837 switch (proto) {
838 case IPPROTO_UDP:
839 net_set_udp_header(pkt + eth_hdr_size, dest, dport, sport,
840 payload_len);
841 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
842 break;
843 default:
844 return -EINVAL;
845 }
wdenke6466f62003-06-05 19:27:42 +0000846
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000847 /* if MAC address was not discovered yet, do an ARP request */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500848 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000849 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400850
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000851 /* save the ip and eth addr for the packet to send after arp */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500852 net_arp_wait_packet_ip = dest;
Joe Hershberger85ae7762015-04-08 01:41:08 -0500853 arp_wait_packet_ethaddr = ether;
wdenk145d2c12004-04-15 21:48:45 +0000854
wdenke6466f62003-06-05 19:27:42 +0000855 /* size of the waiting packet */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500856 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000857
858 /* and do the ARP request */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500859 arp_wait_try = 1;
860 arp_wait_timer_start = get_timer(0);
861 arp_request();
wdenke6466f62003-06-05 19:27:42 +0000862 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000863 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000864 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500865 &dest, ether);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500866 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000867 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000868 }
wdenke6466f62003-06-05 19:27:42 +0000869}
wdenk145d2c12004-04-15 21:48:45 +0000870
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200871#ifdef CONFIG_IP_DEFRAG
872/*
873 * This function collects fragments in a single packet, according
874 * to the algorithm in RFC815. It returns NULL or the pointer to
875 * a complete packet, in static storage
876 */
Joe Hershberger9d390302016-08-15 14:42:15 -0500877#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200878
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000879#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200880
881/*
882 * this is the packet being assembled, either data or frag control.
883 * Fragments go by 8 bytes, so this union must be 8 bytes long
884 */
885struct hole {
886 /* first_byte is address of this structure */
887 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
888 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
889 u16 prev_hole; /* index of prev, 0 == none */
890 u16 unused;
891};
892
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500893static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200894{
Joe Hershberger77001b432012-05-15 08:59:08 +0000895 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200896 static u16 first_hole, total_len;
897 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000898 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200899 uchar *indata = (uchar *)ip;
900 int offset8, start, len, done = 0;
901 u16 ip_off = ntohs(ip->ip_off);
902
903 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000904 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200905 offset8 = (ip_off & IP_OFFS);
906 thisfrag = payload + offset8;
907 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000908 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200909
910 if (start + len > IP_MAXUDP) /* fragment extends too far */
911 return NULL;
912
913 if (!total_len || localip->ip_id != ip->ip_id) {
914 /* new (or different) packet, reset structs */
915 total_len = 0xffff;
916 payload[0].last_byte = ~0;
917 payload[0].next_hole = 0;
918 payload[0].prev_hole = 0;
919 first_hole = 0;
920 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000921 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200922 }
923
924 /*
925 * What follows is the reassembly algorithm. We use the payload
926 * array as a linked list of hole descriptors, as each hole starts
927 * at a multiple of 8 bytes. However, last byte can be whatever value,
928 * so it is represented as byte count, not as 8-byte blocks.
929 */
930
931 h = payload + first_hole;
932 while (h->last_byte < start) {
933 if (!h->next_hole) {
934 /* no hole that far away */
935 return NULL;
936 }
937 h = payload + h->next_hole;
938 }
939
Fillod Stephanee7ade8b2010-06-11 19:26:43 +0200940 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
941 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200942 /* no overlap with holes (dup fragment?) */
943 return NULL;
944 }
945
946 if (!(ip_off & IP_FLAGS_MFRAG)) {
947 /* no more fragmentss: truncate this (last) hole */
948 total_len = start + len;
949 h->last_byte = start + len;
950 }
951
952 /*
953 * There is some overlap: fix the hole list. This code doesn't
954 * deal with a fragment that overlaps with two different holes
955 * (thus being a superset of a previously-received fragment).
956 */
957
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000958 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200959 /* complete overlap with hole: remove hole */
960 if (!h->prev_hole && !h->next_hole) {
961 /* last remaining hole */
962 done = 1;
963 } else if (!h->prev_hole) {
964 /* first hole */
965 first_hole = h->next_hole;
966 payload[h->next_hole].prev_hole = 0;
967 } else if (!h->next_hole) {
968 /* last hole */
969 payload[h->prev_hole].next_hole = 0;
970 } else {
971 /* in the middle of the list */
972 payload[h->next_hole].prev_hole = h->prev_hole;
973 payload[h->prev_hole].next_hole = h->next_hole;
974 }
975
976 } else if (h->last_byte <= start + len) {
977 /* overlaps with final part of the hole: shorten this hole */
978 h->last_byte = start;
979
980 } else if (h >= thisfrag) {
981 /* overlaps with initial part of the hole: move this hole */
982 newh = thisfrag + (len / 8);
983 *newh = *h;
984 h = newh;
985 if (h->next_hole)
986 payload[h->next_hole].prev_hole = (h - payload);
987 if (h->prev_hole)
988 payload[h->prev_hole].next_hole = (h - payload);
989 else
990 first_hole = (h - payload);
991
992 } else {
993 /* fragment sits in the middle: split the hole */
994 newh = thisfrag + (len / 8);
995 *newh = *h;
996 h->last_byte = start;
997 h->next_hole = (newh - payload);
998 newh->prev_hole = (h - payload);
999 if (newh->next_hole)
1000 payload[newh->next_hole].prev_hole = (newh - payload);
1001 }
1002
1003 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001004 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001005 if (!done)
1006 return NULL;
1007
1008 localip->ip_len = htons(total_len);
Joe Hershbergerc686fa12012-05-23 07:58:05 +00001009 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001010 return localip;
1011}
1012
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001013static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1014 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001015{
1016 u16 ip_off = ntohs(ip->ip_off);
1017 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1018 return ip; /* not a fragment */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001019 return __net_defragment(ip, lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001020}
1021
1022#else /* !CONFIG_IP_DEFRAG */
1023
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001024static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1025 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001026{
1027 u16 ip_off = ntohs(ip->ip_off);
1028 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1029 return ip; /* not a fragment */
1030 return NULL;
1031}
1032#endif
wdenk2d966952002-10-31 22:12:35 +00001033
Simon Glass43c72962011-10-24 18:00:00 +00001034/**
1035 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1036 * drop others.
1037 *
1038 * @parma ip IP packet containing the ICMP
1039 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001040static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger5874dec2015-04-08 01:41:01 -05001041 struct in_addr src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +00001042{
Joe Hershberger78495612012-05-23 07:58:09 +00001043 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +00001044
1045 switch (icmph->type) {
1046 case ICMP_REDIRECT:
1047 if (icmph->code != ICMP_REDIR_HOST)
1048 return;
1049 printf(" ICMP Host Redirect to %pI4 ",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001050 &icmph->un.gateway);
Simon Glass43c72962011-10-24 18:00:00 +00001051 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001052 default:
Simon Glass43c72962011-10-24 18:00:00 +00001053#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001054 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +00001055#endif
Simon Glass2928cd82011-10-26 14:18:38 +00001056#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001057 if (packet_icmp_handler)
1058 packet_icmp_handler(icmph->type, icmph->code,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001059 ntohs(ip->udp_dst), src_ip,
1060 ntohs(ip->udp_src), icmph->un.data,
1061 ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001062#endif
Simon Glass43c72962011-10-24 18:00:00 +00001063 break;
1064 }
1065}
1066
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001067void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +00001068{
Joe Hershberger1178f412012-05-23 07:58:06 +00001069 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001070 struct ip_udp_hdr *ip;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001071 struct in_addr dst_ip;
1072 struct in_addr src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001073 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001074#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001075 int iscdp;
1076#endif
1077 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001078
Joe Hershberger05a377b2012-05-23 08:01:04 +00001079 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001080
Ramon Friedac598c12019-07-18 21:43:30 +03001081#if defined(CONFIG_CMD_PCAP)
1082 pcap_post(in_packet, len, false);
1083#endif
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001084 net_rx_packet = in_packet;
1085 net_rx_packet_len = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001086 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +00001087
1088 /* too small packet? */
1089 if (len < ETHER_HDR_SIZE)
1090 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001091
Alexander Graf94c4b992016-05-06 21:01:01 +02001092#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001093 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001094 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001095 return;
1096 }
1097#endif
wdenk145d2c12004-04-15 21:48:45 +00001098
Jon Loeliger54f35c22007-07-09 17:45:14 -05001099#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001100 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001101 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001102#endif
1103
Joe Hershberger013d3872015-04-08 01:41:17 -05001104 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001105 if (myvlanid == (ushort)-1)
1106 myvlanid = VLAN_NONE;
Joe Hershberger013d3872015-04-08 01:41:17 -05001107 mynvlanid = ntohs(net_native_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001108 if (mynvlanid == (ushort)-1)
1109 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001110
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001111 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001112
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001113 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001114 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001115 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001116 * Got a 802.2 packet. Check the other protocol field.
1117 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001118 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001119 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001120
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001121 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001122 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001123
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001124 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001125 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001126 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001127
1128 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001129 struct vlan_ethernet_hdr *vet =
1130 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001131
Joe Hershberger05a377b2012-05-23 08:01:04 +00001132 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001133
wdenk145d2c12004-04-15 21:48:45 +00001134 /* too small packet? */
1135 if (len < VLAN_ETHER_HDR_SIZE)
1136 return;
1137
1138 /* if no VLAN active */
Joe Hershberger013d3872015-04-08 01:41:17 -05001139 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001140#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001141 && iscdp == 0
1142#endif
1143 )
1144 return;
1145
1146 cti = ntohs(vet->vet_tag);
1147 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001148 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001149
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001150 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001151 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001152 }
1153
Joe Hershberger05a377b2012-05-23 08:01:04 +00001154 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001155
Jon Loeliger54f35c22007-07-09 17:45:14 -05001156#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001157 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001158 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001159 return;
1160 }
1161#endif
1162
1163 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1164 if (vlanid == VLAN_NONE)
1165 vlanid = (mynvlanid & VLAN_IDMASK);
1166 /* not matched? */
1167 if (vlanid != (myvlanid & VLAN_IDMASK))
1168 return;
1169 }
1170
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001171 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001172 case PROT_ARP:
Joe Hershberger85ae7762015-04-08 01:41:08 -05001173 arp_receive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001174 break;
wdenk2d966952002-10-31 22:12:35 +00001175
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001176#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001177 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001178 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001179 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001180#endif
wdenk2d966952002-10-31 22:12:35 +00001181 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001182 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001183 /* Before we start poking the header, make sure it is there */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001184 if (len < IP_UDP_HDR_SIZE) {
1185 debug("len bad %d < %lu\n", len,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001186 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001187 return;
1188 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001189 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001190 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001191 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001192 return;
1193 }
1194 len = ntohs(ip->ip_len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001195 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001196 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001197
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001198 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001199 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001200 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001201 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001202 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001203 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001204 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001205 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001206 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001207 return;
1208 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001209 /* If it is not for us, ignore it */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001210 dst_ip = net_read_ip(&ip->ip_dst);
1211 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1212 dst_ip.s_addr != 0xFFFFFFFF) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001213 return;
wdenk2d966952002-10-31 22:12:35 +00001214 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001215 /* Read source IP address for later use */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001216 src_ip = net_read_ip(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001217 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001218 * The function returns the unchanged packet if it's not
1219 * a fragment, and either the complete packet or NULL if
1220 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1221 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001222 ip = net_defragment(ip, &len);
Luca Ceresolidb210822011-05-04 02:40:47 +00001223 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001224 return;
1225 /*
wdenk2d966952002-10-31 22:12:35 +00001226 * watch for ICMP host redirects
1227 *
wdenk57b2d802003-06-27 21:31:46 +00001228 * There is no real handler code (yet). We just watch
1229 * for ICMP host redirect messages. In case anybody
1230 * sees these messages: please contact me
1231 * (wd@denx.de), or - even better - send me the
1232 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001233 *
wdenk57b2d802003-06-27 21:31:46 +00001234 * Note: in all cases where I have seen this so far
1235 * it was a problem with the router configuration,
1236 * for instance when a router was configured in the
1237 * BOOTP reply, but the TFTP server was on the same
1238 * subnet. So this is probably a warning that your
1239 * configuration might be wrong. But I'm not really
1240 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001241 *
1242 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1243 * we send a tftp packet to a dead connection, or when
1244 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001245 */
1246 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001247 receive_icmp(ip, len, src_ip, et);
1248 return;
wdenk2d966952002-10-31 22:12:35 +00001249 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1250 return;
1251 }
1252
liucheng (G)c580b292019-08-29 13:47:33 +00001253 if (ntohs(ip->udp_len) < UDP_HDR_SIZE || ntohs(ip->udp_len) > ntohs(ip->ip_len))
1254 return;
1255
Joe Hershberger05a377b2012-05-23 08:01:04 +00001256 debug_cond(DEBUG_DEV_PKT,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001257 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1258 &dst_ip, &src_ip, len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001259
Stefan Roesedfced812005-08-12 20:06:52 +02001260#ifdef CONFIG_UDP_CHECKSUM
1261 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001262 ulong xsum;
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001263 u8 *sumptr;
Stefan Roesedfced812005-08-12 20:06:52 +02001264 ushort sumlen;
1265
1266 xsum = ip->ip_p;
1267 xsum += (ntohs(ip->udp_len));
Joe Hershberger5874dec2015-04-08 01:41:01 -05001268 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1269 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1270 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1271 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
Stefan Roesedfced812005-08-12 20:06:52 +02001272
1273 sumlen = ntohs(ip->udp_len);
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001274 sumptr = (u8 *)&ip->udp_src;
Stefan Roesedfced812005-08-12 20:06:52 +02001275
1276 while (sumlen > 1) {
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001277 /* inlined ntohs() to avoid alignment errors */
1278 xsum += (sumptr[0] << 8) + sumptr[1];
1279 sumptr += 2;
Stefan Roesedfced812005-08-12 20:06:52 +02001280 sumlen -= 2;
1281 }
Heinrich Schuchardt16ffe472019-11-05 12:48:19 +01001282 if (sumlen > 0)
1283 xsum += (sumptr[0] << 8) + sumptr[0];
Stefan Roesedfced812005-08-12 20:06:52 +02001284 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001285 xsum = (xsum & 0x0000ffff) +
1286 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001287 }
1288 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001289 printf(" UDP wrong checksum %08lx %08x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001290 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001291 return;
1292 }
1293 }
1294#endif
1295
Holger Denglerae85c072017-07-20 10:10:55 +02001296#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001297 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001298 src_ip,
1299 ntohs(ip->udp_dst),
1300 ntohs(ip->udp_src),
1301 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001302#endif
wdenk2d966952002-10-31 22:12:35 +00001303 /*
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001304 * IP header OK. Pass the packet to the current handler.
wdenk2d966952002-10-31 22:12:35 +00001305 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001306 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001307 ntohs(ip->udp_dst),
1308 src_ip,
1309 ntohs(ip->udp_src),
1310 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001311 break;
Lothar Felten776fc102018-06-22 22:29:54 +02001312#ifdef CONFIG_CMD_WOL
1313 case PROT_WOL:
1314 wol_receive(ip, len);
1315 break;
1316#endif
wdenk2d966952002-10-31 22:12:35 +00001317 }
1318}
1319
wdenk2d966952002-10-31 22:12:35 +00001320/**********************************************************************/
1321
Simon Glassd6c5f552011-10-24 18:00:02 +00001322static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001323{
1324 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001325 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001326#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001327 case PING:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001328 if (net_ping_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001329 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001330 return 1;
wdenk05939202004-04-18 17:39:38 +00001331 }
1332 goto common;
wdenke6466f62003-06-05 19:27:42 +00001333#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001334#if defined(CONFIG_CMD_DNS)
1335 case DNS:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001336 if (net_dns_server.s_addr == 0) {
Robin Getz82f0d232009-07-20 14:53:54 -04001337 puts("*** ERROR: DNS server address not given\n");
1338 return 1;
1339 }
1340 goto common;
1341#endif
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001342#if defined(CONFIG_PROT_UDP)
1343 case UDP:
1344 if (udp_prereq())
1345 return 1;
1346 goto common;
1347#endif
1348
Jon Loeliger54f35c22007-07-09 17:45:14 -05001349#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001350 case NFS:
1351#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001352 /* Fall through */
Simon Glassd6c5f552011-10-24 18:00:02 +00001353 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001354 case TFTPPUT:
Joe Hershbergerf559f1c2018-07-03 19:36:39 -05001355 if (net_server_ip.s_addr == 0 && !is_serverip_in_cmd()) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001356 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001357 return 1;
wdenk05939202004-04-18 17:39:38 +00001358 }
Philippe Reynes2829d992020-09-18 14:13:02 +02001359#if defined(CONFIG_CMD_PING) || \
Philippe Reynes6ec70bc2020-09-18 14:13:00 +02001360 defined(CONFIG_CMD_DNS) || defined(CONFIG_PROT_UDP)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001361common:
wdenke6466f62003-06-05 19:27:42 +00001362#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001363 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001364
Simon Guinot00dceba2011-05-01 23:38:40 +00001365 case NETCONS:
Alex Kiernand5aa57c2018-05-29 15:30:53 +00001366 case FASTBOOT:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001367 case TFTPSRV:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001368 if (net_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001369 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001370 return 1;
wdenk05939202004-04-18 17:39:38 +00001371 }
1372 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001373
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001374#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001375 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001376#endif
wdenk2d966952002-10-31 22:12:35 +00001377 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001378 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001379 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001380 case LINKLOCAL:
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001381 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001382 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001383
wdenk05939202004-04-18 17:39:38 +00001384 switch (num) {
1385 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001386 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001387 return 1;
wdenk05939202004-04-18 17:39:38 +00001388 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001389 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001390 break;
wdenk05939202004-04-18 17:39:38 +00001391 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001392 printf("*** ERROR: `eth%daddr' not set\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001393 num);
wdenk2d966952002-10-31 22:12:35 +00001394 break;
wdenk05939202004-04-18 17:39:38 +00001395 }
wdenk2d966952002-10-31 22:12:35 +00001396
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001397 net_start_again();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001398 return 2;
wdenk05939202004-04-18 17:39:38 +00001399 }
1400 /* Fall through */
1401 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001402 return 0;
wdenk2d966952002-10-31 22:12:35 +00001403 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001404 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001405}
1406/**********************************************************************/
1407
1408int
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001409net_eth_hdr_size(void)
wdenk145d2c12004-04-15 21:48:45 +00001410{
1411 ushort myvlanid;
1412
Joe Hershberger013d3872015-04-08 01:41:17 -05001413 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001414 if (myvlanid == (ushort)-1)
1415 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001416
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001417 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1418 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001419}
1420
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001421int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001422{
Joe Hershberger1178f412012-05-23 07:58:06 +00001423 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001424 ushort myvlanid;
1425
Joe Hershberger013d3872015-04-08 01:41:17 -05001426 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001427 if (myvlanid == (ushort)-1)
1428 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001429
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001430 memcpy(et->et_dest, dest_ethaddr, 6);
1431 memcpy(et->et_src, net_ethaddr, 6);
wdenk145d2c12004-04-15 21:48:45 +00001432 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001433 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001434 return ETHER_HDR_SIZE;
1435 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001436 struct vlan_ethernet_hdr *vet =
1437 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001438
wdenk145d2c12004-04-15 21:48:45 +00001439 vet->vet_vlan_type = htons(PROT_VLAN);
1440 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1441 vet->vet_type = htons(prot);
1442 return VLAN_ETHER_HDR_SIZE;
1443 }
1444}
wdenk2d966952002-10-31 22:12:35 +00001445
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001446int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1447{
1448 ushort protlen;
1449
1450 memcpy(et->et_dest, addr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001451 memcpy(et->et_src, net_ethaddr, 6);
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001452 protlen = ntohs(et->et_protlen);
1453 if (protlen == PROT_VLAN) {
1454 struct vlan_ethernet_hdr *vet =
1455 (struct vlan_ethernet_hdr *)et;
1456 vet->vet_type = htons(prot);
1457 return VLAN_ETHER_HDR_SIZE;
1458 } else if (protlen > 1514) {
1459 et->et_protlen = htons(prot);
1460 return ETHER_HDR_SIZE;
1461 } else {
1462 /* 802.2 + SNAP */
1463 struct e802_hdr *et802 = (struct e802_hdr *)et;
1464 et802->et_prot = htons(prot);
1465 return E802_HDR_SIZE;
1466 }
1467}
1468
Duncan Haref1447c92018-06-24 15:40:41 -07001469void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
1470 u16 pkt_len, u8 proto)
wdenk2d966952002-10-31 22:12:35 +00001471{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001472 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001473
1474 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001475 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001476 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001477 /* IP_HDR_SIZE / 4 (not including UDP) */
1478 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001479 ip->ip_tos = 0;
Duncan Haref1447c92018-06-24 15:40:41 -07001480 ip->ip_len = htons(pkt_len);
1481 ip->ip_p = proto;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001482 ip->ip_id = htons(net_ip_id++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001483 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001484 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001485 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001486 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001487 net_copy_ip((void *)&ip->ip_src, &source);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001488 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001489 net_copy_ip((void *)&ip->ip_dst, &dest);
Duncan Haref1447c92018-06-24 15:40:41 -07001490
1491 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001492}
1493
Joe Hershberger5874dec2015-04-08 01:41:01 -05001494void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001495 int len)
1496{
1497 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1498
1499 /*
1500 * If the data is an odd number of bytes, zero the
1501 * byte after the last byte so that the checksum
1502 * will work.
1503 */
1504 if (len & 1)
1505 pkt[IP_UDP_HDR_SIZE + len] = 0;
1506
Duncan Haref1447c92018-06-24 15:40:41 -07001507 net_set_ip_header(pkt, dest, net_ip, IP_UDP_HDR_SIZE + len,
1508 IPPROTO_UDP);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001509
wdenk2d966952002-10-31 22:12:35 +00001510 ip->udp_src = htons(sport);
1511 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001512 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001513 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001514}
1515
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001516void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001517{
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001518 if (src && *src && (*src == '"')) {
wdenk2d966952002-10-31 22:12:35 +00001519 ++src;
1520 --size;
1521 }
1522
Joe Hershbergere20cadd2018-07-03 19:36:41 -05001523 while ((--size > 0) && src && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001524 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001525 *dst = '\0';
1526}
1527
Joe Hershbergerf559f1c2018-07-03 19:36:39 -05001528int is_serverip_in_cmd(void)
1529{
1530 return !!strchr(net_boot_file_name, ':');
1531}
1532
Joe Hershberger9cb7b022018-07-03 19:36:43 -05001533int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
1534{
1535 char *colon;
1536
1537 if (net_boot_file_name[0] == '\0')
1538 return 0;
1539
1540 colon = strchr(net_boot_file_name, ':');
1541 if (colon) {
1542 if (ipaddr)
1543 *ipaddr = string_to_ip(net_boot_file_name);
1544 strncpy(filename, colon + 1, max_len);
1545 } else {
1546 strncpy(filename, net_boot_file_name, max_len);
1547 }
1548 filename[max_len - 1] = '\0';
1549
1550 return 1;
1551}
1552
Joe Hershberger5874dec2015-04-08 01:41:01 -05001553void ip_to_string(struct in_addr x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001554{
Joe Hershberger5874dec2015-04-08 01:41:01 -05001555 x.s_addr = ntohl(x.s_addr);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001556 sprintf(s, "%d.%d.%d.%d",
Joe Hershberger5874dec2015-04-08 01:41:01 -05001557 (int) ((x.s_addr >> 24) & 0xff),
1558 (int) ((x.s_addr >> 16) & 0xff),
1559 (int) ((x.s_addr >> 8) & 0xff),
1560 (int) ((x.s_addr >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001561 );
wdenk2d966952002-10-31 22:12:35 +00001562}
1563
Joe Hershberger013d3872015-04-08 01:41:17 -05001564void vlan_to_string(ushort x, char *s)
wdenk145d2c12004-04-15 21:48:45 +00001565{
1566 x = ntohs(x);
1567
1568 if (x == (ushort)-1)
1569 x = VLAN_NONE;
1570
1571 if (x == VLAN_NONE)
1572 strcpy(s, "none");
1573 else
1574 sprintf(s, "%d", x & VLAN_IDMASK);
1575}
1576
Joe Hershberger013d3872015-04-08 01:41:17 -05001577ushort string_to_vlan(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001578{
1579 ushort id;
1580
1581 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001582 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001583
1584 if (*s < '0' || *s > '9')
1585 id = VLAN_NONE;
1586 else
1587 id = (ushort)simple_strtoul(s, NULL, 10);
1588
wdenk656140b2004-04-25 13:18:40 +00001589 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001590}
1591
Simon Glassda1a1342017-08-03 12:22:15 -06001592ushort env_get_vlan(char *var)
wdenk145d2c12004-04-15 21:48:45 +00001593{
Simon Glass64b723f2017-08-03 12:22:12 -06001594 return string_to_vlan(env_get(var));
wdenk145d2c12004-04-15 21:48:45 +00001595}