blob: 084269e31ecf65bad2aa190c075d755be928cef8 [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 *
75 * SNTP:
76 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020077 * Prerequisites: - own ethernet address
wdenkb4ad9622005-04-01 00:25:43 +000078 * - own IP address
79 * We want: - network time
80 * Next step: none
Lothar Felten776fc102018-06-22 22:29:54 +020081 *
82 * WOL:
83 *
84 * Prerequisites: - own ethernet address
85 * We want: - magic packet or timeout
86 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000087 */
88
89
90#include <common.h>
wdenk2d966952002-10-31 22:12:35 +000091#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070092#include <console.h>
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -060093#include <environment.h>
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050094#include <errno.h>
wdenk2d966952002-10-31 22:12:35 +000095#include <net.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>
Uri Mashiach4892d392017-01-19 10:51:45 +020098#if defined(CONFIG_LED_STATUS)
wdenk49c3f672003-10-08 22:33:00 +000099#include <miiphy.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000100#include <status_led.h>
wdenkb4ad9622005-04-01 00:25:43 +0000101#endif
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000102#include <watchdog.h>
103#include <linux/compiler.h>
104#include "arp.h"
105#include "bootp.h"
Joe Hershbergera4215b02012-05-23 07:57:59 +0000106#include "cdp.h"
Robin Getz82f0d232009-07-20 14:53:54 -0400107#if defined(CONFIG_CMD_DNS)
108#include "dns.h"
109#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000110#include "link_local.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000111#include "nfs.h"
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000112#include "ping.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000113#include "rarp.h"
114#if defined(CONFIG_CMD_SNTP)
115#include "sntp.h"
116#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200117#if defined(CONFIG_CMD_WOL)
118#include "wol.h"
119#endif
wdenk2d966952002-10-31 22:12:35 +0000120
wdenk2d966952002-10-31 22:12:35 +0000121/** BOOTP EXTENTIONS **/
122
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000123/* Our subnet mask (0=unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500124struct in_addr net_netmask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000125/* Our gateways IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500126struct in_addr net_gateway;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000127/* Our DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500128struct in_addr net_dns_server;
Jon Loeliger5336a762007-07-09 22:08:34 -0500129#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000130/* Our 2nd DNS IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500131struct in_addr net_dns_server2;
stroesee0aadfb2003-08-28 14:17:32 +0000132#endif
wdenk2d966952002-10-31 22:12:35 +0000133
David Updegraff7280da72007-06-11 10:41:07 -0500134#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500135struct in_addr net_mcast_addr;
David Updegraff7280da72007-06-11 10:41:07 -0500136#endif
137
wdenk2d966952002-10-31 22:12:35 +0000138/** END OF BOOTP EXTENTIONS **/
139
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000140/* Our ethernet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500141u8 net_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000142/* Boot server enet address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500143u8 net_server_ethaddr[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000144/* Our IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500145struct in_addr net_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000146/* Server IP addr (0 = unknown) */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500147struct in_addr net_server_ip;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000148/* Current receive packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500149uchar *net_rx_packet;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000150/* Current rx packet length */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500151int net_rx_packet_len;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000152/* IP packet ID */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500153static unsigned net_ip_id;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000154/* Ethernet bcast address */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500155const u8 net_bcast_ethaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
156const u8 net_null_ethaddr[6];
Alexander Graf94c4b992016-05-06 21:01:01 +0200157#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500158void (*push_packet)(void *, int len) = 0;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100159#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000160/* Network loop state */
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000161enum net_loop_state net_state;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000162/* Tried all network devices */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500163int net_restart_wrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000164/* Network loop restarted */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500165static int net_restarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000166/* At least one device configured */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500167static int net_dev_exists;
wdenk2d966952002-10-31 22:12:35 +0000168
wdenk05939202004-04-18 17:39:38 +0000169/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* default is without VLAN */
Joe Hershberger013d3872015-04-08 01:41:17 -0500171ushort net_our_vlan = 0xFFFF;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000172/* ditto */
Joe Hershberger013d3872015-04-08 01:41:17 -0500173ushort net_native_vlan = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000174
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000175/* Boot File name */
Jacob Stifflerae80c2e2015-09-30 10:12:05 -0400176char net_boot_file_name[1024];
Joe Hershberger290c8992015-04-08 01:41:02 -0500177/* The actual transferred size of the bootfile (in bytes) */
178u32 net_boot_file_size;
179/* Boot file size in blocks as reported by the DHCP server */
180u32 net_boot_file_expected_size_in_blocks;
wdenk2d966952002-10-31 22:12:35 +0000181
Jon Loeliger54f35c22007-07-09 17:45:14 -0500182#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000183/* NTP server IP address */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500184struct in_addr net_ntp_server;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000185/* offset time from UTC */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500186int net_ntp_time_offset;
wdenkb4ad9622005-04-01 00:25:43 +0000187#endif
188
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500189static uchar net_pkt_buf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500190/* Receive packets */
191uchar *net_rx_packets[PKTBUFSRX];
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000192/* Current UDP RX packet handler */
193static rxhand_f *udp_packet_handler;
194/* Current ARP RX packet handler */
195static rxhand_f *arp_packet_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000196#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000197/* Current ICMP rx handler */
198static rxhand_icmp_f *packet_icmp_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000199#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000200/* Current timeout handler */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500201static thand_f *time_handler;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000202/* Time base value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500203static ulong time_start;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000204/* Current timeout value */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500205static ulong time_delta;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000206/* THE transmit packet */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500207uchar *net_tx_packet;
wdenk2d966952002-10-31 22:12:35 +0000208
Simon Glassd6c5f552011-10-24 18:00:02 +0000209static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000210
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500211static int net_try_count;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100212
Jim Lin6c8921f2013-08-13 19:03:05 +0800213int __maybe_unused net_busy_flag;
214
wdenk2d966952002-10-31 22:12:35 +0000215/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000216
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -0600217static int on_bootfile(const char *name, const char *value, enum env_op op,
218 int flags)
219{
Joe Hershberger875b6bf2015-05-20 14:27:23 -0500220 if (flags & H_PROGRAMMATIC)
221 return 0;
222
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -0600223 switch (op) {
224 case env_op_create:
225 case env_op_overwrite:
Joe Hershberger290c8992015-04-08 01:41:02 -0500226 copy_filename(net_boot_file_name, value,
227 sizeof(net_boot_file_name));
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -0600228 break;
229 default:
230 break;
231 }
232
233 return 0;
234}
235U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
236
Joe Hershberger875b6bf2015-05-20 14:27:23 -0500237static int on_ipaddr(const char *name, const char *value, enum env_op op,
238 int flags)
239{
240 if (flags & H_PROGRAMMATIC)
241 return 0;
242
243 net_ip = string_to_ip(value);
244
245 return 0;
246}
247U_BOOT_ENV_CALLBACK(ipaddr, on_ipaddr);
248
249static int on_gatewayip(const char *name, const char *value, enum env_op op,
250 int flags)
251{
252 if (flags & H_PROGRAMMATIC)
253 return 0;
254
255 net_gateway = string_to_ip(value);
256
257 return 0;
258}
259U_BOOT_ENV_CALLBACK(gatewayip, on_gatewayip);
260
261static int on_netmask(const char *name, const char *value, enum env_op op,
262 int flags)
263{
264 if (flags & H_PROGRAMMATIC)
265 return 0;
266
267 net_netmask = string_to_ip(value);
268
269 return 0;
270}
271U_BOOT_ENV_CALLBACK(netmask, on_netmask);
272
273static int on_serverip(const char *name, const char *value, enum env_op op,
274 int flags)
275{
276 if (flags & H_PROGRAMMATIC)
277 return 0;
278
279 net_server_ip = string_to_ip(value);
280
281 return 0;
282}
283U_BOOT_ENV_CALLBACK(serverip, on_serverip);
284
285static int on_nvlan(const char *name, const char *value, enum env_op op,
286 int flags)
287{
288 if (flags & H_PROGRAMMATIC)
289 return 0;
290
291 net_native_vlan = string_to_vlan(value);
292
293 return 0;
294}
295U_BOOT_ENV_CALLBACK(nvlan, on_nvlan);
296
297static int on_vlan(const char *name, const char *value, enum env_op op,
298 int flags)
299{
300 if (flags & H_PROGRAMMATIC)
301 return 0;
302
303 net_our_vlan = string_to_vlan(value);
304
305 return 0;
306}
307U_BOOT_ENV_CALLBACK(vlan, on_vlan);
308
309#if defined(CONFIG_CMD_DNS)
310static int on_dnsip(const char *name, const char *value, enum env_op op,
311 int flags)
312{
313 if (flags & H_PROGRAMMATIC)
314 return 0;
315
316 net_dns_server = string_to_ip(value);
317
318 return 0;
319}
320U_BOOT_ENV_CALLBACK(dnsip, on_dnsip);
321#endif
322
Simon Glass5234ad12011-10-27 06:24:32 +0000323/*
324 * Check if autoload is enabled. If so, use either NFS or TFTP to download
325 * the boot file.
326 */
327void net_auto_load(void)
328{
Joe Hershberger864ec562012-12-11 22:16:22 -0600329#if defined(CONFIG_CMD_NFS)
Simon Glass64b723f2017-08-03 12:22:12 -0600330 const char *s = env_get("autoload");
Simon Glass5234ad12011-10-27 06:24:32 +0000331
Joe Hershberger864ec562012-12-11 22:16:22 -0600332 if (s != NULL && strcmp(s, "NFS") == 0) {
333 /*
334 * Use NFS to load the bootfile.
335 */
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500336 nfs_start();
Joe Hershberger864ec562012-12-11 22:16:22 -0600337 return;
338 }
Simon Glass5234ad12011-10-27 06:24:32 +0000339#endif
Simon Glass22c34c22017-08-03 12:22:13 -0600340 if (env_get_yesno("autoload") == 0) {
Joe Hershberger864ec562012-12-11 22:16:22 -0600341 /*
342 * Just use BOOTP/RARP to configure system;
343 * Do not use TFTP to load the bootfile.
344 */
345 net_set_state(NETLOOP_SUCCESS);
346 return;
Simon Glass5234ad12011-10-27 06:24:32 +0000347 }
Joe Hershberger64701592015-04-08 01:41:07 -0500348 tftp_start(TFTPGET);
Simon Glass5234ad12011-10-27 06:24:32 +0000349}
350
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500351static void net_init_loop(void)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100352{
Jim Lin09a2bb82013-05-17 17:41:03 +0800353 if (eth_get_dev())
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500354 memcpy(net_ethaddr, eth_get_ethaddr(), 6);
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300355
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200356 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100357}
358
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000359static void net_clear_handlers(void)
360{
361 net_set_udp_handler(NULL);
362 net_set_arp_handler(NULL);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500363 net_set_timeout_handler(0, NULL);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000364}
365
366static void net_cleanup_loop(void)
367{
368 net_clear_handlers();
369}
370
Joe Hershberger017e5c42012-05-23 07:59:22 +0000371void net_init(void)
372{
373 static int first_call = 1;
374
375 if (first_call) {
376 /*
377 * Setup packet buffers, aligned correctly.
378 */
379 int i;
380
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500381 net_tx_packet = &net_pkt_buf[0] + (PKTALIGN - 1);
382 net_tx_packet -= (ulong)net_tx_packet % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500383 for (i = 0; i < PKTBUFSRX; i++) {
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500384 net_rx_packets[i] = net_tx_packet +
385 (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500386 }
Joe Hershberger85ae7762015-04-08 01:41:08 -0500387 arp_init();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000388 net_clear_handlers();
389
390 /* Only need to setup buffer pointers once. */
391 first_call = 0;
392 }
393
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500394 net_init_loop();
Joe Hershberger017e5c42012-05-23 07:59:22 +0000395}
396
wdenke6466f62003-06-05 19:27:42 +0000397/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000398/*
399 * Main network processing loop.
400 */
401
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500402int net_loop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000403{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500404 int ret = -EINVAL;
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200405 enum net_loop_state prev_net_state = net_state;
wdenk2d966952002-10-31 22:12:35 +0000406
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500407 net_restarted = 0;
408 net_dev_exists = 0;
409 net_try_count = 1;
410 debug_cond(DEBUG_INT_STATE, "--- net_loop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000411
Simon Glass768cbf02011-12-10 11:08:06 +0000412 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000413 net_init();
Joe Hershberger9f374062012-08-03 10:59:08 +0000414 if (eth_is_on_demand_init() || protocol != NETCONS) {
wdenkfa66e932005-04-03 14:52:59 +0000415 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000416 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500417 ret = eth_init();
418 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000419 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500420 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000421 }
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500422 } else {
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500423 eth_init_state_only();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500424 }
wdenk2d966952002-10-31 22:12:35 +0000425restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800426#ifdef CONFIG_USB_KEYBOARD
427 net_busy_flag = 0;
428#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000429 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000430
431 /*
432 * Start the ball rolling with the given start function. From
433 * here on, this code is a state machine driven by received
434 * packets and timer events.
435 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500436 debug_cond(DEBUG_INT_STATE, "--- net_loop Init\n");
437 net_init_loop();
wdenk2d966952002-10-31 22:12:35 +0000438
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000439 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000440 case 1:
441 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000442 eth_halt();
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200443 net_set_state(prev_net_state);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500444 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000445
wdenk2d966952002-10-31 22:12:35 +0000446 case 2:
447 /* network device not configured */
448 break;
wdenk2d966952002-10-31 22:12:35 +0000449
450 case 0:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500451 net_dev_exists = 1;
Joe Hershberger290c8992015-04-08 01:41:02 -0500452 net_boot_file_size = 0;
wdenk2d966952002-10-31 22:12:35 +0000453 switch (protocol) {
Simon Glassd6c5f552011-10-24 18:00:02 +0000454 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000455#ifdef CONFIG_CMD_TFTPPUT
456 case TFTPPUT:
457#endif
wdenk2d966952002-10-31 22:12:35 +0000458 /* always use ARP to get server ethernet address */
Joe Hershberger64701592015-04-08 01:41:07 -0500459 tftp_start(protocol);
wdenk2d966952002-10-31 22:12:35 +0000460 break;
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000461#ifdef CONFIG_CMD_TFTPSRV
462 case TFTPSRV:
Joe Hershberger64701592015-04-08 01:41:07 -0500463 tftp_start_server();
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000464 break;
465#endif
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000466#ifdef CONFIG_UDP_FUNCTION_FASTBOOT
467 case FASTBOOT:
468 fastboot_start_server();
469 break;
470#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500471#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000472 case DHCP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500473 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500474 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500475 dhcp_request(); /* Basically same as BOOTP */
wdenk2d966952002-10-31 22:12:35 +0000476 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500477#endif
wdenk2d966952002-10-31 22:12:35 +0000478
479 case BOOTP:
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500480 bootp_reset();
Joe Hershberger5874dec2015-04-08 01:41:01 -0500481 net_ip.s_addr = 0;
Joe Hershberger2fe81a52015-04-08 01:41:09 -0500482 bootp_request();
wdenk2d966952002-10-31 22:12:35 +0000483 break;
484
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500485#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000486 case RARP:
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500487 rarp_try = 0;
Joe Hershberger5874dec2015-04-08 01:41:01 -0500488 net_ip.s_addr = 0;
Joe Hershberger8e805bb2015-04-08 01:41:11 -0500489 rarp_request();
wdenk2d966952002-10-31 22:12:35 +0000490 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500491#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500492#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000493 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000494 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000495 break;
496#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500497#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +0000498 case NFS:
Joe Hershberger40d7ca92015-04-08 01:41:10 -0500499 nfs_start();
wdenkbe9c1cb2004-02-24 02:00:03 +0000500 break;
501#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500502#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000503 case CDP:
Joe Hershberger527336f2015-04-08 01:41:14 -0500504 cdp_start();
wdenk145d2c12004-04-15 21:48:45 +0000505 break;
506#endif
Holger Denglerae85c072017-07-20 10:10:55 +0200507#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000508 case NETCONS:
Joe Hershbergerd02aa6b2015-04-08 01:41:16 -0500509 nc_start();
wdenkb8fb6192004-08-02 21:11:11 +0000510 break;
511#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500512#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +0000513 case SNTP:
Joe Hershberger4af0b772015-04-08 01:41:12 -0500514 sntp_start();
wdenkb4ad9622005-04-01 00:25:43 +0000515 break;
516#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400517#if defined(CONFIG_CMD_DNS)
518 case DNS:
Joe Hershbergerf725e342015-04-08 01:41:15 -0500519 dns_start();
Robin Getz82f0d232009-07-20 14:53:54 -0400520 break;
521#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000522#if defined(CONFIG_CMD_LINK_LOCAL)
523 case LINKLOCAL:
524 link_local_start();
525 break;
526#endif
Lothar Felten776fc102018-06-22 22:29:54 +0200527#if defined(CONFIG_CMD_WOL)
528 case WOL:
529 wol_start();
530 break;
531#endif
wdenk2d966952002-10-31 22:12:35 +0000532 default:
533 break;
534 }
535
wdenk2d966952002-10-31 22:12:35 +0000536 break;
537 }
538
Jon Loeliger54f35c22007-07-09 17:45:14 -0500539#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000540#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200541 defined(CONFIG_LED_STATUS) && \
542 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000543 /*
wdenk9c53f402003-10-15 23:53:47 +0000544 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000545 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000546 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200547 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000548 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200549 status_led_set(CONFIG_LED_STATUS_RED, CONFIG_LED_STATUS_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200550#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000551#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800552#ifdef CONFIG_USB_KEYBOARD
553 net_busy_flag = 1;
554#endif
wdenk2d966952002-10-31 22:12:35 +0000555
556 /*
557 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000558 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000559 */
560 for (;;) {
561 WATCHDOG_RESET();
562#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger77001b432012-05-15 08:59:08 +0000563 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000564#endif
Joe Hershbergerd6978a42015-12-21 16:31:35 -0600565 if (arp_timeout_check() > 0)
566 time_start = get_timer(0);
567
wdenk2d966952002-10-31 22:12:35 +0000568 /*
569 * Check the ethernet for a new packet. The ethernet
570 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500571 * Most drivers return the most recent packet size, but not
572 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000573 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200574 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000575
576 /*
577 * Abort if ctrl-c was pressed.
578 */
579 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000580 /* cancel any ARP that may not have completed */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500581 net_arp_wait_packet_ip.s_addr = 0;
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000582
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000583 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000584 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000585 /* Invalidate the last protocol */
586 eth_set_last_protocol(BOOTP);
587
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000588 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000589 /* include a debug print as well incase the debug
590 messages are directed to stderr */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500591 debug_cond(DEBUG_INT_STATE, "--- net_loop Abort!\n");
Michal Simekafd31602015-08-21 08:49:48 +0200592 ret = -EINTR;
Simon Glass230467c2011-10-24 18:00:01 +0000593 goto done;
wdenk2d966952002-10-31 22:12:35 +0000594 }
595
wdenk2d966952002-10-31 22:12:35 +0000596 /*
597 * Check for a timeout, and run the timeout handler
598 * if we have one.
599 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500600 if (time_handler &&
601 ((get_timer(0) - time_start) > time_delta)) {
wdenk2d966952002-10-31 22:12:35 +0000602 thand_f *x;
603
Jon Loeliger54f35c22007-07-09 17:45:14 -0500604#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000605#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
Uri Mashiach4892d392017-01-19 10:51:45 +0200606 defined(CONFIG_LED_STATUS) && \
607 defined(CONFIG_LED_STATUS_RED)
wdenk49c3f672003-10-08 22:33:00 +0000608 /*
wdenk9c53f402003-10-15 23:53:47 +0000609 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000610 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000611 if (miiphy_link(eth_get_dev()->name,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500612 CONFIG_SYS_FAULT_MII_ADDR))
Uri Mashiach4892d392017-01-19 10:51:45 +0200613 status_led_set(CONFIG_LED_STATUS_RED,
614 CONFIG_LED_STATUS_OFF);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500615 else
Uri Mashiach4892d392017-01-19 10:51:45 +0200616 status_led_set(CONFIG_LED_STATUS_RED,
617 CONFIG_LED_STATUS_ON);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000618#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000619#endif /* CONFIG_MII, ... */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500620 debug_cond(DEBUG_INT_STATE, "--- net_loop timeout\n");
621 x = time_handler;
622 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000623 (*x)();
624 }
625
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500626 if (net_state == NETLOOP_FAIL)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500627 ret = net_start_again();
wdenk2d966952002-10-31 22:12:35 +0000628
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000629 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000630 case NETLOOP_RESTART:
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500631 net_restarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000632 goto restart;
633
634 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000635 net_cleanup_loop();
Joe Hershberger290c8992015-04-08 01:41:02 -0500636 if (net_boot_file_size > 0) {
637 printf("Bytes transferred = %d (%x hex)\n",
638 net_boot_file_size, net_boot_file_size);
Simon Glass4d949a22017-08-03 12:22:10 -0600639 env_set_hex("filesize", net_boot_file_size);
640 env_set_hex("fileaddr", load_addr);
wdenk2d966952002-10-31 22:12:35 +0000641 }
Joe Hershberger9f374062012-08-03 10:59:08 +0000642 if (protocol != NETCONS)
643 eth_halt();
644 else
645 eth_halt_state_only();
646
647 eth_set_last_protocol(protocol);
648
Joe Hershberger290c8992015-04-08 01:41:02 -0500649 ret = net_boot_file_size;
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500650 debug_cond(DEBUG_INT_STATE, "--- net_loop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000651 goto done;
wdenk2d966952002-10-31 22:12:35 +0000652
653 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000654 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000655 /* Invalidate the last protocol */
656 eth_set_last_protocol(BOOTP);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500657 debug_cond(DEBUG_INT_STATE, "--- net_loop Fail!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000658 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000659
660 case NETLOOP_CONTINUE:
661 continue;
wdenk2d966952002-10-31 22:12:35 +0000662 }
663 }
Simon Glass230467c2011-10-24 18:00:01 +0000664
665done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800666#ifdef CONFIG_USB_KEYBOARD
667 net_busy_flag = 0;
668#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000669#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000670 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000671 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000672 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000673#endif
Leonid Iziumtsev4b58b052018-05-08 15:55:50 +0200674 net_set_state(prev_net_state);
Simon Glass230467c2011-10-24 18:00:01 +0000675 return ret;
wdenk2d966952002-10-31 22:12:35 +0000676}
677
678/**********************************************************************/
679
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500680static void start_again_timeout_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000681{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000682 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000683}
684
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500685int net_start_again(void)
wdenk2d966952002-10-31 22:12:35 +0000686{
wdenk05939202004-04-18 17:39:38 +0000687 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100688 int retry_forever = 0;
689 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500690 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000691
Simon Glass64b723f2017-08-03 12:22:12 -0600692 nretry = env_get("netretry");
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100693 if (nretry) {
694 if (!strcmp(nretry, "yes"))
695 retry_forever = 1;
696 else if (!strcmp(nretry, "no"))
697 retrycnt = 0;
698 else if (!strcmp(nretry, "once"))
699 retrycnt = 1;
700 else
701 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500702 } else {
703 retrycnt = 0;
704 retry_forever = 0;
705 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100706
Leonid Iziumtsevfb7c94c2018-03-09 15:29:06 +0100707 if ((!retry_forever) && (net_try_count > retrycnt)) {
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100708 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000709 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500710 /*
711 * We don't provide a way for the protocol to return an error,
712 * but this is almost always the reason.
713 */
714 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000715 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100716
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500717 net_try_count++;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100718
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000719 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100720#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500721 eth_try_another(!net_restarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100722#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500723 ret = eth_init();
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500724 if (net_restart_wrap) {
725 net_restart_wrap = 0;
726 if (net_dev_exists) {
727 net_set_timeout_handler(10000UL,
728 start_again_timeout_handler);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000729 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000730 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000731 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000732 }
wdenk05939202004-04-18 17:39:38 +0000733 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000734 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000735 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500736 return ret;
wdenk2d966952002-10-31 22:12:35 +0000737}
738
739/**********************************************************************/
740/*
741 * Miscelaneous bits.
742 */
743
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000744static void dummy_handler(uchar *pkt, unsigned dport,
Joe Hershberger5874dec2015-04-08 01:41:01 -0500745 struct in_addr sip, unsigned sport,
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000746 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000747{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000748}
749
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000750rxhand_f *net_get_udp_handler(void)
751{
752 return udp_packet_handler;
753}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000754
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000755void net_set_udp_handler(rxhand_f *f)
756{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500757 debug_cond(DEBUG_INT_STATE, "--- net_loop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000758 if (f == NULL)
759 udp_packet_handler = dummy_handler;
760 else
761 udp_packet_handler = f;
762}
763
764rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000765{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000766 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000767}
768
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000769void net_set_arp_handler(rxhand_f *f)
770{
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500771 debug_cond(DEBUG_INT_STATE, "--- net_loop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000772 if (f == NULL)
773 arp_packet_handler = dummy_handler;
774 else
775 arp_packet_handler = f;
776}
777
Simon Glass2928cd82011-10-26 14:18:38 +0000778#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000779void net_set_icmp_handler(rxhand_icmp_f *f)
780{
781 packet_icmp_handler = f;
782}
Simon Glass2928cd82011-10-26 14:18:38 +0000783#endif
wdenk2d966952002-10-31 22:12:35 +0000784
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500785void net_set_timeout_handler(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000786{
787 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000788 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500789 "--- net_loop timeout handler cancelled\n");
790 time_handler = (thand_f *)0;
wdenk2d966952002-10-31 22:12:35 +0000791 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000792 debug_cond(DEBUG_INT_STATE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500793 "--- net_loop timeout handler set (%p)\n", f);
794 time_handler = f;
795 time_start = get_timer(0);
796 time_delta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000797 }
798}
799
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500800int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport, int sport,
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000801 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000802{
wdenk145d2c12004-04-15 21:48:45 +0000803 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000804 int eth_hdr_size;
805 int pkt_hdr_size;
wdenk145d2c12004-04-15 21:48:45 +0000806
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500807 /* make sure the net_tx_packet is initialized (net_init() was called) */
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500808 assert(net_tx_packet != NULL);
809 if (net_tx_packet == NULL)
Joe Hershberger017e5c42012-05-23 07:59:22 +0000810 return -1;
811
wdenke6466f62003-06-05 19:27:42 +0000812 /* convert to new style broadcast */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500813 if (dest.s_addr == 0)
814 dest.s_addr = 0xFFFFFFFF;
wdenke6466f62003-06-05 19:27:42 +0000815
816 /* if broadcast, make the ether address a broadcast and don't do ARP */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500817 if (dest.s_addr == 0xFFFFFFFF)
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500818 ether = (uchar *)net_bcast_ethaddr;
wdenke6466f62003-06-05 19:27:42 +0000819
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500820 pkt = (uchar *)net_tx_packet;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000821
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500822 eth_hdr_size = net_set_ether(pkt, ether, PROT_IP);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000823 pkt += eth_hdr_size;
824 net_set_udp_header(pkt, dest, dport, sport, payload_len);
825 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
wdenke6466f62003-06-05 19:27:42 +0000826
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000827 /* if MAC address was not discovered yet, do an ARP request */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500828 if (memcmp(ether, net_null_ethaddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000829 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400830
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000831 /* save the ip and eth addr for the packet to send after arp */
Joe Hershberger5874dec2015-04-08 01:41:01 -0500832 net_arp_wait_packet_ip = dest;
Joe Hershberger85ae7762015-04-08 01:41:08 -0500833 arp_wait_packet_ethaddr = ether;
wdenk145d2c12004-04-15 21:48:45 +0000834
wdenke6466f62003-06-05 19:27:42 +0000835 /* size of the waiting packet */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500836 arp_wait_tx_packet_size = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000837
838 /* and do the ARP request */
Joe Hershberger85ae7762015-04-08 01:41:08 -0500839 arp_wait_try = 1;
840 arp_wait_timer_start = get_timer(0);
841 arp_request();
wdenke6466f62003-06-05 19:27:42 +0000842 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000843 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000844 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500845 &dest, ether);
Joe Hershbergera8ca4f62015-04-08 01:41:05 -0500846 net_send_packet(net_tx_packet, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000847 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000848 }
wdenke6466f62003-06-05 19:27:42 +0000849}
wdenk145d2c12004-04-15 21:48:45 +0000850
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200851#ifdef CONFIG_IP_DEFRAG
852/*
853 * This function collects fragments in a single packet, according
854 * to the algorithm in RFC815. It returns NULL or the pointer to
855 * a complete packet, in static storage
856 */
857#ifndef CONFIG_NET_MAXDEFRAG
858#define CONFIG_NET_MAXDEFRAG 16384
859#endif
Joe Hershberger9d390302016-08-15 14:42:15 -0500860#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200861
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000862#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200863
864/*
865 * this is the packet being assembled, either data or frag control.
866 * Fragments go by 8 bytes, so this union must be 8 bytes long
867 */
868struct hole {
869 /* first_byte is address of this structure */
870 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
871 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
872 u16 prev_hole; /* index of prev, 0 == none */
873 u16 unused;
874};
875
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500876static struct ip_udp_hdr *__net_defragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200877{
Joe Hershberger77001b432012-05-15 08:59:08 +0000878 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200879 static u16 first_hole, total_len;
880 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000881 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200882 uchar *indata = (uchar *)ip;
883 int offset8, start, len, done = 0;
884 u16 ip_off = ntohs(ip->ip_off);
885
886 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000887 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200888 offset8 = (ip_off & IP_OFFS);
889 thisfrag = payload + offset8;
890 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000891 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200892
893 if (start + len > IP_MAXUDP) /* fragment extends too far */
894 return NULL;
895
896 if (!total_len || localip->ip_id != ip->ip_id) {
897 /* new (or different) packet, reset structs */
898 total_len = 0xffff;
899 payload[0].last_byte = ~0;
900 payload[0].next_hole = 0;
901 payload[0].prev_hole = 0;
902 first_hole = 0;
903 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000904 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200905 }
906
907 /*
908 * What follows is the reassembly algorithm. We use the payload
909 * array as a linked list of hole descriptors, as each hole starts
910 * at a multiple of 8 bytes. However, last byte can be whatever value,
911 * so it is represented as byte count, not as 8-byte blocks.
912 */
913
914 h = payload + first_hole;
915 while (h->last_byte < start) {
916 if (!h->next_hole) {
917 /* no hole that far away */
918 return NULL;
919 }
920 h = payload + h->next_hole;
921 }
922
Fillod Stephanee7ade8b2010-06-11 19:26:43 +0200923 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
924 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200925 /* no overlap with holes (dup fragment?) */
926 return NULL;
927 }
928
929 if (!(ip_off & IP_FLAGS_MFRAG)) {
930 /* no more fragmentss: truncate this (last) hole */
931 total_len = start + len;
932 h->last_byte = start + len;
933 }
934
935 /*
936 * There is some overlap: fix the hole list. This code doesn't
937 * deal with a fragment that overlaps with two different holes
938 * (thus being a superset of a previously-received fragment).
939 */
940
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000941 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200942 /* complete overlap with hole: remove hole */
943 if (!h->prev_hole && !h->next_hole) {
944 /* last remaining hole */
945 done = 1;
946 } else if (!h->prev_hole) {
947 /* first hole */
948 first_hole = h->next_hole;
949 payload[h->next_hole].prev_hole = 0;
950 } else if (!h->next_hole) {
951 /* last hole */
952 payload[h->prev_hole].next_hole = 0;
953 } else {
954 /* in the middle of the list */
955 payload[h->next_hole].prev_hole = h->prev_hole;
956 payload[h->prev_hole].next_hole = h->next_hole;
957 }
958
959 } else if (h->last_byte <= start + len) {
960 /* overlaps with final part of the hole: shorten this hole */
961 h->last_byte = start;
962
963 } else if (h >= thisfrag) {
964 /* overlaps with initial part of the hole: move this hole */
965 newh = thisfrag + (len / 8);
966 *newh = *h;
967 h = newh;
968 if (h->next_hole)
969 payload[h->next_hole].prev_hole = (h - payload);
970 if (h->prev_hole)
971 payload[h->prev_hole].next_hole = (h - payload);
972 else
973 first_hole = (h - payload);
974
975 } else {
976 /* fragment sits in the middle: split the hole */
977 newh = thisfrag + (len / 8);
978 *newh = *h;
979 h->last_byte = start;
980 h->next_hole = (newh - payload);
981 newh->prev_hole = (h - payload);
982 if (newh->next_hole)
983 payload[newh->next_hole].prev_hole = (newh - payload);
984 }
985
986 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000987 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200988 if (!done)
989 return NULL;
990
991 localip->ip_len = htons(total_len);
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000992 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200993 return localip;
994}
995
Joe Hershbergerc80b41b02015-04-08 01:41:21 -0500996static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
997 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200998{
999 u16 ip_off = ntohs(ip->ip_off);
1000 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1001 return ip; /* not a fragment */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001002 return __net_defragment(ip, lenp);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001003}
1004
1005#else /* !CONFIG_IP_DEFRAG */
1006
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001007static inline struct ip_udp_hdr *net_defragment(struct ip_udp_hdr *ip,
1008 int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001009{
1010 u16 ip_off = ntohs(ip->ip_off);
1011 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1012 return ip; /* not a fragment */
1013 return NULL;
1014}
1015#endif
wdenk2d966952002-10-31 22:12:35 +00001016
Simon Glass43c72962011-10-24 18:00:00 +00001017/**
1018 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1019 * drop others.
1020 *
1021 * @parma ip IP packet containing the ICMP
1022 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001023static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger5874dec2015-04-08 01:41:01 -05001024 struct in_addr src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +00001025{
Joe Hershberger78495612012-05-23 07:58:09 +00001026 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +00001027
1028 switch (icmph->type) {
1029 case ICMP_REDIRECT:
1030 if (icmph->code != ICMP_REDIR_HOST)
1031 return;
1032 printf(" ICMP Host Redirect to %pI4 ",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001033 &icmph->un.gateway);
Simon Glass43c72962011-10-24 18:00:00 +00001034 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001035 default:
Simon Glass43c72962011-10-24 18:00:00 +00001036#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +00001037 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +00001038#endif
Simon Glass2928cd82011-10-26 14:18:38 +00001039#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001040 if (packet_icmp_handler)
1041 packet_icmp_handler(icmph->type, icmph->code,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001042 ntohs(ip->udp_dst), src_ip,
1043 ntohs(ip->udp_src), icmph->un.data,
1044 ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001045#endif
Simon Glass43c72962011-10-24 18:00:00 +00001046 break;
1047 }
1048}
1049
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001050void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +00001051{
Joe Hershberger1178f412012-05-23 07:58:06 +00001052 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001053 struct ip_udp_hdr *ip;
Joe Hershberger5874dec2015-04-08 01:41:01 -05001054 struct in_addr dst_ip;
1055 struct in_addr src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001056 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001057#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001058 int iscdp;
1059#endif
1060 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001061
Joe Hershberger05a377b2012-05-23 08:01:04 +00001062 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001063
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001064 net_rx_packet = in_packet;
1065 net_rx_packet_len = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001066 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +00001067
1068 /* too small packet? */
1069 if (len < ETHER_HDR_SIZE)
1070 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001071
Alexander Graf94c4b992016-05-06 21:01:01 +02001072#if defined(CONFIG_API) || defined(CONFIG_EFI_LOADER)
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001073 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001074 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001075 return;
1076 }
1077#endif
wdenk145d2c12004-04-15 21:48:45 +00001078
Jon Loeliger54f35c22007-07-09 17:45:14 -05001079#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001080 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001081 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001082#endif
1083
Joe Hershberger013d3872015-04-08 01:41:17 -05001084 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001085 if (myvlanid == (ushort)-1)
1086 myvlanid = VLAN_NONE;
Joe Hershberger013d3872015-04-08 01:41:17 -05001087 mynvlanid = ntohs(net_native_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001088 if (mynvlanid == (ushort)-1)
1089 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001090
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001091 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001092
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001093 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001094 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001095 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001096 * Got a 802.2 packet. Check the other protocol field.
1097 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001098 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001099 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001100
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001101 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001102 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001103
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001104 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001105 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001106 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001107
1108 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001109 struct vlan_ethernet_hdr *vet =
1110 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001111
Joe Hershberger05a377b2012-05-23 08:01:04 +00001112 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001113
wdenk145d2c12004-04-15 21:48:45 +00001114 /* too small packet? */
1115 if (len < VLAN_ETHER_HDR_SIZE)
1116 return;
1117
1118 /* if no VLAN active */
Joe Hershberger013d3872015-04-08 01:41:17 -05001119 if ((ntohs(net_our_vlan) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001120#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001121 && iscdp == 0
1122#endif
1123 )
1124 return;
1125
1126 cti = ntohs(vet->vet_tag);
1127 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001128 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001129
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001130 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001131 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001132 }
1133
Joe Hershberger05a377b2012-05-23 08:01:04 +00001134 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001135
Jon Loeliger54f35c22007-07-09 17:45:14 -05001136#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001137 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001138 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001139 return;
1140 }
1141#endif
1142
1143 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1144 if (vlanid == VLAN_NONE)
1145 vlanid = (mynvlanid & VLAN_IDMASK);
1146 /* not matched? */
1147 if (vlanid != (myvlanid & VLAN_IDMASK))
1148 return;
1149 }
1150
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001151 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001152 case PROT_ARP:
Joe Hershberger85ae7762015-04-08 01:41:08 -05001153 arp_receive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001154 break;
wdenk2d966952002-10-31 22:12:35 +00001155
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001156#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001157 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001158 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001159 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001160#endif
wdenk2d966952002-10-31 22:12:35 +00001161 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001162 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001163 /* Before we start poking the header, make sure it is there */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001164 if (len < IP_UDP_HDR_SIZE) {
1165 debug("len bad %d < %lu\n", len,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001166 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001167 return;
1168 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001169 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001170 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001171 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001172 return;
1173 }
1174 len = ntohs(ip->ip_len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001175 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001176 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001177
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001178 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001179 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001180 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001181 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001182 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001183 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001184 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001185 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001186 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001187 return;
1188 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001189 /* If it is not for us, ignore it */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001190 dst_ip = net_read_ip(&ip->ip_dst);
1191 if (net_ip.s_addr && dst_ip.s_addr != net_ip.s_addr &&
1192 dst_ip.s_addr != 0xFFFFFFFF) {
David Updegraff7280da72007-06-11 10:41:07 -05001193#ifdef CONFIG_MCAST_TFTP
Joe Hershberger5874dec2015-04-08 01:41:01 -05001194 if (net_mcast_addr != dst_ip)
David Updegraff7280da72007-06-11 10:41:07 -05001195#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001196 return;
wdenk2d966952002-10-31 22:12:35 +00001197 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001198 /* Read source IP address for later use */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001199 src_ip = net_read_ip(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001200 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001201 * The function returns the unchanged packet if it's not
1202 * a fragment, and either the complete packet or NULL if
1203 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1204 */
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001205 ip = net_defragment(ip, &len);
Luca Ceresolidb210822011-05-04 02:40:47 +00001206 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001207 return;
1208 /*
wdenk2d966952002-10-31 22:12:35 +00001209 * watch for ICMP host redirects
1210 *
wdenk57b2d802003-06-27 21:31:46 +00001211 * There is no real handler code (yet). We just watch
1212 * for ICMP host redirect messages. In case anybody
1213 * sees these messages: please contact me
1214 * (wd@denx.de), or - even better - send me the
1215 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001216 *
wdenk57b2d802003-06-27 21:31:46 +00001217 * Note: in all cases where I have seen this so far
1218 * it was a problem with the router configuration,
1219 * for instance when a router was configured in the
1220 * BOOTP reply, but the TFTP server was on the same
1221 * subnet. So this is probably a warning that your
1222 * configuration might be wrong. But I'm not really
1223 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001224 *
1225 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1226 * we send a tftp packet to a dead connection, or when
1227 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001228 */
1229 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001230 receive_icmp(ip, len, src_ip, et);
1231 return;
wdenk2d966952002-10-31 22:12:35 +00001232 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1233 return;
1234 }
1235
Joe Hershberger05a377b2012-05-23 08:01:04 +00001236 debug_cond(DEBUG_DEV_PKT,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001237 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1238 &dst_ip, &src_ip, len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001239
Stefan Roesedfced812005-08-12 20:06:52 +02001240#ifdef CONFIG_UDP_CHECKSUM
1241 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001242 ulong xsum;
Stefan Roesedfced812005-08-12 20:06:52 +02001243 ushort *sumptr;
1244 ushort sumlen;
1245
1246 xsum = ip->ip_p;
1247 xsum += (ntohs(ip->udp_len));
Joe Hershberger5874dec2015-04-08 01:41:01 -05001248 xsum += (ntohl(ip->ip_src.s_addr) >> 16) & 0x0000ffff;
1249 xsum += (ntohl(ip->ip_src.s_addr) >> 0) & 0x0000ffff;
1250 xsum += (ntohl(ip->ip_dst.s_addr) >> 16) & 0x0000ffff;
1251 xsum += (ntohl(ip->ip_dst.s_addr) >> 0) & 0x0000ffff;
Stefan Roesedfced812005-08-12 20:06:52 +02001252
1253 sumlen = ntohs(ip->udp_len);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001254 sumptr = (ushort *)&(ip->udp_src);
Stefan Roesedfced812005-08-12 20:06:52 +02001255
1256 while (sumlen > 1) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001257 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001258
1259 sumdata = *sumptr++;
1260 xsum += ntohs(sumdata);
1261 sumlen -= 2;
1262 }
1263 if (sumlen > 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001264 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001265
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001266 sumdata = *(unsigned char *)sumptr;
Wolfgang Denk30b87322005-08-12 23:43:12 +02001267 sumdata = (sumdata << 8) & 0xff00;
Stefan Roesedfced812005-08-12 20:06:52 +02001268 xsum += sumdata;
1269 }
1270 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001271 xsum = (xsum & 0x0000ffff) +
1272 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001273 }
1274 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001275 printf(" UDP wrong checksum %08lx %08x\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001276 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001277 return;
1278 }
1279 }
1280#endif
1281
Holger Denglerae85c072017-07-20 10:10:55 +02001282#if defined(CONFIG_NETCONSOLE) && !defined(CONFIG_SPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001283 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001284 src_ip,
1285 ntohs(ip->udp_dst),
1286 ntohs(ip->udp_src),
1287 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001288#endif
wdenk2d966952002-10-31 22:12:35 +00001289 /*
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001290 * IP header OK. Pass the packet to the current handler.
wdenk2d966952002-10-31 22:12:35 +00001291 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001292 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001293 ntohs(ip->udp_dst),
1294 src_ip,
1295 ntohs(ip->udp_src),
1296 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001297 break;
Lothar Felten776fc102018-06-22 22:29:54 +02001298#ifdef CONFIG_CMD_WOL
1299 case PROT_WOL:
1300 wol_receive(ip, len);
1301 break;
1302#endif
wdenk2d966952002-10-31 22:12:35 +00001303 }
1304}
1305
wdenk2d966952002-10-31 22:12:35 +00001306/**********************************************************************/
1307
Simon Glassd6c5f552011-10-24 18:00:02 +00001308static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001309{
1310 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001311 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001312#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001313 case PING:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001314 if (net_ping_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001315 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001316 return 1;
wdenk05939202004-04-18 17:39:38 +00001317 }
1318 goto common;
wdenke6466f62003-06-05 19:27:42 +00001319#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001320#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +00001321 case SNTP:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001322 if (net_ntp_server.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001323 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001324 return 1;
wdenkb4ad9622005-04-01 00:25:43 +00001325 }
1326 goto common;
1327#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001328#if defined(CONFIG_CMD_DNS)
1329 case DNS:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001330 if (net_dns_server.s_addr == 0) {
Robin Getz82f0d232009-07-20 14:53:54 -04001331 puts("*** ERROR: DNS server address not given\n");
1332 return 1;
1333 }
1334 goto common;
1335#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001336#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001337 case NFS:
1338#endif
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001339 /* Fall through */
Simon Glassd6c5f552011-10-24 18:00:02 +00001340 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001341 case TFTPPUT:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001342 if (net_server_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001343 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001344 return 1;
wdenk05939202004-04-18 17:39:38 +00001345 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001346#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1347 defined(CONFIG_CMD_DNS)
1348common:
wdenke6466f62003-06-05 19:27:42 +00001349#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001350 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001351
Simon Guinot00dceba2011-05-01 23:38:40 +00001352 case NETCONS:
Alex Kiernand5aa57c2018-05-29 15:30:53 +00001353 case FASTBOOT:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001354 case TFTPSRV:
Joe Hershberger5874dec2015-04-08 01:41:01 -05001355 if (net_ip.s_addr == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001356 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001357 return 1;
wdenk05939202004-04-18 17:39:38 +00001358 }
1359 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001360
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001361#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001362 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001363#endif
wdenk2d966952002-10-31 22:12:35 +00001364 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001365 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001366 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001367 case LINKLOCAL:
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001368 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001369 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001370
wdenk05939202004-04-18 17:39:38 +00001371 switch (num) {
1372 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001373 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001374 return 1;
wdenk05939202004-04-18 17:39:38 +00001375 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001376 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001377 break;
wdenk05939202004-04-18 17:39:38 +00001378 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001379 printf("*** ERROR: `eth%daddr' not set\n",
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001380 num);
wdenk2d966952002-10-31 22:12:35 +00001381 break;
wdenk05939202004-04-18 17:39:38 +00001382 }
wdenk2d966952002-10-31 22:12:35 +00001383
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001384 net_start_again();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001385 return 2;
wdenk05939202004-04-18 17:39:38 +00001386 }
1387 /* Fall through */
1388 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001389 return 0;
wdenk2d966952002-10-31 22:12:35 +00001390 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001391 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001392}
1393/**********************************************************************/
1394
1395int
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001396net_eth_hdr_size(void)
wdenk145d2c12004-04-15 21:48:45 +00001397{
1398 ushort myvlanid;
1399
Joe Hershberger013d3872015-04-08 01:41:17 -05001400 myvlanid = ntohs(net_our_vlan);
wdenk145d2c12004-04-15 21:48:45 +00001401 if (myvlanid == (ushort)-1)
1402 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001403
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001404 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1405 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001406}
1407
Joe Hershbergera8ca4f62015-04-08 01:41:05 -05001408int net_set_ether(uchar *xet, const uchar *dest_ethaddr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001409{
Joe Hershberger1178f412012-05-23 07:58:06 +00001410 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001411 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
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001417 memcpy(et->et_dest, dest_ethaddr, 6);
1418 memcpy(et->et_src, net_ethaddr, 6);
wdenk145d2c12004-04-15 21:48:45 +00001419 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001420 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001421 return ETHER_HDR_SIZE;
1422 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001423 struct vlan_ethernet_hdr *vet =
1424 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001425
wdenk145d2c12004-04-15 21:48:45 +00001426 vet->vet_vlan_type = htons(PROT_VLAN);
1427 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1428 vet->vet_type = htons(prot);
1429 return VLAN_ETHER_HDR_SIZE;
1430 }
1431}
wdenk2d966952002-10-31 22:12:35 +00001432
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001433int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1434{
1435 ushort protlen;
1436
1437 memcpy(et->et_dest, addr, 6);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -05001438 memcpy(et->et_src, net_ethaddr, 6);
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001439 protlen = ntohs(et->et_protlen);
1440 if (protlen == PROT_VLAN) {
1441 struct vlan_ethernet_hdr *vet =
1442 (struct vlan_ethernet_hdr *)et;
1443 vet->vet_type = htons(prot);
1444 return VLAN_ETHER_HDR_SIZE;
1445 } else if (protlen > 1514) {
1446 et->et_protlen = htons(prot);
1447 return ETHER_HDR_SIZE;
1448 } else {
1449 /* 802.2 + SNAP */
1450 struct e802_hdr *et802 = (struct e802_hdr *)et;
1451 et802->et_prot = htons(prot);
1452 return E802_HDR_SIZE;
1453 }
1454}
1455
Joe Hershberger5874dec2015-04-08 01:41:01 -05001456void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source)
wdenk2d966952002-10-31 22:12:35 +00001457{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001458 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001459
1460 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001461 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001462 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001463 /* IP_HDR_SIZE / 4 (not including UDP) */
1464 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001465 ip->ip_tos = 0;
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001466 ip->ip_len = htons(IP_HDR_SIZE);
Joe Hershbergerc80b41b02015-04-08 01:41:21 -05001467 ip->ip_id = htons(net_ip_id++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001468 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001469 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001470 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001471 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001472 net_copy_ip((void *)&ip->ip_src, &source);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001473 /* already in network byte order */
Joe Hershberger5874dec2015-04-08 01:41:01 -05001474 net_copy_ip((void *)&ip->ip_dst, &dest);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001475}
1476
Joe Hershberger5874dec2015-04-08 01:41:01 -05001477void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport, int sport,
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001478 int len)
1479{
1480 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1481
1482 /*
1483 * If the data is an odd number of bytes, zero the
1484 * byte after the last byte so that the checksum
1485 * will work.
1486 */
1487 if (len & 1)
1488 pkt[IP_UDP_HDR_SIZE + len] = 0;
1489
Joe Hershberger5874dec2015-04-08 01:41:01 -05001490 net_set_ip_header(pkt, dest, net_ip);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001491 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1492 ip->ip_p = IPPROTO_UDP;
Simon Glassdfcdcee2015-01-19 22:16:08 -07001493 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001494
wdenk2d966952002-10-31 22:12:35 +00001495 ip->udp_src = htons(sport);
1496 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001497 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001498 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001499}
1500
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001501void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001502{
1503 if (*src && (*src == '"')) {
1504 ++src;
1505 --size;
1506 }
1507
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001508 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001509 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001510 *dst = '\0';
1511}
1512
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001513#if defined(CONFIG_CMD_NFS) || \
1514 defined(CONFIG_CMD_SNTP) || \
1515 defined(CONFIG_CMD_DNS)
Robin Getz82f0d232009-07-20 14:53:54 -04001516/*
Robin Getz55b50e92010-03-08 14:07:00 -05001517 * make port a little random (1024-17407)
1518 * This keeps the math somewhat trivial to compute, and seems to work with
1519 * all supported protocols/clients/servers
Robin Getz82f0d232009-07-20 14:53:54 -04001520 */
1521unsigned int random_port(void)
1522{
Robin Getz55b50e92010-03-08 14:07:00 -05001523 return 1024 + (get_timer(0) % 0x4000);
Robin Getz82f0d232009-07-20 14:53:54 -04001524}
1525#endif
1526
Joe Hershberger5874dec2015-04-08 01:41:01 -05001527void ip_to_string(struct in_addr x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001528{
Joe Hershberger5874dec2015-04-08 01:41:01 -05001529 x.s_addr = ntohl(x.s_addr);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001530 sprintf(s, "%d.%d.%d.%d",
Joe Hershberger5874dec2015-04-08 01:41:01 -05001531 (int) ((x.s_addr >> 24) & 0xff),
1532 (int) ((x.s_addr >> 16) & 0xff),
1533 (int) ((x.s_addr >> 8) & 0xff),
1534 (int) ((x.s_addr >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001535 );
wdenk2d966952002-10-31 22:12:35 +00001536}
1537
Joe Hershberger013d3872015-04-08 01:41:17 -05001538void vlan_to_string(ushort x, char *s)
wdenk145d2c12004-04-15 21:48:45 +00001539{
1540 x = ntohs(x);
1541
1542 if (x == (ushort)-1)
1543 x = VLAN_NONE;
1544
1545 if (x == VLAN_NONE)
1546 strcpy(s, "none");
1547 else
1548 sprintf(s, "%d", x & VLAN_IDMASK);
1549}
1550
Joe Hershberger013d3872015-04-08 01:41:17 -05001551ushort string_to_vlan(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001552{
1553 ushort id;
1554
1555 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001556 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001557
1558 if (*s < '0' || *s > '9')
1559 id = VLAN_NONE;
1560 else
1561 id = (ushort)simple_strtoul(s, NULL, 10);
1562
wdenk656140b2004-04-25 13:18:40 +00001563 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001564}
1565
Simon Glassda1a1342017-08-03 12:22:15 -06001566ushort env_get_vlan(char *var)
wdenk145d2c12004-04-15 21:48:45 +00001567{
Simon Glass64b723f2017-08-03 12:22:12 -06001568 return string_to_vlan(env_get(var));
wdenk145d2c12004-04-15 21:48:45 +00001569}