blob: ae72746213f74e4b2bd94d9c67481b0a200f1eb1 [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
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkcbd8a352004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkea287de2005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkea287de2005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
Joe Hershberger48522bb2012-05-15 08:59:08 +000080#include <linux/compiler.h>
wdenk2d966952002-10-31 22:12:35 +000081#include <net.h>
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000082#include "arp.h"
wdenk2d966952002-10-31 22:12:35 +000083#include "bootp.h"
84#include "tftp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050085#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000086#include "rarp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050087#endif
wdenkcbd8a352004-02-24 02:00:03 +000088#include "nfs.h"
wdenkfc3e2162003-10-08 22:33:00 +000089#ifdef CONFIG_STATUS_LED
90#include <status_led.h>
91#include <miiphy.h>
92#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -050093#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +000094#include "sntp.h"
95#endif
Joe Hershbergerf575ae12012-05-23 07:57:59 +000096#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040097#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
wdenk2d966952002-10-31 22:12:35 +0000100
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200101DECLARE_GLOBAL_DATA_PTR;
102
wdenk2d966952002-10-31 22:12:35 +0000103/** BOOTP EXTENTIONS **/
104
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000105/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000106IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000107/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000108IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000109/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000110IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500111#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000112/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000113IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000114#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000115/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000116char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000117/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000118char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000119/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000120char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000121/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000122ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000123
David Updegraff53a5c422007-06-11 10:41:07 -0500124#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
125IPaddr_t Mcast_addr;
126#endif
127
wdenk2d966952002-10-31 22:12:35 +0000128/** END OF BOOTP EXTENTIONS **/
129
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000130/* The actual transferred size of the bootfile (in bytes) */
131ulong NetBootFileXferSize;
132/* Our ethernet address */
133uchar NetOurEther[6];
134/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000135uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000136/* Our IP addr (0 = unknown) */
137IPaddr_t NetOurIP;
138/* Server IP addr (0 = unknown) */
139IPaddr_t NetServerIP;
140/* Current receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000141uchar *NetRxPacket;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000142/* Current rx packet length */
143int NetRxPacketLen;
144/* IP packet ID */
145unsigned NetIPID;
146/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000147uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
148uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100149#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000150void (*push_packet)(void *, int len) = 0;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100151#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000152/* Network loop state */
153int NetState;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000154/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000155int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000156/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000157static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000158/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000159static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000160
wdenk6e592382004-04-18 17:39:38 +0000161/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000162/* default is without VLAN */
163ushort NetOurVLAN = 0xFFFF;
164/* ditto */
165ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000166
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000167/* Boot File name */
168char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000169
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500170#if defined(CONFIG_CMD_PING)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000171/* the ip address to ping */
172IPaddr_t NetPingIP;
wdenk73a8b272003-06-05 19:27:42 +0000173
174static void PingStart(void);
175#endif
176
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500177#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000178/* NTP server IP address */
179IPaddr_t NetNtpServerIP;
180/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000181int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000182#endif
183
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000184uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
wdenk2d966952002-10-31 22:12:35 +0000185
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000186/* Receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000187uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000188
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000189/* Current RX packet handler */
190static rxhand_f *packetHandler;
Simon Glass39bccd22011-10-26 14:18:38 +0000191#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000192static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass39bccd22011-10-26 14:18:38 +0000193#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000194/* Current timeout handler */
195static thand_f *timeHandler;
196/* Time base value */
197static ulong timeStart;
198/* Current timeout value */
199static ulong timeDelta;
200/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000201uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000202
Simon Glasse4bf0c52011-10-24 18:00:02 +0000203static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000204
Remy Bohmer67b96e82009-10-28 22:13:39 +0100205static int NetTryCount;
206
wdenk2d966952002-10-31 22:12:35 +0000207/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000208
Simon Glasse4a3d572011-10-27 06:24:32 +0000209/*
210 * Check if autoload is enabled. If so, use either NFS or TFTP to download
211 * the boot file.
212 */
213void net_auto_load(void)
214{
215 const char *s = getenv("autoload");
216
217 if (s != NULL) {
218 if (*s == 'n') {
219 /*
220 * Just use BOOTP/RARP to configure system;
221 * Do not use TFTP to load the bootfile.
222 */
223 NetState = NETLOOP_SUCCESS;
224 return;
225 }
226#if defined(CONFIG_CMD_NFS)
227 if (strcmp(s, "NFS") == 0) {
228 /*
229 * Use NFS to load the bootfile.
230 */
231 NfsStart();
232 return;
233 }
234#endif
235 }
236 TftpStart(TFTPGET);
237}
238
Simon Glasse4bf0c52011-10-24 18:00:02 +0000239static void NetInitLoop(enum proto_t protocol)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100240{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000241 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000242 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100243
244 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300245 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000246 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000247 NetOurGatewayIP = getenv_IPaddr("gatewayip");
248 NetOurSubnetMask = getenv_IPaddr("netmask");
249 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100250 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300251 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400252#if defined(CONFIG_CMD_DNS)
253 NetOurDNSIP = getenv_IPaddr("dnsip");
254#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300255 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100256 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300257
Heiko Schocherda954272009-04-28 08:36:11 +0200258 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100259}
260
wdenk73a8b272003-06-05 19:27:42 +0000261/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000262/*
263 * Main network processing loop.
264 */
265
Simon Glasse4bf0c52011-10-24 18:00:02 +0000266int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000267{
wdenk2d966952002-10-31 22:12:35 +0000268 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000269 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000270
wdenk2d966952002-10-31 22:12:35 +0000271 NetRestarted = 0;
272 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000273
wdenk73a8b272003-06-05 19:27:42 +0000274 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100275 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000276
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000277 ArpInit();
278
wdenk2d966952002-10-31 22:12:35 +0000279 if (!NetTxPacket) {
280 int i;
wdenk2d966952002-10-31 22:12:35 +0000281 /*
282 * Setup packet buffers, aligned correctly.
283 */
284 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
285 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000286 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000287 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000288 }
289
Simon Glass573f14f2011-12-10 11:08:06 +0000290 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
wdenk2d966952002-10-31 22:12:35 +0000291 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000292 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000293 if (eth_init(bd) < 0) {
294 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000295 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000296 }
wdenk2d966952002-10-31 22:12:35 +0000297
298restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000299 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000300
301 NetState = NETLOOP_CONTINUE;
302
303 /*
304 * Start the ball rolling with the given start function. From
305 * here on, this code is a state machine driven by received
306 * packets and timer events.
307 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100308 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000309
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000310 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000311 case 1:
312 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000313 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000314 return -1;
wdenk2d966952002-10-31 22:12:35 +0000315
wdenk2d966952002-10-31 22:12:35 +0000316 case 2:
317 /* network device not configured */
318 break;
wdenk2d966952002-10-31 22:12:35 +0000319
320 case 0:
wdenk2d966952002-10-31 22:12:35 +0000321 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000322 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000323 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000324 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000325#ifdef CONFIG_CMD_TFTPPUT
326 case TFTPPUT:
327#endif
wdenk2d966952002-10-31 22:12:35 +0000328 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000329 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000330 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000331#ifdef CONFIG_CMD_TFTPSRV
332 case TFTPSRV:
333 TftpStartServer();
334 break;
335#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500336#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000337 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000338 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300339 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000340 DhcpRequest(); /* Basically same as BOOTP */
341 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500342#endif
wdenk2d966952002-10-31 22:12:35 +0000343
344 case BOOTP:
345 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300346 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000347 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000348 break;
349
Peter Tyserbf6cb242010-09-30 11:25:48 -0500350#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000351 case RARP:
352 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300353 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000354 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000355 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500356#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500357#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000358 case PING:
359 PingStart();
360 break;
361#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500362#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000363 case NFS:
364 NfsStart();
365 break;
366#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500367#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000368 case CDP:
369 CDPStart();
370 break;
371#endif
wdenk68ceb292004-08-02 21:11:11 +0000372#ifdef CONFIG_NETCONSOLE
373 case NETCONS:
374 NcStart();
375 break;
376#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500377#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000378 case SNTP:
379 SntpStart();
380 break;
381#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400382#if defined(CONFIG_CMD_DNS)
383 case DNS:
384 DnsStart();
385 break;
386#endif
wdenk2d966952002-10-31 22:12:35 +0000387 default:
388 break;
389 }
390
wdenk2d966952002-10-31 22:12:35 +0000391 break;
392 }
393
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500394#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000395#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
396 defined(CONFIG_STATUS_LED) && \
397 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000398 /*
wdenk42d1f032003-10-15 23:53:47 +0000399 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000400 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000401 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000402 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000403 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000404 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000406#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000407
408 /*
409 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000410 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000411 */
412 for (;;) {
413 WATCHDOG_RESET();
414#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000415 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000416#endif
417 /*
418 * Check the ethernet for a new packet. The ethernet
419 * receive routine will process it.
420 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200421 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000422
423 /*
424 * Abort if ctrl-c was pressed.
425 */
426 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000427 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000428 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000429 goto done;
wdenk2d966952002-10-31 22:12:35 +0000430 }
431
wdenk73a8b272003-06-05 19:27:42 +0000432 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000433
434 /*
435 * Check for a timeout, and run the timeout handler
436 * if we have one.
437 */
wdenke0ac62d2003-08-17 18:55:18 +0000438 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000439 thand_f *x;
440
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500441#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000442#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
443 defined(CONFIG_STATUS_LED) && \
444 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000445 /*
wdenk42d1f032003-10-15 23:53:47 +0000446 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000447 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000448 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000449 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000450 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000451 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000452 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000453 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000454#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000455#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000456 x = timeHandler;
457 timeHandler = (thand_f *)0;
458 (*x)();
459 }
460
461
462 switch (NetState) {
463
464 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000465 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000466 goto restart;
467
468 case NETLOOP_SUCCESS:
469 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200470 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000471 printf("Bytes transferred = %ld (%lx hex)\n",
472 NetBootFileXferSize,
473 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200474 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000475 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000476
477 sprintf(buf, "%lX", (unsigned long)load_addr);
478 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000479 }
480 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000481 ret = NetBootFileXferSize;
482 goto done;
wdenk2d966952002-10-31 22:12:35 +0000483
484 case NETLOOP_FAIL:
Simon Glass4793ee62011-10-24 18:00:01 +0000485 goto done;
wdenk2d966952002-10-31 22:12:35 +0000486 }
487 }
Simon Glass4793ee62011-10-24 18:00:01 +0000488
489done:
Simon Glass39bccd22011-10-26 14:18:38 +0000490#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000491 /* Clear out the handlers */
492 NetSetHandler(NULL);
493 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000494#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000495 return ret;
wdenk2d966952002-10-31 22:12:35 +0000496}
497
498/**********************************************************************/
499
500static void
501startAgainTimeout(void)
502{
503 NetState = NETLOOP_RESTART;
504}
505
506static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000507startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
508 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000509{
510 /* Totally ignore the packet */
511}
512
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000513void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000514{
wdenk6e592382004-04-18 17:39:38 +0000515 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100516 int retry_forever = 0;
517 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000518
Remy Bohmer67b96e82009-10-28 22:13:39 +0100519 nretry = getenv("netretry");
520 if (nretry) {
521 if (!strcmp(nretry, "yes"))
522 retry_forever = 1;
523 else if (!strcmp(nretry, "no"))
524 retrycnt = 0;
525 else if (!strcmp(nretry, "once"))
526 retrycnt = 1;
527 else
528 retrycnt = simple_strtoul(nretry, NULL, 0);
529 } else
530 retry_forever = 1;
531
532 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
533 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000534 NetState = NETLOOP_FAIL;
535 return;
536 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100537
538 NetTryCount++;
539
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000540 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100541#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000542 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100543#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000544 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000545 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000546 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100547 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000548 NetSetTimeout(10000UL, startAgainTimeout);
549 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000550 } else {
wdenk2d966952002-10-31 22:12:35 +0000551 NetState = NETLOOP_FAIL;
552 }
wdenk6e592382004-04-18 17:39:38 +0000553 } else {
wdenk2d966952002-10-31 22:12:35 +0000554 NetState = NETLOOP_RESTART;
555 }
wdenk2d966952002-10-31 22:12:35 +0000556}
557
558/**********************************************************************/
559/*
560 * Miscelaneous bits.
561 */
562
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000563rxhand_f *
564NetGetHandler(void)
565{
566 return packetHandler;
567}
568
569
wdenk2d966952002-10-31 22:12:35 +0000570void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000571NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000572{
573 packetHandler = f;
574}
575
Simon Glass39bccd22011-10-26 14:18:38 +0000576#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000577void net_set_icmp_handler(rxhand_icmp_f *f)
578{
579 packet_icmp_handler = f;
580}
Simon Glass39bccd22011-10-26 14:18:38 +0000581#endif
wdenk2d966952002-10-31 22:12:35 +0000582
583void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000584NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000585{
586 if (iv == 0) {
587 timeHandler = (thand_f *)0;
588 } else {
589 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000590 timeStart = get_timer(0);
591 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000592 }
593}
594
595
596void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000597NetSendPacket(uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000598{
599 (void) eth_send(pkt, len);
600}
601
wdenk73a8b272003-06-05 19:27:42 +0000602int
603NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
604{
wdenka3d991b2004-04-15 21:48:45 +0000605 uchar *pkt;
606
wdenk73a8b272003-06-05 19:27:42 +0000607 /* convert to new style broadcast */
608 if (dest == 0)
609 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000610
wdenk73a8b272003-06-05 19:27:42 +0000611 /* if broadcast, make the ether address a broadcast and don't do ARP */
612 if (dest == 0xFFFFFFFF)
613 ether = NetBcastAddr;
614
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000615 /*
616 * if MAC address was not discovered yet, save the packet and do
617 * an ARP request
618 */
wdenk73a8b272003-06-05 19:27:42 +0000619 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
620
Matthias Weisserea45cb02011-12-03 03:29:44 +0000621 debug("sending ARP for %08x\n", dest);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400622
wdenk73a8b272003-06-05 19:27:42 +0000623 NetArpWaitPacketIP = dest;
624 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000625
626 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000627 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000628
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000629 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000630 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
631 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000632
633 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000634 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
635 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000636
637 /* and do the ARP request */
638 NetArpWaitTry = 1;
639 NetArpWaitTimerStart = get_timer(0);
640 ArpRequest();
641 return 1; /* waiting */
642 }
643
Matthias Weisserea45cb02011-12-03 03:29:44 +0000644 debug("sending UDP to %08x/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000645
wdenka3d991b2004-04-15 21:48:45 +0000646 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000647 pkt += NetSetEther(pkt, ether, PROT_IP);
648 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000649 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000650
wdenk6e592382004-04-18 17:39:38 +0000651 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000652}
653
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500654#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000655static ushort PingSeqNo;
656
657int PingSend(void)
658{
659 static uchar mac[6];
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000660 IP_t *ip;
661 ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000662 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000663
664 /* XXX always send arp request */
665
666 memcpy(mac, NetEtherNullAddr, 6);
667
Matthias Weisserea45cb02011-12-03 03:29:44 +0000668 debug("sending ARP for %08x\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000669
670 NetArpWaitPacketIP = NetPingIP;
671 NetArpWaitPacketMAC = mac;
672
wdenka3d991b2004-04-15 21:48:45 +0000673 pkt = NetArpWaitTxPacket;
674 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000675
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000676 ip = (IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000677
678 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000679 * Construct an IP and ICMP header.
680 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000681 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000682 /* IP_HDR_SIZE / 4 (not including UDP) */
683 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000684 ip->ip_tos = 0;
685 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
686 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600687 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000688 ip->ip_ttl = 255;
689 ip->ip_p = 0x01; /* ICMP */
690 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000691 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000692 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000693 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000694 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000695 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
696
697 s = &ip->udp_src; /* XXX ICMP starts here */
698 s[0] = htons(0x0800); /* echo-request, code */
699 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200700 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000701 s[3] = htons(PingSeqNo++); /* sequence number */
702 s[1] = ~NetCksum((uchar *)s, 8/2);
703
704 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000705 NetArpWaitTxPacketSize =
706 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000707
708 /* and do the ARP request */
709 NetArpWaitTry = 1;
710 NetArpWaitTimerStart = get_timer(0);
711 ArpRequest();
712 return 1; /* waiting */
713}
714
715static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000716PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000717{
718 eth_halt();
719 NetState = NETLOOP_FAIL; /* we did not get the reply */
720}
721
722static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000723PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
724 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000725{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000726 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000727 return;
728
729 NetState = NETLOOP_SUCCESS;
730}
731
732static void PingStart(void)
733{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000734 printf("Using %s device\n", eth_get_name());
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000735 NetSetTimeout(10000UL, PingTimeout);
736 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000737
738 PingSend();
739}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500740#endif
wdenk2d966952002-10-31 22:12:35 +0000741
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200742#ifdef CONFIG_IP_DEFRAG
743/*
744 * This function collects fragments in a single packet, according
745 * to the algorithm in RFC815. It returns NULL or the pointer to
746 * a complete packet, in static storage
747 */
748#ifndef CONFIG_NET_MAXDEFRAG
749#define CONFIG_NET_MAXDEFRAG 16384
750#endif
751/*
752 * MAXDEFRAG, above, is chosen in the config file and is real data
753 * so we need to add the NFS overhead, which is more than TFTP.
754 * To use sizeof in the internal unnamed structures, we need a real
755 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
756 * The compiler doesn't complain nor allocates the actual structure
757 */
758static struct rpc_t rpc_specimen;
759#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
760
761#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
762
763/*
764 * this is the packet being assembled, either data or frag control.
765 * Fragments go by 8 bytes, so this union must be 8 bytes long
766 */
767struct hole {
768 /* first_byte is address of this structure */
769 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
770 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
771 u16 prev_hole; /* index of prev, 0 == none */
772 u16 unused;
773};
774
775static IP_t *__NetDefragment(IP_t *ip, int *lenp)
776{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000777 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200778 static u16 first_hole, total_len;
779 struct hole *payload, *thisfrag, *h, *newh;
780 IP_t *localip = (IP_t *)pkt_buff;
781 uchar *indata = (uchar *)ip;
782 int offset8, start, len, done = 0;
783 u16 ip_off = ntohs(ip->ip_off);
784
785 /* payload starts after IP header, this fragment is in there */
786 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
787 offset8 = (ip_off & IP_OFFS);
788 thisfrag = payload + offset8;
789 start = offset8 * 8;
790 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
791
792 if (start + len > IP_MAXUDP) /* fragment extends too far */
793 return NULL;
794
795 if (!total_len || localip->ip_id != ip->ip_id) {
796 /* new (or different) packet, reset structs */
797 total_len = 0xffff;
798 payload[0].last_byte = ~0;
799 payload[0].next_hole = 0;
800 payload[0].prev_hole = 0;
801 first_hole = 0;
802 /* any IP header will work, copy the first we received */
803 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
804 }
805
806 /*
807 * What follows is the reassembly algorithm. We use the payload
808 * array as a linked list of hole descriptors, as each hole starts
809 * at a multiple of 8 bytes. However, last byte can be whatever value,
810 * so it is represented as byte count, not as 8-byte blocks.
811 */
812
813 h = payload + first_hole;
814 while (h->last_byte < start) {
815 if (!h->next_hole) {
816 /* no hole that far away */
817 return NULL;
818 }
819 h = payload + h->next_hole;
820 }
821
Fillod Stephanee397e592010-06-11 19:26:43 +0200822 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
823 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200824 /* no overlap with holes (dup fragment?) */
825 return NULL;
826 }
827
828 if (!(ip_off & IP_FLAGS_MFRAG)) {
829 /* no more fragmentss: truncate this (last) hole */
830 total_len = start + len;
831 h->last_byte = start + len;
832 }
833
834 /*
835 * There is some overlap: fix the hole list. This code doesn't
836 * deal with a fragment that overlaps with two different holes
837 * (thus being a superset of a previously-received fragment).
838 */
839
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000840 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200841 /* complete overlap with hole: remove hole */
842 if (!h->prev_hole && !h->next_hole) {
843 /* last remaining hole */
844 done = 1;
845 } else if (!h->prev_hole) {
846 /* first hole */
847 first_hole = h->next_hole;
848 payload[h->next_hole].prev_hole = 0;
849 } else if (!h->next_hole) {
850 /* last hole */
851 payload[h->prev_hole].next_hole = 0;
852 } else {
853 /* in the middle of the list */
854 payload[h->next_hole].prev_hole = h->prev_hole;
855 payload[h->prev_hole].next_hole = h->next_hole;
856 }
857
858 } else if (h->last_byte <= start + len) {
859 /* overlaps with final part of the hole: shorten this hole */
860 h->last_byte = start;
861
862 } else if (h >= thisfrag) {
863 /* overlaps with initial part of the hole: move this hole */
864 newh = thisfrag + (len / 8);
865 *newh = *h;
866 h = newh;
867 if (h->next_hole)
868 payload[h->next_hole].prev_hole = (h - payload);
869 if (h->prev_hole)
870 payload[h->prev_hole].next_hole = (h - payload);
871 else
872 first_hole = (h - payload);
873
874 } else {
875 /* fragment sits in the middle: split the hole */
876 newh = thisfrag + (len / 8);
877 *newh = *h;
878 h->last_byte = start;
879 h->next_hole = (newh - payload);
880 newh->prev_hole = (h - payload);
881 if (newh->next_hole)
882 payload[newh->next_hole].prev_hole = (newh - payload);
883 }
884
885 /* finally copy this fragment and possibly return whole packet */
886 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
887 if (!done)
888 return NULL;
889
890 localip->ip_len = htons(total_len);
891 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
892 return localip;
893}
894
895static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
896{
897 u16 ip_off = ntohs(ip->ip_off);
898 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
899 return ip; /* not a fragment */
900 return __NetDefragment(ip, lenp);
901}
902
903#else /* !CONFIG_IP_DEFRAG */
904
905static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
906{
907 u16 ip_off = ntohs(ip->ip_off);
908 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
909 return ip; /* not a fragment */
910 return NULL;
911}
912#endif
wdenka3d991b2004-04-15 21:48:45 +0000913
Simon Glass8f79bb12011-10-24 18:00:00 +0000914/**
915 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
916 * drop others.
917 *
918 * @parma ip IP packet containing the ICMP
919 */
920static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
921{
922 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
923
924 switch (icmph->type) {
925 case ICMP_REDIRECT:
926 if (icmph->code != ICMP_REDIR_HOST)
927 return;
928 printf(" ICMP Host Redirect to %pI4 ",
929 &icmph->un.gateway);
930 break;
931#if defined(CONFIG_CMD_PING)
932 case ICMP_ECHO_REPLY:
933 /*
934 * IP header OK. Pass the packet to the
935 * current handler.
936 */
937 /*
938 * XXX point to ip packet - should this use
939 * packet_icmp_handler?
940 */
941 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
942 break;
943 case ICMP_ECHO_REQUEST:
944 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
945 ETHER_HDR_SIZE + len);
946
947 memcpy(&et->et_dest[0], &et->et_src[0], 6);
948 memcpy(&et->et_src[0], NetOurEther, 6);
949
950 ip->ip_sum = 0;
951 ip->ip_off = 0;
952 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
953 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
954 ip->ip_sum = ~NetCksum((uchar *)ip,
955 IP_HDR_SIZE_NO_UDP >> 1);
956
957 icmph->type = ICMP_ECHO_REPLY;
958 icmph->checksum = 0;
959 icmph->checksum = ~NetCksum((uchar *)icmph,
960 (len - IP_HDR_SIZE_NO_UDP) >> 1);
961 (void) eth_send((uchar *)et,
962 ETHER_HDR_SIZE + len);
963 break;
964#endif
965 default:
Simon Glass39bccd22011-10-26 14:18:38 +0000966#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000967 if (packet_icmp_handler)
968 packet_icmp_handler(icmph->type, icmph->code,
969 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
970 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000971#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000972 break;
973 }
974}
975
wdenk2d966952002-10-31 22:12:35 +0000976void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000977NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000978{
979 Ethernet_t *et;
980 IP_t *ip;
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000981#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +0000982 ARP_t *arp;
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000983#endif
wdenk2d966952002-10-31 22:12:35 +0000984 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000985 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +0000986 int x;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500987#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000988 int iscdp;
989#endif
990 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000991
Robin Getz0ebf04c2009-07-23 03:01:03 -0400992 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000993
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400994 NetRxPacket = inpkt;
995 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +0000996 et = (Ethernet_t *)inpkt;
997
998 /* too small packet? */
999 if (len < ETHER_HDR_SIZE)
1000 return;
1001
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001002#ifdef CONFIG_API
1003 if (push_packet) {
1004 (*push_packet)(inpkt, len);
1005 return;
1006 }
1007#endif
1008
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001009#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001010 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +00001011 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +00001012#endif
1013
1014 myvlanid = ntohs(NetOurVLAN);
1015 if (myvlanid == (ushort)-1)
1016 myvlanid = VLAN_NONE;
1017 mynvlanid = ntohs(NetOurNativeVLAN);
1018 if (mynvlanid == (ushort)-1)
1019 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001020
1021 x = ntohs(et->et_protlen);
1022
Robin Getz0ebf04c2009-07-23 03:01:03 -04001023 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001024
wdenk2d966952002-10-31 22:12:35 +00001025 if (x < 1514) {
1026 /*
1027 * Got a 802 packet. Check the other protocol field.
1028 */
1029 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001030
1031 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001032 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001033
1034 } else if (x != PROT_VLAN) { /* normal packet */
1035 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001036 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001037
1038 } else { /* VLAN packet */
1039 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1040
Robin Getz0ebf04c2009-07-23 03:01:03 -04001041 debug("VLAN packet received\n");
1042
wdenka3d991b2004-04-15 21:48:45 +00001043 /* too small packet? */
1044 if (len < VLAN_ETHER_HDR_SIZE)
1045 return;
1046
1047 /* if no VLAN active */
1048 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001049#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001050 && iscdp == 0
1051#endif
1052 )
1053 return;
1054
1055 cti = ntohs(vet->vet_tag);
1056 vlanid = cti & VLAN_IDMASK;
1057 x = ntohs(vet->vet_type);
1058
1059 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1060 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001061 }
1062
Robin Getz0ebf04c2009-07-23 03:01:03 -04001063 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001064
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001065#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001066 if (iscdp) {
1067 CDPHandler((uchar *)ip, len);
1068 return;
1069 }
1070#endif
1071
1072 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1073 if (vlanid == VLAN_NONE)
1074 vlanid = (mynvlanid & VLAN_IDMASK);
1075 /* not matched? */
1076 if (vlanid != (myvlanid & VLAN_IDMASK))
1077 return;
1078 }
1079
wdenk2d966952002-10-31 22:12:35 +00001080 switch (x) {
1081
1082 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +00001083 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +00001084 break;
wdenk2d966952002-10-31 22:12:35 +00001085
Peter Tyserbf6cb242010-09-30 11:25:48 -05001086#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001087 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001088 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001089 arp = (ARP_t *)ip;
1090 if (len < ARP_HDR_SIZE) {
1091 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1092 return;
1093 }
1094
1095 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1096 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1097 (ntohs(arp->ar_pro) != PROT_IP) ||
1098 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1099
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001100 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001101 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001102 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001103 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001104 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1105 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001106
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001107 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001108 }
1109 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001110#endif
wdenk2d966952002-10-31 22:12:35 +00001111 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001112 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001113 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001114 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001115 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001116 return;
1117 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001118 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001119 if (len < ntohs(ip->ip_len)) {
1120 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1121 return;
1122 }
1123 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001124 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1125
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001126 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001127 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001128 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001129 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001130 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001131 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001132 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001133 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001134 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001135 return;
1136 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001137 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001138 tmp = NetReadIP(&ip->ip_dst);
1139 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001140#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001141 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001142#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001143 return;
wdenk2d966952002-10-31 22:12:35 +00001144 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001145 /* Read source IP address for later use */
1146 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001147 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001148 * The function returns the unchanged packet if it's not
1149 * a fragment, and either the complete packet or NULL if
1150 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1151 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001152 ip = NetDefragment(ip, &len);
1153 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001154 return;
1155 /*
wdenk2d966952002-10-31 22:12:35 +00001156 * watch for ICMP host redirects
1157 *
wdenk8bde7f72003-06-27 21:31:46 +00001158 * There is no real handler code (yet). We just watch
1159 * for ICMP host redirect messages. In case anybody
1160 * sees these messages: please contact me
1161 * (wd@denx.de), or - even better - send me the
1162 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001163 *
wdenk8bde7f72003-06-27 21:31:46 +00001164 * Note: in all cases where I have seen this so far
1165 * it was a problem with the router configuration,
1166 * for instance when a router was configured in the
1167 * BOOTP reply, but the TFTP server was on the same
1168 * subnet. So this is probably a warning that your
1169 * configuration might be wrong. But I'm not really
1170 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001171 *
1172 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1173 * we send a tftp packet to a dead connection, or when
1174 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001175 */
1176 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001177 receive_icmp(ip, len, src_ip, et);
1178 return;
wdenk2d966952002-10-31 22:12:35 +00001179 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1180 return;
1181 }
1182
Stefan Roese8534bf92005-08-12 20:06:52 +02001183#ifdef CONFIG_UDP_CHECKSUM
1184 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001185 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001186 ushort *sumptr;
1187 ushort sumlen;
1188
1189 xsum = ip->ip_p;
1190 xsum += (ntohs(ip->udp_len));
1191 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1192 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1193 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1194 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1195
1196 sumlen = ntohs(ip->udp_len);
1197 sumptr = (ushort *) &(ip->udp_src);
1198
1199 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001200 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001201
1202 sumdata = *sumptr++;
1203 xsum += ntohs(sumdata);
1204 sumlen -= 2;
1205 }
1206 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001207 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001208
1209 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001210 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001211 xsum += sumdata;
1212 }
1213 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001214 xsum = (xsum & 0x0000ffff) +
1215 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001216 }
1217 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001218 printf(" UDP wrong checksum %08lx %08x\n",
1219 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001220 return;
1221 }
1222 }
1223#endif
1224
David Updegraff53a5c422007-06-11 10:41:07 -05001225
wdenk68ceb292004-08-02 21:11:11 +00001226#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001227 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001228 ntohs(ip->udp_dst),
1229 ntohs(ip->udp_src),
1230 ntohs(ip->udp_len) - 8);
1231#endif
wdenk2d966952002-10-31 22:12:35 +00001232 /*
1233 * IP header OK. Pass the packet to the current handler.
1234 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001235 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001236 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001237 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001238 ntohs(ip->udp_src),
1239 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001240 break;
1241 }
1242}
1243
1244
1245/**********************************************************************/
1246
Simon Glasse4bf0c52011-10-24 18:00:02 +00001247static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001248{
1249 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001250 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001251#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001252 case PING:
wdenk6e592382004-04-18 17:39:38 +00001253 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001254 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001255 return 1;
wdenk6e592382004-04-18 17:39:38 +00001256 }
1257 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001258#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001259#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001260 case SNTP:
1261 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001262 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001263 return 1;
wdenkea287de2005-04-01 00:25:43 +00001264 }
1265 goto common;
1266#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001267#if defined(CONFIG_CMD_DNS)
1268 case DNS:
1269 if (NetOurDNSIP == 0) {
1270 puts("*** ERROR: DNS server address not given\n");
1271 return 1;
1272 }
1273 goto common;
1274#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001275#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001276 case NFS:
1277#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001278 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001279 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001280 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001281 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001282 return 1;
wdenk6e592382004-04-18 17:39:38 +00001283 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001284#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1285 defined(CONFIG_CMD_DNS)
1286common:
wdenk73a8b272003-06-05 19:27:42 +00001287#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001288 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001289
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001290 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001291 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001292 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001293 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001294 return 1;
wdenk6e592382004-04-18 17:39:38 +00001295 }
1296 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001297
Peter Tyserbf6cb242010-09-30 11:25:48 -05001298#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001299 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001300#endif
wdenk2d966952002-10-31 22:12:35 +00001301 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001302 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001303 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001304 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001305 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001306
wdenk6e592382004-04-18 17:39:38 +00001307 switch (num) {
1308 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001309 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001310 return 1;
wdenk6e592382004-04-18 17:39:38 +00001311 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001312 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001313 break;
wdenk6e592382004-04-18 17:39:38 +00001314 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001315 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001316 num);
1317 break;
wdenk2d966952002-10-31 22:12:35 +00001318 }
wdenk6e592382004-04-18 17:39:38 +00001319
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001320 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001321 return 2;
wdenk6e592382004-04-18 17:39:38 +00001322 }
1323 /* Fall through */
1324 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001325 return 0;
wdenk2d966952002-10-31 22:12:35 +00001326 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001327 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001328}
1329/**********************************************************************/
1330
1331int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001332NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001333{
1334 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1335}
1336
1337
1338unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001339NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001340{
1341 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001342 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001343
1344 xsum = 0;
1345 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001346 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001347 xsum = (xsum & 0xffff) + (xsum >> 16);
1348 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001349 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001350}
1351
wdenka3d991b2004-04-15 21:48:45 +00001352int
1353NetEthHdrSize(void)
1354{
1355 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001356
wdenka3d991b2004-04-15 21:48:45 +00001357 myvlanid = ntohs(NetOurVLAN);
1358 if (myvlanid == (ushort)-1)
1359 myvlanid = VLAN_NONE;
1360
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001361 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1362 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001363}
1364
1365int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001366NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001367{
1368 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001369 ushort myvlanid;
1370
1371 myvlanid = ntohs(NetOurVLAN);
1372 if (myvlanid == (ushort)-1)
1373 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001374
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001375 memcpy(et->et_dest, addr, 6);
1376 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001377 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001378 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001379 return ETHER_HDR_SIZE;
1380 } else {
1381 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001382
wdenka3d991b2004-04-15 21:48:45 +00001383 vet->vet_vlan_type = htons(PROT_VLAN);
1384 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1385 vet->vet_type = htons(prot);
1386 return VLAN_ETHER_HDR_SIZE;
1387 }
1388}
wdenk2d966952002-10-31 22:12:35 +00001389
1390void
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001391NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001392{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001393 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001394
1395 /*
1396 * If the data is an odd number of bytes, zero the
1397 * byte after the last byte so that the checksum
1398 * will work.
1399 */
1400 if (len & 1)
1401 xip[IP_HDR_SIZE + len] = 0;
1402
1403 /*
1404 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001405 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001406 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001407 /* IP_HDR_SIZE / 4 (not including UDP) */
1408 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001409 ip->ip_tos = 0;
1410 ip->ip_len = htons(IP_HDR_SIZE + len);
1411 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001412 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001413 ip->ip_ttl = 255;
1414 ip->ip_p = 17; /* UDP */
1415 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001416 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001417 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001418 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001419 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001420 ip->udp_src = htons(sport);
1421 ip->udp_dst = htons(dport);
1422 ip->udp_len = htons(8 + len);
1423 ip->udp_xsum = 0;
1424 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1425}
1426
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001427void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001428{
1429 if (*src && (*src == '"')) {
1430 ++src;
1431 --size;
1432 }
1433
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001434 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001435 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001436 *dst = '\0';
1437}
1438
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001439#if defined(CONFIG_CMD_NFS) || \
1440 defined(CONFIG_CMD_SNTP) || \
1441 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001442/*
Robin Getz97399462010-03-08 14:07:00 -05001443 * make port a little random (1024-17407)
1444 * This keeps the math somewhat trivial to compute, and seems to work with
1445 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001446 */
1447unsigned int random_port(void)
1448{
Robin Getz97399462010-03-08 14:07:00 -05001449 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001450}
1451#endif
1452
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001453void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001454{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001455 x = ntohl(x);
1456 sprintf(s, "%d.%d.%d.%d",
1457 (int) ((x >> 24) & 0xff),
1458 (int) ((x >> 16) & 0xff),
1459 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001460 );
wdenk2d966952002-10-31 22:12:35 +00001461}
1462
wdenka3d991b2004-04-15 21:48:45 +00001463void VLAN_to_string(ushort x, char *s)
1464{
1465 x = ntohs(x);
1466
1467 if (x == (ushort)-1)
1468 x = VLAN_NONE;
1469
1470 if (x == VLAN_NONE)
1471 strcpy(s, "none");
1472 else
1473 sprintf(s, "%d", x & VLAN_IDMASK);
1474}
1475
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001476ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001477{
1478 ushort id;
1479
1480 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001481 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001482
1483 if (*s < '0' || *s > '9')
1484 id = VLAN_NONE;
1485 else
1486 id = (ushort)simple_strtoul(s, NULL, 10);
1487
wdenkb9711de2004-04-25 13:18:40 +00001488 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001489}
1490
wdenka3d991b2004-04-15 21:48:45 +00001491ushort getenv_VLAN(char *var)
1492{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001493 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001494}