blob: c5acf8ff6e1cbf2612378a1ccdad03a0d31907a3 [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>
80#include <net.h>
81#include "bootp.h"
82#include "tftp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050083#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000084#include "rarp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050085#endif
wdenkcbd8a352004-02-24 02:00:03 +000086#include "nfs.h"
wdenkfc3e2162003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Peter Tyser561858e2008-11-03 09:30:59 -060094#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
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
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200103#ifndef CONFIG_ARP_TIMEOUT
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
wdenk73a8b272003-06-05 19:27:42 +0000106#else
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200108#endif
109
110
111#ifndef CONFIG_NET_RETRY_COUNT
112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
113#else
114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
wdenk73a8b272003-06-05 19:27:42 +0000115#endif
116
wdenk2d966952002-10-31 22:12:35 +0000117/** BOOTP EXTENTIONS **/
118
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000119/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000120IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000121/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000122IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000123/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000124IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500125#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000126/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000127IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000128#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000129/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000130char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000131/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000132char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000133/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000134char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000135/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000136ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000137
David Updegraff53a5c422007-06-11 10:41:07 -0500138#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
139IPaddr_t Mcast_addr;
140#endif
141
wdenk2d966952002-10-31 22:12:35 +0000142/** END OF BOOTP EXTENTIONS **/
143
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000144/* The actual transferred size of the bootfile (in bytes) */
145ulong NetBootFileXferSize;
146/* Our ethernet address */
147uchar NetOurEther[6];
148/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000149uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000150/* Our IP addr (0 = unknown) */
151IPaddr_t NetOurIP;
152/* Server IP addr (0 = unknown) */
153IPaddr_t NetServerIP;
154/* Current receive packet */
155volatile uchar *NetRxPacket;
156/* Current rx packet length */
157int NetRxPacketLen;
158/* IP packet ID */
159unsigned NetIPID;
160/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100163#ifdef CONFIG_API
164void (*push_packet)(volatile void *, int len) = 0;
165#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500166#if defined(CONFIG_CMD_CDP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000167/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
wdenka3d991b2004-04-15 21:48:45 +0000169#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000170/* Network loop state */
171int NetState;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000172/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000173int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000174/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000175static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000176/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000177static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000178
wdenk6e592382004-04-18 17:39:38 +0000179/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000180/* default is without VLAN */
181ushort NetOurVLAN = 0xFFFF;
182/* ditto */
183ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000184
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000185/* Boot File name */
186char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000187
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500188#if defined(CONFIG_CMD_PING)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000189/* the ip address to ping */
190IPaddr_t NetPingIP;
wdenk73a8b272003-06-05 19:27:42 +0000191
192static void PingStart(void);
193#endif
194
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500195#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000196static void CDPStart(void);
197#endif
198
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500199#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000200/* NTP server IP address */
201IPaddr_t NetNtpServerIP;
202/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000203int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000204#endif
205
wdenk68ceb292004-08-02 21:11:11 +0000206#ifdef CONFIG_NETCONSOLE
207void NcStart(void);
208int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
209#endif
210
wdenk2d966952002-10-31 22:12:35 +0000211volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
212
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000213/* Receive packet */
214volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000215
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000216/* Current RX packet handler */
217static rxhand_f *packetHandler;
Simon Glass39bccd22011-10-26 14:18:38 +0000218#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000219static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass39bccd22011-10-26 14:18:38 +0000220#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000221/* Current timeout handler */
222static thand_f *timeHandler;
223/* Time base value */
224static ulong timeStart;
225/* Current timeout value */
226static ulong timeDelta;
227/* THE transmit packet */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000228volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000229
Simon Glasse4bf0c52011-10-24 18:00:02 +0000230static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000231
Remy Bohmer67b96e82009-10-28 22:13:39 +0100232static int NetTryCount;
233
wdenk2d966952002-10-31 22:12:35 +0000234/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000235
236IPaddr_t NetArpWaitPacketIP;
237IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000238/* MAC address of waiting packet's destination */
239uchar *NetArpWaitPacketMAC;
240/* THE transmit packet */
241uchar *NetArpWaitTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000242int NetArpWaitTxPacketSize;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200243uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenk73a8b272003-06-05 19:27:42 +0000244ulong NetArpWaitTimerStart;
245int NetArpWaitTry;
246
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000247void ArpRequest(void)
wdenk73a8b272003-06-05 19:27:42 +0000248{
wdenk73a8b272003-06-05 19:27:42 +0000249 volatile uchar *pkt;
wdenk6e592382004-04-18 17:39:38 +0000250 ARP_t *arp;
wdenk73a8b272003-06-05 19:27:42 +0000251
Robin Getz0ebf04c2009-07-23 03:01:03 -0400252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
wdenk73a8b272003-06-05 19:27:42 +0000254 pkt = NetTxPacket;
255
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenk73a8b272003-06-05 19:27:42 +0000257
wdenk6e592382004-04-18 17:39:38 +0000258 arp = (ARP_t *) pkt;
wdenk73a8b272003-06-05 19:27:42 +0000259
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000264 arp->ar_op = htons(ARPOP_REQUEST);
wdenk73a8b272003-06-05 19:27:42 +0000265
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000266 /* source ET addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000267 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000268 /* source IP addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
Simon Glassed1ada72011-10-26 14:18:39 +0000270 /* dest ET addr = 0 */
271 memset(&arp->ar_data[10], '\0', 6);
wdenk6e592382004-04-18 17:39:38 +0000272 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
273 (NetOurIP & NetOurSubnetMask)) {
274 if (NetOurGatewayIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000275 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denkd509b812006-03-12 01:13:30 +0100276 NetArpWaitReplyIP = NetArpWaitPacketIP;
277 } else {
278 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk6e592382004-04-18 17:39:38 +0000279 }
wdenk6e592382004-04-18 17:39:38 +0000280 } else {
281 NetArpWaitReplyIP = NetArpWaitPacketIP;
282 }
wdenk73a8b272003-06-05 19:27:42 +0000283
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000284 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
285 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenk73a8b272003-06-05 19:27:42 +0000286}
287
288void ArpTimeoutCheck(void)
289{
290 ulong t;
291
292 if (!NetArpWaitPacketIP)
293 return;
294
295 t = get_timer(0);
296
297 /* check for arp timeout */
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200298 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenk73a8b272003-06-05 19:27:42 +0000299 NetArpWaitTry++;
300
301 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000302 puts("\nARP Retry count exceeded; starting again\n");
wdenk73a8b272003-06-05 19:27:42 +0000303 NetArpWaitTry = 0;
304 NetStartAgain();
305 } else {
306 NetArpWaitTimerStart = t;
307 ArpRequest();
308 }
309 }
310}
311
Simon Glasse4a3d572011-10-27 06:24:32 +0000312/*
313 * Check if autoload is enabled. If so, use either NFS or TFTP to download
314 * the boot file.
315 */
316void net_auto_load(void)
317{
318 const char *s = getenv("autoload");
319
320 if (s != NULL) {
321 if (*s == 'n') {
322 /*
323 * Just use BOOTP/RARP to configure system;
324 * Do not use TFTP to load the bootfile.
325 */
326 NetState = NETLOOP_SUCCESS;
327 return;
328 }
329#if defined(CONFIG_CMD_NFS)
330 if (strcmp(s, "NFS") == 0) {
331 /*
332 * Use NFS to load the bootfile.
333 */
334 NfsStart();
335 return;
336 }
337#endif
338 }
339 TftpStart(TFTPGET);
340}
341
Simon Glasse4bf0c52011-10-24 18:00:02 +0000342static void NetInitLoop(enum proto_t protocol)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100343{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000344 static int env_changed_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100345 bd_t *bd = gd->bd;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000346 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100347
348 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300349 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000350 NetOurIP = getenv_IPaddr("ipaddr");
351 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000352 NetOurGatewayIP = getenv_IPaddr("gatewayip");
353 NetOurSubnetMask = getenv_IPaddr("netmask");
354 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100355 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300356 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400357#if defined(CONFIG_CMD_DNS)
358 NetOurDNSIP = getenv_IPaddr("dnsip");
359#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300360 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100361 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300362
Heiko Schocherda954272009-04-28 08:36:11 +0200363 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100364}
365
wdenk73a8b272003-06-05 19:27:42 +0000366/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000367/*
368 * Main network processing loop.
369 */
370
Simon Glasse4bf0c52011-10-24 18:00:02 +0000371int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000372{
wdenk2d966952002-10-31 22:12:35 +0000373 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000374 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000375
wdenk2d966952002-10-31 22:12:35 +0000376 NetRestarted = 0;
377 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000378
wdenk73a8b272003-06-05 19:27:42 +0000379 /* XXX problem with bss workaround */
380 NetArpWaitPacketMAC = NULL;
381 NetArpWaitTxPacket = NULL;
382 NetArpWaitPacketIP = 0;
383 NetArpWaitReplyIP = 0;
384 NetArpWaitTxPacket = NULL;
385 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100386 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000387
wdenk2d966952002-10-31 22:12:35 +0000388 if (!NetTxPacket) {
389 int i;
wdenk2d966952002-10-31 22:12:35 +0000390 /*
391 * Setup packet buffers, aligned correctly.
392 */
393 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
394 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000395 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000396 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000397 }
398
399 if (!NetArpWaitTxPacket) {
400 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
401 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
402 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000403 }
404
Simon Glass573f14f2011-12-10 11:08:06 +0000405 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
wdenk2d966952002-10-31 22:12:35 +0000406 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000407 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000408 if (eth_init(bd) < 0) {
409 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000410 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000411 }
wdenk2d966952002-10-31 22:12:35 +0000412
413restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000414 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000415
416 NetState = NETLOOP_CONTINUE;
417
418 /*
419 * Start the ball rolling with the given start function. From
420 * here on, this code is a state machine driven by received
421 * packets and timer events.
422 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100423 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000424
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000425 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000426 case 1:
427 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000428 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000429 return -1;
wdenk2d966952002-10-31 22:12:35 +0000430
wdenk2d966952002-10-31 22:12:35 +0000431 case 2:
432 /* network device not configured */
433 break;
wdenk2d966952002-10-31 22:12:35 +0000434
435 case 0:
wdenk2d966952002-10-31 22:12:35 +0000436 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000437 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000438 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000439 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000440#ifdef CONFIG_CMD_TFTPPUT
441 case TFTPPUT:
442#endif
wdenk2d966952002-10-31 22:12:35 +0000443 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000444 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000445 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000446#ifdef CONFIG_CMD_TFTPSRV
447 case TFTPSRV:
448 TftpStartServer();
449 break;
450#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500451#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000452 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000453 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300454 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000455 DhcpRequest(); /* Basically same as BOOTP */
456 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500457#endif
wdenk2d966952002-10-31 22:12:35 +0000458
459 case BOOTP:
460 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300461 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000462 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000463 break;
464
Peter Tyserbf6cb242010-09-30 11:25:48 -0500465#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000466 case RARP:
467 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300468 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000469 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000470 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500471#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500472#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000473 case PING:
474 PingStart();
475 break;
476#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500477#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000478 case NFS:
479 NfsStart();
480 break;
481#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500482#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000483 case CDP:
484 CDPStart();
485 break;
486#endif
wdenk68ceb292004-08-02 21:11:11 +0000487#ifdef CONFIG_NETCONSOLE
488 case NETCONS:
489 NcStart();
490 break;
491#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500492#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000493 case SNTP:
494 SntpStart();
495 break;
496#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400497#if defined(CONFIG_CMD_DNS)
498 case DNS:
499 DnsStart();
500 break;
501#endif
wdenk2d966952002-10-31 22:12:35 +0000502 default:
503 break;
504 }
505
wdenk2d966952002-10-31 22:12:35 +0000506 break;
507 }
508
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500509#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000510#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
511 defined(CONFIG_STATUS_LED) && \
512 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000513 /*
wdenk42d1f032003-10-15 23:53:47 +0000514 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000515 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000516 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000517 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000518 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000519 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200520#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000521#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000522
523 /*
524 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000525 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000526 */
527 for (;;) {
528 WATCHDOG_RESET();
529#ifdef CONFIG_SHOW_ACTIVITY
530 {
531 extern void show_activity(int arg);
532 show_activity(1);
533 }
534#endif
535 /*
536 * Check the ethernet for a new packet. The ethernet
537 * receive routine will process it.
538 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200539 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000540
541 /*
542 * Abort if ctrl-c was pressed.
543 */
544 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000545 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000546 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000547 goto done;
wdenk2d966952002-10-31 22:12:35 +0000548 }
549
wdenk73a8b272003-06-05 19:27:42 +0000550 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000551
552 /*
553 * Check for a timeout, and run the timeout handler
554 * if we have one.
555 */
wdenke0ac62d2003-08-17 18:55:18 +0000556 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000557 thand_f *x;
558
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500559#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000560#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
561 defined(CONFIG_STATUS_LED) && \
562 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000563 /*
wdenk42d1f032003-10-15 23:53:47 +0000564 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000565 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000566 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000567 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000568 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000569 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000570 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000571 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000572#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000573#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000574 x = timeHandler;
575 timeHandler = (thand_f *)0;
576 (*x)();
577 }
578
579
580 switch (NetState) {
581
582 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000583 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000584 goto restart;
585
586 case NETLOOP_SUCCESS:
587 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200588 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000589 printf("Bytes transferred = %ld (%lx hex)\n",
590 NetBootFileXferSize,
591 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200592 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000593 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000594
595 sprintf(buf, "%lX", (unsigned long)load_addr);
596 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000597 }
598 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000599 ret = NetBootFileXferSize;
600 goto done;
wdenk2d966952002-10-31 22:12:35 +0000601
602 case NETLOOP_FAIL:
Simon Glass4793ee62011-10-24 18:00:01 +0000603 goto done;
wdenk2d966952002-10-31 22:12:35 +0000604 }
605 }
Simon Glass4793ee62011-10-24 18:00:01 +0000606
607done:
Simon Glass39bccd22011-10-26 14:18:38 +0000608#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000609 /* Clear out the handlers */
610 NetSetHandler(NULL);
611 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000612#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000613 return ret;
wdenk2d966952002-10-31 22:12:35 +0000614}
615
616/**********************************************************************/
617
618static void
619startAgainTimeout(void)
620{
621 NetState = NETLOOP_RESTART;
622}
623
624static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000625startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
626 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000627{
628 /* Totally ignore the packet */
629}
630
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000631void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000632{
wdenk6e592382004-04-18 17:39:38 +0000633 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100634 int retry_forever = 0;
635 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000636
Remy Bohmer67b96e82009-10-28 22:13:39 +0100637 nretry = getenv("netretry");
638 if (nretry) {
639 if (!strcmp(nretry, "yes"))
640 retry_forever = 1;
641 else if (!strcmp(nretry, "no"))
642 retrycnt = 0;
643 else if (!strcmp(nretry, "once"))
644 retrycnt = 1;
645 else
646 retrycnt = simple_strtoul(nretry, NULL, 0);
647 } else
648 retry_forever = 1;
649
650 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
651 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000652 NetState = NETLOOP_FAIL;
653 return;
654 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100655
656 NetTryCount++;
657
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000658 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100659#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000660 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100661#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000662 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000663 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000664 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100665 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000666 NetSetTimeout(10000UL, startAgainTimeout);
667 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000668 } else {
wdenk2d966952002-10-31 22:12:35 +0000669 NetState = NETLOOP_FAIL;
670 }
wdenk6e592382004-04-18 17:39:38 +0000671 } else {
wdenk2d966952002-10-31 22:12:35 +0000672 NetState = NETLOOP_RESTART;
673 }
wdenk2d966952002-10-31 22:12:35 +0000674}
675
676/**********************************************************************/
677/*
678 * Miscelaneous bits.
679 */
680
681void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000682NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000683{
684 packetHandler = f;
685}
686
Simon Glass39bccd22011-10-26 14:18:38 +0000687#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000688void net_set_icmp_handler(rxhand_icmp_f *f)
689{
690 packet_icmp_handler = f;
691}
Simon Glass39bccd22011-10-26 14:18:38 +0000692#endif
wdenk2d966952002-10-31 22:12:35 +0000693
694void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000695NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000696{
697 if (iv == 0) {
698 timeHandler = (thand_f *)0;
699 } else {
700 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000701 timeStart = get_timer(0);
702 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000703 }
704}
705
706
707void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000708NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000709{
710 (void) eth_send(pkt, len);
711}
712
wdenk73a8b272003-06-05 19:27:42 +0000713int
714NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
715{
wdenka3d991b2004-04-15 21:48:45 +0000716 uchar *pkt;
717
wdenk73a8b272003-06-05 19:27:42 +0000718 /* convert to new style broadcast */
719 if (dest == 0)
720 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000721
wdenk73a8b272003-06-05 19:27:42 +0000722 /* if broadcast, make the ether address a broadcast and don't do ARP */
723 if (dest == 0xFFFFFFFF)
724 ether = NetBcastAddr;
725
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000726 /*
727 * if MAC address was not discovered yet, save the packet and do
728 * an ARP request
729 */
wdenk73a8b272003-06-05 19:27:42 +0000730 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
731
Matthias Weisserea45cb02011-12-03 03:29:44 +0000732 debug("sending ARP for %08x\n", dest);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400733
wdenk73a8b272003-06-05 19:27:42 +0000734 NetArpWaitPacketIP = dest;
735 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000736
737 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000738 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000739
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000740 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000741 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
742 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000743
744 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000745 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
746 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000747
748 /* and do the ARP request */
749 NetArpWaitTry = 1;
750 NetArpWaitTimerStart = get_timer(0);
751 ArpRequest();
752 return 1; /* waiting */
753 }
754
Matthias Weisserea45cb02011-12-03 03:29:44 +0000755 debug("sending UDP to %08x/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000756
wdenka3d991b2004-04-15 21:48:45 +0000757 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000758 pkt += NetSetEther(pkt, ether, PROT_IP);
759 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000760 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000761
wdenk6e592382004-04-18 17:39:38 +0000762 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000763}
764
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500765#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000766static ushort PingSeqNo;
767
768int PingSend(void)
769{
770 static uchar mac[6];
771 volatile IP_t *ip;
772 volatile ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000773 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000774
775 /* XXX always send arp request */
776
777 memcpy(mac, NetEtherNullAddr, 6);
778
Matthias Weisserea45cb02011-12-03 03:29:44 +0000779 debug("sending ARP for %08x\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000780
781 NetArpWaitPacketIP = NetPingIP;
782 NetArpWaitPacketMAC = mac;
783
wdenka3d991b2004-04-15 21:48:45 +0000784 pkt = NetArpWaitTxPacket;
785 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000786
wdenka3d991b2004-04-15 21:48:45 +0000787 ip = (volatile IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000788
789 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000790 * Construct an IP and ICMP header.
791 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000792 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000793 /* IP_HDR_SIZE / 4 (not including UDP) */
794 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000795 ip->ip_tos = 0;
796 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
797 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600798 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000799 ip->ip_ttl = 255;
800 ip->ip_p = 0x01; /* ICMP */
801 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000802 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000803 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000804 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000805 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000806 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
807
808 s = &ip->udp_src; /* XXX ICMP starts here */
809 s[0] = htons(0x0800); /* echo-request, code */
810 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200811 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000812 s[3] = htons(PingSeqNo++); /* sequence number */
813 s[1] = ~NetCksum((uchar *)s, 8/2);
814
815 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000816 NetArpWaitTxPacketSize =
817 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000818
819 /* and do the ARP request */
820 NetArpWaitTry = 1;
821 NetArpWaitTimerStart = get_timer(0);
822 ArpRequest();
823 return 1; /* waiting */
824}
825
826static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000827PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000828{
829 eth_halt();
830 NetState = NETLOOP_FAIL; /* we did not get the reply */
831}
832
833static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000834PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
835 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000836{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000837 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000838 return;
839
840 NetState = NETLOOP_SUCCESS;
841}
842
843static void PingStart(void)
844{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000845 printf("Using %s device\n", eth_get_name());
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000846 NetSetTimeout(10000UL, PingTimeout);
847 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000848
849 PingSend();
850}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500851#endif
wdenk2d966952002-10-31 22:12:35 +0000852
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500853#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000854
855#define CDP_DEVICE_ID_TLV 0x0001
856#define CDP_ADDRESS_TLV 0x0002
857#define CDP_PORT_ID_TLV 0x0003
858#define CDP_CAPABILITIES_TLV 0x0004
859#define CDP_VERSION_TLV 0x0005
860#define CDP_PLATFORM_TLV 0x0006
861#define CDP_NATIVE_VLAN_TLV 0x000a
862#define CDP_APPLIANCE_VLAN_TLV 0x000e
863#define CDP_TRIGGER_TLV 0x000f
864#define CDP_POWER_CONSUMPTION_TLV 0x0010
865#define CDP_SYSNAME_TLV 0x0014
866#define CDP_SYSOBJECT_TLV 0x0015
867#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
868
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200869#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenka3d991b2004-04-15 21:48:45 +0000870
871static int CDPSeq;
872static int CDPOK;
873
874ushort CDPNativeVLAN;
875ushort CDPApplianceVLAN;
876
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000877static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
878 0x00 };
wdenka3d991b2004-04-15 21:48:45 +0000879
880static ushort CDP_compute_csum(const uchar *buff, ushort len)
881{
882 ushort csum;
883 int odd;
884 ulong result = 0;
885 ushort leftover;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200886 ushort *p;
wdenka3d991b2004-04-15 21:48:45 +0000887
888 if (len > 0) {
889 odd = 1 & (ulong)buff;
890 if (odd) {
891 result = *buff << 8;
892 len--;
893 buff++;
894 }
895 while (len > 1) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200896 p = (ushort *)buff;
897 result += *p++;
898 buff = (uchar *)p;
wdenka3d991b2004-04-15 21:48:45 +0000899 if (result & 0x80000000)
900 result = (result & 0xFFFF) + (result >> 16);
901 len -= 2;
902 }
903 if (len) {
904 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denk3ada8342005-11-10 20:59:46 +0100905 /* CISCO SUCKS big time! (and blows too):
906 * CDP uses the IP checksum algorithm with a twist;
907 * for the last byte it *sign* extends and sums.
908 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000909 result = (result & 0xffff0000) |
910 ((result + leftover) & 0x0000ffff);
wdenka3d991b2004-04-15 21:48:45 +0000911 }
912 while (result >> 16)
913 result = (result & 0xFFFF) + (result >> 16);
914
915 if (odd)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000916 result = ((result >> 8) & 0xff) |
917 ((result & 0xff) << 8);
wdenka3d991b2004-04-15 21:48:45 +0000918 }
919
920 /* add up 16-bit and 17-bit words for 17+c bits */
921 result = (result & 0xffff) + (result >> 16);
922 /* add up 16-bit and 2-bit for 16+c bit */
923 result = (result & 0xffff) + (result >> 16);
924 /* add up carry.. */
925 result = (result & 0xffff) + (result >> 16);
926
927 /* negate */
928 csum = ~(ushort)result;
929
930 /* run time endian detection */
931 if (csum != htons(csum)) /* little endian */
932 csum = htons(csum);
933
934 return csum;
935}
936
937int CDPSendTrigger(void)
938{
939 volatile uchar *pkt;
940 volatile ushort *s;
941 volatile ushort *cp;
942 Ethernet_t *et;
wdenka3d991b2004-04-15 21:48:45 +0000943 int len;
944 ushort chksum;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000945#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
946 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk6e592382004-04-18 17:39:38 +0000947 char buf[32];
948#endif
wdenka3d991b2004-04-15 21:48:45 +0000949
950 pkt = NetTxPacket;
951 et = (Ethernet_t *)pkt;
952
953 /* NOTE: trigger sent not on any VLAN */
954
955 /* form ethernet header */
956 memcpy(et->et_dest, NetCDPAddr, 6);
957 memcpy(et->et_src, NetOurEther, 6);
958
959 pkt += ETHER_HDR_SIZE;
960
961 /* SNAP header */
962 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
963 pkt += sizeof(CDP_SNAP_hdr);
964
965 /* CDP header */
966 *pkt++ = 0x02; /* CDP version 2 */
967 *pkt++ = 180; /* TTL */
968 s = (volatile ushort *)pkt;
969 cp = s;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000970 /* checksum (0 for later calculation) */
971 *s++ = htons(0);
wdenka3d991b2004-04-15 21:48:45 +0000972
973 /* CDP fields */
974#ifdef CONFIG_CDP_DEVICE_ID
975 *s++ = htons(CDP_DEVICE_ID_TLV);
976 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger95823ca2009-02-11 18:23:48 -0500977 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenka3d991b2004-04-15 21:48:45 +0000978 memcpy((uchar *)s, buf, 16);
979 s += 16 / 2;
980#endif
981
982#ifdef CONFIG_CDP_PORT_ID
983 *s++ = htons(CDP_PORT_ID_TLV);
984 memset(buf, 0, sizeof(buf));
985 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
986 len = strlen(buf);
987 if (len & 1) /* make it even */
988 len++;
989 *s++ = htons(len + 4);
990 memcpy((uchar *)s, buf, len);
991 s += len / 2;
992#endif
993
994#ifdef CONFIG_CDP_CAPABILITIES
995 *s++ = htons(CDP_CAPABILITIES_TLV);
996 *s++ = htons(8);
997 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
998 s += 2;
999#endif
1000
1001#ifdef CONFIG_CDP_VERSION
1002 *s++ = htons(CDP_VERSION_TLV);
1003 memset(buf, 0, sizeof(buf));
1004 strcpy(buf, CONFIG_CDP_VERSION);
1005 len = strlen(buf);
1006 if (len & 1) /* make it even */
1007 len++;
1008 *s++ = htons(len + 4);
1009 memcpy((uchar *)s, buf, len);
1010 s += len / 2;
1011#endif
1012
1013#ifdef CONFIG_CDP_PLATFORM
1014 *s++ = htons(CDP_PLATFORM_TLV);
1015 memset(buf, 0, sizeof(buf));
1016 strcpy(buf, CONFIG_CDP_PLATFORM);
1017 len = strlen(buf);
1018 if (len & 1) /* make it even */
1019 len++;
1020 *s++ = htons(len + 4);
1021 memcpy((uchar *)s, buf, len);
1022 s += len / 2;
1023#endif
1024
1025#ifdef CONFIG_CDP_TRIGGER
1026 *s++ = htons(CDP_TRIGGER_TLV);
1027 *s++ = htons(8);
1028 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1029 s += 2;
1030#endif
1031
1032#ifdef CONFIG_CDP_POWER_CONSUMPTION
1033 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1034 *s++ = htons(6);
1035 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1036#endif
1037
1038 /* length of ethernet packet */
1039 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1040 et->et_protlen = htons(len);
1041
1042 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001043 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1044 (uchar *)s - (NetTxPacket + len));
wdenka3d991b2004-04-15 21:48:45 +00001045 if (chksum == 0)
1046 chksum = 0xFFFF;
1047 *cp = htons(chksum);
1048
1049 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1050 return 0;
1051}
1052
1053static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001054CDPTimeout(void)
wdenka3d991b2004-04-15 21:48:45 +00001055{
1056 CDPSeq++;
1057
1058 if (CDPSeq < 3) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001059 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenka3d991b2004-04-15 21:48:45 +00001060 CDPSendTrigger();
1061 return;
1062 }
1063
1064 /* if not OK try again */
1065 if (!CDPOK)
1066 NetStartAgain();
1067 else
1068 NetState = NETLOOP_SUCCESS;
1069}
1070
1071static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001072CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1073 unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001074{
1075 /* nothing */
1076}
1077
1078static void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001079CDPHandler(const uchar *pkt, unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001080{
1081 const uchar *t;
1082 const ushort *ss;
1083 ushort type, tlen;
wdenka3d991b2004-04-15 21:48:45 +00001084 ushort vlan, nvlan;
1085
1086 /* minimum size? */
1087 if (len < sizeof(CDP_SNAP_hdr) + 4)
1088 goto pkt_short;
1089
1090 /* check for valid CDP SNAP header */
1091 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1092 return;
1093
1094 pkt += sizeof(CDP_SNAP_hdr);
1095 len -= sizeof(CDP_SNAP_hdr);
1096
1097 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1098 if (pkt[0] < 0x02 || pkt[1] == 0)
1099 return;
1100
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001101 /*
1102 * if version is greater than 0x02 maybe we'll have a problem;
1103 * output a warning
1104 */
wdenka3d991b2004-04-15 21:48:45 +00001105 if (pkt[0] != 0x02)
1106 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1107 pkt[0] & 0xff);
1108
1109 if (CDP_compute_csum(pkt, len) != 0)
1110 return;
1111
1112 pkt += 4;
1113 len -= 4;
1114
1115 vlan = htons(-1);
1116 nvlan = htons(-1);
1117 while (len > 0) {
1118 if (len < 4)
1119 goto pkt_short;
1120
1121 ss = (const ushort *)pkt;
1122 type = ntohs(ss[0]);
1123 tlen = ntohs(ss[1]);
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001124 if (tlen > len)
wdenka3d991b2004-04-15 21:48:45 +00001125 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001126
1127 pkt += tlen;
1128 len -= tlen;
1129
1130 ss += 2; /* point ss to the data of the TLV */
1131 tlen -= 4;
1132
1133 switch (type) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001134 case CDP_DEVICE_ID_TLV:
1135 break;
1136 case CDP_ADDRESS_TLV:
1137 break;
1138 case CDP_PORT_ID_TLV:
1139 break;
1140 case CDP_CAPABILITIES_TLV:
1141 break;
1142 case CDP_VERSION_TLV:
1143 break;
1144 case CDP_PLATFORM_TLV:
1145 break;
1146 case CDP_NATIVE_VLAN_TLV:
1147 nvlan = *ss;
1148 break;
1149 case CDP_APPLIANCE_VLAN_TLV:
1150 t = (const uchar *)ss;
1151 while (tlen > 0) {
1152 if (tlen < 3)
1153 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001154
Luca Ceresolic819abe2011-05-04 02:40:46 +00001155 ss = (const ushort *)(t + 1);
wdenka3d991b2004-04-15 21:48:45 +00001156
1157#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Wolfgang Denk5c104192011-11-04 15:55:42 +00001158 if (t[0] == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
Luca Ceresolic819abe2011-05-04 02:40:46 +00001159 vlan = *ss;
wdenka3d991b2004-04-15 21:48:45 +00001160#else
Luca Ceresolic819abe2011-05-04 02:40:46 +00001161 /* XXX will this work; dunno */
1162 vlan = ntohs(*ss);
wdenka3d991b2004-04-15 21:48:45 +00001163#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001164 t += 3; tlen -= 3;
1165 }
1166 break;
1167 case CDP_TRIGGER_TLV:
1168 break;
1169 case CDP_POWER_CONSUMPTION_TLV:
1170 break;
1171 case CDP_SYSNAME_TLV:
1172 break;
1173 case CDP_SYSOBJECT_TLV:
1174 break;
1175 case CDP_MANAGEMENT_ADDRESS_TLV:
1176 break;
wdenka3d991b2004-04-15 21:48:45 +00001177 }
1178 }
1179
1180 CDPApplianceVLAN = vlan;
1181 CDPNativeVLAN = nvlan;
1182
1183 CDPOK = 1;
1184 return;
1185
1186 pkt_short:
1187 printf("** CDP packet is too short\n");
1188 return;
1189}
1190
1191static void CDPStart(void)
1192{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001193 printf("Using %s device\n", eth_get_name());
wdenka3d991b2004-04-15 21:48:45 +00001194 CDPSeq = 0;
1195 CDPOK = 0;
1196
1197 CDPNativeVLAN = htons(-1);
1198 CDPApplianceVLAN = htons(-1);
1199
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001200 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1201 NetSetHandler(CDPDummyHandler);
wdenka3d991b2004-04-15 21:48:45 +00001202
1203 CDPSendTrigger();
1204}
Jon Loeliger610f2e92007-07-10 11:05:02 -05001205#endif
wdenka3d991b2004-04-15 21:48:45 +00001206
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001207#ifdef CONFIG_IP_DEFRAG
1208/*
1209 * This function collects fragments in a single packet, according
1210 * to the algorithm in RFC815. It returns NULL or the pointer to
1211 * a complete packet, in static storage
1212 */
1213#ifndef CONFIG_NET_MAXDEFRAG
1214#define CONFIG_NET_MAXDEFRAG 16384
1215#endif
1216/*
1217 * MAXDEFRAG, above, is chosen in the config file and is real data
1218 * so we need to add the NFS overhead, which is more than TFTP.
1219 * To use sizeof in the internal unnamed structures, we need a real
1220 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1221 * The compiler doesn't complain nor allocates the actual structure
1222 */
1223static struct rpc_t rpc_specimen;
1224#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1225
1226#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1227
1228/*
1229 * this is the packet being assembled, either data or frag control.
1230 * Fragments go by 8 bytes, so this union must be 8 bytes long
1231 */
1232struct hole {
1233 /* first_byte is address of this structure */
1234 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1235 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1236 u16 prev_hole; /* index of prev, 0 == none */
1237 u16 unused;
1238};
1239
1240static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1241{
1242 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1243 static u16 first_hole, total_len;
1244 struct hole *payload, *thisfrag, *h, *newh;
1245 IP_t *localip = (IP_t *)pkt_buff;
1246 uchar *indata = (uchar *)ip;
1247 int offset8, start, len, done = 0;
1248 u16 ip_off = ntohs(ip->ip_off);
1249
1250 /* payload starts after IP header, this fragment is in there */
1251 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1252 offset8 = (ip_off & IP_OFFS);
1253 thisfrag = payload + offset8;
1254 start = offset8 * 8;
1255 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1256
1257 if (start + len > IP_MAXUDP) /* fragment extends too far */
1258 return NULL;
1259
1260 if (!total_len || localip->ip_id != ip->ip_id) {
1261 /* new (or different) packet, reset structs */
1262 total_len = 0xffff;
1263 payload[0].last_byte = ~0;
1264 payload[0].next_hole = 0;
1265 payload[0].prev_hole = 0;
1266 first_hole = 0;
1267 /* any IP header will work, copy the first we received */
1268 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1269 }
1270
1271 /*
1272 * What follows is the reassembly algorithm. We use the payload
1273 * array as a linked list of hole descriptors, as each hole starts
1274 * at a multiple of 8 bytes. However, last byte can be whatever value,
1275 * so it is represented as byte count, not as 8-byte blocks.
1276 */
1277
1278 h = payload + first_hole;
1279 while (h->last_byte < start) {
1280 if (!h->next_hole) {
1281 /* no hole that far away */
1282 return NULL;
1283 }
1284 h = payload + h->next_hole;
1285 }
1286
Fillod Stephanee397e592010-06-11 19:26:43 +02001287 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1288 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001289 /* no overlap with holes (dup fragment?) */
1290 return NULL;
1291 }
1292
1293 if (!(ip_off & IP_FLAGS_MFRAG)) {
1294 /* no more fragmentss: truncate this (last) hole */
1295 total_len = start + len;
1296 h->last_byte = start + len;
1297 }
1298
1299 /*
1300 * There is some overlap: fix the hole list. This code doesn't
1301 * deal with a fragment that overlaps with two different holes
1302 * (thus being a superset of a previously-received fragment).
1303 */
1304
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001305 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001306 /* complete overlap with hole: remove hole */
1307 if (!h->prev_hole && !h->next_hole) {
1308 /* last remaining hole */
1309 done = 1;
1310 } else if (!h->prev_hole) {
1311 /* first hole */
1312 first_hole = h->next_hole;
1313 payload[h->next_hole].prev_hole = 0;
1314 } else if (!h->next_hole) {
1315 /* last hole */
1316 payload[h->prev_hole].next_hole = 0;
1317 } else {
1318 /* in the middle of the list */
1319 payload[h->next_hole].prev_hole = h->prev_hole;
1320 payload[h->prev_hole].next_hole = h->next_hole;
1321 }
1322
1323 } else if (h->last_byte <= start + len) {
1324 /* overlaps with final part of the hole: shorten this hole */
1325 h->last_byte = start;
1326
1327 } else if (h >= thisfrag) {
1328 /* overlaps with initial part of the hole: move this hole */
1329 newh = thisfrag + (len / 8);
1330 *newh = *h;
1331 h = newh;
1332 if (h->next_hole)
1333 payload[h->next_hole].prev_hole = (h - payload);
1334 if (h->prev_hole)
1335 payload[h->prev_hole].next_hole = (h - payload);
1336 else
1337 first_hole = (h - payload);
1338
1339 } else {
1340 /* fragment sits in the middle: split the hole */
1341 newh = thisfrag + (len / 8);
1342 *newh = *h;
1343 h->last_byte = start;
1344 h->next_hole = (newh - payload);
1345 newh->prev_hole = (h - payload);
1346 if (newh->next_hole)
1347 payload[newh->next_hole].prev_hole = (newh - payload);
1348 }
1349
1350 /* finally copy this fragment and possibly return whole packet */
1351 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1352 if (!done)
1353 return NULL;
1354
1355 localip->ip_len = htons(total_len);
1356 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1357 return localip;
1358}
1359
1360static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1361{
1362 u16 ip_off = ntohs(ip->ip_off);
1363 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1364 return ip; /* not a fragment */
1365 return __NetDefragment(ip, lenp);
1366}
1367
1368#else /* !CONFIG_IP_DEFRAG */
1369
1370static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1371{
1372 u16 ip_off = ntohs(ip->ip_off);
1373 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1374 return ip; /* not a fragment */
1375 return NULL;
1376}
1377#endif
wdenka3d991b2004-04-15 21:48:45 +00001378
Simon Glass8f79bb12011-10-24 18:00:00 +00001379/**
1380 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1381 * drop others.
1382 *
1383 * @parma ip IP packet containing the ICMP
1384 */
1385static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1386{
1387 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1388
1389 switch (icmph->type) {
1390 case ICMP_REDIRECT:
1391 if (icmph->code != ICMP_REDIR_HOST)
1392 return;
1393 printf(" ICMP Host Redirect to %pI4 ",
1394 &icmph->un.gateway);
1395 break;
1396#if defined(CONFIG_CMD_PING)
1397 case ICMP_ECHO_REPLY:
1398 /*
1399 * IP header OK. Pass the packet to the
1400 * current handler.
1401 */
1402 /*
1403 * XXX point to ip packet - should this use
1404 * packet_icmp_handler?
1405 */
1406 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1407 break;
1408 case ICMP_ECHO_REQUEST:
1409 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1410 ETHER_HDR_SIZE + len);
1411
1412 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1413 memcpy(&et->et_src[0], NetOurEther, 6);
1414
1415 ip->ip_sum = 0;
1416 ip->ip_off = 0;
1417 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1418 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1419 ip->ip_sum = ~NetCksum((uchar *)ip,
1420 IP_HDR_SIZE_NO_UDP >> 1);
1421
1422 icmph->type = ICMP_ECHO_REPLY;
1423 icmph->checksum = 0;
1424 icmph->checksum = ~NetCksum((uchar *)icmph,
1425 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1426 (void) eth_send((uchar *)et,
1427 ETHER_HDR_SIZE + len);
1428 break;
1429#endif
1430 default:
Simon Glass39bccd22011-10-26 14:18:38 +00001431#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +00001432 if (packet_icmp_handler)
1433 packet_icmp_handler(icmph->type, icmph->code,
1434 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1435 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +00001436#endif
Simon Glass8f79bb12011-10-24 18:00:00 +00001437 break;
1438 }
1439}
1440
wdenk2d966952002-10-31 22:12:35 +00001441void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001442NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001443{
1444 Ethernet_t *et;
1445 IP_t *ip;
1446 ARP_t *arp;
1447 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001448 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001449 int x;
wdenka3d991b2004-04-15 21:48:45 +00001450 uchar *pkt;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001451#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001452 int iscdp;
1453#endif
1454 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001455
Robin Getz0ebf04c2009-07-23 03:01:03 -04001456 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001457
Mike Frysingerd9bec9f2009-07-18 21:04:08 -04001458 NetRxPacket = inpkt;
1459 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +00001460 et = (Ethernet_t *)inpkt;
1461
1462 /* too small packet? */
1463 if (len < ETHER_HDR_SIZE)
1464 return;
1465
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001466#ifdef CONFIG_API
1467 if (push_packet) {
1468 (*push_packet)(inpkt, len);
1469 return;
1470 }
1471#endif
1472
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001473#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001474 /* keep track if packet is CDP */
1475 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1476#endif
1477
1478 myvlanid = ntohs(NetOurVLAN);
1479 if (myvlanid == (ushort)-1)
1480 myvlanid = VLAN_NONE;
1481 mynvlanid = ntohs(NetOurNativeVLAN);
1482 if (mynvlanid == (ushort)-1)
1483 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001484
1485 x = ntohs(et->et_protlen);
1486
Robin Getz0ebf04c2009-07-23 03:01:03 -04001487 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001488
wdenk2d966952002-10-31 22:12:35 +00001489 if (x < 1514) {
1490 /*
1491 * Got a 802 packet. Check the other protocol field.
1492 */
1493 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001494
1495 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001496 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001497
1498 } else if (x != PROT_VLAN) { /* normal packet */
1499 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001500 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001501
1502 } else { /* VLAN packet */
1503 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1504
Robin Getz0ebf04c2009-07-23 03:01:03 -04001505 debug("VLAN packet received\n");
1506
wdenka3d991b2004-04-15 21:48:45 +00001507 /* too small packet? */
1508 if (len < VLAN_ETHER_HDR_SIZE)
1509 return;
1510
1511 /* if no VLAN active */
1512 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001513#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001514 && iscdp == 0
1515#endif
1516 )
1517 return;
1518
1519 cti = ntohs(vet->vet_tag);
1520 vlanid = cti & VLAN_IDMASK;
1521 x = ntohs(vet->vet_type);
1522
1523 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1524 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001525 }
1526
Robin Getz0ebf04c2009-07-23 03:01:03 -04001527 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001528
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001529#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001530 if (iscdp) {
1531 CDPHandler((uchar *)ip, len);
1532 return;
1533 }
1534#endif
1535
1536 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1537 if (vlanid == VLAN_NONE)
1538 vlanid = (mynvlanid & VLAN_IDMASK);
1539 /* not matched? */
1540 if (vlanid != (myvlanid & VLAN_IDMASK))
1541 return;
1542 }
1543
wdenk2d966952002-10-31 22:12:35 +00001544 switch (x) {
1545
1546 case PROT_ARP:
1547 /*
1548 * We have to deal with two types of ARP packets:
wdenk8bde7f72003-06-27 21:31:46 +00001549 * - REQUEST packets will be answered by sending our
1550 * IP address - if we know it.
1551 * - REPLY packates are expected only after we asked
1552 * for the TFTP server's or the gateway's ethernet
1553 * address; so if we receive such a packet, we set
1554 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001555 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001556 debug("Got ARP\n");
1557
wdenk2d966952002-10-31 22:12:35 +00001558 arp = (ARP_t *)ip;
1559 if (len < ARP_HDR_SIZE) {
1560 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1561 return;
1562 }
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001563 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001564 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001565 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001566 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001567 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001568 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001569 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001570 return;
wdenk2d966952002-10-31 22:12:35 +00001571
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001572 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001573 return;
wdenk2d966952002-10-31 22:12:35 +00001574
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001575 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001576 return;
wdenk2d966952002-10-31 22:12:35 +00001577
1578 switch (ntohs(arp->ar_op)) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001579 case ARPOP_REQUEST:
1580 /* reply with our IP address */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001581 debug("Got ARP REQUEST, return our IP\n");
wdenka3d991b2004-04-15 21:48:45 +00001582 pkt = (uchar *)et;
1583 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001584 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001585 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001586 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001587 memcpy(&arp->ar_data[0], NetOurEther, 6);
1588 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001589 (void) eth_send((uchar *)et,
1590 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001591 return;
wdenk73a8b272003-06-05 19:27:42 +00001592
1593 case ARPOP_REPLY: /* arp reply */
1594 /* are we waiting for a reply */
1595 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1596 break;
Robin Getz97cfe862009-07-21 12:15:28 -04001597
1598#ifdef CONFIG_KEEP_SERVERADDR
1599 if (NetServerIP == NetArpWaitPacketIP) {
1600 char buf[20];
1601 sprintf(buf, "%pM", arp->ar_data);
1602 setenv("serveraddr", buf);
1603 }
1604#endif
1605
Robin Getz0ebf04c2009-07-23 03:01:03 -04001606 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger95823ca2009-02-11 18:23:48 -05001607 arp->ar_data);
wdenk73a8b272003-06-05 19:27:42 +00001608
1609 tmp = NetReadIP(&arp->ar_data[6]);
1610
1611 /* matched waiting packet's address */
1612 if (tmp == NetArpWaitReplyIP) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001613 debug("Got it\n");
wdenk73a8b272003-06-05 19:27:42 +00001614 /* save address for later use */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001615 memcpy(NetArpWaitPacketMAC,
1616 &arp->ar_data[0], 6);
wdenk73a8b272003-06-05 19:27:42 +00001617
wdenk68ceb292004-08-02 21:11:11 +00001618#ifdef CONFIG_NETCONSOLE
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001619 (*packetHandler)(0, 0, 0, 0, 0);
wdenk68ceb292004-08-02 21:11:11 +00001620#endif
wdenk73a8b272003-06-05 19:27:42 +00001621 /* modify header, and transmit it */
1622 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001623 (void) eth_send(NetArpWaitTxPacket,
1624 NetArpWaitTxPacketSize);
wdenk73a8b272003-06-05 19:27:42 +00001625
1626 /* no arp request pending now */
1627 NetArpWaitPacketIP = 0;
1628 NetArpWaitTxPacketSize = 0;
1629 NetArpWaitPacketMAC = NULL;
1630
1631 }
wdenk2d966952002-10-31 22:12:35 +00001632 return;
1633 default:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001634 debug("Unexpected ARP opcode 0x%x\n",
1635 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001636 return;
1637 }
wdenk289f9322005-01-12 00:15:14 +00001638 break;
wdenk2d966952002-10-31 22:12:35 +00001639
Peter Tyserbf6cb242010-09-30 11:25:48 -05001640#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001641 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001642 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001643 arp = (ARP_t *)ip;
1644 if (len < ARP_HDR_SIZE) {
1645 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1646 return;
1647 }
1648
1649 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1650 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1651 (ntohs(arp->ar_pro) != PROT_IP) ||
1652 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1653
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001654 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001655 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001656 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001657 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001658 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1659 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001660
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001661 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001662 }
1663 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001664#endif
wdenk2d966952002-10-31 22:12:35 +00001665 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001666 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001667 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001668 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001669 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001670 return;
1671 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001672 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001673 if (len < ntohs(ip->ip_len)) {
1674 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1675 return;
1676 }
1677 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001678 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1679
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001680 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001681 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001682 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001683 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001684 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001685 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001686 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001687 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001688 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001689 return;
1690 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001691 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001692 tmp = NetReadIP(&ip->ip_dst);
1693 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001694#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001695 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001696#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001697 return;
wdenk2d966952002-10-31 22:12:35 +00001698 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001699 /* Read source IP address for later use */
1700 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001701 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001702 * The function returns the unchanged packet if it's not
1703 * a fragment, and either the complete packet or NULL if
1704 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1705 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001706 ip = NetDefragment(ip, &len);
1707 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001708 return;
1709 /*
wdenk2d966952002-10-31 22:12:35 +00001710 * watch for ICMP host redirects
1711 *
wdenk8bde7f72003-06-27 21:31:46 +00001712 * There is no real handler code (yet). We just watch
1713 * for ICMP host redirect messages. In case anybody
1714 * sees these messages: please contact me
1715 * (wd@denx.de), or - even better - send me the
1716 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001717 *
wdenk8bde7f72003-06-27 21:31:46 +00001718 * Note: in all cases where I have seen this so far
1719 * it was a problem with the router configuration,
1720 * for instance when a router was configured in the
1721 * BOOTP reply, but the TFTP server was on the same
1722 * subnet. So this is probably a warning that your
1723 * configuration might be wrong. But I'm not really
1724 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001725 *
1726 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1727 * we send a tftp packet to a dead connection, or when
1728 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001729 */
1730 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001731 receive_icmp(ip, len, src_ip, et);
1732 return;
wdenk2d966952002-10-31 22:12:35 +00001733 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1734 return;
1735 }
1736
Stefan Roese8534bf92005-08-12 20:06:52 +02001737#ifdef CONFIG_UDP_CHECKSUM
1738 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001739 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001740 ushort *sumptr;
1741 ushort sumlen;
1742
1743 xsum = ip->ip_p;
1744 xsum += (ntohs(ip->udp_len));
1745 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1746 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1747 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1748 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1749
1750 sumlen = ntohs(ip->udp_len);
1751 sumptr = (ushort *) &(ip->udp_src);
1752
1753 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001754 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001755
1756 sumdata = *sumptr++;
1757 xsum += ntohs(sumdata);
1758 sumlen -= 2;
1759 }
1760 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001761 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001762
1763 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001764 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001765 xsum += sumdata;
1766 }
1767 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001768 xsum = (xsum & 0x0000ffff) +
1769 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001770 }
1771 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001772 printf(" UDP wrong checksum %08lx %08x\n",
1773 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001774 return;
1775 }
1776 }
1777#endif
1778
David Updegraff53a5c422007-06-11 10:41:07 -05001779
wdenk68ceb292004-08-02 21:11:11 +00001780#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001781 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001782 ntohs(ip->udp_dst),
1783 ntohs(ip->udp_src),
1784 ntohs(ip->udp_len) - 8);
1785#endif
wdenk2d966952002-10-31 22:12:35 +00001786 /*
1787 * IP header OK. Pass the packet to the current handler.
1788 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001789 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001790 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001791 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001792 ntohs(ip->udp_src),
1793 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001794 break;
1795 }
1796}
1797
1798
1799/**********************************************************************/
1800
Simon Glasse4bf0c52011-10-24 18:00:02 +00001801static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001802{
1803 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001804 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001805#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001806 case PING:
wdenk6e592382004-04-18 17:39:38 +00001807 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001808 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001809 return 1;
wdenk6e592382004-04-18 17:39:38 +00001810 }
1811 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001812#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001813#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001814 case SNTP:
1815 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001816 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001817 return 1;
wdenkea287de2005-04-01 00:25:43 +00001818 }
1819 goto common;
1820#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001821#if defined(CONFIG_CMD_DNS)
1822 case DNS:
1823 if (NetOurDNSIP == 0) {
1824 puts("*** ERROR: DNS server address not given\n");
1825 return 1;
1826 }
1827 goto common;
1828#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001829#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001830 case NFS:
1831#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001832 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001833 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001834 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001835 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001836 return 1;
wdenk6e592382004-04-18 17:39:38 +00001837 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001838#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1839 defined(CONFIG_CMD_DNS)
1840common:
wdenk73a8b272003-06-05 19:27:42 +00001841#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001842 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001843
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001844 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001845 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001846 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001847 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001848 return 1;
wdenk6e592382004-04-18 17:39:38 +00001849 }
1850 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001851
Peter Tyserbf6cb242010-09-30 11:25:48 -05001852#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001853 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001854#endif
wdenk2d966952002-10-31 22:12:35 +00001855 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001856 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001857 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001858 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001859 extern int eth_get_dev_index(void);
1860 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001861
wdenk6e592382004-04-18 17:39:38 +00001862 switch (num) {
1863 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001864 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001865 return 1;
wdenk6e592382004-04-18 17:39:38 +00001866 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001867 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001868 break;
wdenk6e592382004-04-18 17:39:38 +00001869 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001870 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001871 num);
1872 break;
wdenk2d966952002-10-31 22:12:35 +00001873 }
wdenk6e592382004-04-18 17:39:38 +00001874
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001875 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001876 return 2;
wdenk6e592382004-04-18 17:39:38 +00001877 }
1878 /* Fall through */
1879 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001880 return 0;
wdenk2d966952002-10-31 22:12:35 +00001881 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001882 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001883}
1884/**********************************************************************/
1885
1886int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001887NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001888{
1889 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1890}
1891
1892
1893unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001894NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001895{
1896 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001897 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001898
1899 xsum = 0;
1900 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001901 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001902 xsum = (xsum & 0xffff) + (xsum >> 16);
1903 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001904 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001905}
1906
wdenka3d991b2004-04-15 21:48:45 +00001907int
1908NetEthHdrSize(void)
1909{
1910 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001911
wdenka3d991b2004-04-15 21:48:45 +00001912 myvlanid = ntohs(NetOurVLAN);
1913 if (myvlanid == (ushort)-1)
1914 myvlanid = VLAN_NONE;
1915
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001916 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1917 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001918}
1919
1920int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001921NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001922{
1923 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001924 ushort myvlanid;
1925
1926 myvlanid = ntohs(NetOurVLAN);
1927 if (myvlanid == (ushort)-1)
1928 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001929
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001930 memcpy(et->et_dest, addr, 6);
1931 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001932 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001933 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001934 return ETHER_HDR_SIZE;
1935 } else {
1936 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001937
wdenka3d991b2004-04-15 21:48:45 +00001938 vet->vet_vlan_type = htons(PROT_VLAN);
1939 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1940 vet->vet_type = htons(prot);
1941 return VLAN_ETHER_HDR_SIZE;
1942 }
1943}
wdenk2d966952002-10-31 22:12:35 +00001944
1945void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001946NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001947{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001948 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001949
1950 /*
1951 * If the data is an odd number of bytes, zero the
1952 * byte after the last byte so that the checksum
1953 * will work.
1954 */
1955 if (len & 1)
1956 xip[IP_HDR_SIZE + len] = 0;
1957
1958 /*
1959 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001960 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001961 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001962 /* IP_HDR_SIZE / 4 (not including UDP) */
1963 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001964 ip->ip_tos = 0;
1965 ip->ip_len = htons(IP_HDR_SIZE + len);
1966 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001967 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001968 ip->ip_ttl = 255;
1969 ip->ip_p = 17; /* UDP */
1970 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001971 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001972 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001973 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001974 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001975 ip->udp_src = htons(sport);
1976 ip->udp_dst = htons(dport);
1977 ip->udp_len = htons(8 + len);
1978 ip->udp_xsum = 0;
1979 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1980}
1981
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001982void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001983{
1984 if (*src && (*src == '"')) {
1985 ++src;
1986 --size;
1987 }
1988
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001989 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001990 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001991 *dst = '\0';
1992}
1993
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001994#if defined(CONFIG_CMD_NFS) || \
1995 defined(CONFIG_CMD_SNTP) || \
1996 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001997/*
Robin Getz97399462010-03-08 14:07:00 -05001998 * make port a little random (1024-17407)
1999 * This keeps the math somewhat trivial to compute, and seems to work with
2000 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04002001 */
2002unsigned int random_port(void)
2003{
Robin Getz97399462010-03-08 14:07:00 -05002004 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04002005}
2006#endif
2007
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00002008void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00002009{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00002010 x = ntohl(x);
2011 sprintf(s, "%d.%d.%d.%d",
2012 (int) ((x >> 24) & 0xff),
2013 (int) ((x >> 16) & 0xff),
2014 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00002015 );
wdenk2d966952002-10-31 22:12:35 +00002016}
2017
wdenka3d991b2004-04-15 21:48:45 +00002018void VLAN_to_string(ushort x, char *s)
2019{
2020 x = ntohs(x);
2021
2022 if (x == (ushort)-1)
2023 x = VLAN_NONE;
2024
2025 if (x == VLAN_NONE)
2026 strcpy(s, "none");
2027 else
2028 sprintf(s, "%d", x & VLAN_IDMASK);
2029}
2030
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04002031ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00002032{
2033 ushort id;
2034
2035 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00002036 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00002037
2038 if (*s < '0' || *s > '9')
2039 id = VLAN_NONE;
2040 else
2041 id = (ushort)simple_strtoul(s, NULL, 10);
2042
wdenkb9711de2004-04-25 13:18:40 +00002043 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00002044}
2045
wdenka3d991b2004-04-15 21:48:45 +00002046ushort getenv_VLAN(char *var)
2047{
Luca Ceresoli92895de2011-05-04 02:40:45 +00002048 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00002049}