blob: 69f38f7483c66b8b298658006b5ee843b0c14280 [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
Wolfgang Denkdb065922014-09-30 10:44:01 +02009 * SPDX-License-Identifier: GPL-2.0
wdenk2d966952002-10-31 22:12:35 +000010 */
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
wdenk2d966952002-10-31 22:12:35 +000081 */
82
83
84#include <common.h>
wdenk2d966952002-10-31 22:12:35 +000085#include <command.h>
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -060086#include <environment.h>
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -050087#include <errno.h>
wdenk2d966952002-10-31 22:12:35 +000088#include <net.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +000089#if defined(CONFIG_STATUS_LED)
wdenk49c3f672003-10-08 22:33:00 +000090#include <miiphy.h>
Joe Hershbergerfee076e2012-05-23 07:58:15 +000091#include <status_led.h>
wdenkb4ad9622005-04-01 00:25:43 +000092#endif
Joe Hershbergerfee076e2012-05-23 07:58:15 +000093#include <watchdog.h>
94#include <linux/compiler.h>
95#include "arp.h"
96#include "bootp.h"
Joe Hershbergera4215b02012-05-23 07:57:59 +000097#include "cdp.h"
Robin Getz82f0d232009-07-20 14:53:54 -040098#if defined(CONFIG_CMD_DNS)
99#include "dns.h"
100#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000101#include "link_local.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000102#include "nfs.h"
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000103#include "ping.h"
Joe Hershbergerfee076e2012-05-23 07:58:15 +0000104#include "rarp.h"
105#if defined(CONFIG_CMD_SNTP)
106#include "sntp.h"
107#endif
108#include "tftp.h"
wdenk2d966952002-10-31 22:12:35 +0000109
Wolfgang Denk6405a152006-03-31 18:32:53 +0200110DECLARE_GLOBAL_DATA_PTR;
111
wdenk2d966952002-10-31 22:12:35 +0000112/** BOOTP EXTENTIONS **/
113
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000114/* Our subnet mask (0=unknown) */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000115IPaddr_t NetOurSubnetMask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000116/* Our gateways IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000117IPaddr_t NetOurGatewayIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000118/* Our DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000119IPaddr_t NetOurDNSIP;
Jon Loeliger5336a762007-07-09 22:08:34 -0500120#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000121/* Our 2nd DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000122IPaddr_t NetOurDNS2IP;
stroesee0aadfb2003-08-28 14:17:32 +0000123#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000124/* Our NIS domain */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000125char NetOurNISDomain[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000126/* Our hostname */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000127char NetOurHostName[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000128/* Our bootpath */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000129char NetOurRootPath[64] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000130/* Our bootfile size in blocks */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000131ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000132
David Updegraff7280da72007-06-11 10:41:07 -0500133#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
134IPaddr_t Mcast_addr;
135#endif
136
wdenk2d966952002-10-31 22:12:35 +0000137/** END OF BOOTP EXTENTIONS **/
138
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000139/* The actual transferred size of the bootfile (in bytes) */
140ulong NetBootFileXferSize;
141/* Our ethernet address */
142uchar NetOurEther[6];
143/* Boot server enet address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000144uchar NetServerEther[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000145/* Our IP addr (0 = unknown) */
146IPaddr_t NetOurIP;
147/* Server IP addr (0 = unknown) */
148IPaddr_t NetServerIP;
149/* Current receive packet */
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000150uchar *NetRxPacket;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000151/* Current rx packet length */
152int NetRxPacketLen;
153/* IP packet ID */
154unsigned NetIPID;
155/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000156uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
157uchar NetEtherNullAddr[6];
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100158#ifdef CONFIG_API
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000159void (*push_packet)(void *, int len) = 0;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100160#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000161/* Network loop state */
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000162enum net_loop_state net_state;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000163/* Tried all network devices */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000164int NetRestartWrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000165/* Network loop restarted */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000166static int NetRestarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* At least one device configured */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000168static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000169
wdenk05939202004-04-18 17:39:38 +0000170/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000171/* default is without VLAN */
172ushort NetOurVLAN = 0xFFFF;
173/* ditto */
174ushort NetOurNativeVLAN = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000175
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000176/* Boot File name */
177char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000178
Jon Loeliger54f35c22007-07-09 17:45:14 -0500179#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000180/* NTP server IP address */
181IPaddr_t NetNtpServerIP;
182/* offset time from UTC */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000183int NetTimeOffset;
wdenkb4ad9622005-04-01 00:25:43 +0000184#endif
185
Kim Phillips40c2c032012-10-29 13:34:33 +0000186static uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500187#ifdef CONFIG_DM_ETH
188/* Receive packets */
189uchar *net_rx_packets[PKTBUFSRX];
190#else
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000191/* Receive packet */
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000192uchar *NetRxPackets[PKTBUFSRX];
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500193#endif
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000194/* Current UDP RX packet handler */
195static rxhand_f *udp_packet_handler;
196/* Current ARP RX packet handler */
197static rxhand_f *arp_packet_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000198#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000199/* Current ICMP rx handler */
200static rxhand_icmp_f *packet_icmp_handler;
Simon Glass2928cd82011-10-26 14:18:38 +0000201#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000202/* Current timeout handler */
203static thand_f *timeHandler;
204/* Time base value */
205static ulong timeStart;
206/* Current timeout value */
207static ulong timeDelta;
208/* THE transmit packet */
Joe Hershberger4b7747e2012-05-15 08:59:04 +0000209uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000210
Simon Glassd6c5f552011-10-24 18:00:02 +0000211static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000212
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100213static int NetTryCount;
214
Jim Lin6c8921f2013-08-13 19:03:05 +0800215int __maybe_unused net_busy_flag;
216
wdenk2d966952002-10-31 22:12:35 +0000217/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000218
Joe Hershbergerdc9d1e52012-12-11 22:16:26 -0600219static int on_bootfile(const char *name, const char *value, enum env_op op,
220 int flags)
221{
222 switch (op) {
223 case env_op_create:
224 case env_op_overwrite:
225 copy_filename(BootFile, value, sizeof(BootFile));
226 break;
227 default:
228 break;
229 }
230
231 return 0;
232}
233U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
234
Simon Glass5234ad12011-10-27 06:24:32 +0000235/*
236 * Check if autoload is enabled. If so, use either NFS or TFTP to download
237 * the boot file.
238 */
239void net_auto_load(void)
240{
Joe Hershberger864ec562012-12-11 22:16:22 -0600241#if defined(CONFIG_CMD_NFS)
Simon Glass5234ad12011-10-27 06:24:32 +0000242 const char *s = getenv("autoload");
243
Joe Hershberger864ec562012-12-11 22:16:22 -0600244 if (s != NULL && strcmp(s, "NFS") == 0) {
245 /*
246 * Use NFS to load the bootfile.
247 */
248 NfsStart();
249 return;
250 }
Simon Glass5234ad12011-10-27 06:24:32 +0000251#endif
Joe Hershberger864ec562012-12-11 22:16:22 -0600252 if (getenv_yesno("autoload") == 0) {
253 /*
254 * Just use BOOTP/RARP to configure system;
255 * Do not use TFTP to load the bootfile.
256 */
257 net_set_state(NETLOOP_SUCCESS);
258 return;
Simon Glass5234ad12011-10-27 06:24:32 +0000259 }
260 TftpStart(TFTPGET);
261}
262
Joe Hershberger202c6002012-05-23 07:59:21 +0000263static void NetInitLoop(void)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100264{
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000265 static int env_changed_id;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000266 int env_id = get_env_id();
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100267
268 /* update only when the environment has changed */
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300269 if (env_changed_id != env_id) {
Enric Balletbo i Serra7019d252011-05-31 21:01:47 +0000270 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000271 NetOurGatewayIP = getenv_IPaddr("gatewayip");
272 NetOurSubnetMask = getenv_IPaddr("netmask");
273 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100274 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300275 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz82f0d232009-07-20 14:53:54 -0400276#if defined(CONFIG_CMD_DNS)
277 NetOurDNSIP = getenv_IPaddr("dnsip");
278#endif
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300279 env_changed_id = env_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100280 }
Jim Lin09a2bb82013-05-17 17:41:03 +0800281 if (eth_get_dev())
Joe Hershberger11cd5a02015-03-22 17:09:00 -0500282 memcpy(NetOurEther, eth_get_ethaddr(), 6);
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300283
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200284 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100285}
286
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000287static void net_clear_handlers(void)
288{
289 net_set_udp_handler(NULL);
290 net_set_arp_handler(NULL);
291 NetSetTimeout(0, NULL);
292}
293
294static void net_cleanup_loop(void)
295{
296 net_clear_handlers();
297}
298
Joe Hershberger017e5c42012-05-23 07:59:22 +0000299void net_init(void)
300{
301 static int first_call = 1;
302
303 if (first_call) {
304 /*
305 * Setup packet buffers, aligned correctly.
306 */
307 int i;
308
309 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
310 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500311#ifdef CONFIG_DM_ETH
312 for (i = 0; i < PKTBUFSRX; i++) {
313 net_rx_packets[i] = NetTxPacket + (i + 1) *
314 PKTSIZE_ALIGN;
315 }
316#else
Joe Hershberger017e5c42012-05-23 07:59:22 +0000317 for (i = 0; i < PKTBUFSRX; i++)
318 NetRxPackets[i] = NetTxPacket + (i + 1) * PKTSIZE_ALIGN;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500319#endif
Joe Hershberger017e5c42012-05-23 07:59:22 +0000320 ArpInit();
321 net_clear_handlers();
322
323 /* Only need to setup buffer pointers once. */
324 first_call = 0;
325 }
326
327 NetInitLoop();
328}
329
wdenke6466f62003-06-05 19:27:42 +0000330/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000331/*
332 * Main network processing loop.
333 */
334
Simon Glassd6c5f552011-10-24 18:00:02 +0000335int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000336{
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500337 int ret = -EINVAL;
wdenk2d966952002-10-31 22:12:35 +0000338
wdenk2d966952002-10-31 22:12:35 +0000339 NetRestarted = 0;
340 NetDevExists = 0;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100341 NetTryCount = 1;
Joe Hershberger05a377b2012-05-23 08:01:04 +0000342 debug_cond(DEBUG_INT_STATE, "--- NetLoop Entry\n");
wdenke6466f62003-06-05 19:27:42 +0000343
Simon Glass768cbf02011-12-10 11:08:06 +0000344 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger017e5c42012-05-23 07:59:22 +0000345 net_init();
Joe Hershberger9f374062012-08-03 10:59:08 +0000346 if (eth_is_on_demand_init() || protocol != NETCONS) {
wdenkfa66e932005-04-03 14:52:59 +0000347 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000348 eth_set_current();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500349 ret = eth_init();
350 if (ret < 0) {
Joe Hershberger9f374062012-08-03 10:59:08 +0000351 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500352 return ret;
Joe Hershberger9f374062012-08-03 10:59:08 +0000353 }
354 } else
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500355 eth_init_state_only();
wdenk2d966952002-10-31 22:12:35 +0000356
357restart:
Jim Lin6c8921f2013-08-13 19:03:05 +0800358#ifdef CONFIG_USB_KEYBOARD
359 net_busy_flag = 0;
360#endif
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000361 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000362
363 /*
364 * Start the ball rolling with the given start function. From
365 * here on, this code is a state machine driven by received
366 * packets and timer events.
367 */
Joe Hershberger05a377b2012-05-23 08:01:04 +0000368 debug_cond(DEBUG_INT_STATE, "--- NetLoop Init\n");
Joe Hershberger202c6002012-05-23 07:59:21 +0000369 NetInitLoop();
wdenk2d966952002-10-31 22:12:35 +0000370
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000371 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000372 case 1:
373 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000374 eth_halt();
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500375 return -ENODEV;
wdenk2d966952002-10-31 22:12:35 +0000376
wdenk2d966952002-10-31 22:12:35 +0000377 case 2:
378 /* network device not configured */
379 break;
wdenk2d966952002-10-31 22:12:35 +0000380
381 case 0:
wdenk2d966952002-10-31 22:12:35 +0000382 NetDevExists = 1;
Simon Glassd6c5f552011-10-24 18:00:02 +0000383 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000384 switch (protocol) {
Simon Glassd6c5f552011-10-24 18:00:02 +0000385 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000386#ifdef CONFIG_CMD_TFTPPUT
387 case TFTPPUT:
388#endif
wdenk2d966952002-10-31 22:12:35 +0000389 /* always use ARP to get server ethernet address */
Simon Glassd6c5f552011-10-24 18:00:02 +0000390 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000391 break;
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000392#ifdef CONFIG_CMD_TFTPSRV
393 case TFTPSRV:
394 TftpStartServer();
395 break;
396#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500397#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000398 case DHCP:
Stephen Warren69e1e352014-07-25 17:30:48 -0600399 BootpReset();
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300400 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000401 DhcpRequest(); /* Basically same as BOOTP */
402 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500403#endif
wdenk2d966952002-10-31 22:12:35 +0000404
405 case BOOTP:
Stephen Warren69e1e352014-07-25 17:30:48 -0600406 BootpReset();
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300407 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000408 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000409 break;
410
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500411#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000412 case RARP:
413 RarpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300414 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000415 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000416 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500417#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500418#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000419 case PING:
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000420 ping_start();
wdenke6466f62003-06-05 19:27:42 +0000421 break;
422#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500423#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +0000424 case NFS:
425 NfsStart();
426 break;
427#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500428#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000429 case CDP:
430 CDPStart();
431 break;
432#endif
Hannes Petermaierea070422014-06-13 06:25:29 +0200433#if defined (CONFIG_NETCONSOLE) && !(CONFIG_SPL_BUILD)
wdenkb8fb6192004-08-02 21:11:11 +0000434 case NETCONS:
435 NcStart();
436 break;
437#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500438#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +0000439 case SNTP:
440 SntpStart();
441 break;
442#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400443#if defined(CONFIG_CMD_DNS)
444 case DNS:
445 DnsStart();
446 break;
447#endif
Joe Hershbergerb35a3a62012-05-23 08:00:12 +0000448#if defined(CONFIG_CMD_LINK_LOCAL)
449 case LINKLOCAL:
450 link_local_start();
451 break;
452#endif
wdenk2d966952002-10-31 22:12:35 +0000453 default:
454 break;
455 }
456
wdenk2d966952002-10-31 22:12:35 +0000457 break;
458 }
459
Jon Loeliger54f35c22007-07-09 17:45:14 -0500460#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000461#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
462 defined(CONFIG_STATUS_LED) && \
463 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000464 /*
wdenk9c53f402003-10-15 23:53:47 +0000465 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000466 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000467 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000468 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000469 else
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000470 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200471#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000472#endif /* CONFIG_MII, ... */
Jim Lin6c8921f2013-08-13 19:03:05 +0800473#ifdef CONFIG_USB_KEYBOARD
474 net_busy_flag = 1;
475#endif
wdenk2d966952002-10-31 22:12:35 +0000476
477 /*
478 * Main packet reception loop. Loop receiving packets until
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000479 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000480 */
481 for (;;) {
482 WATCHDOG_RESET();
483#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger77001b432012-05-15 08:59:08 +0000484 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000485#endif
486 /*
487 * Check the ethernet for a new packet. The ethernet
488 * receive routine will process it.
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500489 * Most drivers return the most recent packet size, but not
490 * errors that may have happened.
wdenk2d966952002-10-31 22:12:35 +0000491 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200492 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000493
494 /*
495 * Abort if ctrl-c was pressed.
496 */
497 if (ctrlc()) {
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000498 /* cancel any ARP that may not have completed */
499 NetArpWaitPacketIP = 0;
500
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000501 net_cleanup_loop();
wdenk57b2d802003-06-27 21:31:46 +0000502 eth_halt();
Joe Hershberger9f374062012-08-03 10:59:08 +0000503 /* Invalidate the last protocol */
504 eth_set_last_protocol(BOOTP);
505
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000506 puts("\nAbort\n");
Joe Hershberger05a377b2012-05-23 08:01:04 +0000507 /* include a debug print as well incase the debug
508 messages are directed to stderr */
509 debug_cond(DEBUG_INT_STATE, "--- NetLoop Abort!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000510 goto done;
wdenk2d966952002-10-31 22:12:35 +0000511 }
512
wdenke6466f62003-06-05 19:27:42 +0000513 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000514
515 /*
516 * Check for a timeout, and run the timeout handler
517 * if we have one.
518 */
wdenk5d841732003-08-17 18:55:18 +0000519 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000520 thand_f *x;
521
Jon Loeliger54f35c22007-07-09 17:45:14 -0500522#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000523#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
524 defined(CONFIG_STATUS_LED) && \
525 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000526 /*
wdenk9c53f402003-10-15 23:53:47 +0000527 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000528 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000529 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000530 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000531 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenk49c3f672003-10-08 22:33:00 +0000532 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000533 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenk49c3f672003-10-08 22:33:00 +0000534 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000535#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000536#endif /* CONFIG_MII, ... */
Joe Hershberger05a377b2012-05-23 08:01:04 +0000537 debug_cond(DEBUG_INT_STATE, "--- NetLoop timeout\n");
wdenk2d966952002-10-31 22:12:35 +0000538 x = timeHandler;
539 timeHandler = (thand_f *)0;
540 (*x)();
541 }
542
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500543 if (net_state == NETLOOP_FAIL)
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500544 ret = NetStartAgain();
wdenk2d966952002-10-31 22:12:35 +0000545
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000546 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000547
548 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000549 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000550 goto restart;
551
552 case NETLOOP_SUCCESS:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000553 net_cleanup_loop();
wdenk2d966952002-10-31 22:12:35 +0000554 if (NetBootFileXferSize > 0) {
wdenk2d966952002-10-31 22:12:35 +0000555 printf("Bytes transferred = %ld (%lx hex)\n",
556 NetBootFileXferSize,
557 NetBootFileXferSize);
Simon Glass596295d2013-02-24 17:33:24 +0000558 setenv_hex("filesize", NetBootFileXferSize);
559 setenv_hex("fileaddr", load_addr);
wdenk2d966952002-10-31 22:12:35 +0000560 }
Joe Hershberger9f374062012-08-03 10:59:08 +0000561 if (protocol != NETCONS)
562 eth_halt();
563 else
564 eth_halt_state_only();
565
566 eth_set_last_protocol(protocol);
567
Simon Glass230467c2011-10-24 18:00:01 +0000568 ret = NetBootFileXferSize;
Joe Hershberger05a377b2012-05-23 08:01:04 +0000569 debug_cond(DEBUG_INT_STATE, "--- NetLoop Success!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000570 goto done;
wdenk2d966952002-10-31 22:12:35 +0000571
572 case NETLOOP_FAIL:
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000573 net_cleanup_loop();
Joe Hershberger9f374062012-08-03 10:59:08 +0000574 /* Invalidate the last protocol */
575 eth_set_last_protocol(BOOTP);
Joe Hershberger05a377b2012-05-23 08:01:04 +0000576 debug_cond(DEBUG_INT_STATE, "--- NetLoop Fail!\n");
Simon Glass230467c2011-10-24 18:00:01 +0000577 goto done;
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000578
579 case NETLOOP_CONTINUE:
580 continue;
wdenk2d966952002-10-31 22:12:35 +0000581 }
582 }
Simon Glass230467c2011-10-24 18:00:01 +0000583
584done:
Jim Lin6c8921f2013-08-13 19:03:05 +0800585#ifdef CONFIG_USB_KEYBOARD
586 net_busy_flag = 0;
587#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000588#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000589 /* Clear out the handlers */
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000590 net_set_udp_handler(NULL);
Simon Glass230467c2011-10-24 18:00:01 +0000591 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000592#endif
Simon Glass230467c2011-10-24 18:00:01 +0000593 return ret;
wdenk2d966952002-10-31 22:12:35 +0000594}
595
596/**********************************************************************/
597
598static void
599startAgainTimeout(void)
600{
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000601 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000602}
603
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500604int NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000605{
wdenk05939202004-04-18 17:39:38 +0000606 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100607 int retry_forever = 0;
608 unsigned long retrycnt = 0;
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500609 int ret;
wdenk145d2c12004-04-15 21:48:45 +0000610
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100611 nretry = getenv("netretry");
612 if (nretry) {
613 if (!strcmp(nretry, "yes"))
614 retry_forever = 1;
615 else if (!strcmp(nretry, "no"))
616 retrycnt = 0;
617 else if (!strcmp(nretry, "once"))
618 retrycnt = 1;
619 else
620 retrycnt = simple_strtoul(nretry, NULL, 0);
Joe Hershbergere44a0ea2015-03-22 17:09:07 -0500621 } else {
622 retrycnt = 0;
623 retry_forever = 0;
624 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100625
626 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
627 eth_halt();
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000628 net_set_state(NETLOOP_FAIL);
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500629 /*
630 * We don't provide a way for the protocol to return an error,
631 * but this is almost always the reason.
632 */
633 return -ETIMEDOUT;
wdenk145d2c12004-04-15 21:48:45 +0000634 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100635
636 NetTryCount++;
637
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000638 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100639#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000640 eth_try_another(!NetRestarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100641#endif
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500642 ret = eth_init();
wdenk05939202004-04-18 17:39:38 +0000643 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000644 NetRestartWrap = 0;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100645 if (NetDevExists) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000646 NetSetTimeout(10000UL, startAgainTimeout);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000647 net_set_udp_handler(NULL);
wdenk05939202004-04-18 17:39:38 +0000648 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000649 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000650 }
wdenk05939202004-04-18 17:39:38 +0000651 } else {
Joe Hershbergerd4bb76a2012-05-23 07:59:14 +0000652 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000653 }
Joe Hershbergerf4dc96a2015-03-22 17:09:24 -0500654 return ret;
wdenk2d966952002-10-31 22:12:35 +0000655}
656
657/**********************************************************************/
658/*
659 * Miscelaneous bits.
660 */
661
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000662static void dummy_handler(uchar *pkt, unsigned dport,
663 IPaddr_t sip, unsigned sport,
664 unsigned len)
Joe Hershbergeraae05082012-05-23 07:58:01 +0000665{
Joe Hershbergeraae05082012-05-23 07:58:01 +0000666}
667
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000668rxhand_f *net_get_udp_handler(void)
669{
670 return udp_packet_handler;
671}
Joe Hershbergeraae05082012-05-23 07:58:01 +0000672
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000673void net_set_udp_handler(rxhand_f *f)
674{
Joe Hershberger05a377b2012-05-23 08:01:04 +0000675 debug_cond(DEBUG_INT_STATE, "--- NetLoop UDP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000676 if (f == NULL)
677 udp_packet_handler = dummy_handler;
678 else
679 udp_packet_handler = f;
680}
681
682rxhand_f *net_get_arp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000683{
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000684 return arp_packet_handler;
wdenk2d966952002-10-31 22:12:35 +0000685}
686
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000687void net_set_arp_handler(rxhand_f *f)
688{
Joe Hershberger05a377b2012-05-23 08:01:04 +0000689 debug_cond(DEBUG_INT_STATE, "--- NetLoop ARP handler set (%p)\n", f);
Joe Hershbergerf50357b2012-05-23 07:59:15 +0000690 if (f == NULL)
691 arp_packet_handler = dummy_handler;
692 else
693 arp_packet_handler = f;
694}
695
Simon Glass2928cd82011-10-26 14:18:38 +0000696#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000697void net_set_icmp_handler(rxhand_icmp_f *f)
698{
699 packet_icmp_handler = f;
700}
Simon Glass2928cd82011-10-26 14:18:38 +0000701#endif
wdenk2d966952002-10-31 22:12:35 +0000702
703void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000704NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000705{
706 if (iv == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000707 debug_cond(DEBUG_INT_STATE,
708 "--- NetLoop timeout handler cancelled\n");
wdenk2d966952002-10-31 22:12:35 +0000709 timeHandler = (thand_f *)0;
710 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000711 debug_cond(DEBUG_INT_STATE,
712 "--- NetLoop timeout handler set (%p)\n", f);
wdenk2d966952002-10-31 22:12:35 +0000713 timeHandler = f;
wdenk5d841732003-08-17 18:55:18 +0000714 timeStart = get_timer(0);
Tetsuyuki Kobayashibf176182012-06-25 02:37:27 +0000715 timeDelta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000716 }
717}
718
Joe Hershberger1a6b8d82012-05-23 07:58:10 +0000719int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
720 int payload_len)
wdenke6466f62003-06-05 19:27:42 +0000721{
wdenk145d2c12004-04-15 21:48:45 +0000722 uchar *pkt;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000723 int eth_hdr_size;
724 int pkt_hdr_size;
wdenk145d2c12004-04-15 21:48:45 +0000725
Joe Hershberger017e5c42012-05-23 07:59:22 +0000726 /* make sure the NetTxPacket is initialized (NetInit() was called) */
727 assert(NetTxPacket != NULL);
728 if (NetTxPacket == NULL)
729 return -1;
730
wdenke6466f62003-06-05 19:27:42 +0000731 /* convert to new style broadcast */
732 if (dest == 0)
733 dest = 0xFFFFFFFF;
734
735 /* if broadcast, make the ether address a broadcast and don't do ARP */
736 if (dest == 0xFFFFFFFF)
737 ether = NetBcastAddr;
738
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000739 pkt = (uchar *)NetTxPacket;
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000740
741 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
742 pkt += eth_hdr_size;
743 net_set_udp_header(pkt, dest, dport, sport, payload_len);
744 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
wdenke6466f62003-06-05 19:27:42 +0000745
Joe Hershbergerde8205a2012-05-23 07:59:24 +0000746 /* if MAC address was not discovered yet, do an ARP request */
747 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000748 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Robin Getz9e0a4d62009-07-23 03:01:03 -0400749
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000750 /* save the ip and eth addr for the packet to send after arp */
wdenke6466f62003-06-05 19:27:42 +0000751 NetArpWaitPacketIP = dest;
752 NetArpWaitPacketMAC = ether;
wdenk145d2c12004-04-15 21:48:45 +0000753
wdenke6466f62003-06-05 19:27:42 +0000754 /* size of the waiting packet */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000755 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
wdenke6466f62003-06-05 19:27:42 +0000756
757 /* and do the ARP request */
758 NetArpWaitTry = 1;
759 NetArpWaitTimerStart = get_timer(0);
760 ArpRequest();
761 return 1; /* waiting */
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000762 } else {
Joe Hershberger05a377b2012-05-23 08:01:04 +0000763 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
764 &dest, ether);
Joe Hershbergerebe3ca82012-05-23 07:59:13 +0000765 NetSendPacket(NetTxPacket, pkt_hdr_size + payload_len);
Joe Hershberger16be9cb2012-05-23 07:59:08 +0000766 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000767 }
wdenke6466f62003-06-05 19:27:42 +0000768}
wdenk145d2c12004-04-15 21:48:45 +0000769
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200770#ifdef CONFIG_IP_DEFRAG
771/*
772 * This function collects fragments in a single packet, according
773 * to the algorithm in RFC815. It returns NULL or the pointer to
774 * a complete packet, in static storage
775 */
776#ifndef CONFIG_NET_MAXDEFRAG
777#define CONFIG_NET_MAXDEFRAG 16384
778#endif
779/*
780 * MAXDEFRAG, above, is chosen in the config file and is real data
781 * so we need to add the NFS overhead, which is more than TFTP.
782 * To use sizeof in the internal unnamed structures, we need a real
783 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
784 * The compiler doesn't complain nor allocates the actual structure
785 */
786static struct rpc_t rpc_specimen;
787#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
788
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000789#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200790
791/*
792 * this is the packet being assembled, either data or frag control.
793 * Fragments go by 8 bytes, so this union must be 8 bytes long
794 */
795struct hole {
796 /* first_byte is address of this structure */
797 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
798 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
799 u16 prev_hole; /* index of prev, 0 == none */
800 u16 unused;
801};
802
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000803static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200804{
Joe Hershberger77001b432012-05-15 08:59:08 +0000805 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200806 static u16 first_hole, total_len;
807 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000808 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200809 uchar *indata = (uchar *)ip;
810 int offset8, start, len, done = 0;
811 u16 ip_off = ntohs(ip->ip_off);
812
813 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000814 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200815 offset8 = (ip_off & IP_OFFS);
816 thisfrag = payload + offset8;
817 start = offset8 * 8;
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000818 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200819
820 if (start + len > IP_MAXUDP) /* fragment extends too far */
821 return NULL;
822
823 if (!total_len || localip->ip_id != ip->ip_id) {
824 /* new (or different) packet, reset structs */
825 total_len = 0xffff;
826 payload[0].last_byte = ~0;
827 payload[0].next_hole = 0;
828 payload[0].prev_hole = 0;
829 first_hole = 0;
830 /* any IP header will work, copy the first we received */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000831 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200832 }
833
834 /*
835 * What follows is the reassembly algorithm. We use the payload
836 * array as a linked list of hole descriptors, as each hole starts
837 * at a multiple of 8 bytes. However, last byte can be whatever value,
838 * so it is represented as byte count, not as 8-byte blocks.
839 */
840
841 h = payload + first_hole;
842 while (h->last_byte < start) {
843 if (!h->next_hole) {
844 /* no hole that far away */
845 return NULL;
846 }
847 h = payload + h->next_hole;
848 }
849
Fillod Stephanee7ade8b2010-06-11 19:26:43 +0200850 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
851 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200852 /* no overlap with holes (dup fragment?) */
853 return NULL;
854 }
855
856 if (!(ip_off & IP_FLAGS_MFRAG)) {
857 /* no more fragmentss: truncate this (last) hole */
858 total_len = start + len;
859 h->last_byte = start + len;
860 }
861
862 /*
863 * There is some overlap: fix the hole list. This code doesn't
864 * deal with a fragment that overlaps with two different holes
865 * (thus being a superset of a previously-received fragment).
866 */
867
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000868 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200869 /* complete overlap with hole: remove hole */
870 if (!h->prev_hole && !h->next_hole) {
871 /* last remaining hole */
872 done = 1;
873 } else if (!h->prev_hole) {
874 /* first hole */
875 first_hole = h->next_hole;
876 payload[h->next_hole].prev_hole = 0;
877 } else if (!h->next_hole) {
878 /* last hole */
879 payload[h->prev_hole].next_hole = 0;
880 } else {
881 /* in the middle of the list */
882 payload[h->next_hole].prev_hole = h->prev_hole;
883 payload[h->prev_hole].next_hole = h->next_hole;
884 }
885
886 } else if (h->last_byte <= start + len) {
887 /* overlaps with final part of the hole: shorten this hole */
888 h->last_byte = start;
889
890 } else if (h >= thisfrag) {
891 /* overlaps with initial part of the hole: move this hole */
892 newh = thisfrag + (len / 8);
893 *newh = *h;
894 h = newh;
895 if (h->next_hole)
896 payload[h->next_hole].prev_hole = (h - payload);
897 if (h->prev_hole)
898 payload[h->prev_hole].next_hole = (h - payload);
899 else
900 first_hole = (h - payload);
901
902 } else {
903 /* fragment sits in the middle: split the hole */
904 newh = thisfrag + (len / 8);
905 *newh = *h;
906 h->last_byte = start;
907 h->next_hole = (newh - payload);
908 newh->prev_hole = (h - payload);
909 if (newh->next_hole)
910 payload[newh->next_hole].prev_hole = (newh - payload);
911 }
912
913 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000914 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200915 if (!done)
916 return NULL;
917
918 localip->ip_len = htons(total_len);
Joe Hershbergerc686fa12012-05-23 07:58:05 +0000919 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200920 return localip;
921}
922
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000923static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200924{
925 u16 ip_off = ntohs(ip->ip_off);
926 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
927 return ip; /* not a fragment */
928 return __NetDefragment(ip, lenp);
929}
930
931#else /* !CONFIG_IP_DEFRAG */
932
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000933static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +0200934{
935 u16 ip_off = ntohs(ip->ip_off);
936 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
937 return ip; /* not a fragment */
938 return NULL;
939}
940#endif
wdenk2d966952002-10-31 22:12:35 +0000941
Simon Glass43c72962011-10-24 18:00:00 +0000942/**
943 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
944 * drop others.
945 *
946 * @parma ip IP packet containing the ICMP
947 */
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000948static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershberger1178f412012-05-23 07:58:06 +0000949 IPaddr_t src_ip, struct ethernet_hdr *et)
Simon Glass43c72962011-10-24 18:00:00 +0000950{
Joe Hershberger78495612012-05-23 07:58:09 +0000951 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass43c72962011-10-24 18:00:00 +0000952
953 switch (icmph->type) {
954 case ICMP_REDIRECT:
955 if (icmph->code != ICMP_REDIR_HOST)
956 return;
957 printf(" ICMP Host Redirect to %pI4 ",
958 &icmph->un.gateway);
959 break;
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000960 default:
Simon Glass43c72962011-10-24 18:00:00 +0000961#if defined(CONFIG_CMD_PING)
Joe Hershbergerc21bf372012-05-23 07:58:02 +0000962 ping_receive(et, ip, len);
Simon Glass43c72962011-10-24 18:00:00 +0000963#endif
Simon Glass2928cd82011-10-26 14:18:38 +0000964#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000965 if (packet_icmp_handler)
966 packet_icmp_handler(icmph->type, icmph->code,
967 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
968 icmph->un.data, ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +0000969#endif
Simon Glass43c72962011-10-24 18:00:00 +0000970 break;
971 }
972}
973
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500974void net_process_received_packet(uchar *in_packet, int len)
wdenk2d966952002-10-31 22:12:35 +0000975{
Joe Hershberger1178f412012-05-23 07:58:06 +0000976 struct ethernet_hdr *et;
Joe Hershberger6fe8b452012-05-23 07:58:04 +0000977 struct ip_udp_hdr *ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +0000978 IPaddr_t dst_ip;
Luca Ceresoli428ab362011-04-18 06:19:50 +0000979 IPaddr_t src_ip;
Joe Hershbergerfacf5352012-05-23 07:58:12 +0000980 int eth_proto;
Jon Loeliger54f35c22007-07-09 17:45:14 -0500981#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000982 int iscdp;
983#endif
984 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000985
Joe Hershberger05a377b2012-05-23 08:01:04 +0000986 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenk145d2c12004-04-15 21:48:45 +0000987
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500988 NetRxPacket = in_packet;
Mike Frysingerdc166032009-07-18 21:04:08 -0400989 NetRxPacketLen = len;
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500990 et = (struct ethernet_hdr *)in_packet;
wdenk145d2c12004-04-15 21:48:45 +0000991
992 /* too small packet? */
993 if (len < ETHER_HDR_SIZE)
994 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100995
996#ifdef CONFIG_API
997 if (push_packet) {
Joe Hershbergerf77abc52015-03-22 17:09:11 -0500998 (*push_packet)(in_packet, len);
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100999 return;
1000 }
1001#endif
wdenk145d2c12004-04-15 21:48:45 +00001002
Jon Loeliger54f35c22007-07-09 17:45:14 -05001003#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001004 /* keep track if packet is CDP */
Joe Hershberger00c62a82012-05-23 07:58:00 +00001005 iscdp = is_cdp_packet(et->et_dest);
wdenk145d2c12004-04-15 21:48:45 +00001006#endif
1007
1008 myvlanid = ntohs(NetOurVLAN);
1009 if (myvlanid == (ushort)-1)
1010 myvlanid = VLAN_NONE;
1011 mynvlanid = ntohs(NetOurNativeVLAN);
1012 if (mynvlanid == (ushort)-1)
1013 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001014
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001015 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +00001016
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001017 if (eth_proto < 1514) {
Joe Hershberger1178f412012-05-23 07:58:06 +00001018 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +00001019 /*
Joe Hershbergerc17fa982012-05-23 07:58:11 +00001020 * Got a 802.2 packet. Check the other protocol field.
1021 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +00001022 */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001023 eth_proto = ntohs(et802->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001024
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001025 ip = (struct ip_udp_hdr *)(in_packet + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001026 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001027
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001028 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001029 ip = (struct ip_udp_hdr *)(in_packet + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001030 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001031
1032 } else { /* VLAN packet */
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001033 struct vlan_ethernet_hdr *vet =
1034 (struct vlan_ethernet_hdr *)et;
wdenk145d2c12004-04-15 21:48:45 +00001035
Joe Hershberger05a377b2012-05-23 08:01:04 +00001036 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz9e0a4d62009-07-23 03:01:03 -04001037
wdenk145d2c12004-04-15 21:48:45 +00001038 /* too small packet? */
1039 if (len < VLAN_ETHER_HDR_SIZE)
1040 return;
1041
1042 /* if no VLAN active */
1043 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001044#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001045 && iscdp == 0
1046#endif
1047 )
1048 return;
1049
1050 cti = ntohs(vet->vet_tag);
1051 vlanid = cti & VLAN_IDMASK;
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001052 eth_proto = ntohs(vet->vet_type);
wdenk145d2c12004-04-15 21:48:45 +00001053
Joe Hershbergerf77abc52015-03-22 17:09:11 -05001054 ip = (struct ip_udp_hdr *)(in_packet + VLAN_ETHER_HDR_SIZE);
wdenk145d2c12004-04-15 21:48:45 +00001055 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001056 }
1057
Joe Hershberger05a377b2012-05-23 08:01:04 +00001058 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001059
Jon Loeliger54f35c22007-07-09 17:45:14 -05001060#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001061 if (iscdp) {
Joe Hershbergerd01a7a02012-05-23 07:58:13 +00001062 cdp_receive((uchar *)ip, len);
wdenk145d2c12004-04-15 21:48:45 +00001063 return;
1064 }
1065#endif
1066
1067 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1068 if (vlanid == VLAN_NONE)
1069 vlanid = (mynvlanid & VLAN_IDMASK);
1070 /* not matched? */
1071 if (vlanid != (myvlanid & VLAN_IDMASK))
1072 return;
1073 }
1074
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001075 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001076
1077 case PROT_ARP:
Joe Hershbergeraae05082012-05-23 07:58:01 +00001078 ArpReceive(et, ip, len);
wdenkcb99da52005-01-12 00:15:14 +00001079 break;
wdenk2d966952002-10-31 22:12:35 +00001080
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001081#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001082 case PROT_RARP:
Joe Hershberger61b4de62012-05-23 07:58:03 +00001083 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001084 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001085#endif
wdenk2d966952002-10-31 22:12:35 +00001086 case PROT_IP:
Joe Hershberger05a377b2012-05-23 08:01:04 +00001087 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001088 /* Before we start poking the header, make sure it is there */
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001089 if (len < IP_UDP_HDR_SIZE) {
1090 debug("len bad %d < %lu\n", len,
1091 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001092 return;
1093 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001094 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001095 if (len < ntohs(ip->ip_len)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001096 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001097 return;
1098 }
1099 len = ntohs(ip->ip_len);
Joe Hershberger05a377b2012-05-23 08:01:04 +00001100 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1101 len, ip->ip_hl_v & 0xff);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001102
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001103 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001104 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001105 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001106 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001107 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001108 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001109 /* Check the Checksum of the header */
Simon Glassdfcdcee2015-01-19 22:16:08 -07001110 if (!ip_checksum_ok((uchar *)ip, IP_HDR_SIZE)) {
Joe Hershberger05a377b2012-05-23 08:01:04 +00001111 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001112 return;
1113 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001114 /* If it is not for us, ignore it */
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001115 dst_ip = NetReadIP(&ip->ip_dst);
1116 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
David Updegraff7280da72007-06-11 10:41:07 -05001117#ifdef CONFIG_MCAST_TFTP
Joe Hershbergerfacf5352012-05-23 07:58:12 +00001118 if (Mcast_addr != dst_ip)
David Updegraff7280da72007-06-11 10:41:07 -05001119#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001120 return;
wdenk2d966952002-10-31 22:12:35 +00001121 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001122 /* Read source IP address for later use */
1123 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001124 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001125 * The function returns the unchanged packet if it's not
1126 * a fragment, and either the complete packet or NULL if
1127 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1128 */
Luca Ceresolidb210822011-05-04 02:40:47 +00001129 ip = NetDefragment(ip, &len);
1130 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001131 return;
1132 /*
wdenk2d966952002-10-31 22:12:35 +00001133 * watch for ICMP host redirects
1134 *
wdenk57b2d802003-06-27 21:31:46 +00001135 * There is no real handler code (yet). We just watch
1136 * for ICMP host redirect messages. In case anybody
1137 * sees these messages: please contact me
1138 * (wd@denx.de), or - even better - send me the
1139 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001140 *
wdenk57b2d802003-06-27 21:31:46 +00001141 * Note: in all cases where I have seen this so far
1142 * it was a problem with the router configuration,
1143 * for instance when a router was configured in the
1144 * BOOTP reply, but the TFTP server was on the same
1145 * subnet. So this is probably a warning that your
1146 * configuration might be wrong. But I'm not really
1147 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001148 *
1149 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1150 * we send a tftp packet to a dead connection, or when
1151 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001152 */
1153 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001154 receive_icmp(ip, len, src_ip, et);
1155 return;
wdenk2d966952002-10-31 22:12:35 +00001156 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1157 return;
1158 }
1159
Joe Hershberger05a377b2012-05-23 08:01:04 +00001160 debug_cond(DEBUG_DEV_PKT,
1161 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1162 &dst_ip, &src_ip, len);
1163
Stefan Roesedfced812005-08-12 20:06:52 +02001164#ifdef CONFIG_UDP_CHECKSUM
1165 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001166 ulong xsum;
Stefan Roesedfced812005-08-12 20:06:52 +02001167 ushort *sumptr;
1168 ushort sumlen;
1169
1170 xsum = ip->ip_p;
1171 xsum += (ntohs(ip->udp_len));
1172 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1173 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1174 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1175 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1176
1177 sumlen = ntohs(ip->udp_len);
1178 sumptr = (ushort *) &(ip->udp_src);
1179
1180 while (sumlen > 1) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001181 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001182
1183 sumdata = *sumptr++;
1184 xsum += ntohs(sumdata);
1185 sumlen -= 2;
1186 }
1187 if (sumlen > 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001188 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001189
1190 sumdata = *(unsigned char *) sumptr;
Wolfgang Denk30b87322005-08-12 23:43:12 +02001191 sumdata = (sumdata << 8) & 0xff00;
Stefan Roesedfced812005-08-12 20:06:52 +02001192 xsum += sumdata;
1193 }
1194 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001195 xsum = (xsum & 0x0000ffff) +
1196 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001197 }
1198 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001199 printf(" UDP wrong checksum %08lx %08x\n",
1200 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001201 return;
1202 }
1203 }
1204#endif
1205
David Updegraff7280da72007-06-11 10:41:07 -05001206
Hannes Petermaierea070422014-06-13 06:25:29 +02001207#if defined (CONFIG_NETCONSOLE) && !(CONFIG_SPL_BUILD)
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001208 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershberger19d6bc02012-10-03 09:14:03 +00001209 src_ip,
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001210 ntohs(ip->udp_dst),
1211 ntohs(ip->udp_src),
1212 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenkb8fb6192004-08-02 21:11:11 +00001213#endif
wdenk2d966952002-10-31 22:12:35 +00001214 /*
1215 * IP header OK. Pass the packet to the current handler.
1216 */
Joe Hershbergerf50357b2012-05-23 07:59:15 +00001217 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1218 ntohs(ip->udp_dst),
1219 src_ip,
1220 ntohs(ip->udp_src),
1221 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001222 break;
1223 }
1224}
1225
1226
1227/**********************************************************************/
1228
Simon Glassd6c5f552011-10-24 18:00:02 +00001229static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001230{
1231 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001232 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001233#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001234 case PING:
wdenk05939202004-04-18 17:39:38 +00001235 if (NetPingIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001236 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001237 return 1;
wdenk05939202004-04-18 17:39:38 +00001238 }
1239 goto common;
wdenke6466f62003-06-05 19:27:42 +00001240#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001241#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +00001242 case SNTP:
1243 if (NetNtpServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001244 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001245 return 1;
wdenkb4ad9622005-04-01 00:25:43 +00001246 }
1247 goto common;
1248#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001249#if defined(CONFIG_CMD_DNS)
1250 case DNS:
1251 if (NetOurDNSIP == 0) {
1252 puts("*** ERROR: DNS server address not given\n");
1253 return 1;
1254 }
1255 goto common;
1256#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001257#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001258 case NFS:
1259#endif
Simon Glassd6c5f552011-10-24 18:00:02 +00001260 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001261 case TFTPPUT:
wdenk05939202004-04-18 17:39:38 +00001262 if (NetServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001263 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001264 return 1;
wdenk05939202004-04-18 17:39:38 +00001265 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001266#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1267 defined(CONFIG_CMD_DNS)
1268common:
wdenke6466f62003-06-05 19:27:42 +00001269#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001270 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001271
Simon Guinot00dceba2011-05-01 23:38:40 +00001272 case NETCONS:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001273 case TFTPSRV:
wdenk05939202004-04-18 17:39:38 +00001274 if (NetOurIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001275 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001276 return 1;
wdenk05939202004-04-18 17:39:38 +00001277 }
1278 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001279
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001280#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001281 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001282#endif
wdenk2d966952002-10-31 22:12:35 +00001283 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001284 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001285 case DHCP:
Joe Hershbergerb35a3a62012-05-23 08:00:12 +00001286 case LINKLOCAL:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001287 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001288 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001289
wdenk05939202004-04-18 17:39:38 +00001290 switch (num) {
1291 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001292 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001293 return 1;
wdenk05939202004-04-18 17:39:38 +00001294 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001295 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001296 break;
wdenk05939202004-04-18 17:39:38 +00001297 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001298 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001299 num);
1300 break;
wdenk05939202004-04-18 17:39:38 +00001301 }
wdenk2d966952002-10-31 22:12:35 +00001302
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001303 NetStartAgain();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001304 return 2;
wdenk05939202004-04-18 17:39:38 +00001305 }
1306 /* Fall through */
1307 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001308 return 0;
wdenk2d966952002-10-31 22:12:35 +00001309 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001310 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001311}
1312/**********************************************************************/
1313
1314int
wdenk145d2c12004-04-15 21:48:45 +00001315NetEthHdrSize(void)
1316{
1317 ushort myvlanid;
1318
1319 myvlanid = ntohs(NetOurVLAN);
1320 if (myvlanid == (ushort)-1)
1321 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001322
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001323 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1324 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001325}
1326
1327int
Joe Hershberger4b7747e2012-05-15 08:59:04 +00001328NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001329{
Joe Hershberger1178f412012-05-23 07:58:06 +00001330 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001331 ushort myvlanid;
1332
1333 myvlanid = ntohs(NetOurVLAN);
1334 if (myvlanid == (ushort)-1)
1335 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001336
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001337 memcpy(et->et_dest, addr, 6);
1338 memcpy(et->et_src, NetOurEther, 6);
wdenk145d2c12004-04-15 21:48:45 +00001339 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001340 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001341 return ETHER_HDR_SIZE;
1342 } else {
Joe Hershbergerb43784c2012-05-23 07:58:07 +00001343 struct vlan_ethernet_hdr *vet =
1344 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001345
wdenk145d2c12004-04-15 21:48:45 +00001346 vet->vet_vlan_type = htons(PROT_VLAN);
1347 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1348 vet->vet_type = htons(prot);
1349 return VLAN_ETHER_HDR_SIZE;
1350 }
1351}
wdenk2d966952002-10-31 22:12:35 +00001352
Joe Hershberger530cd6b2012-05-23 07:59:16 +00001353int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1354{
1355 ushort protlen;
1356
1357 memcpy(et->et_dest, addr, 6);
1358 memcpy(et->et_src, NetOurEther, 6);
1359 protlen = ntohs(et->et_protlen);
1360 if (protlen == PROT_VLAN) {
1361 struct vlan_ethernet_hdr *vet =
1362 (struct vlan_ethernet_hdr *)et;
1363 vet->vet_type = htons(prot);
1364 return VLAN_ETHER_HDR_SIZE;
1365 } else if (protlen > 1514) {
1366 et->et_protlen = htons(prot);
1367 return ETHER_HDR_SIZE;
1368 } else {
1369 /* 802.2 + SNAP */
1370 struct e802_hdr *et802 = (struct e802_hdr *)et;
1371 et802->et_prot = htons(prot);
1372 return E802_HDR_SIZE;
1373 }
1374}
1375
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001376void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
wdenk2d966952002-10-31 22:12:35 +00001377{
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001378 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001379
1380 /*
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001381 * Construct an IP header.
wdenk2d966952002-10-31 22:12:35 +00001382 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001383 /* IP_HDR_SIZE / 4 (not including UDP) */
1384 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001385 ip->ip_tos = 0;
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001386 ip->ip_len = htons(IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001387 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001388 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001389 ip->ip_ttl = 255;
wdenk2d966952002-10-31 22:12:35 +00001390 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001391 /* already in network byte order */
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001392 NetCopyIP((void *)&ip->ip_src, &source);
1393 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001394 NetCopyIP((void *)&ip->ip_dst, &dest);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001395}
1396
1397void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1398 int len)
1399{
1400 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1401
1402 /*
1403 * If the data is an odd number of bytes, zero the
1404 * byte after the last byte so that the checksum
1405 * will work.
1406 */
1407 if (len & 1)
1408 pkt[IP_UDP_HDR_SIZE + len] = 0;
1409
1410 net_set_ip_header(pkt, dest, NetOurIP);
1411 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
1412 ip->ip_p = IPPROTO_UDP;
Simon Glassdfcdcee2015-01-19 22:16:08 -07001413 ip->ip_sum = compute_ip_checksum(ip, IP_HDR_SIZE);
Joe Hershberger2ed5b492012-05-23 07:59:07 +00001414
wdenk2d966952002-10-31 22:12:35 +00001415 ip->udp_src = htons(sport);
1416 ip->udp_dst = htons(dport);
Joe Hershberger6fe8b452012-05-23 07:58:04 +00001417 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001418 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001419}
1420
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001421void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001422{
1423 if (*src && (*src == '"')) {
1424 ++src;
1425 --size;
1426 }
1427
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001428 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001429 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001430 *dst = '\0';
1431}
1432
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001433#if defined(CONFIG_CMD_NFS) || \
1434 defined(CONFIG_CMD_SNTP) || \
1435 defined(CONFIG_CMD_DNS)
Robin Getz82f0d232009-07-20 14:53:54 -04001436/*
Robin Getz55b50e92010-03-08 14:07:00 -05001437 * make port a little random (1024-17407)
1438 * This keeps the math somewhat trivial to compute, and seems to work with
1439 * all supported protocols/clients/servers
Robin Getz82f0d232009-07-20 14:53:54 -04001440 */
1441unsigned int random_port(void)
1442{
Robin Getz55b50e92010-03-08 14:07:00 -05001443 return 1024 + (get_timer(0) % 0x4000);
Robin Getz82f0d232009-07-20 14:53:54 -04001444}
1445#endif
1446
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001447void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001448{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001449 x = ntohl(x);
1450 sprintf(s, "%d.%d.%d.%d",
1451 (int) ((x >> 24) & 0xff),
1452 (int) ((x >> 16) & 0xff),
1453 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001454 );
wdenk2d966952002-10-31 22:12:35 +00001455}
1456
wdenk145d2c12004-04-15 21:48:45 +00001457void VLAN_to_string(ushort x, char *s)
1458{
1459 x = ntohs(x);
1460
1461 if (x == (ushort)-1)
1462 x = VLAN_NONE;
1463
1464 if (x == VLAN_NONE)
1465 strcpy(s, "none");
1466 else
1467 sprintf(s, "%d", x & VLAN_IDMASK);
1468}
1469
Mike Frysinger89c73922010-10-20 07:16:48 -04001470ushort string_to_VLAN(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001471{
1472 ushort id;
1473
1474 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00001475 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00001476
1477 if (*s < '0' || *s > '9')
1478 id = VLAN_NONE;
1479 else
1480 id = (ushort)simple_strtoul(s, NULL, 10);
1481
wdenk656140b2004-04-25 13:18:40 +00001482 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00001483}
1484
wdenk145d2c12004-04-15 21:48:45 +00001485ushort getenv_VLAN(char *var)
1486{
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001487 return string_to_VLAN(getenv(var));
wdenk145d2c12004-04-15 21:48:45 +00001488}